blob: 48bdd2a7d82c72d791a335303e3f2206f58d7598 [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 };
345}
346
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();
498 unsigned IDNS = ND->getIdentifierNamespace();
Douglas Gregor58acf322009-10-09 22:16:47 +0000499
500 // Skip unnamed entities.
Douglas Gregor7c208612010-01-14 00:20:49 +0000501 if (!ND->getDeclName())
502 return false;
Douglas Gregor3545ff42009-09-21 16:56:56 +0000503
504 // Friend declarations and declarations introduced due to friends are never
505 // added as results.
John McCallbbbbe4e2010-03-11 07:50:04 +0000506 if (IDNS & (Decl::IDNS_OrdinaryFriend | Decl::IDNS_TagFriend))
Douglas Gregor7c208612010-01-14 00:20:49 +0000507 return false;
508
Douglas Gregor99fe2ad2009-12-11 17:31:05 +0000509 // Class template (partial) specializations are never added as results.
Douglas Gregor7c208612010-01-14 00:20:49 +0000510 if (isa<ClassTemplateSpecializationDecl>(ND) ||
511 isa<ClassTemplatePartialSpecializationDecl>(ND))
512 return false;
Douglas Gregor3545ff42009-09-21 16:56:56 +0000513
Douglas Gregor99fe2ad2009-12-11 17:31:05 +0000514 // Using declarations themselves are never added as results.
Douglas Gregor7c208612010-01-14 00:20:49 +0000515 if (isa<UsingDecl>(ND))
516 return false;
517
518 // Some declarations have reserved names that we don't want to ever show.
Alp Toker034bbd52014-06-30 01:33:53 +0000519 // Filter out names reserved for the implementation if they come from a
520 // system header.
521 // TODO: Add a predicate for this.
522 if (const IdentifierInfo *Id = ND->getIdentifier())
523 if (isReservedName(Id) &&
524 (ND->getLocation().isInvalid() ||
525 SemaRef.SourceMgr.isInSystemHeader(
526 SemaRef.SourceMgr.getSpellingLoc(ND->getLocation()))))
Douglas Gregor7c208612010-01-14 00:20:49 +0000527 return false;
Douglas Gregor2927c0c2010-11-09 03:59:40 +0000528
Douglas Gregor59cab552010-08-16 23:05:20 +0000529 if (Filter == &ResultBuilder::IsNestedNameSpecifier ||
530 ((isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND)) &&
531 Filter != &ResultBuilder::IsNamespace &&
Douglas Gregor0ac41382010-09-23 23:01:17 +0000532 Filter != &ResultBuilder::IsNamespaceOrAlias &&
Craig Topperc3ec1492014-05-26 06:22:03 +0000533 Filter != nullptr))
Douglas Gregor59cab552010-08-16 23:05:20 +0000534 AsNestedNameSpecifier = true;
535
Douglas Gregor3545ff42009-09-21 16:56:56 +0000536 // Filter out any unwanted results.
Douglas Gregor6ae4c522010-01-14 03:21:49 +0000537 if (Filter && !(this->*Filter)(ND)) {
538 // Check whether it is interesting as a nested-name-specifier.
David Blaikiebbafb8a2012-03-11 07:00:24 +0000539 if (AllowNestedNameSpecifiers && SemaRef.getLangOpts().CPlusPlus &&
Douglas Gregor6ae4c522010-01-14 03:21:49 +0000540 IsNestedNameSpecifier(ND) &&
541 (Filter != &ResultBuilder::IsMember ||
542 (isa<CXXRecordDecl>(ND) &&
543 cast<CXXRecordDecl>(ND)->isInjectedClassName()))) {
544 AsNestedNameSpecifier = true;
545 return true;
546 }
547
Douglas Gregor7c208612010-01-14 00:20:49 +0000548 return false;
Douglas Gregor59cab552010-08-16 23:05:20 +0000549 }
Douglas Gregor7c208612010-01-14 00:20:49 +0000550 // ... then it must be interesting!
551 return true;
552}
553
Douglas Gregore0717ab2010-01-14 00:41:07 +0000554bool ResultBuilder::CheckHiddenResult(Result &R, DeclContext *CurContext,
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000555 const NamedDecl *Hiding) {
Douglas Gregore0717ab2010-01-14 00:41:07 +0000556 // In C, there is no way to refer to a hidden name.
557 // FIXME: This isn't true; we can find a tag name hidden by an ordinary
558 // name if we introduce the tag type.
David Blaikiebbafb8a2012-03-11 07:00:24 +0000559 if (!SemaRef.getLangOpts().CPlusPlus)
Douglas Gregore0717ab2010-01-14 00:41:07 +0000560 return true;
561
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000562 const DeclContext *HiddenCtx =
563 R.Declaration->getDeclContext()->getRedeclContext();
Douglas Gregore0717ab2010-01-14 00:41:07 +0000564
565 // There is no way to qualify a name declared in a function or method.
566 if (HiddenCtx->isFunctionOrMethod())
567 return true;
568
Sebastian Redl50c68252010-08-31 00:36:30 +0000569 if (HiddenCtx == Hiding->getDeclContext()->getRedeclContext())
Douglas Gregore0717ab2010-01-14 00:41:07 +0000570 return true;
571
572 // We can refer to the result with the appropriate qualification. Do it.
573 R.Hidden = true;
574 R.QualifierIsInformative = false;
575
576 if (!R.Qualifier)
577 R.Qualifier = getRequiredQualification(SemaRef.Context,
578 CurContext,
579 R.Declaration->getDeclContext());
580 return false;
581}
582
Douglas Gregor95887f92010-07-08 23:20:03 +0000583/// \brief A simplified classification of types used to determine whether two
584/// types are "similar enough" when adjusting priorities.
Douglas Gregor6e240332010-08-16 16:18:59 +0000585SimplifiedTypeClass clang::getSimplifiedTypeClass(CanQualType T) {
Douglas Gregor95887f92010-07-08 23:20:03 +0000586 switch (T->getTypeClass()) {
587 case Type::Builtin:
588 switch (cast<BuiltinType>(T)->getKind()) {
589 case BuiltinType::Void:
590 return STC_Void;
591
592 case BuiltinType::NullPtr:
593 return STC_Pointer;
594
595 case BuiltinType::Overload:
596 case BuiltinType::Dependent:
Douglas Gregor95887f92010-07-08 23:20:03 +0000597 return STC_Other;
598
599 case BuiltinType::ObjCId:
600 case BuiltinType::ObjCClass:
601 case BuiltinType::ObjCSel:
602 return STC_ObjectiveC;
603
604 default:
605 return STC_Arithmetic;
606 }
David Blaikie8a40f702012-01-17 06:56:22 +0000607
Douglas Gregor95887f92010-07-08 23:20:03 +0000608 case Type::Complex:
609 return STC_Arithmetic;
610
611 case Type::Pointer:
612 return STC_Pointer;
613
614 case Type::BlockPointer:
615 return STC_Block;
616
617 case Type::LValueReference:
618 case Type::RValueReference:
619 return getSimplifiedTypeClass(T->getAs<ReferenceType>()->getPointeeType());
620
621 case Type::ConstantArray:
622 case Type::IncompleteArray:
623 case Type::VariableArray:
624 case Type::DependentSizedArray:
625 return STC_Array;
626
627 case Type::DependentSizedExtVector:
628 case Type::Vector:
629 case Type::ExtVector:
630 return STC_Arithmetic;
631
632 case Type::FunctionProto:
633 case Type::FunctionNoProto:
634 return STC_Function;
635
636 case Type::Record:
637 return STC_Record;
638
639 case Type::Enum:
640 return STC_Arithmetic;
641
642 case Type::ObjCObject:
643 case Type::ObjCInterface:
644 case Type::ObjCObjectPointer:
645 return STC_ObjectiveC;
646
647 default:
648 return STC_Other;
649 }
650}
651
652/// \brief Get the type that a given expression will have if this declaration
653/// is used as an expression in its "typical" code-completion form.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000654QualType clang::getDeclUsageType(ASTContext &C, const NamedDecl *ND) {
Douglas Gregor95887f92010-07-08 23:20:03 +0000655 ND = cast<NamedDecl>(ND->getUnderlyingDecl());
656
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000657 if (const TypeDecl *Type = dyn_cast<TypeDecl>(ND))
Douglas Gregor95887f92010-07-08 23:20:03 +0000658 return C.getTypeDeclType(Type);
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000659 if (const ObjCInterfaceDecl *Iface = dyn_cast<ObjCInterfaceDecl>(ND))
Douglas Gregor95887f92010-07-08 23:20:03 +0000660 return C.getObjCInterfaceType(Iface);
661
662 QualType T;
Alp Tokera2794f92014-01-22 07:29:52 +0000663 if (const FunctionDecl *Function = ND->getAsFunction())
Douglas Gregor603d81b2010-07-13 08:18:22 +0000664 T = Function->getCallResultType();
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000665 else if (const ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(ND))
Douglas Gregor603d81b2010-07-13 08:18:22 +0000666 T = Method->getSendResultType();
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000667 else if (const EnumConstantDecl *Enumerator = dyn_cast<EnumConstantDecl>(ND))
Douglas Gregor95887f92010-07-08 23:20:03 +0000668 T = C.getTypeDeclType(cast<EnumDecl>(Enumerator->getDeclContext()));
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000669 else if (const ObjCPropertyDecl *Property = dyn_cast<ObjCPropertyDecl>(ND))
Douglas Gregor95887f92010-07-08 23:20:03 +0000670 T = Property->getType();
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000671 else if (const ValueDecl *Value = dyn_cast<ValueDecl>(ND))
Douglas Gregor95887f92010-07-08 23:20:03 +0000672 T = Value->getType();
673 else
674 return QualType();
Douglas Gregoraf670a82011-04-14 20:33:34 +0000675
676 // Dig through references, function pointers, and block pointers to
677 // get down to the likely type of an expression when the entity is
678 // used.
679 do {
680 if (const ReferenceType *Ref = T->getAs<ReferenceType>()) {
681 T = Ref->getPointeeType();
682 continue;
683 }
684
685 if (const PointerType *Pointer = T->getAs<PointerType>()) {
686 if (Pointer->getPointeeType()->isFunctionType()) {
687 T = Pointer->getPointeeType();
688 continue;
689 }
690
691 break;
692 }
693
694 if (const BlockPointerType *Block = T->getAs<BlockPointerType>()) {
695 T = Block->getPointeeType();
696 continue;
697 }
698
699 if (const FunctionType *Function = T->getAs<FunctionType>()) {
Alp Toker314cc812014-01-25 16:55:45 +0000700 T = Function->getReturnType();
Douglas Gregoraf670a82011-04-14 20:33:34 +0000701 continue;
702 }
703
704 break;
705 } while (true);
706
707 return T;
Douglas Gregor95887f92010-07-08 23:20:03 +0000708}
709
Douglas Gregor0a0e2b32013-01-31 04:52:16 +0000710unsigned ResultBuilder::getBasePriority(const NamedDecl *ND) {
711 if (!ND)
712 return CCP_Unlikely;
713
714 // Context-based decisions.
Richard Smith541b38b2013-09-20 01:15:31 +0000715 const DeclContext *LexicalDC = ND->getLexicalDeclContext();
716 if (LexicalDC->isFunctionOrMethod()) {
Douglas Gregor0a0e2b32013-01-31 04:52:16 +0000717 // _cmd is relatively rare
718 if (const ImplicitParamDecl *ImplicitParam =
719 dyn_cast<ImplicitParamDecl>(ND))
720 if (ImplicitParam->getIdentifier() &&
721 ImplicitParam->getIdentifier()->isStr("_cmd"))
722 return CCP_ObjC_cmd;
723
724 return CCP_LocalDeclaration;
725 }
Richard Smith541b38b2013-09-20 01:15:31 +0000726
727 const DeclContext *DC = ND->getDeclContext()->getRedeclContext();
Douglas Gregor0a0e2b32013-01-31 04:52:16 +0000728 if (DC->isRecord() || isa<ObjCContainerDecl>(DC))
729 return CCP_MemberDeclaration;
730
731 // Content-based decisions.
732 if (isa<EnumConstantDecl>(ND))
733 return CCP_Constant;
734
Douglas Gregor52e0de42013-01-31 05:03:46 +0000735 // Use CCP_Type for type declarations unless we're in a statement, Objective-C
736 // message receiver, or parenthesized expression context. There, it's as
737 // likely that the user will want to write a type as other declarations.
738 if ((isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND)) &&
739 !(CompletionContext.getKind() == CodeCompletionContext::CCC_Statement ||
740 CompletionContext.getKind()
741 == CodeCompletionContext::CCC_ObjCMessageReceiver ||
742 CompletionContext.getKind()
743 == CodeCompletionContext::CCC_ParenthesizedExpression))
Douglas Gregor0a0e2b32013-01-31 04:52:16 +0000744 return CCP_Type;
745
746 return CCP_Declaration;
747}
748
Douglas Gregor50832e02010-09-20 22:39:41 +0000749void ResultBuilder::AdjustResultPriorityForDecl(Result &R) {
750 // If this is an Objective-C method declaration whose selector matches our
751 // preferred selector, give it a priority boost.
752 if (!PreferredSelector.isNull())
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000753 if (const ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(R.Declaration))
Douglas Gregor50832e02010-09-20 22:39:41 +0000754 if (PreferredSelector == Method->getSelector())
755 R.Priority += CCD_SelectorMatch;
Douglas Gregor5fb901d2010-09-20 23:11:55 +0000756
Douglas Gregor50832e02010-09-20 22:39:41 +0000757 // If we have a preferred type, adjust the priority for results with exactly-
758 // matching or nearly-matching types.
759 if (!PreferredType.isNull()) {
760 QualType T = getDeclUsageType(SemaRef.Context, R.Declaration);
761 if (!T.isNull()) {
762 CanQualType TC = SemaRef.Context.getCanonicalType(T);
763 // Check for exactly-matching types (modulo qualifiers).
764 if (SemaRef.Context.hasSameUnqualifiedType(PreferredType, TC))
765 R.Priority /= CCF_ExactTypeMatch;
766 // Check for nearly-matching types, based on classification of each.
767 else if ((getSimplifiedTypeClass(PreferredType)
Douglas Gregor95887f92010-07-08 23:20:03 +0000768 == getSimplifiedTypeClass(TC)) &&
Douglas Gregor50832e02010-09-20 22:39:41 +0000769 !(PreferredType->isEnumeralType() && TC->isEnumeralType()))
770 R.Priority /= CCF_SimilarTypeMatch;
771 }
772 }
Douglas Gregor95887f92010-07-08 23:20:03 +0000773}
774
Douglas Gregor0212fd72010-09-21 16:06:22 +0000775void ResultBuilder::MaybeAddConstructorResults(Result R) {
David Blaikiebbafb8a2012-03-11 07:00:24 +0000776 if (!SemaRef.getLangOpts().CPlusPlus || !R.Declaration ||
Douglas Gregor0212fd72010-09-21 16:06:22 +0000777 !CompletionContext.wantConstructorResults())
778 return;
779
780 ASTContext &Context = SemaRef.Context;
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000781 const NamedDecl *D = R.Declaration;
Craig Topperc3ec1492014-05-26 06:22:03 +0000782 const CXXRecordDecl *Record = nullptr;
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000783 if (const ClassTemplateDecl *ClassTemplate = dyn_cast<ClassTemplateDecl>(D))
Douglas Gregor0212fd72010-09-21 16:06:22 +0000784 Record = ClassTemplate->getTemplatedDecl();
785 else if ((Record = dyn_cast<CXXRecordDecl>(D))) {
786 // Skip specializations and partial specializations.
787 if (isa<ClassTemplateSpecializationDecl>(Record))
788 return;
789 } else {
790 // There are no constructors here.
791 return;
792 }
793
794 Record = Record->getDefinition();
795 if (!Record)
796 return;
797
798
799 QualType RecordTy = Context.getTypeDeclType(Record);
800 DeclarationName ConstructorName
801 = Context.DeclarationNames.getCXXConstructorName(
802 Context.getCanonicalType(RecordTy));
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000803 DeclContext::lookup_const_result Ctors = Record->lookup(ConstructorName);
804 for (DeclContext::lookup_const_iterator I = Ctors.begin(),
805 E = Ctors.end();
806 I != E; ++I) {
David Blaikieff7d47a2012-12-19 00:45:41 +0000807 R.Declaration = *I;
Douglas Gregor0212fd72010-09-21 16:06:22 +0000808 R.CursorKind = getCursorKindForDecl(R.Declaration);
809 Results.push_back(R);
810 }
811}
812
Douglas Gregor7c208612010-01-14 00:20:49 +0000813void ResultBuilder::MaybeAddResult(Result R, DeclContext *CurContext) {
814 assert(!ShadowMaps.empty() && "Must enter into a results scope");
815
816 if (R.Kind != Result::RK_Declaration) {
817 // For non-declaration results, just add the result.
818 Results.push_back(R);
819 return;
820 }
821
822 // Look through using declarations.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000823 if (const UsingShadowDecl *Using =
824 dyn_cast<UsingShadowDecl>(R.Declaration)) {
Douglas Gregor0a0e2b32013-01-31 04:52:16 +0000825 MaybeAddResult(Result(Using->getTargetDecl(),
826 getBasePriority(Using->getTargetDecl()),
827 R.Qualifier),
828 CurContext);
Douglas Gregor7c208612010-01-14 00:20:49 +0000829 return;
830 }
831
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000832 const Decl *CanonDecl = R.Declaration->getCanonicalDecl();
Douglas Gregor7c208612010-01-14 00:20:49 +0000833 unsigned IDNS = CanonDecl->getIdentifierNamespace();
834
Douglas Gregor6ae4c522010-01-14 03:21:49 +0000835 bool AsNestedNameSpecifier = false;
836 if (!isInterestingDecl(R.Declaration, AsNestedNameSpecifier))
Douglas Gregor7c208612010-01-14 00:20:49 +0000837 return;
838
Douglas Gregor0212fd72010-09-21 16:06:22 +0000839 // C++ constructors are never found by name lookup.
840 if (isa<CXXConstructorDecl>(R.Declaration))
841 return;
842
Douglas Gregor3545ff42009-09-21 16:56:56 +0000843 ShadowMap &SMap = ShadowMaps.back();
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000844 ShadowMapEntry::iterator I, IEnd;
845 ShadowMap::iterator NamePos = SMap.find(R.Declaration->getDeclName());
846 if (NamePos != SMap.end()) {
847 I = NamePos->second.begin();
848 IEnd = NamePos->second.end();
849 }
850
851 for (; I != IEnd; ++I) {
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000852 const NamedDecl *ND = I->first;
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000853 unsigned Index = I->second;
Douglas Gregor3545ff42009-09-21 16:56:56 +0000854 if (ND->getCanonicalDecl() == CanonDecl) {
855 // This is a redeclaration. Always pick the newer declaration.
Douglas Gregor3545ff42009-09-21 16:56:56 +0000856 Results[Index].Declaration = R.Declaration;
857
Douglas Gregor3545ff42009-09-21 16:56:56 +0000858 // We're done.
859 return;
860 }
861 }
862
863 // This is a new declaration in this scope. However, check whether this
864 // declaration name is hidden by a similarly-named declaration in an outer
865 // scope.
866 std::list<ShadowMap>::iterator SM, SMEnd = ShadowMaps.end();
867 --SMEnd;
868 for (SM = ShadowMaps.begin(); SM != SMEnd; ++SM) {
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000869 ShadowMapEntry::iterator I, IEnd;
870 ShadowMap::iterator NamePos = SM->find(R.Declaration->getDeclName());
871 if (NamePos != SM->end()) {
872 I = NamePos->second.begin();
873 IEnd = NamePos->second.end();
874 }
875 for (; I != IEnd; ++I) {
Douglas Gregor3545ff42009-09-21 16:56:56 +0000876 // A tag declaration does not hide a non-tag declaration.
John McCalle87beb22010-04-23 18:46:30 +0000877 if (I->first->hasTagIdentifierNamespace() &&
Richard Smith541b38b2013-09-20 01:15:31 +0000878 (IDNS & (Decl::IDNS_Member | Decl::IDNS_Ordinary |
879 Decl::IDNS_LocalExtern | Decl::IDNS_ObjCProtocol)))
Douglas Gregor3545ff42009-09-21 16:56:56 +0000880 continue;
881
882 // Protocols are in distinct namespaces from everything else.
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000883 if (((I->first->getIdentifierNamespace() & Decl::IDNS_ObjCProtocol)
Douglas Gregor3545ff42009-09-21 16:56:56 +0000884 || (IDNS & Decl::IDNS_ObjCProtocol)) &&
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000885 I->first->getIdentifierNamespace() != IDNS)
Douglas Gregor3545ff42009-09-21 16:56:56 +0000886 continue;
887
888 // The newly-added result is hidden by an entry in the shadow map.
Douglas Gregore0717ab2010-01-14 00:41:07 +0000889 if (CheckHiddenResult(R, CurContext, I->first))
Douglas Gregor3545ff42009-09-21 16:56:56 +0000890 return;
Douglas Gregor3545ff42009-09-21 16:56:56 +0000891
892 break;
893 }
894 }
895
896 // Make sure that any given declaration only shows up in the result set once.
David Blaikie82e95a32014-11-19 07:49:47 +0000897 if (!AllDeclsFound.insert(CanonDecl).second)
Douglas Gregor3545ff42009-09-21 16:56:56 +0000898 return;
Douglas Gregorc2cb2e22010-08-27 15:29:55 +0000899
Douglas Gregore412a5a2009-09-23 22:26:46 +0000900 // If the filter is for nested-name-specifiers, then this result starts a
901 // nested-name-specifier.
Douglas Gregora2db7932010-05-26 22:00:08 +0000902 if (AsNestedNameSpecifier) {
Douglas Gregore412a5a2009-09-23 22:26:46 +0000903 R.StartsNestedNameSpecifier = true;
Douglas Gregora2db7932010-05-26 22:00:08 +0000904 R.Priority = CCP_NestedNameSpecifier;
Douglas Gregor50832e02010-09-20 22:39:41 +0000905 } else
906 AdjustResultPriorityForDecl(R);
Douglas Gregorc2cb2e22010-08-27 15:29:55 +0000907
Douglas Gregor5bf52692009-09-22 23:15:58 +0000908 // If this result is supposed to have an informative qualifier, add one.
Douglas Gregore412a5a2009-09-23 22:26:46 +0000909 if (R.QualifierIsInformative && !R.Qualifier &&
910 !R.StartsNestedNameSpecifier) {
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000911 const DeclContext *Ctx = R.Declaration->getDeclContext();
912 if (const NamespaceDecl *Namespace = dyn_cast<NamespaceDecl>(Ctx))
Craig Topperc3ec1492014-05-26 06:22:03 +0000913 R.Qualifier = NestedNameSpecifier::Create(SemaRef.Context, nullptr,
914 Namespace);
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000915 else if (const TagDecl *Tag = dyn_cast<TagDecl>(Ctx))
Craig Topperc3ec1492014-05-26 06:22:03 +0000916 R.Qualifier = NestedNameSpecifier::Create(SemaRef.Context, nullptr,
917 false, SemaRef.Context.getTypeDeclType(Tag).getTypePtr());
Douglas Gregor5bf52692009-09-22 23:15:58 +0000918 else
919 R.QualifierIsInformative = false;
920 }
Douglas Gregore412a5a2009-09-23 22:26:46 +0000921
Douglas Gregor3545ff42009-09-21 16:56:56 +0000922 // Insert this result into the set of results and into the current shadow
923 // map.
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000924 SMap[R.Declaration->getDeclName()].Add(R.Declaration, Results.size());
Douglas Gregor3545ff42009-09-21 16:56:56 +0000925 Results.push_back(R);
Douglas Gregor0212fd72010-09-21 16:06:22 +0000926
927 if (!AsNestedNameSpecifier)
928 MaybeAddConstructorResults(R);
Douglas Gregor3545ff42009-09-21 16:56:56 +0000929}
930
Douglas Gregorc580c522010-01-14 01:09:38 +0000931void ResultBuilder::AddResult(Result R, DeclContext *CurContext,
Douglas Gregor09bbc652010-01-14 15:47:35 +0000932 NamedDecl *Hiding, bool InBaseClass = false) {
Douglas Gregor78a21012010-01-14 16:01:26 +0000933 if (R.Kind != Result::RK_Declaration) {
934 // For non-declaration results, just add the result.
935 Results.push_back(R);
936 return;
937 }
938
Douglas Gregorc580c522010-01-14 01:09:38 +0000939 // Look through using declarations.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000940 if (const UsingShadowDecl *Using = dyn_cast<UsingShadowDecl>(R.Declaration)) {
Douglas Gregor0a0e2b32013-01-31 04:52:16 +0000941 AddResult(Result(Using->getTargetDecl(),
942 getBasePriority(Using->getTargetDecl()),
943 R.Qualifier),
944 CurContext, Hiding);
Douglas Gregorc580c522010-01-14 01:09:38 +0000945 return;
946 }
947
Douglas Gregor6ae4c522010-01-14 03:21:49 +0000948 bool AsNestedNameSpecifier = false;
949 if (!isInterestingDecl(R.Declaration, AsNestedNameSpecifier))
Douglas Gregorc580c522010-01-14 01:09:38 +0000950 return;
951
Douglas Gregor0212fd72010-09-21 16:06:22 +0000952 // C++ constructors are never found by name lookup.
953 if (isa<CXXConstructorDecl>(R.Declaration))
954 return;
955
Douglas Gregorc580c522010-01-14 01:09:38 +0000956 if (Hiding && CheckHiddenResult(R, CurContext, Hiding))
957 return;
Nick Lewyckyc3921482012-04-03 21:44:08 +0000958
Douglas Gregorc580c522010-01-14 01:09:38 +0000959 // Make sure that any given declaration only shows up in the result set once.
David Blaikie82e95a32014-11-19 07:49:47 +0000960 if (!AllDeclsFound.insert(R.Declaration->getCanonicalDecl()).second)
Douglas Gregorc580c522010-01-14 01:09:38 +0000961 return;
962
963 // If the filter is for nested-name-specifiers, then this result starts a
964 // nested-name-specifier.
Douglas Gregora2db7932010-05-26 22:00:08 +0000965 if (AsNestedNameSpecifier) {
Douglas Gregorc580c522010-01-14 01:09:38 +0000966 R.StartsNestedNameSpecifier = true;
Douglas Gregora2db7932010-05-26 22:00:08 +0000967 R.Priority = CCP_NestedNameSpecifier;
968 }
Douglas Gregor09bbc652010-01-14 15:47:35 +0000969 else if (Filter == &ResultBuilder::IsMember && !R.Qualifier && InBaseClass &&
970 isa<CXXRecordDecl>(R.Declaration->getDeclContext()
Sebastian Redl50c68252010-08-31 00:36:30 +0000971 ->getRedeclContext()))
Douglas Gregor09bbc652010-01-14 15:47:35 +0000972 R.QualifierIsInformative = true;
973
Douglas Gregorc580c522010-01-14 01:09:38 +0000974 // If this result is supposed to have an informative qualifier, add one.
975 if (R.QualifierIsInformative && !R.Qualifier &&
976 !R.StartsNestedNameSpecifier) {
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000977 const DeclContext *Ctx = R.Declaration->getDeclContext();
978 if (const NamespaceDecl *Namespace = dyn_cast<NamespaceDecl>(Ctx))
Craig Topperc3ec1492014-05-26 06:22:03 +0000979 R.Qualifier = NestedNameSpecifier::Create(SemaRef.Context, nullptr,
980 Namespace);
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000981 else if (const TagDecl *Tag = dyn_cast<TagDecl>(Ctx))
Craig Topperc3ec1492014-05-26 06:22:03 +0000982 R.Qualifier = NestedNameSpecifier::Create(SemaRef.Context, nullptr, false,
Douglas Gregor6ae4c522010-01-14 03:21:49 +0000983 SemaRef.Context.getTypeDeclType(Tag).getTypePtr());
Douglas Gregorc580c522010-01-14 01:09:38 +0000984 else
985 R.QualifierIsInformative = false;
986 }
987
Douglas Gregora2db7932010-05-26 22:00:08 +0000988 // Adjust the priority if this result comes from a base class.
989 if (InBaseClass)
990 R.Priority += CCD_InBaseClass;
991
Douglas Gregor50832e02010-09-20 22:39:41 +0000992 AdjustResultPriorityForDecl(R);
Douglas Gregor7aa6b222010-05-30 01:49:25 +0000993
Douglas Gregor9be0ed42010-08-26 16:36:48 +0000994 if (HasObjectTypeQualifiers)
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000995 if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(R.Declaration))
Douglas Gregor9be0ed42010-08-26 16:36:48 +0000996 if (Method->isInstance()) {
997 Qualifiers MethodQuals
998 = Qualifiers::fromCVRMask(Method->getTypeQualifiers());
999 if (ObjectTypeQualifiers == MethodQuals)
1000 R.Priority += CCD_ObjectQualifierMatch;
1001 else if (ObjectTypeQualifiers - MethodQuals) {
1002 // The method cannot be invoked, because doing so would drop
1003 // qualifiers.
1004 return;
1005 }
1006 }
1007
Douglas Gregorc580c522010-01-14 01:09:38 +00001008 // Insert this result into the set of results.
1009 Results.push_back(R);
Douglas Gregor0212fd72010-09-21 16:06:22 +00001010
1011 if (!AsNestedNameSpecifier)
1012 MaybeAddConstructorResults(R);
Douglas Gregorc580c522010-01-14 01:09:38 +00001013}
1014
Douglas Gregor78a21012010-01-14 16:01:26 +00001015void ResultBuilder::AddResult(Result R) {
1016 assert(R.Kind != Result::RK_Declaration &&
1017 "Declaration results need more context");
1018 Results.push_back(R);
1019}
1020
Douglas Gregor3545ff42009-09-21 16:56:56 +00001021/// \brief Enter into a new scope.
1022void ResultBuilder::EnterNewScope() {
1023 ShadowMaps.push_back(ShadowMap());
1024}
1025
1026/// \brief Exit from the current scope.
1027void ResultBuilder::ExitScope() {
Douglas Gregor05e7ca32009-12-06 20:23:50 +00001028 for (ShadowMap::iterator E = ShadowMaps.back().begin(),
1029 EEnd = ShadowMaps.back().end();
1030 E != EEnd;
1031 ++E)
1032 E->second.Destroy();
1033
Douglas Gregor3545ff42009-09-21 16:56:56 +00001034 ShadowMaps.pop_back();
1035}
1036
Douglas Gregor9d64c5e2009-09-21 20:51:25 +00001037/// \brief Determines whether this given declaration will be found by
1038/// ordinary name lookup.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001039bool ResultBuilder::IsOrdinaryName(const NamedDecl *ND) const {
Douglas Gregor70febae2010-05-28 00:49:12 +00001040 ND = cast<NamedDecl>(ND->getUnderlyingDecl());
1041
Richard Smith541b38b2013-09-20 01:15:31 +00001042 // If name lookup finds a local extern declaration, then we are in a
1043 // context where it behaves like an ordinary name.
1044 unsigned IDNS = Decl::IDNS_Ordinary | Decl::IDNS_LocalExtern;
David Blaikiebbafb8a2012-03-11 07:00:24 +00001045 if (SemaRef.getLangOpts().CPlusPlus)
Douglas Gregor9858ed52010-06-15 20:26:51 +00001046 IDNS |= Decl::IDNS_Tag | Decl::IDNS_Namespace | Decl::IDNS_Member;
David Blaikiebbafb8a2012-03-11 07:00:24 +00001047 else if (SemaRef.getLangOpts().ObjC1) {
Douglas Gregor05fcf842010-11-02 20:36:02 +00001048 if (isa<ObjCIvarDecl>(ND))
1049 return true;
Douglas Gregor05fcf842010-11-02 20:36:02 +00001050 }
1051
Douglas Gregor9d64c5e2009-09-21 20:51:25 +00001052 return ND->getIdentifierNamespace() & IDNS;
1053}
1054
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001055/// \brief Determines whether this given declaration will be found by
Douglas Gregor70febae2010-05-28 00:49:12 +00001056/// ordinary name lookup but is not a type name.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001057bool ResultBuilder::IsOrdinaryNonTypeName(const NamedDecl *ND) const {
Douglas Gregor70febae2010-05-28 00:49:12 +00001058 ND = cast<NamedDecl>(ND->getUnderlyingDecl());
1059 if (isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND))
1060 return false;
1061
Richard Smith541b38b2013-09-20 01:15:31 +00001062 unsigned IDNS = Decl::IDNS_Ordinary | Decl::IDNS_LocalExtern;
David Blaikiebbafb8a2012-03-11 07:00:24 +00001063 if (SemaRef.getLangOpts().CPlusPlus)
Douglas Gregor9858ed52010-06-15 20:26:51 +00001064 IDNS |= Decl::IDNS_Tag | Decl::IDNS_Namespace | Decl::IDNS_Member;
David Blaikiebbafb8a2012-03-11 07:00:24 +00001065 else if (SemaRef.getLangOpts().ObjC1) {
Douglas Gregor05fcf842010-11-02 20:36:02 +00001066 if (isa<ObjCIvarDecl>(ND))
1067 return true;
Douglas Gregor05fcf842010-11-02 20:36:02 +00001068 }
1069
Douglas Gregor70febae2010-05-28 00:49:12 +00001070 return ND->getIdentifierNamespace() & IDNS;
1071}
1072
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001073bool ResultBuilder::IsIntegralConstantValue(const NamedDecl *ND) const {
Douglas Gregor85b50632010-07-28 21:50:18 +00001074 if (!IsOrdinaryNonTypeName(ND))
1075 return 0;
1076
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001077 if (const ValueDecl *VD = dyn_cast<ValueDecl>(ND->getUnderlyingDecl()))
Douglas Gregor85b50632010-07-28 21:50:18 +00001078 if (VD->getType()->isIntegralOrEnumerationType())
1079 return true;
1080
1081 return false;
1082}
1083
Douglas Gregor70febae2010-05-28 00:49:12 +00001084/// \brief Determines whether this given declaration will be found by
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001085/// ordinary name lookup.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001086bool ResultBuilder::IsOrdinaryNonValueName(const NamedDecl *ND) const {
Douglas Gregor70febae2010-05-28 00:49:12 +00001087 ND = cast<NamedDecl>(ND->getUnderlyingDecl());
1088
Richard Smith541b38b2013-09-20 01:15:31 +00001089 unsigned IDNS = Decl::IDNS_Ordinary | Decl::IDNS_LocalExtern;
David Blaikiebbafb8a2012-03-11 07:00:24 +00001090 if (SemaRef.getLangOpts().CPlusPlus)
John McCalle87beb22010-04-23 18:46:30 +00001091 IDNS |= Decl::IDNS_Tag | Decl::IDNS_Namespace;
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001092
1093 return (ND->getIdentifierNamespace() & IDNS) &&
Douglas Gregor70febae2010-05-28 00:49:12 +00001094 !isa<ValueDecl>(ND) && !isa<FunctionTemplateDecl>(ND) &&
1095 !isa<ObjCPropertyDecl>(ND);
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001096}
1097
Douglas Gregor3545ff42009-09-21 16:56:56 +00001098/// \brief Determines whether the given declaration is suitable as the
1099/// start of a C++ nested-name-specifier, e.g., a class or namespace.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001100bool ResultBuilder::IsNestedNameSpecifier(const NamedDecl *ND) const {
Douglas Gregor3545ff42009-09-21 16:56:56 +00001101 // Allow us to find class templates, too.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001102 if (const ClassTemplateDecl *ClassTemplate = dyn_cast<ClassTemplateDecl>(ND))
Douglas Gregor3545ff42009-09-21 16:56:56 +00001103 ND = ClassTemplate->getTemplatedDecl();
1104
1105 return SemaRef.isAcceptableNestedNameSpecifier(ND);
1106}
1107
1108/// \brief Determines whether the given declaration is an enumeration.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001109bool ResultBuilder::IsEnum(const NamedDecl *ND) const {
Douglas Gregor3545ff42009-09-21 16:56:56 +00001110 return isa<EnumDecl>(ND);
1111}
1112
1113/// \brief Determines whether the given declaration is a class or struct.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001114bool ResultBuilder::IsClassOrStruct(const NamedDecl *ND) const {
Douglas Gregor3545ff42009-09-21 16:56:56 +00001115 // Allow us to find class templates, too.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001116 if (const ClassTemplateDecl *ClassTemplate = dyn_cast<ClassTemplateDecl>(ND))
Douglas Gregor3545ff42009-09-21 16:56:56 +00001117 ND = ClassTemplate->getTemplatedDecl();
Joao Matosdc86f942012-08-31 18:45:21 +00001118
1119 // For purposes of this check, interfaces match too.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001120 if (const RecordDecl *RD = dyn_cast<RecordDecl>(ND))
Abramo Bagnara6150c882010-05-11 21:36:43 +00001121 return RD->getTagKind() == TTK_Class ||
Joao Matosdc86f942012-08-31 18:45:21 +00001122 RD->getTagKind() == TTK_Struct ||
1123 RD->getTagKind() == TTK_Interface;
Douglas Gregor3545ff42009-09-21 16:56:56 +00001124
1125 return false;
1126}
1127
1128/// \brief Determines whether the given declaration is a union.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001129bool ResultBuilder::IsUnion(const NamedDecl *ND) const {
Douglas Gregor3545ff42009-09-21 16:56:56 +00001130 // Allow us to find class templates, too.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001131 if (const ClassTemplateDecl *ClassTemplate = dyn_cast<ClassTemplateDecl>(ND))
Douglas Gregor3545ff42009-09-21 16:56:56 +00001132 ND = ClassTemplate->getTemplatedDecl();
1133
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001134 if (const RecordDecl *RD = dyn_cast<RecordDecl>(ND))
Abramo Bagnara6150c882010-05-11 21:36:43 +00001135 return RD->getTagKind() == TTK_Union;
Douglas Gregor3545ff42009-09-21 16:56:56 +00001136
1137 return false;
1138}
1139
1140/// \brief Determines whether the given declaration is a namespace.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001141bool ResultBuilder::IsNamespace(const NamedDecl *ND) const {
Douglas Gregor3545ff42009-09-21 16:56:56 +00001142 return isa<NamespaceDecl>(ND);
1143}
1144
1145/// \brief Determines whether the given declaration is a namespace or
1146/// namespace alias.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001147bool ResultBuilder::IsNamespaceOrAlias(const NamedDecl *ND) const {
Douglas Gregor3545ff42009-09-21 16:56:56 +00001148 return isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND);
1149}
1150
Douglas Gregor99fe2ad2009-12-11 17:31:05 +00001151/// \brief Determines whether the given declaration is a type.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001152bool ResultBuilder::IsType(const NamedDecl *ND) const {
1153 if (const UsingShadowDecl *Using = dyn_cast<UsingShadowDecl>(ND))
Douglas Gregor99fa2642010-08-24 01:06:58 +00001154 ND = Using->getTargetDecl();
1155
1156 return isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND);
Douglas Gregor3545ff42009-09-21 16:56:56 +00001157}
1158
Douglas Gregor99fe2ad2009-12-11 17:31:05 +00001159/// \brief Determines which members of a class should be visible via
1160/// "." or "->". Only value declarations, nested name specifiers, and
1161/// using declarations thereof should show up.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001162bool ResultBuilder::IsMember(const NamedDecl *ND) const {
1163 if (const UsingShadowDecl *Using = dyn_cast<UsingShadowDecl>(ND))
Douglas Gregor99fe2ad2009-12-11 17:31:05 +00001164 ND = Using->getTargetDecl();
1165
Douglas Gregor70788392009-12-11 18:14:22 +00001166 return isa<ValueDecl>(ND) || isa<FunctionTemplateDecl>(ND) ||
1167 isa<ObjCPropertyDecl>(ND);
Douglas Gregore412a5a2009-09-23 22:26:46 +00001168}
1169
Douglas Gregora817a192010-05-27 23:06:34 +00001170static bool isObjCReceiverType(ASTContext &C, QualType T) {
1171 T = C.getCanonicalType(T);
1172 switch (T->getTypeClass()) {
1173 case Type::ObjCObject:
1174 case Type::ObjCInterface:
1175 case Type::ObjCObjectPointer:
1176 return true;
1177
1178 case Type::Builtin:
1179 switch (cast<BuiltinType>(T)->getKind()) {
1180 case BuiltinType::ObjCId:
1181 case BuiltinType::ObjCClass:
1182 case BuiltinType::ObjCSel:
1183 return true;
1184
1185 default:
1186 break;
1187 }
1188 return false;
1189
1190 default:
1191 break;
1192 }
1193
David Blaikiebbafb8a2012-03-11 07:00:24 +00001194 if (!C.getLangOpts().CPlusPlus)
Douglas Gregora817a192010-05-27 23:06:34 +00001195 return false;
1196
1197 // FIXME: We could perform more analysis here to determine whether a
1198 // particular class type has any conversions to Objective-C types. For now,
1199 // just accept all class types.
1200 return T->isDependentType() || T->isRecordType();
1201}
1202
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001203bool ResultBuilder::IsObjCMessageReceiver(const NamedDecl *ND) const {
Douglas Gregora817a192010-05-27 23:06:34 +00001204 QualType T = getDeclUsageType(SemaRef.Context, ND);
1205 if (T.isNull())
1206 return false;
1207
1208 T = SemaRef.Context.getBaseElementType(T);
1209 return isObjCReceiverType(SemaRef.Context, T);
1210}
1211
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001212bool ResultBuilder::IsObjCMessageReceiverOrLambdaCapture(const NamedDecl *ND) const {
Douglas Gregord8c61782012-02-15 15:34:24 +00001213 if (IsObjCMessageReceiver(ND))
1214 return true;
1215
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001216 const VarDecl *Var = dyn_cast<VarDecl>(ND);
Douglas Gregord8c61782012-02-15 15:34:24 +00001217 if (!Var)
1218 return false;
1219
1220 return Var->hasLocalStorage() && !Var->hasAttr<BlocksAttr>();
1221}
1222
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001223bool ResultBuilder::IsObjCCollection(const NamedDecl *ND) const {
David Blaikiebbafb8a2012-03-11 07:00:24 +00001224 if ((SemaRef.getLangOpts().CPlusPlus && !IsOrdinaryName(ND)) ||
1225 (!SemaRef.getLangOpts().CPlusPlus && !IsOrdinaryNonTypeName(ND)))
Douglas Gregor68762e72010-08-23 21:17:50 +00001226 return false;
1227
1228 QualType T = getDeclUsageType(SemaRef.Context, ND);
1229 if (T.isNull())
1230 return false;
1231
1232 T = SemaRef.Context.getBaseElementType(T);
1233 return T->isObjCObjectType() || T->isObjCObjectPointerType() ||
1234 T->isObjCIdType() ||
David Blaikiebbafb8a2012-03-11 07:00:24 +00001235 (SemaRef.getLangOpts().CPlusPlus && T->isRecordType());
Douglas Gregor68762e72010-08-23 21:17:50 +00001236}
Douglas Gregora817a192010-05-27 23:06:34 +00001237
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001238bool ResultBuilder::IsImpossibleToSatisfy(const NamedDecl *ND) const {
Douglas Gregor0ac41382010-09-23 23:01:17 +00001239 return false;
1240}
1241
James Dennettf1243872012-06-17 05:33:25 +00001242/// \brief Determines whether the given declaration is an Objective-C
Douglas Gregor2b8162b2010-01-14 16:08:12 +00001243/// instance variable.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001244bool ResultBuilder::IsObjCIvar(const NamedDecl *ND) const {
Douglas Gregor2b8162b2010-01-14 16:08:12 +00001245 return isa<ObjCIvarDecl>(ND);
1246}
1247
Douglas Gregorc580c522010-01-14 01:09:38 +00001248namespace {
1249 /// \brief Visible declaration consumer that adds a code-completion result
1250 /// for each visible declaration.
1251 class CodeCompletionDeclConsumer : public VisibleDeclConsumer {
1252 ResultBuilder &Results;
1253 DeclContext *CurContext;
1254
1255 public:
1256 CodeCompletionDeclConsumer(ResultBuilder &Results, DeclContext *CurContext)
1257 : Results(Results), CurContext(CurContext) { }
Craig Toppere14c0f82014-03-12 04:55:44 +00001258
1259 void FoundDecl(NamedDecl *ND, NamedDecl *Hiding, DeclContext *Ctx,
1260 bool InBaseClass) override {
Erik Verbruggen2e657ff2011-10-06 07:27:49 +00001261 bool Accessible = true;
Douglas Gregor03ba1882011-11-03 16:51:37 +00001262 if (Ctx)
1263 Accessible = Results.getSema().IsSimplyAccessible(ND, Ctx);
Craig Topperc3ec1492014-05-26 06:22:03 +00001264
1265 ResultBuilder::Result Result(ND, Results.getBasePriority(ND), nullptr,
1266 false, Accessible);
Erik Verbruggen2e657ff2011-10-06 07:27:49 +00001267 Results.AddResult(Result, CurContext, Hiding, InBaseClass);
Douglas Gregorc580c522010-01-14 01:09:38 +00001268 }
1269 };
1270}
1271
Douglas Gregor3545ff42009-09-21 16:56:56 +00001272/// \brief Add type specifiers for the current language as keyword results.
Douglas Gregorf98e6a22010-01-13 23:51:12 +00001273static void AddTypeSpecifierResults(const LangOptions &LangOpts,
Douglas Gregor3545ff42009-09-21 16:56:56 +00001274 ResultBuilder &Results) {
John McCall276321a2010-08-25 06:19:51 +00001275 typedef CodeCompletionResult Result;
Douglas Gregora2db7932010-05-26 22:00:08 +00001276 Results.AddResult(Result("short", CCP_Type));
1277 Results.AddResult(Result("long", CCP_Type));
1278 Results.AddResult(Result("signed", CCP_Type));
1279 Results.AddResult(Result("unsigned", CCP_Type));
1280 Results.AddResult(Result("void", CCP_Type));
1281 Results.AddResult(Result("char", CCP_Type));
1282 Results.AddResult(Result("int", CCP_Type));
1283 Results.AddResult(Result("float", CCP_Type));
1284 Results.AddResult(Result("double", CCP_Type));
1285 Results.AddResult(Result("enum", CCP_Type));
1286 Results.AddResult(Result("struct", CCP_Type));
1287 Results.AddResult(Result("union", CCP_Type));
1288 Results.AddResult(Result("const", CCP_Type));
1289 Results.AddResult(Result("volatile", CCP_Type));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001290
Douglas Gregor3545ff42009-09-21 16:56:56 +00001291 if (LangOpts.C99) {
1292 // C99-specific
Douglas Gregora2db7932010-05-26 22:00:08 +00001293 Results.AddResult(Result("_Complex", CCP_Type));
1294 Results.AddResult(Result("_Imaginary", CCP_Type));
1295 Results.AddResult(Result("_Bool", CCP_Type));
1296 Results.AddResult(Result("restrict", CCP_Type));
Douglas Gregor3545ff42009-09-21 16:56:56 +00001297 }
1298
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00001299 CodeCompletionBuilder Builder(Results.getAllocator(),
1300 Results.getCodeCompletionTUInfo());
Douglas Gregor3545ff42009-09-21 16:56:56 +00001301 if (LangOpts.CPlusPlus) {
1302 // C++-specific
Douglas Gregor9dcf58a2010-09-20 21:11:48 +00001303 Results.AddResult(Result("bool", CCP_Type +
1304 (LangOpts.ObjC1? CCD_bool_in_ObjC : 0)));
Douglas Gregora2db7932010-05-26 22:00:08 +00001305 Results.AddResult(Result("class", CCP_Type));
1306 Results.AddResult(Result("wchar_t", CCP_Type));
Douglas Gregor3545ff42009-09-21 16:56:56 +00001307
Douglas Gregorf4c33342010-05-28 00:22:41 +00001308 // typename qualified-id
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001309 Builder.AddTypedTextChunk("typename");
1310 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1311 Builder.AddPlaceholderChunk("qualifier");
1312 Builder.AddTextChunk("::");
1313 Builder.AddPlaceholderChunk("name");
1314 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf64acca2010-05-25 21:41:55 +00001315
Richard Smith2bf7fdb2013-01-02 11:42:31 +00001316 if (LangOpts.CPlusPlus11) {
Douglas Gregora2db7932010-05-26 22:00:08 +00001317 Results.AddResult(Result("auto", CCP_Type));
1318 Results.AddResult(Result("char16_t", CCP_Type));
1319 Results.AddResult(Result("char32_t", CCP_Type));
Douglas Gregorf4c33342010-05-28 00:22:41 +00001320
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001321 Builder.AddTypedTextChunk("decltype");
1322 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1323 Builder.AddPlaceholderChunk("expression");
1324 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1325 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor3545ff42009-09-21 16:56:56 +00001326 }
1327 }
1328
1329 // GNU extensions
1330 if (LangOpts.GNUMode) {
1331 // FIXME: Enable when we actually support decimal floating point.
Douglas Gregor78a21012010-01-14 16:01:26 +00001332 // Results.AddResult(Result("_Decimal32"));
1333 // Results.AddResult(Result("_Decimal64"));
1334 // Results.AddResult(Result("_Decimal128"));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001335
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001336 Builder.AddTypedTextChunk("typeof");
1337 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1338 Builder.AddPlaceholderChunk("expression");
1339 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf4c33342010-05-28 00:22:41 +00001340
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001341 Builder.AddTypedTextChunk("typeof");
1342 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1343 Builder.AddPlaceholderChunk("type");
1344 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1345 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor3545ff42009-09-21 16:56:56 +00001346 }
1347}
1348
John McCallfaf5fb42010-08-26 23:41:50 +00001349static void AddStorageSpecifiers(Sema::ParserCompletionContext CCC,
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001350 const LangOptions &LangOpts,
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001351 ResultBuilder &Results) {
John McCall276321a2010-08-25 06:19:51 +00001352 typedef CodeCompletionResult Result;
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001353 // Note: we don't suggest either "auto" or "register", because both
1354 // are pointless as storage specifiers. Elsewhere, we suggest "auto"
1355 // in C++0x as a type specifier.
Douglas Gregor78a21012010-01-14 16:01:26 +00001356 Results.AddResult(Result("extern"));
1357 Results.AddResult(Result("static"));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001358}
1359
John McCallfaf5fb42010-08-26 23:41:50 +00001360static void AddFunctionSpecifiers(Sema::ParserCompletionContext CCC,
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001361 const LangOptions &LangOpts,
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001362 ResultBuilder &Results) {
John McCall276321a2010-08-25 06:19:51 +00001363 typedef CodeCompletionResult Result;
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001364 switch (CCC) {
John McCallfaf5fb42010-08-26 23:41:50 +00001365 case Sema::PCC_Class:
1366 case Sema::PCC_MemberTemplate:
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001367 if (LangOpts.CPlusPlus) {
Douglas Gregor78a21012010-01-14 16:01:26 +00001368 Results.AddResult(Result("explicit"));
1369 Results.AddResult(Result("friend"));
1370 Results.AddResult(Result("mutable"));
1371 Results.AddResult(Result("virtual"));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001372 }
1373 // Fall through
1374
John McCallfaf5fb42010-08-26 23:41:50 +00001375 case Sema::PCC_ObjCInterface:
1376 case Sema::PCC_ObjCImplementation:
1377 case Sema::PCC_Namespace:
1378 case Sema::PCC_Template:
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001379 if (LangOpts.CPlusPlus || LangOpts.C99)
Douglas Gregor78a21012010-01-14 16:01:26 +00001380 Results.AddResult(Result("inline"));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001381 break;
1382
John McCallfaf5fb42010-08-26 23:41:50 +00001383 case Sema::PCC_ObjCInstanceVariableList:
1384 case Sema::PCC_Expression:
1385 case Sema::PCC_Statement:
1386 case Sema::PCC_ForInit:
1387 case Sema::PCC_Condition:
1388 case Sema::PCC_RecoveryInFunction:
1389 case Sema::PCC_Type:
Douglas Gregor5e35d592010-09-14 23:59:36 +00001390 case Sema::PCC_ParenthesizedExpression:
Douglas Gregor80039242011-02-15 20:33:25 +00001391 case Sema::PCC_LocalDeclarationSpecifiers:
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001392 break;
1393 }
1394}
1395
Douglas Gregorf98e6a22010-01-13 23:51:12 +00001396static void AddObjCExpressionResults(ResultBuilder &Results, bool NeedAt);
1397static void AddObjCStatementResults(ResultBuilder &Results, bool NeedAt);
1398static void AddObjCVisibilityResults(const LangOptions &LangOpts,
Douglas Gregor48d46252010-01-13 21:54:15 +00001399 ResultBuilder &Results,
1400 bool NeedAt);
Douglas Gregorf98e6a22010-01-13 23:51:12 +00001401static void AddObjCImplementationResults(const LangOptions &LangOpts,
Douglas Gregorf1934162010-01-13 21:24:21 +00001402 ResultBuilder &Results,
1403 bool NeedAt);
Douglas Gregorf98e6a22010-01-13 23:51:12 +00001404static void AddObjCInterfaceResults(const LangOptions &LangOpts,
Douglas Gregorf1934162010-01-13 21:24:21 +00001405 ResultBuilder &Results,
1406 bool NeedAt);
Douglas Gregorf98e6a22010-01-13 23:51:12 +00001407static void AddObjCTopLevelResults(ResultBuilder &Results, bool NeedAt);
Douglas Gregorf1934162010-01-13 21:24:21 +00001408
Douglas Gregorf4c33342010-05-28 00:22:41 +00001409static void AddTypedefResult(ResultBuilder &Results) {
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00001410 CodeCompletionBuilder Builder(Results.getAllocator(),
1411 Results.getCodeCompletionTUInfo());
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001412 Builder.AddTypedTextChunk("typedef");
1413 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1414 Builder.AddPlaceholderChunk("type");
1415 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1416 Builder.AddPlaceholderChunk("name");
1417 Results.AddResult(CodeCompletionResult(Builder.TakeString()));
Douglas Gregorf4c33342010-05-28 00:22:41 +00001418}
1419
John McCallfaf5fb42010-08-26 23:41:50 +00001420static bool WantTypesInContext(Sema::ParserCompletionContext CCC,
Douglas Gregor70febae2010-05-28 00:49:12 +00001421 const LangOptions &LangOpts) {
Douglas Gregor70febae2010-05-28 00:49:12 +00001422 switch (CCC) {
John McCallfaf5fb42010-08-26 23:41:50 +00001423 case Sema::PCC_Namespace:
1424 case Sema::PCC_Class:
1425 case Sema::PCC_ObjCInstanceVariableList:
1426 case Sema::PCC_Template:
1427 case Sema::PCC_MemberTemplate:
1428 case Sema::PCC_Statement:
1429 case Sema::PCC_RecoveryInFunction:
1430 case Sema::PCC_Type:
Douglas Gregor5e35d592010-09-14 23:59:36 +00001431 case Sema::PCC_ParenthesizedExpression:
Douglas Gregor80039242011-02-15 20:33:25 +00001432 case Sema::PCC_LocalDeclarationSpecifiers:
Douglas Gregor70febae2010-05-28 00:49:12 +00001433 return true;
1434
John McCallfaf5fb42010-08-26 23:41:50 +00001435 case Sema::PCC_Expression:
1436 case Sema::PCC_Condition:
Douglas Gregor5e35d592010-09-14 23:59:36 +00001437 return LangOpts.CPlusPlus;
1438
1439 case Sema::PCC_ObjCInterface:
1440 case Sema::PCC_ObjCImplementation:
Douglas Gregor70febae2010-05-28 00:49:12 +00001441 return false;
1442
John McCallfaf5fb42010-08-26 23:41:50 +00001443 case Sema::PCC_ForInit:
Douglas Gregor5e35d592010-09-14 23:59:36 +00001444 return LangOpts.CPlusPlus || LangOpts.ObjC1 || LangOpts.C99;
Douglas Gregor70febae2010-05-28 00:49:12 +00001445 }
David Blaikie8a40f702012-01-17 06:56:22 +00001446
1447 llvm_unreachable("Invalid ParserCompletionContext!");
Douglas Gregor70febae2010-05-28 00:49:12 +00001448}
1449
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00001450static PrintingPolicy getCompletionPrintingPolicy(const ASTContext &Context,
1451 const Preprocessor &PP) {
1452 PrintingPolicy Policy = Sema::getPrintingPolicy(Context, PP);
Douglas Gregore5c79d52011-10-18 21:20:17 +00001453 Policy.AnonymousTagLocations = false;
1454 Policy.SuppressStrongLifetime = true;
Douglas Gregor2e10cf92011-11-03 00:16:13 +00001455 Policy.SuppressUnwrittenScope = true;
Douglas Gregore5c79d52011-10-18 21:20:17 +00001456 return Policy;
1457}
1458
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00001459/// \brief Retrieve a printing policy suitable for code completion.
1460static PrintingPolicy getCompletionPrintingPolicy(Sema &S) {
1461 return getCompletionPrintingPolicy(S.Context, S.PP);
1462}
1463
Douglas Gregore5c79d52011-10-18 21:20:17 +00001464/// \brief Retrieve the string representation of the given type as a string
1465/// that has the appropriate lifetime for code completion.
1466///
1467/// This routine provides a fast path where we provide constant strings for
1468/// common type names.
1469static const char *GetCompletionTypeString(QualType T,
1470 ASTContext &Context,
1471 const PrintingPolicy &Policy,
1472 CodeCompletionAllocator &Allocator) {
1473 if (!T.getLocalQualifiers()) {
1474 // Built-in type names are constant strings.
1475 if (const BuiltinType *BT = dyn_cast<BuiltinType>(T))
Argyrios Kyrtzidisbbff3da2012-05-05 04:20:28 +00001476 return BT->getNameAsCString(Policy);
Douglas Gregore5c79d52011-10-18 21:20:17 +00001477
1478 // Anonymous tag types are constant strings.
1479 if (const TagType *TagT = dyn_cast<TagType>(T))
1480 if (TagDecl *Tag = TagT->getDecl())
John McCall5ea95772013-03-09 00:54:27 +00001481 if (!Tag->hasNameForLinkage()) {
Douglas Gregore5c79d52011-10-18 21:20:17 +00001482 switch (Tag->getTagKind()) {
1483 case TTK_Struct: return "struct <anonymous>";
Joao Matosdc86f942012-08-31 18:45:21 +00001484 case TTK_Interface: return "__interface <anonymous>";
1485 case TTK_Class: return "class <anonymous>";
Douglas Gregore5c79d52011-10-18 21:20:17 +00001486 case TTK_Union: return "union <anonymous>";
1487 case TTK_Enum: return "enum <anonymous>";
1488 }
1489 }
1490 }
1491
1492 // Slow path: format the type as a string.
1493 std::string Result;
1494 T.getAsStringInternal(Result, Policy);
1495 return Allocator.CopyString(Result);
1496}
1497
Douglas Gregord8c61782012-02-15 15:34:24 +00001498/// \brief Add a completion for "this", if we're in a member function.
1499static void addThisCompletion(Sema &S, ResultBuilder &Results) {
1500 QualType ThisTy = S.getCurrentThisType();
1501 if (ThisTy.isNull())
1502 return;
1503
1504 CodeCompletionAllocator &Allocator = Results.getAllocator();
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00001505 CodeCompletionBuilder Builder(Allocator, Results.getCodeCompletionTUInfo());
Douglas Gregord8c61782012-02-15 15:34:24 +00001506 PrintingPolicy Policy = getCompletionPrintingPolicy(S);
1507 Builder.AddResultTypeChunk(GetCompletionTypeString(ThisTy,
1508 S.Context,
1509 Policy,
1510 Allocator));
1511 Builder.AddTypedTextChunk("this");
Joao Matosdc86f942012-08-31 18:45:21 +00001512 Results.AddResult(CodeCompletionResult(Builder.TakeString()));
Douglas Gregord8c61782012-02-15 15:34:24 +00001513}
1514
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001515/// \brief Add language constructs that show up for "ordinary" names.
John McCallfaf5fb42010-08-26 23:41:50 +00001516static void AddOrdinaryNameResults(Sema::ParserCompletionContext CCC,
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001517 Scope *S,
1518 Sema &SemaRef,
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001519 ResultBuilder &Results) {
Douglas Gregore5c79d52011-10-18 21:20:17 +00001520 CodeCompletionAllocator &Allocator = Results.getAllocator();
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00001521 CodeCompletionBuilder Builder(Allocator, Results.getCodeCompletionTUInfo());
Douglas Gregore5c79d52011-10-18 21:20:17 +00001522 PrintingPolicy Policy = getCompletionPrintingPolicy(SemaRef);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001523
John McCall276321a2010-08-25 06:19:51 +00001524 typedef CodeCompletionResult Result;
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001525 switch (CCC) {
John McCallfaf5fb42010-08-26 23:41:50 +00001526 case Sema::PCC_Namespace:
David Blaikiebbafb8a2012-03-11 07:00:24 +00001527 if (SemaRef.getLangOpts().CPlusPlus) {
Douglas Gregorf4c33342010-05-28 00:22:41 +00001528 if (Results.includeCodePatterns()) {
1529 // namespace <identifier> { declarations }
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001530 Builder.AddTypedTextChunk("namespace");
1531 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1532 Builder.AddPlaceholderChunk("identifier");
1533 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
1534 Builder.AddPlaceholderChunk("declarations");
1535 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
1536 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
1537 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf4c33342010-05-28 00:22:41 +00001538 }
1539
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001540 // namespace identifier = identifier ;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001541 Builder.AddTypedTextChunk("namespace");
1542 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1543 Builder.AddPlaceholderChunk("name");
1544 Builder.AddChunk(CodeCompletionString::CK_Equal);
1545 Builder.AddPlaceholderChunk("namespace");
1546 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001547
1548 // Using directives
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001549 Builder.AddTypedTextChunk("using");
1550 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1551 Builder.AddTextChunk("namespace");
1552 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1553 Builder.AddPlaceholderChunk("identifier");
1554 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001555
1556 // asm(string-literal)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001557 Builder.AddTypedTextChunk("asm");
1558 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1559 Builder.AddPlaceholderChunk("string-literal");
1560 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1561 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001562
Douglas Gregorf4c33342010-05-28 00:22:41 +00001563 if (Results.includeCodePatterns()) {
1564 // Explicit template instantiation
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001565 Builder.AddTypedTextChunk("template");
1566 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1567 Builder.AddPlaceholderChunk("declaration");
1568 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf4c33342010-05-28 00:22:41 +00001569 }
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001570 }
Douglas Gregorf1934162010-01-13 21:24:21 +00001571
David Blaikiebbafb8a2012-03-11 07:00:24 +00001572 if (SemaRef.getLangOpts().ObjC1)
Douglas Gregorf98e6a22010-01-13 23:51:12 +00001573 AddObjCTopLevelResults(Results, true);
Douglas Gregorf1934162010-01-13 21:24:21 +00001574
Douglas Gregorf4c33342010-05-28 00:22:41 +00001575 AddTypedefResult(Results);
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001576 // Fall through
1577
John McCallfaf5fb42010-08-26 23:41:50 +00001578 case Sema::PCC_Class:
David Blaikiebbafb8a2012-03-11 07:00:24 +00001579 if (SemaRef.getLangOpts().CPlusPlus) {
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001580 // Using declaration
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001581 Builder.AddTypedTextChunk("using");
1582 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1583 Builder.AddPlaceholderChunk("qualifier");
1584 Builder.AddTextChunk("::");
1585 Builder.AddPlaceholderChunk("name");
1586 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001587
Douglas Gregorf4c33342010-05-28 00:22:41 +00001588 // using typename qualifier::name (only in a dependent context)
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001589 if (SemaRef.CurContext->isDependentContext()) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001590 Builder.AddTypedTextChunk("using");
1591 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1592 Builder.AddTextChunk("typename");
1593 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1594 Builder.AddPlaceholderChunk("qualifier");
1595 Builder.AddTextChunk("::");
1596 Builder.AddPlaceholderChunk("name");
1597 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001598 }
1599
John McCallfaf5fb42010-08-26 23:41:50 +00001600 if (CCC == Sema::PCC_Class) {
Douglas Gregorf4c33342010-05-28 00:22:41 +00001601 AddTypedefResult(Results);
1602
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001603 // public:
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001604 Builder.AddTypedTextChunk("public");
Douglas Gregor9489cdf2012-04-10 17:56:28 +00001605 if (Results.includeCodePatterns())
1606 Builder.AddChunk(CodeCompletionString::CK_Colon);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001607 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001608
1609 // protected:
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001610 Builder.AddTypedTextChunk("protected");
Douglas Gregor9489cdf2012-04-10 17:56:28 +00001611 if (Results.includeCodePatterns())
1612 Builder.AddChunk(CodeCompletionString::CK_Colon);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001613 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001614
1615 // private:
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001616 Builder.AddTypedTextChunk("private");
Douglas Gregor9489cdf2012-04-10 17:56:28 +00001617 if (Results.includeCodePatterns())
1618 Builder.AddChunk(CodeCompletionString::CK_Colon);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001619 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001620 }
1621 }
1622 // Fall through
1623
John McCallfaf5fb42010-08-26 23:41:50 +00001624 case Sema::PCC_Template:
1625 case Sema::PCC_MemberTemplate:
David Blaikiebbafb8a2012-03-11 07:00:24 +00001626 if (SemaRef.getLangOpts().CPlusPlus && Results.includeCodePatterns()) {
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001627 // template < parameters >
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001628 Builder.AddTypedTextChunk("template");
1629 Builder.AddChunk(CodeCompletionString::CK_LeftAngle);
1630 Builder.AddPlaceholderChunk("parameters");
1631 Builder.AddChunk(CodeCompletionString::CK_RightAngle);
1632 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001633 }
1634
David Blaikiebbafb8a2012-03-11 07:00:24 +00001635 AddStorageSpecifiers(CCC, SemaRef.getLangOpts(), Results);
1636 AddFunctionSpecifiers(CCC, SemaRef.getLangOpts(), Results);
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001637 break;
1638
John McCallfaf5fb42010-08-26 23:41:50 +00001639 case Sema::PCC_ObjCInterface:
David Blaikiebbafb8a2012-03-11 07:00:24 +00001640 AddObjCInterfaceResults(SemaRef.getLangOpts(), Results, true);
1641 AddStorageSpecifiers(CCC, SemaRef.getLangOpts(), Results);
1642 AddFunctionSpecifiers(CCC, SemaRef.getLangOpts(), Results);
Douglas Gregorf1934162010-01-13 21:24:21 +00001643 break;
1644
John McCallfaf5fb42010-08-26 23:41:50 +00001645 case Sema::PCC_ObjCImplementation:
David Blaikiebbafb8a2012-03-11 07:00:24 +00001646 AddObjCImplementationResults(SemaRef.getLangOpts(), Results, true);
1647 AddStorageSpecifiers(CCC, SemaRef.getLangOpts(), Results);
1648 AddFunctionSpecifiers(CCC, SemaRef.getLangOpts(), Results);
Douglas Gregorf1934162010-01-13 21:24:21 +00001649 break;
1650
John McCallfaf5fb42010-08-26 23:41:50 +00001651 case Sema::PCC_ObjCInstanceVariableList:
David Blaikiebbafb8a2012-03-11 07:00:24 +00001652 AddObjCVisibilityResults(SemaRef.getLangOpts(), Results, true);
Douglas Gregor48d46252010-01-13 21:54:15 +00001653 break;
1654
John McCallfaf5fb42010-08-26 23:41:50 +00001655 case Sema::PCC_RecoveryInFunction:
1656 case Sema::PCC_Statement: {
Douglas Gregorf4c33342010-05-28 00:22:41 +00001657 AddTypedefResult(Results);
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001658
David Blaikiebbafb8a2012-03-11 07:00:24 +00001659 if (SemaRef.getLangOpts().CPlusPlus && Results.includeCodePatterns() &&
1660 SemaRef.getLangOpts().CXXExceptions) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001661 Builder.AddTypedTextChunk("try");
1662 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
1663 Builder.AddPlaceholderChunk("statements");
1664 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
1665 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
1666 Builder.AddTextChunk("catch");
1667 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1668 Builder.AddPlaceholderChunk("declaration");
1669 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1670 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
1671 Builder.AddPlaceholderChunk("statements");
1672 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
1673 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
1674 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001675 }
David Blaikiebbafb8a2012-03-11 07:00:24 +00001676 if (SemaRef.getLangOpts().ObjC1)
Douglas Gregorf98e6a22010-01-13 23:51:12 +00001677 AddObjCStatementResults(Results, true);
Douglas Gregorf1934162010-01-13 21:24:21 +00001678
Douglas Gregorf64acca2010-05-25 21:41:55 +00001679 if (Results.includeCodePatterns()) {
1680 // if (condition) { statements }
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001681 Builder.AddTypedTextChunk("if");
1682 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
David Blaikiebbafb8a2012-03-11 07:00:24 +00001683 if (SemaRef.getLangOpts().CPlusPlus)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001684 Builder.AddPlaceholderChunk("condition");
Douglas Gregorf64acca2010-05-25 21:41:55 +00001685 else
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001686 Builder.AddPlaceholderChunk("expression");
1687 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1688 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
1689 Builder.AddPlaceholderChunk("statements");
1690 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
1691 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
1692 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001693
Douglas Gregorf64acca2010-05-25 21:41:55 +00001694 // switch (condition) { }
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001695 Builder.AddTypedTextChunk("switch");
1696 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
David Blaikiebbafb8a2012-03-11 07:00:24 +00001697 if (SemaRef.getLangOpts().CPlusPlus)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001698 Builder.AddPlaceholderChunk("condition");
Douglas Gregorf64acca2010-05-25 21:41:55 +00001699 else
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001700 Builder.AddPlaceholderChunk("expression");
1701 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1702 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
1703 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
1704 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
1705 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf64acca2010-05-25 21:41:55 +00001706 }
1707
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001708 // Switch-specific statements.
John McCallaab3e412010-08-25 08:40:02 +00001709 if (!SemaRef.getCurFunction()->SwitchStack.empty()) {
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001710 // case expression:
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001711 Builder.AddTypedTextChunk("case");
1712 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1713 Builder.AddPlaceholderChunk("expression");
1714 Builder.AddChunk(CodeCompletionString::CK_Colon);
1715 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001716
1717 // default:
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001718 Builder.AddTypedTextChunk("default");
1719 Builder.AddChunk(CodeCompletionString::CK_Colon);
1720 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001721 }
1722
Douglas Gregorf64acca2010-05-25 21:41:55 +00001723 if (Results.includeCodePatterns()) {
1724 /// while (condition) { statements }
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001725 Builder.AddTypedTextChunk("while");
1726 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
David Blaikiebbafb8a2012-03-11 07:00:24 +00001727 if (SemaRef.getLangOpts().CPlusPlus)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001728 Builder.AddPlaceholderChunk("condition");
Douglas Gregorf64acca2010-05-25 21:41:55 +00001729 else
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001730 Builder.AddPlaceholderChunk("expression");
1731 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1732 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
1733 Builder.AddPlaceholderChunk("statements");
1734 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
1735 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
1736 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf64acca2010-05-25 21:41:55 +00001737
1738 // do { statements } while ( expression );
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001739 Builder.AddTypedTextChunk("do");
1740 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
1741 Builder.AddPlaceholderChunk("statements");
1742 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
1743 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
1744 Builder.AddTextChunk("while");
1745 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1746 Builder.AddPlaceholderChunk("expression");
1747 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1748 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001749
Douglas Gregorf64acca2010-05-25 21:41:55 +00001750 // for ( for-init-statement ; condition ; expression ) { statements }
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001751 Builder.AddTypedTextChunk("for");
1752 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
David Blaikiebbafb8a2012-03-11 07:00:24 +00001753 if (SemaRef.getLangOpts().CPlusPlus || SemaRef.getLangOpts().C99)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001754 Builder.AddPlaceholderChunk("init-statement");
Douglas Gregorf64acca2010-05-25 21:41:55 +00001755 else
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001756 Builder.AddPlaceholderChunk("init-expression");
1757 Builder.AddChunk(CodeCompletionString::CK_SemiColon);
1758 Builder.AddPlaceholderChunk("condition");
1759 Builder.AddChunk(CodeCompletionString::CK_SemiColon);
1760 Builder.AddPlaceholderChunk("inc-expression");
1761 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1762 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
1763 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
1764 Builder.AddPlaceholderChunk("statements");
1765 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
1766 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
1767 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf64acca2010-05-25 21:41:55 +00001768 }
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001769
1770 if (S->getContinueParent()) {
1771 // continue ;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001772 Builder.AddTypedTextChunk("continue");
1773 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001774 }
1775
1776 if (S->getBreakParent()) {
1777 // break ;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001778 Builder.AddTypedTextChunk("break");
1779 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001780 }
1781
1782 // "return expression ;" or "return ;", depending on whether we
1783 // know the function is void or not.
1784 bool isVoid = false;
1785 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(SemaRef.CurContext))
Alp Toker314cc812014-01-25 16:55:45 +00001786 isVoid = Function->getReturnType()->isVoidType();
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001787 else if (ObjCMethodDecl *Method
1788 = dyn_cast<ObjCMethodDecl>(SemaRef.CurContext))
Alp Toker314cc812014-01-25 16:55:45 +00001789 isVoid = Method->getReturnType()->isVoidType();
Douglas Gregor9a28e842010-03-01 23:15:13 +00001790 else if (SemaRef.getCurBlock() &&
1791 !SemaRef.getCurBlock()->ReturnType.isNull())
1792 isVoid = SemaRef.getCurBlock()->ReturnType->isVoidType();
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001793 Builder.AddTypedTextChunk("return");
Douglas Gregor44272ca2010-02-18 04:06:48 +00001794 if (!isVoid) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001795 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1796 Builder.AddPlaceholderChunk("expression");
Douglas Gregor44272ca2010-02-18 04:06:48 +00001797 }
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001798 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001799
Douglas Gregorf4c33342010-05-28 00:22:41 +00001800 // goto identifier ;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001801 Builder.AddTypedTextChunk("goto");
1802 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1803 Builder.AddPlaceholderChunk("label");
1804 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001805
Douglas Gregorf4c33342010-05-28 00:22:41 +00001806 // Using directives
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001807 Builder.AddTypedTextChunk("using");
1808 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1809 Builder.AddTextChunk("namespace");
1810 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1811 Builder.AddPlaceholderChunk("identifier");
1812 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001813 }
1814
1815 // Fall through (for statement expressions).
John McCallfaf5fb42010-08-26 23:41:50 +00001816 case Sema::PCC_ForInit:
1817 case Sema::PCC_Condition:
David Blaikiebbafb8a2012-03-11 07:00:24 +00001818 AddStorageSpecifiers(CCC, SemaRef.getLangOpts(), Results);
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001819 // Fall through: conditions and statements can have expressions.
1820
Douglas Gregor5e35d592010-09-14 23:59:36 +00001821 case Sema::PCC_ParenthesizedExpression:
David Blaikiebbafb8a2012-03-11 07:00:24 +00001822 if (SemaRef.getLangOpts().ObjCAutoRefCount &&
John McCall31168b02011-06-15 23:02:42 +00001823 CCC == Sema::PCC_ParenthesizedExpression) {
1824 // (__bridge <type>)<expression>
1825 Builder.AddTypedTextChunk("__bridge");
1826 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1827 Builder.AddPlaceholderChunk("type");
1828 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1829 Builder.AddPlaceholderChunk("expression");
1830 Results.AddResult(Result(Builder.TakeString()));
1831
1832 // (__bridge_transfer <Objective-C type>)<expression>
1833 Builder.AddTypedTextChunk("__bridge_transfer");
1834 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1835 Builder.AddPlaceholderChunk("Objective-C type");
1836 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1837 Builder.AddPlaceholderChunk("expression");
1838 Results.AddResult(Result(Builder.TakeString()));
1839
1840 // (__bridge_retained <CF type>)<expression>
1841 Builder.AddTypedTextChunk("__bridge_retained");
1842 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1843 Builder.AddPlaceholderChunk("CF type");
1844 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1845 Builder.AddPlaceholderChunk("expression");
1846 Results.AddResult(Result(Builder.TakeString()));
1847 }
1848 // Fall through
1849
John McCallfaf5fb42010-08-26 23:41:50 +00001850 case Sema::PCC_Expression: {
David Blaikiebbafb8a2012-03-11 07:00:24 +00001851 if (SemaRef.getLangOpts().CPlusPlus) {
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001852 // 'this', if we're in a non-static member function.
Douglas Gregord8c61782012-02-15 15:34:24 +00001853 addThisCompletion(SemaRef, Results);
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001854
Douglas Gregore5c79d52011-10-18 21:20:17 +00001855 // true
1856 Builder.AddResultTypeChunk("bool");
1857 Builder.AddTypedTextChunk("true");
1858 Results.AddResult(Result(Builder.TakeString()));
1859
1860 // false
1861 Builder.AddResultTypeChunk("bool");
1862 Builder.AddTypedTextChunk("false");
1863 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001864
David Blaikiebbafb8a2012-03-11 07:00:24 +00001865 if (SemaRef.getLangOpts().RTTI) {
Douglas Gregorc05f6572011-04-12 02:47:21 +00001866 // dynamic_cast < type-id > ( expression )
1867 Builder.AddTypedTextChunk("dynamic_cast");
1868 Builder.AddChunk(CodeCompletionString::CK_LeftAngle);
1869 Builder.AddPlaceholderChunk("type");
1870 Builder.AddChunk(CodeCompletionString::CK_RightAngle);
1871 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1872 Builder.AddPlaceholderChunk("expression");
1873 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1874 Results.AddResult(Result(Builder.TakeString()));
1875 }
Douglas Gregorf4c33342010-05-28 00:22:41 +00001876
1877 // static_cast < type-id > ( expression )
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001878 Builder.AddTypedTextChunk("static_cast");
1879 Builder.AddChunk(CodeCompletionString::CK_LeftAngle);
1880 Builder.AddPlaceholderChunk("type");
1881 Builder.AddChunk(CodeCompletionString::CK_RightAngle);
1882 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1883 Builder.AddPlaceholderChunk("expression");
1884 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1885 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001886
Douglas Gregorf4c33342010-05-28 00:22:41 +00001887 // reinterpret_cast < type-id > ( expression )
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001888 Builder.AddTypedTextChunk("reinterpret_cast");
1889 Builder.AddChunk(CodeCompletionString::CK_LeftAngle);
1890 Builder.AddPlaceholderChunk("type");
1891 Builder.AddChunk(CodeCompletionString::CK_RightAngle);
1892 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1893 Builder.AddPlaceholderChunk("expression");
1894 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1895 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001896
Douglas Gregorf4c33342010-05-28 00:22:41 +00001897 // const_cast < type-id > ( expression )
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001898 Builder.AddTypedTextChunk("const_cast");
1899 Builder.AddChunk(CodeCompletionString::CK_LeftAngle);
1900 Builder.AddPlaceholderChunk("type");
1901 Builder.AddChunk(CodeCompletionString::CK_RightAngle);
1902 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1903 Builder.AddPlaceholderChunk("expression");
1904 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1905 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001906
David Blaikiebbafb8a2012-03-11 07:00:24 +00001907 if (SemaRef.getLangOpts().RTTI) {
Douglas Gregorc05f6572011-04-12 02:47:21 +00001908 // typeid ( expression-or-type )
Douglas Gregore5c79d52011-10-18 21:20:17 +00001909 Builder.AddResultTypeChunk("std::type_info");
Douglas Gregorc05f6572011-04-12 02:47:21 +00001910 Builder.AddTypedTextChunk("typeid");
1911 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1912 Builder.AddPlaceholderChunk("expression-or-type");
1913 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1914 Results.AddResult(Result(Builder.TakeString()));
1915 }
1916
Douglas Gregorf4c33342010-05-28 00:22:41 +00001917 // new T ( ... )
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001918 Builder.AddTypedTextChunk("new");
1919 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1920 Builder.AddPlaceholderChunk("type");
1921 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1922 Builder.AddPlaceholderChunk("expressions");
1923 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1924 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001925
Douglas Gregorf4c33342010-05-28 00:22:41 +00001926 // new T [ ] ( ... )
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001927 Builder.AddTypedTextChunk("new");
1928 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1929 Builder.AddPlaceholderChunk("type");
1930 Builder.AddChunk(CodeCompletionString::CK_LeftBracket);
1931 Builder.AddPlaceholderChunk("size");
1932 Builder.AddChunk(CodeCompletionString::CK_RightBracket);
1933 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1934 Builder.AddPlaceholderChunk("expressions");
1935 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1936 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001937
Douglas Gregorf4c33342010-05-28 00:22:41 +00001938 // delete expression
Douglas Gregore5c79d52011-10-18 21:20:17 +00001939 Builder.AddResultTypeChunk("void");
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001940 Builder.AddTypedTextChunk("delete");
1941 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1942 Builder.AddPlaceholderChunk("expression");
1943 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001944
Douglas Gregorf4c33342010-05-28 00:22:41 +00001945 // delete [] expression
Douglas Gregore5c79d52011-10-18 21:20:17 +00001946 Builder.AddResultTypeChunk("void");
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001947 Builder.AddTypedTextChunk("delete");
1948 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1949 Builder.AddChunk(CodeCompletionString::CK_LeftBracket);
1950 Builder.AddChunk(CodeCompletionString::CK_RightBracket);
1951 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1952 Builder.AddPlaceholderChunk("expression");
1953 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001954
David Blaikiebbafb8a2012-03-11 07:00:24 +00001955 if (SemaRef.getLangOpts().CXXExceptions) {
Douglas Gregorc05f6572011-04-12 02:47:21 +00001956 // throw expression
Douglas Gregore5c79d52011-10-18 21:20:17 +00001957 Builder.AddResultTypeChunk("void");
Douglas Gregorc05f6572011-04-12 02:47:21 +00001958 Builder.AddTypedTextChunk("throw");
1959 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1960 Builder.AddPlaceholderChunk("expression");
1961 Results.AddResult(Result(Builder.TakeString()));
1962 }
Douglas Gregor4205fef2011-10-18 16:29:03 +00001963
Douglas Gregora2db7932010-05-26 22:00:08 +00001964 // FIXME: Rethrow?
Douglas Gregor4205fef2011-10-18 16:29:03 +00001965
Richard Smith2bf7fdb2013-01-02 11:42:31 +00001966 if (SemaRef.getLangOpts().CPlusPlus11) {
Douglas Gregor4205fef2011-10-18 16:29:03 +00001967 // nullptr
Douglas Gregore5c79d52011-10-18 21:20:17 +00001968 Builder.AddResultTypeChunk("std::nullptr_t");
Douglas Gregor4205fef2011-10-18 16:29:03 +00001969 Builder.AddTypedTextChunk("nullptr");
1970 Results.AddResult(Result(Builder.TakeString()));
1971
1972 // alignof
Douglas Gregore5c79d52011-10-18 21:20:17 +00001973 Builder.AddResultTypeChunk("size_t");
Douglas Gregor4205fef2011-10-18 16:29:03 +00001974 Builder.AddTypedTextChunk("alignof");
1975 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1976 Builder.AddPlaceholderChunk("type");
1977 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1978 Results.AddResult(Result(Builder.TakeString()));
1979
1980 // noexcept
Douglas Gregore5c79d52011-10-18 21:20:17 +00001981 Builder.AddResultTypeChunk("bool");
Douglas Gregor4205fef2011-10-18 16:29:03 +00001982 Builder.AddTypedTextChunk("noexcept");
1983 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1984 Builder.AddPlaceholderChunk("expression");
1985 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1986 Results.AddResult(Result(Builder.TakeString()));
1987
1988 // sizeof... expression
Douglas Gregore5c79d52011-10-18 21:20:17 +00001989 Builder.AddResultTypeChunk("size_t");
Douglas Gregor4205fef2011-10-18 16:29:03 +00001990 Builder.AddTypedTextChunk("sizeof...");
1991 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1992 Builder.AddPlaceholderChunk("parameter-pack");
1993 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1994 Results.AddResult(Result(Builder.TakeString()));
1995 }
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001996 }
1997
David Blaikiebbafb8a2012-03-11 07:00:24 +00001998 if (SemaRef.getLangOpts().ObjC1) {
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001999 // Add "super", if we're in an Objective-C class with a superclass.
Ted Kremenek305a0a72010-05-31 21:43:10 +00002000 if (ObjCMethodDecl *Method = SemaRef.getCurMethodDecl()) {
2001 // The interface can be NULL.
2002 if (ObjCInterfaceDecl *ID = Method->getClassInterface())
Douglas Gregore5c79d52011-10-18 21:20:17 +00002003 if (ID->getSuperClass()) {
2004 std::string SuperType;
2005 SuperType = ID->getSuperClass()->getNameAsString();
2006 if (Method->isInstanceMethod())
2007 SuperType += " *";
2008
2009 Builder.AddResultTypeChunk(Allocator.CopyString(SuperType));
2010 Builder.AddTypedTextChunk("super");
2011 Results.AddResult(Result(Builder.TakeString()));
2012 }
Ted Kremenek305a0a72010-05-31 21:43:10 +00002013 }
2014
Douglas Gregorf98e6a22010-01-13 23:51:12 +00002015 AddObjCExpressionResults(Results, true);
Douglas Gregor504a6ae2010-01-10 23:08:15 +00002016 }
2017
Jordan Rose58d54722012-06-30 21:33:57 +00002018 if (SemaRef.getLangOpts().C11) {
2019 // _Alignof
2020 Builder.AddResultTypeChunk("size_t");
2021 if (SemaRef.getASTContext().Idents.get("alignof").hasMacroDefinition())
2022 Builder.AddTypedTextChunk("alignof");
2023 else
2024 Builder.AddTypedTextChunk("_Alignof");
2025 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
2026 Builder.AddPlaceholderChunk("type");
2027 Builder.AddChunk(CodeCompletionString::CK_RightParen);
2028 Results.AddResult(Result(Builder.TakeString()));
2029 }
2030
Douglas Gregorf4c33342010-05-28 00:22:41 +00002031 // sizeof expression
Douglas Gregore5c79d52011-10-18 21:20:17 +00002032 Builder.AddResultTypeChunk("size_t");
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002033 Builder.AddTypedTextChunk("sizeof");
2034 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
2035 Builder.AddPlaceholderChunk("expression-or-type");
2036 Builder.AddChunk(CodeCompletionString::CK_RightParen);
2037 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00002038 break;
2039 }
Douglas Gregor99fa2642010-08-24 01:06:58 +00002040
John McCallfaf5fb42010-08-26 23:41:50 +00002041 case Sema::PCC_Type:
Douglas Gregor80039242011-02-15 20:33:25 +00002042 case Sema::PCC_LocalDeclarationSpecifiers:
Douglas Gregor99fa2642010-08-24 01:06:58 +00002043 break;
Douglas Gregor504a6ae2010-01-10 23:08:15 +00002044 }
2045
David Blaikiebbafb8a2012-03-11 07:00:24 +00002046 if (WantTypesInContext(CCC, SemaRef.getLangOpts()))
2047 AddTypeSpecifierResults(SemaRef.getLangOpts(), Results);
Douglas Gregor504a6ae2010-01-10 23:08:15 +00002048
David Blaikiebbafb8a2012-03-11 07:00:24 +00002049 if (SemaRef.getLangOpts().CPlusPlus && CCC != Sema::PCC_Type)
Douglas Gregor78a21012010-01-14 16:01:26 +00002050 Results.AddResult(Result("operator"));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00002051}
2052
Douglas Gregorb3fa9192009-12-18 18:53:37 +00002053/// \brief If the given declaration has an associated type, add it as a result
2054/// type chunk.
2055static void AddResultTypeChunk(ASTContext &Context,
Douglas Gregor75acd922011-09-27 23:30:47 +00002056 const PrintingPolicy &Policy,
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002057 const NamedDecl *ND,
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002058 CodeCompletionBuilder &Result) {
Douglas Gregorb3fa9192009-12-18 18:53:37 +00002059 if (!ND)
2060 return;
Douglas Gregor0212fd72010-09-21 16:06:22 +00002061
2062 // Skip constructors and conversion functions, which have their return types
2063 // built into their names.
2064 if (isa<CXXConstructorDecl>(ND) || isa<CXXConversionDecl>(ND))
2065 return;
2066
Douglas Gregorb3fa9192009-12-18 18:53:37 +00002067 // Determine the type of the declaration (if it has a type).
Alp Tokera2794f92014-01-22 07:29:52 +00002068 QualType T;
2069 if (const FunctionDecl *Function = ND->getAsFunction())
Alp Toker314cc812014-01-25 16:55:45 +00002070 T = Function->getReturnType();
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002071 else if (const ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(ND))
Alp Toker314cc812014-01-25 16:55:45 +00002072 T = Method->getReturnType();
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002073 else if (const EnumConstantDecl *Enumerator = dyn_cast<EnumConstantDecl>(ND))
Douglas Gregorb3fa9192009-12-18 18:53:37 +00002074 T = Context.getTypeDeclType(cast<TypeDecl>(Enumerator->getDeclContext()));
2075 else if (isa<UnresolvedUsingValueDecl>(ND)) {
2076 /* Do nothing: ignore unresolved using declarations*/
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002077 } else if (const ValueDecl *Value = dyn_cast<ValueDecl>(ND)) {
Douglas Gregorb3fa9192009-12-18 18:53:37 +00002078 T = Value->getType();
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002079 } else if (const ObjCPropertyDecl *Property = dyn_cast<ObjCPropertyDecl>(ND))
Douglas Gregorb3fa9192009-12-18 18:53:37 +00002080 T = Property->getType();
2081
2082 if (T.isNull() || Context.hasSameType(T, Context.DependentTy))
2083 return;
2084
Douglas Gregor75acd922011-09-27 23:30:47 +00002085 Result.AddResultTypeChunk(GetCompletionTypeString(T, Context, Policy,
Douglas Gregor304f9b02011-02-01 21:15:40 +00002086 Result.getAllocator()));
Douglas Gregorb3fa9192009-12-18 18:53:37 +00002087}
2088
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002089static void MaybeAddSentinel(ASTContext &Context,
2090 const NamedDecl *FunctionOrMethod,
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002091 CodeCompletionBuilder &Result) {
Douglas Gregordbb71db2010-08-23 23:51:41 +00002092 if (SentinelAttr *Sentinel = FunctionOrMethod->getAttr<SentinelAttr>())
2093 if (Sentinel->getSentinel() == 0) {
David Blaikiebbafb8a2012-03-11 07:00:24 +00002094 if (Context.getLangOpts().ObjC1 &&
Douglas Gregordbb71db2010-08-23 23:51:41 +00002095 Context.Idents.get("nil").hasMacroDefinition())
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002096 Result.AddTextChunk(", nil");
Douglas Gregordbb71db2010-08-23 23:51:41 +00002097 else if (Context.Idents.get("NULL").hasMacroDefinition())
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002098 Result.AddTextChunk(", NULL");
Douglas Gregordbb71db2010-08-23 23:51:41 +00002099 else
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002100 Result.AddTextChunk(", (void*)0");
Douglas Gregordbb71db2010-08-23 23:51:41 +00002101 }
2102}
2103
Douglas Gregor8f08d742011-07-30 07:55:26 +00002104static std::string formatObjCParamQualifiers(unsigned ObjCQuals) {
2105 std::string Result;
2106 if (ObjCQuals & Decl::OBJC_TQ_In)
Douglas Gregor407d1f92011-11-09 02:13:45 +00002107 Result += "in ";
Douglas Gregor8f08d742011-07-30 07:55:26 +00002108 else if (ObjCQuals & Decl::OBJC_TQ_Inout)
Douglas Gregor407d1f92011-11-09 02:13:45 +00002109 Result += "inout ";
Douglas Gregor8f08d742011-07-30 07:55:26 +00002110 else if (ObjCQuals & Decl::OBJC_TQ_Out)
Douglas Gregor407d1f92011-11-09 02:13:45 +00002111 Result += "out ";
Douglas Gregor8f08d742011-07-30 07:55:26 +00002112 if (ObjCQuals & Decl::OBJC_TQ_Bycopy)
Douglas Gregor407d1f92011-11-09 02:13:45 +00002113 Result += "bycopy ";
Douglas Gregor8f08d742011-07-30 07:55:26 +00002114 else if (ObjCQuals & Decl::OBJC_TQ_Byref)
Douglas Gregor407d1f92011-11-09 02:13:45 +00002115 Result += "byref ";
Douglas Gregor8f08d742011-07-30 07:55:26 +00002116 if (ObjCQuals & Decl::OBJC_TQ_Oneway)
Douglas Gregor407d1f92011-11-09 02:13:45 +00002117 Result += "oneway ";
Douglas Gregor8f08d742011-07-30 07:55:26 +00002118 return Result;
2119}
2120
Douglas Gregore90dd002010-08-24 16:15:59 +00002121static std::string FormatFunctionParameter(ASTContext &Context,
Douglas Gregor75acd922011-09-27 23:30:47 +00002122 const PrintingPolicy &Policy,
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002123 const ParmVarDecl *Param,
Douglas Gregord793e7c2011-10-18 04:23:19 +00002124 bool SuppressName = false,
2125 bool SuppressBlock = false) {
Douglas Gregore90dd002010-08-24 16:15:59 +00002126 bool ObjCMethodParam = isa<ObjCMethodDecl>(Param->getDeclContext());
2127 if (Param->getType()->isDependentType() ||
2128 !Param->getType()->isBlockPointerType()) {
2129 // The argument for a dependent or non-block parameter is a placeholder
2130 // containing that parameter's type.
2131 std::string Result;
2132
Douglas Gregor981a0c42010-08-29 19:47:46 +00002133 if (Param->getIdentifier() && !ObjCMethodParam && !SuppressName)
Douglas Gregore90dd002010-08-24 16:15:59 +00002134 Result = Param->getIdentifier()->getName();
2135
John McCall31168b02011-06-15 23:02:42 +00002136 Param->getType().getAsStringInternal(Result, Policy);
Douglas Gregore90dd002010-08-24 16:15:59 +00002137
2138 if (ObjCMethodParam) {
Douglas Gregor8f08d742011-07-30 07:55:26 +00002139 Result = "(" + formatObjCParamQualifiers(Param->getObjCDeclQualifier())
2140 + Result + ")";
Douglas Gregor981a0c42010-08-29 19:47:46 +00002141 if (Param->getIdentifier() && !SuppressName)
Douglas Gregore90dd002010-08-24 16:15:59 +00002142 Result += Param->getIdentifier()->getName();
2143 }
2144 return Result;
2145 }
2146
2147 // The argument for a block pointer parameter is a block literal with
2148 // the appropriate type.
David Blaikie6adc78e2013-02-18 22:06:02 +00002149 FunctionTypeLoc Block;
2150 FunctionProtoTypeLoc BlockProto;
Douglas Gregore90dd002010-08-24 16:15:59 +00002151 TypeLoc TL;
2152 if (TypeSourceInfo *TSInfo = Param->getTypeSourceInfo()) {
2153 TL = TSInfo->getTypeLoc().getUnqualifiedLoc();
2154 while (true) {
2155 // Look through typedefs.
Douglas Gregord793e7c2011-10-18 04:23:19 +00002156 if (!SuppressBlock) {
David Blaikie6adc78e2013-02-18 22:06:02 +00002157 if (TypedefTypeLoc TypedefTL = TL.getAs<TypedefTypeLoc>()) {
2158 if (TypeSourceInfo *InnerTSInfo =
2159 TypedefTL.getTypedefNameDecl()->getTypeSourceInfo()) {
Douglas Gregord793e7c2011-10-18 04:23:19 +00002160 TL = InnerTSInfo->getTypeLoc().getUnqualifiedLoc();
2161 continue;
2162 }
2163 }
2164
2165 // Look through qualified types
David Blaikie6adc78e2013-02-18 22:06:02 +00002166 if (QualifiedTypeLoc QualifiedTL = TL.getAs<QualifiedTypeLoc>()) {
2167 TL = QualifiedTL.getUnqualifiedLoc();
Douglas Gregore90dd002010-08-24 16:15:59 +00002168 continue;
2169 }
2170 }
2171
Douglas Gregore90dd002010-08-24 16:15:59 +00002172 // Try to get the function prototype behind the block pointer type,
2173 // then we're done.
David Blaikie6adc78e2013-02-18 22:06:02 +00002174 if (BlockPointerTypeLoc BlockPtr = TL.getAs<BlockPointerTypeLoc>()) {
2175 TL = BlockPtr.getPointeeLoc().IgnoreParens();
2176 Block = TL.getAs<FunctionTypeLoc>();
2177 BlockProto = TL.getAs<FunctionProtoTypeLoc>();
Douglas Gregore90dd002010-08-24 16:15:59 +00002178 }
2179 break;
2180 }
2181 }
2182
2183 if (!Block) {
2184 // We were unable to find a FunctionProtoTypeLoc with parameter names
2185 // for the block; just use the parameter type as a placeholder.
2186 std::string Result;
Douglas Gregord793e7c2011-10-18 04:23:19 +00002187 if (!ObjCMethodParam && Param->getIdentifier())
2188 Result = Param->getIdentifier()->getName();
2189
John McCall31168b02011-06-15 23:02:42 +00002190 Param->getType().getUnqualifiedType().getAsStringInternal(Result, Policy);
Douglas Gregore90dd002010-08-24 16:15:59 +00002191
2192 if (ObjCMethodParam) {
Douglas Gregor8f08d742011-07-30 07:55:26 +00002193 Result = "(" + formatObjCParamQualifiers(Param->getObjCDeclQualifier())
2194 + Result + ")";
Douglas Gregore90dd002010-08-24 16:15:59 +00002195 if (Param->getIdentifier())
2196 Result += Param->getIdentifier()->getName();
2197 }
2198
2199 return Result;
2200 }
Douglas Gregord793e7c2011-10-18 04:23:19 +00002201
Douglas Gregore90dd002010-08-24 16:15:59 +00002202 // We have the function prototype behind the block pointer type, as it was
2203 // written in the source.
Douglas Gregor67da50e2010-09-08 22:47:51 +00002204 std::string Result;
Alp Toker314cc812014-01-25 16:55:45 +00002205 QualType ResultType = Block.getTypePtr()->getReturnType();
Douglas Gregord793e7c2011-10-18 04:23:19 +00002206 if (!ResultType->isVoidType() || SuppressBlock)
John McCall31168b02011-06-15 23:02:42 +00002207 ResultType.getAsStringInternal(Result, Policy);
Douglas Gregord793e7c2011-10-18 04:23:19 +00002208
2209 // Format the parameter list.
2210 std::string Params;
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00002211 if (!BlockProto || Block.getNumParams() == 0) {
David Blaikie6adc78e2013-02-18 22:06:02 +00002212 if (BlockProto && BlockProto.getTypePtr()->isVariadic())
Douglas Gregord793e7c2011-10-18 04:23:19 +00002213 Params = "(...)";
Douglas Gregoraf25cfa2010-10-02 23:49:58 +00002214 else
Douglas Gregord793e7c2011-10-18 04:23:19 +00002215 Params = "(void)";
Douglas Gregor67da50e2010-09-08 22:47:51 +00002216 } else {
Douglas Gregord793e7c2011-10-18 04:23:19 +00002217 Params += "(";
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00002218 for (unsigned I = 0, N = Block.getNumParams(); I != N; ++I) {
Douglas Gregor67da50e2010-09-08 22:47:51 +00002219 if (I)
Douglas Gregord793e7c2011-10-18 04:23:19 +00002220 Params += ", ";
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00002221 Params += FormatFunctionParameter(Context, Policy, Block.getParam(I),
2222 /*SuppressName=*/false,
Douglas Gregord793e7c2011-10-18 04:23:19 +00002223 /*SuppressBlock=*/true);
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00002224
David Blaikie6adc78e2013-02-18 22:06:02 +00002225 if (I == N - 1 && BlockProto.getTypePtr()->isVariadic())
Douglas Gregord793e7c2011-10-18 04:23:19 +00002226 Params += ", ...";
Douglas Gregor67da50e2010-09-08 22:47:51 +00002227 }
Douglas Gregord793e7c2011-10-18 04:23:19 +00002228 Params += ")";
Douglas Gregor400f5972010-08-31 05:13:43 +00002229 }
Douglas Gregor67da50e2010-09-08 22:47:51 +00002230
Douglas Gregord793e7c2011-10-18 04:23:19 +00002231 if (SuppressBlock) {
2232 // Format as a parameter.
2233 Result = Result + " (^";
2234 if (Param->getIdentifier())
2235 Result += Param->getIdentifier()->getName();
2236 Result += ")";
2237 Result += Params;
2238 } else {
2239 // Format as a block literal argument.
2240 Result = '^' + Result;
2241 Result += Params;
2242
2243 if (Param->getIdentifier())
2244 Result += Param->getIdentifier()->getName();
2245 }
2246
Douglas Gregore90dd002010-08-24 16:15:59 +00002247 return Result;
2248}
2249
Douglas Gregor3545ff42009-09-21 16:56:56 +00002250/// \brief Add function parameter chunks to the given code completion string.
2251static void AddFunctionParameterChunks(ASTContext &Context,
Douglas Gregor75acd922011-09-27 23:30:47 +00002252 const PrintingPolicy &Policy,
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002253 const FunctionDecl *Function,
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002254 CodeCompletionBuilder &Result,
2255 unsigned Start = 0,
2256 bool InOptional = false) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002257 bool FirstParameter = true;
Douglas Gregor9eb77012009-11-07 00:00:49 +00002258
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002259 for (unsigned P = Start, N = Function->getNumParams(); P != N; ++P) {
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002260 const ParmVarDecl *Param = Function->getParamDecl(P);
Douglas Gregor3545ff42009-09-21 16:56:56 +00002261
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002262 if (Param->hasDefaultArg() && !InOptional) {
Douglas Gregor3545ff42009-09-21 16:56:56 +00002263 // When we see an optional default argument, put that argument and
2264 // the remaining default arguments into a new, optional string.
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00002265 CodeCompletionBuilder Opt(Result.getAllocator(),
2266 Result.getCodeCompletionTUInfo());
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002267 if (!FirstParameter)
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002268 Opt.AddChunk(CodeCompletionString::CK_Comma);
Douglas Gregor75acd922011-09-27 23:30:47 +00002269 AddFunctionParameterChunks(Context, Policy, Function, Opt, P, true);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002270 Result.AddOptionalChunk(Opt.TakeString());
2271 break;
Douglas Gregor3545ff42009-09-21 16:56:56 +00002272 }
2273
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002274 if (FirstParameter)
2275 FirstParameter = false;
2276 else
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002277 Result.AddChunk(CodeCompletionString::CK_Comma);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002278
2279 InOptional = false;
Douglas Gregor3545ff42009-09-21 16:56:56 +00002280
2281 // Format the placeholder string.
Douglas Gregor75acd922011-09-27 23:30:47 +00002282 std::string PlaceholderStr = FormatFunctionParameter(Context, Policy,
2283 Param);
Douglas Gregore90dd002010-08-24 16:15:59 +00002284
Douglas Gregor400f5972010-08-31 05:13:43 +00002285 if (Function->isVariadic() && P == N - 1)
2286 PlaceholderStr += ", ...";
2287
Douglas Gregor3545ff42009-09-21 16:56:56 +00002288 // Add the placeholder string.
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002289 Result.AddPlaceholderChunk(
2290 Result.getAllocator().CopyString(PlaceholderStr));
Douglas Gregor3545ff42009-09-21 16:56:56 +00002291 }
Douglas Gregorba449032009-09-22 21:42:17 +00002292
2293 if (const FunctionProtoType *Proto
2294 = Function->getType()->getAs<FunctionProtoType>())
Douglas Gregordbb71db2010-08-23 23:51:41 +00002295 if (Proto->isVariadic()) {
Alp Toker9cacbab2014-01-20 20:26:09 +00002296 if (Proto->getNumParams() == 0)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002297 Result.AddPlaceholderChunk("...");
Douglas Gregordbb71db2010-08-23 23:51:41 +00002298
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002299 MaybeAddSentinel(Context, Function, Result);
Douglas Gregordbb71db2010-08-23 23:51:41 +00002300 }
Douglas Gregor3545ff42009-09-21 16:56:56 +00002301}
2302
2303/// \brief Add template parameter chunks to the given code completion string.
2304static void AddTemplateParameterChunks(ASTContext &Context,
Douglas Gregor75acd922011-09-27 23:30:47 +00002305 const PrintingPolicy &Policy,
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002306 const TemplateDecl *Template,
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002307 CodeCompletionBuilder &Result,
2308 unsigned MaxParameters = 0,
2309 unsigned Start = 0,
2310 bool InDefaultArg = false) {
Douglas Gregor3545ff42009-09-21 16:56:56 +00002311 bool FirstParameter = true;
2312
2313 TemplateParameterList *Params = Template->getTemplateParameters();
2314 TemplateParameterList::iterator PEnd = Params->end();
2315 if (MaxParameters)
2316 PEnd = Params->begin() + MaxParameters;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002317 for (TemplateParameterList::iterator P = Params->begin() + Start;
2318 P != PEnd; ++P) {
Douglas Gregor3545ff42009-09-21 16:56:56 +00002319 bool HasDefaultArg = false;
2320 std::string PlaceholderStr;
2321 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(*P)) {
2322 if (TTP->wasDeclaredWithTypename())
2323 PlaceholderStr = "typename";
2324 else
2325 PlaceholderStr = "class";
2326
2327 if (TTP->getIdentifier()) {
2328 PlaceholderStr += ' ';
2329 PlaceholderStr += TTP->getIdentifier()->getName();
2330 }
2331
2332 HasDefaultArg = TTP->hasDefaultArgument();
2333 } else if (NonTypeTemplateParmDecl *NTTP
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002334 = dyn_cast<NonTypeTemplateParmDecl>(*P)) {
Douglas Gregor3545ff42009-09-21 16:56:56 +00002335 if (NTTP->getIdentifier())
2336 PlaceholderStr = NTTP->getIdentifier()->getName();
John McCall31168b02011-06-15 23:02:42 +00002337 NTTP->getType().getAsStringInternal(PlaceholderStr, Policy);
Douglas Gregor3545ff42009-09-21 16:56:56 +00002338 HasDefaultArg = NTTP->hasDefaultArgument();
2339 } else {
2340 assert(isa<TemplateTemplateParmDecl>(*P));
2341 TemplateTemplateParmDecl *TTP = cast<TemplateTemplateParmDecl>(*P);
2342
2343 // Since putting the template argument list into the placeholder would
2344 // be very, very long, we just use an abbreviation.
2345 PlaceholderStr = "template<...> class";
2346 if (TTP->getIdentifier()) {
2347 PlaceholderStr += ' ';
2348 PlaceholderStr += TTP->getIdentifier()->getName();
2349 }
2350
2351 HasDefaultArg = TTP->hasDefaultArgument();
2352 }
2353
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002354 if (HasDefaultArg && !InDefaultArg) {
Douglas Gregor3545ff42009-09-21 16:56:56 +00002355 // When we see an optional default argument, put that argument and
2356 // the remaining default arguments into a new, optional string.
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00002357 CodeCompletionBuilder Opt(Result.getAllocator(),
2358 Result.getCodeCompletionTUInfo());
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002359 if (!FirstParameter)
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002360 Opt.AddChunk(CodeCompletionString::CK_Comma);
Douglas Gregor75acd922011-09-27 23:30:47 +00002361 AddTemplateParameterChunks(Context, Policy, Template, Opt, MaxParameters,
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002362 P - Params->begin(), true);
2363 Result.AddOptionalChunk(Opt.TakeString());
2364 break;
Douglas Gregor3545ff42009-09-21 16:56:56 +00002365 }
2366
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002367 InDefaultArg = false;
2368
Douglas Gregor3545ff42009-09-21 16:56:56 +00002369 if (FirstParameter)
2370 FirstParameter = false;
2371 else
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002372 Result.AddChunk(CodeCompletionString::CK_Comma);
Douglas Gregor3545ff42009-09-21 16:56:56 +00002373
2374 // Add the placeholder string.
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002375 Result.AddPlaceholderChunk(
2376 Result.getAllocator().CopyString(PlaceholderStr));
Douglas Gregor3545ff42009-09-21 16:56:56 +00002377 }
2378}
2379
Douglas Gregorf2510672009-09-21 19:57:38 +00002380/// \brief Add a qualifier to the given code-completion string, if the
2381/// provided nested-name-specifier is non-NULL.
Douglas Gregor0f622362009-12-11 18:44:16 +00002382static void
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002383AddQualifierToCompletionString(CodeCompletionBuilder &Result,
Douglas Gregor0f622362009-12-11 18:44:16 +00002384 NestedNameSpecifier *Qualifier,
2385 bool QualifierIsInformative,
Douglas Gregor75acd922011-09-27 23:30:47 +00002386 ASTContext &Context,
2387 const PrintingPolicy &Policy) {
Douglas Gregorf2510672009-09-21 19:57:38 +00002388 if (!Qualifier)
2389 return;
2390
2391 std::string PrintedNNS;
2392 {
2393 llvm::raw_string_ostream OS(PrintedNNS);
Douglas Gregor75acd922011-09-27 23:30:47 +00002394 Qualifier->print(OS, Policy);
Douglas Gregorf2510672009-09-21 19:57:38 +00002395 }
Douglas Gregor5bf52692009-09-22 23:15:58 +00002396 if (QualifierIsInformative)
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002397 Result.AddInformativeChunk(Result.getAllocator().CopyString(PrintedNNS));
Douglas Gregor5bf52692009-09-22 23:15:58 +00002398 else
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002399 Result.AddTextChunk(Result.getAllocator().CopyString(PrintedNNS));
Douglas Gregorf2510672009-09-21 19:57:38 +00002400}
2401
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002402static void
2403AddFunctionTypeQualsToCompletionString(CodeCompletionBuilder &Result,
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002404 const FunctionDecl *Function) {
Douglas Gregor0f622362009-12-11 18:44:16 +00002405 const FunctionProtoType *Proto
2406 = Function->getType()->getAs<FunctionProtoType>();
2407 if (!Proto || !Proto->getTypeQuals())
2408 return;
2409
Douglas Gregor304f9b02011-02-01 21:15:40 +00002410 // FIXME: Add ref-qualifier!
2411
2412 // Handle single qualifiers without copying
2413 if (Proto->getTypeQuals() == Qualifiers::Const) {
2414 Result.AddInformativeChunk(" const");
2415 return;
2416 }
2417
2418 if (Proto->getTypeQuals() == Qualifiers::Volatile) {
2419 Result.AddInformativeChunk(" volatile");
2420 return;
2421 }
2422
2423 if (Proto->getTypeQuals() == Qualifiers::Restrict) {
2424 Result.AddInformativeChunk(" restrict");
2425 return;
2426 }
2427
2428 // Handle multiple qualifiers.
Douglas Gregor0f622362009-12-11 18:44:16 +00002429 std::string QualsStr;
David Blaikief5697e52012-08-10 00:55:35 +00002430 if (Proto->isConst())
Douglas Gregor0f622362009-12-11 18:44:16 +00002431 QualsStr += " const";
David Blaikief5697e52012-08-10 00:55:35 +00002432 if (Proto->isVolatile())
Douglas Gregor0f622362009-12-11 18:44:16 +00002433 QualsStr += " volatile";
David Blaikief5697e52012-08-10 00:55:35 +00002434 if (Proto->isRestrict())
Douglas Gregor0f622362009-12-11 18:44:16 +00002435 QualsStr += " restrict";
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002436 Result.AddInformativeChunk(Result.getAllocator().CopyString(QualsStr));
Douglas Gregor0f622362009-12-11 18:44:16 +00002437}
2438
Douglas Gregor0212fd72010-09-21 16:06:22 +00002439/// \brief Add the name of the given declaration
Douglas Gregor75acd922011-09-27 23:30:47 +00002440static void AddTypedNameChunk(ASTContext &Context, const PrintingPolicy &Policy,
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002441 const NamedDecl *ND,
2442 CodeCompletionBuilder &Result) {
Douglas Gregor0212fd72010-09-21 16:06:22 +00002443 DeclarationName Name = ND->getDeclName();
2444 if (!Name)
2445 return;
2446
2447 switch (Name.getNameKind()) {
Douglas Gregor304f9b02011-02-01 21:15:40 +00002448 case DeclarationName::CXXOperatorName: {
Craig Topperc3ec1492014-05-26 06:22:03 +00002449 const char *OperatorName = nullptr;
Douglas Gregor304f9b02011-02-01 21:15:40 +00002450 switch (Name.getCXXOverloadedOperator()) {
2451 case OO_None:
2452 case OO_Conditional:
2453 case NUM_OVERLOADED_OPERATORS:
2454 OperatorName = "operator";
2455 break;
2456
2457#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
2458 case OO_##Name: OperatorName = "operator" Spelling; break;
2459#define OVERLOADED_OPERATOR_MULTI(Name,Spelling,Unary,Binary,MemberOnly)
2460#include "clang/Basic/OperatorKinds.def"
2461
2462 case OO_New: OperatorName = "operator new"; break;
2463 case OO_Delete: OperatorName = "operator delete"; break;
2464 case OO_Array_New: OperatorName = "operator new[]"; break;
2465 case OO_Array_Delete: OperatorName = "operator delete[]"; break;
2466 case OO_Call: OperatorName = "operator()"; break;
2467 case OO_Subscript: OperatorName = "operator[]"; break;
2468 }
2469 Result.AddTypedTextChunk(OperatorName);
2470 break;
2471 }
2472
Douglas Gregor0212fd72010-09-21 16:06:22 +00002473 case DeclarationName::Identifier:
2474 case DeclarationName::CXXConversionFunctionName:
Douglas Gregor0212fd72010-09-21 16:06:22 +00002475 case DeclarationName::CXXDestructorName:
2476 case DeclarationName::CXXLiteralOperatorName:
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002477 Result.AddTypedTextChunk(
2478 Result.getAllocator().CopyString(ND->getNameAsString()));
Douglas Gregor0212fd72010-09-21 16:06:22 +00002479 break;
2480
2481 case DeclarationName::CXXUsingDirective:
2482 case DeclarationName::ObjCZeroArgSelector:
2483 case DeclarationName::ObjCOneArgSelector:
2484 case DeclarationName::ObjCMultiArgSelector:
2485 break;
2486
2487 case DeclarationName::CXXConstructorName: {
Craig Topperc3ec1492014-05-26 06:22:03 +00002488 CXXRecordDecl *Record = nullptr;
Douglas Gregor0212fd72010-09-21 16:06:22 +00002489 QualType Ty = Name.getCXXNameType();
2490 if (const RecordType *RecordTy = Ty->getAs<RecordType>())
2491 Record = cast<CXXRecordDecl>(RecordTy->getDecl());
2492 else if (const InjectedClassNameType *InjectedTy
2493 = Ty->getAs<InjectedClassNameType>())
2494 Record = InjectedTy->getDecl();
2495 else {
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002496 Result.AddTypedTextChunk(
2497 Result.getAllocator().CopyString(ND->getNameAsString()));
Douglas Gregor0212fd72010-09-21 16:06:22 +00002498 break;
2499 }
2500
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002501 Result.AddTypedTextChunk(
2502 Result.getAllocator().CopyString(Record->getNameAsString()));
Douglas Gregor0212fd72010-09-21 16:06:22 +00002503 if (ClassTemplateDecl *Template = Record->getDescribedClassTemplate()) {
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002504 Result.AddChunk(CodeCompletionString::CK_LeftAngle);
Douglas Gregor75acd922011-09-27 23:30:47 +00002505 AddTemplateParameterChunks(Context, Policy, Template, Result);
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002506 Result.AddChunk(CodeCompletionString::CK_RightAngle);
Douglas Gregor0212fd72010-09-21 16:06:22 +00002507 }
2508 break;
2509 }
2510 }
2511}
2512
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002513CodeCompletionString *CodeCompletionResult::CreateCodeCompletionString(Sema &S,
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00002514 CodeCompletionAllocator &Allocator,
Dmitri Gribenko3292d062012-07-02 17:35:10 +00002515 CodeCompletionTUInfo &CCTUInfo,
2516 bool IncludeBriefComments) {
2517 return CreateCodeCompletionString(S.Context, S.PP, Allocator, CCTUInfo,
2518 IncludeBriefComments);
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002519}
2520
Douglas Gregor3545ff42009-09-21 16:56:56 +00002521/// \brief If possible, create a new code completion string for the given
2522/// result.
2523///
2524/// \returns Either a new, heap-allocated code completion string describing
2525/// how to use this result, or NULL to indicate that the string or name of the
2526/// result is all that is needed.
2527CodeCompletionString *
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002528CodeCompletionResult::CreateCodeCompletionString(ASTContext &Ctx,
2529 Preprocessor &PP,
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00002530 CodeCompletionAllocator &Allocator,
Dmitri Gribenko3292d062012-07-02 17:35:10 +00002531 CodeCompletionTUInfo &CCTUInfo,
2532 bool IncludeBriefComments) {
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00002533 CodeCompletionBuilder Result(Allocator, CCTUInfo, Priority, Availability);
Douglas Gregor9eb77012009-11-07 00:00:49 +00002534
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002535 PrintingPolicy Policy = getCompletionPrintingPolicy(Ctx, PP);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002536 if (Kind == RK_Pattern) {
2537 Pattern->Priority = Priority;
2538 Pattern->Availability = Availability;
Douglas Gregor78254c82012-03-27 23:34:16 +00002539
2540 if (Declaration) {
2541 Result.addParentContext(Declaration->getDeclContext());
Douglas Gregor78254c82012-03-27 23:34:16 +00002542 Pattern->ParentName = Result.getParentName();
Fariborz Jahanian1fcf4922013-03-22 17:55:27 +00002543 // Provide code completion comment for self.GetterName where
2544 // GetterName is the getter method for a property with name
2545 // different from the property name (declared via a property
2546 // getter attribute.
2547 const NamedDecl *ND = Declaration;
2548 if (const ObjCMethodDecl *M = dyn_cast<ObjCMethodDecl>(ND))
2549 if (M->isPropertyAccessor())
2550 if (const ObjCPropertyDecl *PDecl = M->findPropertyDecl())
2551 if (PDecl->getGetterName() == M->getSelector() &&
Fariborz Jahanianbe8bc672013-03-23 01:10:45 +00002552 PDecl->getIdentifier() != M->getIdentifier()) {
2553 if (const RawComment *RC =
2554 Ctx.getRawCommentForAnyRedecl(M)) {
Fariborz Jahanian1fcf4922013-03-22 17:55:27 +00002555 Result.addBriefComment(RC->getBriefText(Ctx));
2556 Pattern->BriefComment = Result.getBriefComment();
2557 }
Fariborz Jahanianbe8bc672013-03-23 01:10:45 +00002558 else if (const RawComment *RC =
2559 Ctx.getRawCommentForAnyRedecl(PDecl)) {
2560 Result.addBriefComment(RC->getBriefText(Ctx));
2561 Pattern->BriefComment = Result.getBriefComment();
2562 }
2563 }
Douglas Gregor78254c82012-03-27 23:34:16 +00002564 }
2565
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002566 return Pattern;
2567 }
Douglas Gregorf09935f2009-12-01 05:55:20 +00002568
Douglas Gregorf09935f2009-12-01 05:55:20 +00002569 if (Kind == RK_Keyword) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002570 Result.AddTypedTextChunk(Keyword);
2571 return Result.TakeString();
Douglas Gregorf09935f2009-12-01 05:55:20 +00002572 }
Douglas Gregor3545ff42009-09-21 16:56:56 +00002573
Douglas Gregorf329c7c2009-10-30 16:50:04 +00002574 if (Kind == RK_Macro) {
Argyrios Kyrtzidis09c9e812013-02-20 00:54:57 +00002575 const MacroDirective *MD = PP.getMacroDirectiveHistory(Macro);
2576 assert(MD && "Not a macro?");
Argyrios Kyrtzidisb6210df2013-03-26 17:17:01 +00002577 const MacroInfo *MI = MD->getMacroInfo();
Ben Langmuirc28ce3a2014-09-30 20:00:18 +00002578 assert((!MD->isDefined() || MI) && "missing MacroInfo for define");
Douglas Gregorf09935f2009-12-01 05:55:20 +00002579
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002580 Result.AddTypedTextChunk(
2581 Result.getAllocator().CopyString(Macro->getName()));
Douglas Gregorf09935f2009-12-01 05:55:20 +00002582
Ben Langmuirc28ce3a2014-09-30 20:00:18 +00002583 if (!MI || !MI->isFunctionLike())
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002584 return Result.TakeString();
Douglas Gregorf329c7c2009-10-30 16:50:04 +00002585
2586 // Format a function-like macro with placeholders for the arguments.
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002587 Result.AddChunk(CodeCompletionString::CK_LeftParen);
Douglas Gregor0c505312011-07-30 08:17:44 +00002588 MacroInfo::arg_iterator A = MI->arg_begin(), AEnd = MI->arg_end();
Douglas Gregor3aa55262012-01-21 00:43:38 +00002589
2590 // C99 variadic macros add __VA_ARGS__ at the end. Skip it.
2591 if (MI->isC99Varargs()) {
2592 --AEnd;
2593
2594 if (A == AEnd) {
2595 Result.AddPlaceholderChunk("...");
2596 }
Douglas Gregor0c505312011-07-30 08:17:44 +00002597 }
Douglas Gregor3aa55262012-01-21 00:43:38 +00002598
Douglas Gregor0c505312011-07-30 08:17:44 +00002599 for (MacroInfo::arg_iterator A = MI->arg_begin(); A != AEnd; ++A) {
Douglas Gregorf329c7c2009-10-30 16:50:04 +00002600 if (A != MI->arg_begin())
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002601 Result.AddChunk(CodeCompletionString::CK_Comma);
Douglas Gregor3aa55262012-01-21 00:43:38 +00002602
2603 if (MI->isVariadic() && (A+1) == AEnd) {
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +00002604 SmallString<32> Arg = (*A)->getName();
Douglas Gregor3aa55262012-01-21 00:43:38 +00002605 if (MI->isC99Varargs())
2606 Arg += ", ...";
2607 else
2608 Arg += "...";
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002609 Result.AddPlaceholderChunk(Result.getAllocator().CopyString(Arg));
Douglas Gregor3aa55262012-01-21 00:43:38 +00002610 break;
Douglas Gregorf329c7c2009-10-30 16:50:04 +00002611 }
Douglas Gregor3aa55262012-01-21 00:43:38 +00002612
2613 // Non-variadic macros are simple.
2614 Result.AddPlaceholderChunk(
2615 Result.getAllocator().CopyString((*A)->getName()));
Douglas Gregor0c505312011-07-30 08:17:44 +00002616 }
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002617 Result.AddChunk(CodeCompletionString::CK_RightParen);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002618 return Result.TakeString();
Douglas Gregorf329c7c2009-10-30 16:50:04 +00002619 }
2620
Douglas Gregorf64acca2010-05-25 21:41:55 +00002621 assert(Kind == RK_Declaration && "Missed a result kind?");
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002622 const NamedDecl *ND = Declaration;
Douglas Gregor78254c82012-03-27 23:34:16 +00002623 Result.addParentContext(ND->getDeclContext());
Dmitri Gribenko3292d062012-07-02 17:35:10 +00002624
2625 if (IncludeBriefComments) {
2626 // Add documentation comment, if it exists.
Dmitri Gribenkoa43ec182012-08-11 00:51:43 +00002627 if (const RawComment *RC = Ctx.getRawCommentForAnyRedecl(ND)) {
Dmitri Gribenko3292d062012-07-02 17:35:10 +00002628 Result.addBriefComment(RC->getBriefText(Ctx));
Fariborz Jahanian15a0b552013-02-28 17:47:14 +00002629 }
2630 else if (const ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(ND))
2631 if (OMD->isPropertyAccessor())
2632 if (const ObjCPropertyDecl *PDecl = OMD->findPropertyDecl())
2633 if (const RawComment *RC = Ctx.getRawCommentForAnyRedecl(PDecl))
2634 Result.addBriefComment(RC->getBriefText(Ctx));
Dmitri Gribenko3292d062012-07-02 17:35:10 +00002635 }
2636
Douglas Gregor9eb77012009-11-07 00:00:49 +00002637 if (StartsNestedNameSpecifier) {
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002638 Result.AddTypedTextChunk(
2639 Result.getAllocator().CopyString(ND->getNameAsString()));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002640 Result.AddTextChunk("::");
2641 return Result.TakeString();
Douglas Gregor9eb77012009-11-07 00:00:49 +00002642 }
Erik Verbruggen98ea7f62011-10-14 15:31:08 +00002643
Aaron Ballmanbe22bcb2014-03-10 17:08:28 +00002644 for (const auto *I : ND->specific_attrs<AnnotateAttr>())
2645 Result.AddAnnotation(Result.getAllocator().CopyString(I->getAnnotation()));
Aaron Ballmanb97112e2014-03-08 22:19:01 +00002646
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002647 AddResultTypeChunk(Ctx, Policy, ND, Result);
Douglas Gregorb3fa9192009-12-18 18:53:37 +00002648
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002649 if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(ND)) {
Douglas Gregor5bf52692009-09-22 23:15:58 +00002650 AddQualifierToCompletionString(Result, Qualifier, QualifierIsInformative,
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002651 Ctx, Policy);
2652 AddTypedNameChunk(Ctx, Policy, ND, Result);
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002653 Result.AddChunk(CodeCompletionString::CK_LeftParen);
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002654 AddFunctionParameterChunks(Ctx, Policy, Function, Result);
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002655 Result.AddChunk(CodeCompletionString::CK_RightParen);
Douglas Gregor0f622362009-12-11 18:44:16 +00002656 AddFunctionTypeQualsToCompletionString(Result, Function);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002657 return Result.TakeString();
Douglas Gregor3545ff42009-09-21 16:56:56 +00002658 }
2659
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002660 if (const FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(ND)) {
Douglas Gregor5bf52692009-09-22 23:15:58 +00002661 AddQualifierToCompletionString(Result, Qualifier, QualifierIsInformative,
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002662 Ctx, Policy);
Douglas Gregor3545ff42009-09-21 16:56:56 +00002663 FunctionDecl *Function = FunTmpl->getTemplatedDecl();
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002664 AddTypedNameChunk(Ctx, Policy, Function, Result);
Douglas Gregor0212fd72010-09-21 16:06:22 +00002665
Douglas Gregor3545ff42009-09-21 16:56:56 +00002666 // Figure out which template parameters are deduced (or have default
2667 // arguments).
Benjamin Kramere0513cb2012-01-30 16:17:39 +00002668 llvm::SmallBitVector Deduced;
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002669 Sema::MarkDeducedTemplateParameters(Ctx, FunTmpl, Deduced);
Douglas Gregor3545ff42009-09-21 16:56:56 +00002670 unsigned LastDeducibleArgument;
2671 for (LastDeducibleArgument = Deduced.size(); LastDeducibleArgument > 0;
2672 --LastDeducibleArgument) {
2673 if (!Deduced[LastDeducibleArgument - 1]) {
2674 // C++0x: Figure out if the template argument has a default. If so,
2675 // the user doesn't need to type this argument.
2676 // FIXME: We need to abstract template parameters better!
2677 bool HasDefaultArg = false;
2678 NamedDecl *Param = FunTmpl->getTemplateParameters()->getParam(
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002679 LastDeducibleArgument - 1);
Douglas Gregor3545ff42009-09-21 16:56:56 +00002680 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(Param))
2681 HasDefaultArg = TTP->hasDefaultArgument();
2682 else if (NonTypeTemplateParmDecl *NTTP
2683 = dyn_cast<NonTypeTemplateParmDecl>(Param))
2684 HasDefaultArg = NTTP->hasDefaultArgument();
2685 else {
2686 assert(isa<TemplateTemplateParmDecl>(Param));
2687 HasDefaultArg
Douglas Gregor9eb77012009-11-07 00:00:49 +00002688 = cast<TemplateTemplateParmDecl>(Param)->hasDefaultArgument();
Douglas Gregor3545ff42009-09-21 16:56:56 +00002689 }
2690
2691 if (!HasDefaultArg)
2692 break;
2693 }
2694 }
2695
2696 if (LastDeducibleArgument) {
2697 // Some of the function template arguments cannot be deduced from a
2698 // function call, so we introduce an explicit template argument list
2699 // containing all of the arguments up to the first deducible argument.
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002700 Result.AddChunk(CodeCompletionString::CK_LeftAngle);
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002701 AddTemplateParameterChunks(Ctx, Policy, FunTmpl, Result,
Douglas Gregor3545ff42009-09-21 16:56:56 +00002702 LastDeducibleArgument);
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002703 Result.AddChunk(CodeCompletionString::CK_RightAngle);
Douglas Gregor3545ff42009-09-21 16:56:56 +00002704 }
2705
2706 // Add the function parameters
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002707 Result.AddChunk(CodeCompletionString::CK_LeftParen);
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002708 AddFunctionParameterChunks(Ctx, Policy, Function, Result);
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002709 Result.AddChunk(CodeCompletionString::CK_RightParen);
Douglas Gregor0f622362009-12-11 18:44:16 +00002710 AddFunctionTypeQualsToCompletionString(Result, Function);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002711 return Result.TakeString();
Douglas Gregor3545ff42009-09-21 16:56:56 +00002712 }
2713
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002714 if (const TemplateDecl *Template = dyn_cast<TemplateDecl>(ND)) {
Douglas Gregor5bf52692009-09-22 23:15:58 +00002715 AddQualifierToCompletionString(Result, Qualifier, QualifierIsInformative,
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002716 Ctx, Policy);
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002717 Result.AddTypedTextChunk(
2718 Result.getAllocator().CopyString(Template->getNameAsString()));
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002719 Result.AddChunk(CodeCompletionString::CK_LeftAngle);
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002720 AddTemplateParameterChunks(Ctx, Policy, Template, Result);
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002721 Result.AddChunk(CodeCompletionString::CK_RightAngle);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002722 return Result.TakeString();
Douglas Gregor3545ff42009-09-21 16:56:56 +00002723 }
2724
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002725 if (const ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(ND)) {
Douglas Gregord3c5d792009-11-17 16:44:22 +00002726 Selector Sel = Method->getSelector();
2727 if (Sel.isUnarySelector()) {
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002728 Result.AddTypedTextChunk(Result.getAllocator().CopyString(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00002729 Sel.getNameForSlot(0)));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002730 return Result.TakeString();
Douglas Gregord3c5d792009-11-17 16:44:22 +00002731 }
2732
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00002733 std::string SelName = Sel.getNameForSlot(0).str();
Douglas Gregor1b605f72009-11-19 01:08:35 +00002734 SelName += ':';
2735 if (StartParameter == 0)
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002736 Result.AddTypedTextChunk(Result.getAllocator().CopyString(SelName));
Douglas Gregor1b605f72009-11-19 01:08:35 +00002737 else {
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002738 Result.AddInformativeChunk(Result.getAllocator().CopyString(SelName));
Douglas Gregor1b605f72009-11-19 01:08:35 +00002739
2740 // If there is only one parameter, and we're past it, add an empty
2741 // typed-text chunk since there is nothing to type.
2742 if (Method->param_size() == 1)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002743 Result.AddTypedTextChunk("");
Douglas Gregor1b605f72009-11-19 01:08:35 +00002744 }
Douglas Gregord3c5d792009-11-17 16:44:22 +00002745 unsigned Idx = 0;
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002746 for (ObjCMethodDecl::param_const_iterator P = Method->param_begin(),
2747 PEnd = Method->param_end();
Douglas Gregord3c5d792009-11-17 16:44:22 +00002748 P != PEnd; (void)++P, ++Idx) {
2749 if (Idx > 0) {
Douglas Gregor1b605f72009-11-19 01:08:35 +00002750 std::string Keyword;
2751 if (Idx > StartParameter)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002752 Result.AddChunk(CodeCompletionString::CK_HorizontalSpace);
Douglas Gregord3c5d792009-11-17 16:44:22 +00002753 if (IdentifierInfo *II = Sel.getIdentifierInfoForSlot(Idx))
Benjamin Kramer632500c2011-07-26 16:59:25 +00002754 Keyword += II->getName();
Douglas Gregord3c5d792009-11-17 16:44:22 +00002755 Keyword += ":";
Douglas Gregor95887f92010-07-08 23:20:03 +00002756 if (Idx < StartParameter || AllParametersAreInformative)
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002757 Result.AddInformativeChunk(Result.getAllocator().CopyString(Keyword));
Douglas Gregor8e3e8742010-10-18 21:05:04 +00002758 else
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002759 Result.AddTypedTextChunk(Result.getAllocator().CopyString(Keyword));
Douglas Gregord3c5d792009-11-17 16:44:22 +00002760 }
Douglas Gregor1b605f72009-11-19 01:08:35 +00002761
2762 // If we're before the starting parameter, skip the placeholder.
2763 if (Idx < StartParameter)
2764 continue;
Douglas Gregord3c5d792009-11-17 16:44:22 +00002765
2766 std::string Arg;
Douglas Gregore90dd002010-08-24 16:15:59 +00002767
2768 if ((*P)->getType()->isBlockPointerType() && !DeclaringEntity)
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002769 Arg = FormatFunctionParameter(Ctx, Policy, *P, true);
Douglas Gregore90dd002010-08-24 16:15:59 +00002770 else {
John McCall31168b02011-06-15 23:02:42 +00002771 (*P)->getType().getAsStringInternal(Arg, Policy);
Douglas Gregor8f08d742011-07-30 07:55:26 +00002772 Arg = "(" + formatObjCParamQualifiers((*P)->getObjCDeclQualifier())
2773 + Arg + ")";
Douglas Gregore90dd002010-08-24 16:15:59 +00002774 if (IdentifierInfo *II = (*P)->getIdentifier())
Douglas Gregor981a0c42010-08-29 19:47:46 +00002775 if (DeclaringEntity || AllParametersAreInformative)
Benjamin Kramer632500c2011-07-26 16:59:25 +00002776 Arg += II->getName();
Douglas Gregore90dd002010-08-24 16:15:59 +00002777 }
2778
Douglas Gregor400f5972010-08-31 05:13:43 +00002779 if (Method->isVariadic() && (P + 1) == PEnd)
2780 Arg += ", ...";
2781
Douglas Gregor95887f92010-07-08 23:20:03 +00002782 if (DeclaringEntity)
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002783 Result.AddTextChunk(Result.getAllocator().CopyString(Arg));
Douglas Gregor95887f92010-07-08 23:20:03 +00002784 else if (AllParametersAreInformative)
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002785 Result.AddInformativeChunk(Result.getAllocator().CopyString(Arg));
Douglas Gregorc8537c52009-11-19 07:41:15 +00002786 else
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002787 Result.AddPlaceholderChunk(Result.getAllocator().CopyString(Arg));
Douglas Gregord3c5d792009-11-17 16:44:22 +00002788 }
2789
Douglas Gregor04c5f972009-12-23 00:21:46 +00002790 if (Method->isVariadic()) {
Douglas Gregor400f5972010-08-31 05:13:43 +00002791 if (Method->param_size() == 0) {
2792 if (DeclaringEntity)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002793 Result.AddTextChunk(", ...");
Douglas Gregor400f5972010-08-31 05:13:43 +00002794 else if (AllParametersAreInformative)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002795 Result.AddInformativeChunk(", ...");
Douglas Gregor400f5972010-08-31 05:13:43 +00002796 else
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002797 Result.AddPlaceholderChunk(", ...");
Douglas Gregor400f5972010-08-31 05:13:43 +00002798 }
Douglas Gregordbb71db2010-08-23 23:51:41 +00002799
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002800 MaybeAddSentinel(Ctx, Method, Result);
Douglas Gregor04c5f972009-12-23 00:21:46 +00002801 }
2802
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002803 return Result.TakeString();
Douglas Gregord3c5d792009-11-17 16:44:22 +00002804 }
2805
Douglas Gregorf09935f2009-12-01 05:55:20 +00002806 if (Qualifier)
Douglas Gregor5bf52692009-09-22 23:15:58 +00002807 AddQualifierToCompletionString(Result, Qualifier, QualifierIsInformative,
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002808 Ctx, Policy);
Douglas Gregorf09935f2009-12-01 05:55:20 +00002809
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002810 Result.AddTypedTextChunk(
2811 Result.getAllocator().CopyString(ND->getNameAsString()));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002812 return Result.TakeString();
Douglas Gregor3545ff42009-09-21 16:56:56 +00002813}
2814
Douglas Gregorf0f51982009-09-23 00:34:09 +00002815CodeCompletionString *
2816CodeCompleteConsumer::OverloadCandidate::CreateSignatureString(
2817 unsigned CurrentArg,
Douglas Gregor36e3b5c2010-10-11 21:37:58 +00002818 Sema &S,
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00002819 CodeCompletionAllocator &Allocator,
2820 CodeCompletionTUInfo &CCTUInfo) const {
Douglas Gregor75acd922011-09-27 23:30:47 +00002821 PrintingPolicy Policy = getCompletionPrintingPolicy(S);
John McCall31168b02011-06-15 23:02:42 +00002822
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002823 // FIXME: Set priority, availability appropriately.
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00002824 CodeCompletionBuilder Result(Allocator,CCTUInfo, 1, CXAvailability_Available);
Douglas Gregorf0f51982009-09-23 00:34:09 +00002825 FunctionDecl *FDecl = getFunction();
Douglas Gregor75acd922011-09-27 23:30:47 +00002826 AddResultTypeChunk(S.Context, Policy, FDecl, Result);
Douglas Gregorf0f51982009-09-23 00:34:09 +00002827 const FunctionProtoType *Proto
2828 = dyn_cast<FunctionProtoType>(getFunctionType());
2829 if (!FDecl && !Proto) {
2830 // Function without a prototype. Just give the return type and a
2831 // highlighted ellipsis.
2832 const FunctionType *FT = getFunctionType();
Alp Toker314cc812014-01-25 16:55:45 +00002833 Result.AddTextChunk(GetCompletionTypeString(FT->getReturnType(), S.Context,
2834 Policy, Result.getAllocator()));
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002835 Result.AddChunk(CodeCompletionString::CK_LeftParen);
2836 Result.AddChunk(CodeCompletionString::CK_CurrentParameter, "...");
2837 Result.AddChunk(CodeCompletionString::CK_RightParen);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002838 return Result.TakeString();
Douglas Gregorf0f51982009-09-23 00:34:09 +00002839 }
2840
2841 if (FDecl)
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002842 Result.AddTextChunk(
2843 Result.getAllocator().CopyString(FDecl->getNameAsString()));
Douglas Gregorf0f51982009-09-23 00:34:09 +00002844 else
Alp Toker314cc812014-01-25 16:55:45 +00002845 Result.AddTextChunk(Result.getAllocator().CopyString(
2846 Proto->getReturnType().getAsString(Policy)));
2847
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002848 Result.AddChunk(CodeCompletionString::CK_LeftParen);
Alp Toker9cacbab2014-01-20 20:26:09 +00002849 unsigned NumParams = FDecl ? FDecl->getNumParams() : Proto->getNumParams();
Douglas Gregorf0f51982009-09-23 00:34:09 +00002850 for (unsigned I = 0; I != NumParams; ++I) {
2851 if (I)
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002852 Result.AddChunk(CodeCompletionString::CK_Comma);
Douglas Gregorf0f51982009-09-23 00:34:09 +00002853
2854 std::string ArgString;
2855 QualType ArgType;
2856
2857 if (FDecl) {
2858 ArgString = FDecl->getParamDecl(I)->getNameAsString();
2859 ArgType = FDecl->getParamDecl(I)->getOriginalType();
2860 } else {
Alp Toker9cacbab2014-01-20 20:26:09 +00002861 ArgType = Proto->getParamType(I);
Douglas Gregorf0f51982009-09-23 00:34:09 +00002862 }
2863
John McCall31168b02011-06-15 23:02:42 +00002864 ArgType.getAsStringInternal(ArgString, Policy);
Douglas Gregorf0f51982009-09-23 00:34:09 +00002865
2866 if (I == CurrentArg)
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002867 Result.AddChunk(CodeCompletionString::CK_CurrentParameter,
2868 Result.getAllocator().CopyString(ArgString));
Douglas Gregorf0f51982009-09-23 00:34:09 +00002869 else
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002870 Result.AddTextChunk(Result.getAllocator().CopyString(ArgString));
Douglas Gregorf0f51982009-09-23 00:34:09 +00002871 }
2872
2873 if (Proto && Proto->isVariadic()) {
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002874 Result.AddChunk(CodeCompletionString::CK_Comma);
Douglas Gregorf0f51982009-09-23 00:34:09 +00002875 if (CurrentArg < NumParams)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002876 Result.AddTextChunk("...");
Douglas Gregorf0f51982009-09-23 00:34:09 +00002877 else
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002878 Result.AddChunk(CodeCompletionString::CK_CurrentParameter, "...");
Douglas Gregorf0f51982009-09-23 00:34:09 +00002879 }
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002880 Result.AddChunk(CodeCompletionString::CK_RightParen);
Douglas Gregorf0f51982009-09-23 00:34:09 +00002881
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002882 return Result.TakeString();
Douglas Gregorf0f51982009-09-23 00:34:09 +00002883}
2884
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002885unsigned clang::getMacroUsagePriority(StringRef MacroName,
Douglas Gregor9dcf58a2010-09-20 21:11:48 +00002886 const LangOptions &LangOpts,
Douglas Gregor6e240332010-08-16 16:18:59 +00002887 bool PreferredTypeIsPointer) {
2888 unsigned Priority = CCP_Macro;
2889
Douglas Gregor9dcf58a2010-09-20 21:11:48 +00002890 // Treat the "nil", "Nil" and "NULL" macros as null pointer constants.
2891 if (MacroName.equals("nil") || MacroName.equals("NULL") ||
2892 MacroName.equals("Nil")) {
Douglas Gregor6e240332010-08-16 16:18:59 +00002893 Priority = CCP_Constant;
2894 if (PreferredTypeIsPointer)
2895 Priority = Priority / CCF_SimilarTypeMatch;
Douglas Gregor9dcf58a2010-09-20 21:11:48 +00002896 }
2897 // Treat "YES", "NO", "true", and "false" as constants.
2898 else if (MacroName.equals("YES") || MacroName.equals("NO") ||
2899 MacroName.equals("true") || MacroName.equals("false"))
2900 Priority = CCP_Constant;
2901 // Treat "bool" as a type.
2902 else if (MacroName.equals("bool"))
2903 Priority = CCP_Type + (LangOpts.ObjC1? CCD_bool_in_ObjC : 0);
2904
Douglas Gregor6e240332010-08-16 16:18:59 +00002905
2906 return Priority;
2907}
2908
Dmitri Gribenkobdc80de2013-01-11 20:32:41 +00002909CXCursorKind clang::getCursorKindForDecl(const Decl *D) {
Douglas Gregor09c0eb12010-09-03 23:30:36 +00002910 if (!D)
2911 return CXCursor_UnexposedDecl;
2912
2913 switch (D->getKind()) {
2914 case Decl::Enum: return CXCursor_EnumDecl;
2915 case Decl::EnumConstant: return CXCursor_EnumConstantDecl;
2916 case Decl::Field: return CXCursor_FieldDecl;
2917 case Decl::Function:
2918 return CXCursor_FunctionDecl;
2919 case Decl::ObjCCategory: return CXCursor_ObjCCategoryDecl;
2920 case Decl::ObjCCategoryImpl: return CXCursor_ObjCCategoryImplDecl;
Douglas Gregor09c0eb12010-09-03 23:30:36 +00002921 case Decl::ObjCImplementation: return CXCursor_ObjCImplementationDecl;
Douglas Gregordeafd0b2011-12-27 22:43:10 +00002922
Argyrios Kyrtzidis3698cef2012-01-24 21:39:26 +00002923 case Decl::ObjCInterface: return CXCursor_ObjCInterfaceDecl;
Douglas Gregor09c0eb12010-09-03 23:30:36 +00002924 case Decl::ObjCIvar: return CXCursor_ObjCIvarDecl;
2925 case Decl::ObjCMethod:
2926 return cast<ObjCMethodDecl>(D)->isInstanceMethod()
2927 ? CXCursor_ObjCInstanceMethodDecl : CXCursor_ObjCClassMethodDecl;
2928 case Decl::CXXMethod: return CXCursor_CXXMethod;
2929 case Decl::CXXConstructor: return CXCursor_Constructor;
2930 case Decl::CXXDestructor: return CXCursor_Destructor;
2931 case Decl::CXXConversion: return CXCursor_ConversionFunction;
2932 case Decl::ObjCProperty: return CXCursor_ObjCPropertyDecl;
Argyrios Kyrtzidis3698cef2012-01-24 21:39:26 +00002933 case Decl::ObjCProtocol: return CXCursor_ObjCProtocolDecl;
Douglas Gregor09c0eb12010-09-03 23:30:36 +00002934 case Decl::ParmVar: return CXCursor_ParmDecl;
2935 case Decl::Typedef: return CXCursor_TypedefDecl;
Richard Smithdda56e42011-04-15 14:24:37 +00002936 case Decl::TypeAlias: return CXCursor_TypeAliasDecl;
Douglas Gregor09c0eb12010-09-03 23:30:36 +00002937 case Decl::Var: return CXCursor_VarDecl;
2938 case Decl::Namespace: return CXCursor_Namespace;
2939 case Decl::NamespaceAlias: return CXCursor_NamespaceAlias;
2940 case Decl::TemplateTypeParm: return CXCursor_TemplateTypeParameter;
2941 case Decl::NonTypeTemplateParm:return CXCursor_NonTypeTemplateParameter;
2942 case Decl::TemplateTemplateParm:return CXCursor_TemplateTemplateParameter;
2943 case Decl::FunctionTemplate: return CXCursor_FunctionTemplate;
2944 case Decl::ClassTemplate: return CXCursor_ClassTemplate;
Argyrios Kyrtzidis12afd702011-09-30 17:58:23 +00002945 case Decl::AccessSpec: return CXCursor_CXXAccessSpecifier;
Douglas Gregor09c0eb12010-09-03 23:30:36 +00002946 case Decl::ClassTemplatePartialSpecialization:
2947 return CXCursor_ClassTemplatePartialSpecialization;
2948 case Decl::UsingDirective: return CXCursor_UsingDirective;
Douglas Gregor3e653b32012-04-30 23:41:16 +00002949 case Decl::TranslationUnit: return CXCursor_TranslationUnit;
Douglas Gregor09c0eb12010-09-03 23:30:36 +00002950
2951 case Decl::Using:
2952 case Decl::UnresolvedUsingValue:
2953 case Decl::UnresolvedUsingTypename:
2954 return CXCursor_UsingDeclaration;
2955
Douglas Gregor4cd65962011-06-03 23:08:58 +00002956 case Decl::ObjCPropertyImpl:
2957 switch (cast<ObjCPropertyImplDecl>(D)->getPropertyImplementation()) {
2958 case ObjCPropertyImplDecl::Dynamic:
2959 return CXCursor_ObjCDynamicDecl;
2960
2961 case ObjCPropertyImplDecl::Synthesize:
2962 return CXCursor_ObjCSynthesizeDecl;
2963 }
Argyrios Kyrtzidis50e5b1d2012-10-05 00:22:24 +00002964
2965 case Decl::Import:
2966 return CXCursor_ModuleImportDecl;
Douglas Gregor4cd65962011-06-03 23:08:58 +00002967
Douglas Gregor09c0eb12010-09-03 23:30:36 +00002968 default:
Dmitri Gribenkobdc80de2013-01-11 20:32:41 +00002969 if (const TagDecl *TD = dyn_cast<TagDecl>(D)) {
Douglas Gregor09c0eb12010-09-03 23:30:36 +00002970 switch (TD->getTagKind()) {
Joao Matosdc86f942012-08-31 18:45:21 +00002971 case TTK_Interface: // fall through
Douglas Gregor09c0eb12010-09-03 23:30:36 +00002972 case TTK_Struct: return CXCursor_StructDecl;
2973 case TTK_Class: return CXCursor_ClassDecl;
2974 case TTK_Union: return CXCursor_UnionDecl;
2975 case TTK_Enum: return CXCursor_EnumDecl;
2976 }
2977 }
2978 }
2979
2980 return CXCursor_UnexposedDecl;
2981}
2982
Douglas Gregor55b037b2010-07-08 20:55:51 +00002983static void AddMacroResults(Preprocessor &PP, ResultBuilder &Results,
Douglas Gregor8cb17462012-10-09 16:01:50 +00002984 bool IncludeUndefined,
Douglas Gregor55b037b2010-07-08 20:55:51 +00002985 bool TargetTypeIsPointer = false) {
John McCall276321a2010-08-25 06:19:51 +00002986 typedef CodeCompletionResult Result;
Douglas Gregor55b037b2010-07-08 20:55:51 +00002987
Douglas Gregorf329c7c2009-10-30 16:50:04 +00002988 Results.EnterNewScope();
Douglas Gregor8e3e8742010-10-18 21:05:04 +00002989
Douglas Gregor9eb77012009-11-07 00:00:49 +00002990 for (Preprocessor::macro_iterator M = PP.macro_begin(),
2991 MEnd = PP.macro_end();
Douglas Gregor55b037b2010-07-08 20:55:51 +00002992 M != MEnd; ++M) {
Argyrios Kyrtzidis9ef53ce2014-04-09 18:21:23 +00002993 if (IncludeUndefined || M->first->hasMacroDefinition()) {
2994 if (MacroInfo *MI = M->second->getMacroInfo())
2995 if (MI->isUsedForHeaderGuard())
2996 continue;
2997
Douglas Gregor8cb17462012-10-09 16:01:50 +00002998 Results.AddResult(Result(M->first,
Douglas Gregor6e240332010-08-16 16:18:59 +00002999 getMacroUsagePriority(M->first->getName(),
David Blaikiebbafb8a2012-03-11 07:00:24 +00003000 PP.getLangOpts(),
Douglas Gregor6e240332010-08-16 16:18:59 +00003001 TargetTypeIsPointer)));
Argyrios Kyrtzidis9ef53ce2014-04-09 18:21:23 +00003002 }
Douglas Gregor55b037b2010-07-08 20:55:51 +00003003 }
Douglas Gregor8e3e8742010-10-18 21:05:04 +00003004
Douglas Gregorf329c7c2009-10-30 16:50:04 +00003005 Results.ExitScope();
Douglas Gregor8e3e8742010-10-18 21:05:04 +00003006
Douglas Gregorf329c7c2009-10-30 16:50:04 +00003007}
3008
Douglas Gregorce0e8562010-08-23 21:54:33 +00003009static void AddPrettyFunctionResults(const LangOptions &LangOpts,
3010 ResultBuilder &Results) {
John McCall276321a2010-08-25 06:19:51 +00003011 typedef CodeCompletionResult Result;
Douglas Gregorce0e8562010-08-23 21:54:33 +00003012
3013 Results.EnterNewScope();
Douglas Gregor8e3e8742010-10-18 21:05:04 +00003014
Douglas Gregorce0e8562010-08-23 21:54:33 +00003015 Results.AddResult(Result("__PRETTY_FUNCTION__", CCP_Constant));
3016 Results.AddResult(Result("__FUNCTION__", CCP_Constant));
Richard Smith2bf7fdb2013-01-02 11:42:31 +00003017 if (LangOpts.C99 || LangOpts.CPlusPlus11)
Douglas Gregorce0e8562010-08-23 21:54:33 +00003018 Results.AddResult(Result("__func__", CCP_Constant));
3019 Results.ExitScope();
3020}
3021
Daniel Dunbar242ea9a2009-11-13 08:58:20 +00003022static void HandleCodeCompleteResults(Sema *S,
3023 CodeCompleteConsumer *CodeCompleter,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003024 CodeCompletionContext Context,
John McCall276321a2010-08-25 06:19:51 +00003025 CodeCompletionResult *Results,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003026 unsigned NumResults) {
Douglas Gregor3545ff42009-09-21 16:56:56 +00003027 if (CodeCompleter)
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003028 CodeCompleter->ProcessCodeCompleteResults(*S, Context, Results, NumResults);
Douglas Gregor3545ff42009-09-21 16:56:56 +00003029}
3030
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003031static enum CodeCompletionContext::Kind mapCodeCompletionContext(Sema &S,
3032 Sema::ParserCompletionContext PCC) {
3033 switch (PCC) {
John McCallfaf5fb42010-08-26 23:41:50 +00003034 case Sema::PCC_Namespace:
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003035 return CodeCompletionContext::CCC_TopLevel;
3036
John McCallfaf5fb42010-08-26 23:41:50 +00003037 case Sema::PCC_Class:
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003038 return CodeCompletionContext::CCC_ClassStructUnion;
3039
John McCallfaf5fb42010-08-26 23:41:50 +00003040 case Sema::PCC_ObjCInterface:
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003041 return CodeCompletionContext::CCC_ObjCInterface;
3042
John McCallfaf5fb42010-08-26 23:41:50 +00003043 case Sema::PCC_ObjCImplementation:
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003044 return CodeCompletionContext::CCC_ObjCImplementation;
3045
John McCallfaf5fb42010-08-26 23:41:50 +00003046 case Sema::PCC_ObjCInstanceVariableList:
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003047 return CodeCompletionContext::CCC_ObjCIvarList;
3048
John McCallfaf5fb42010-08-26 23:41:50 +00003049 case Sema::PCC_Template:
3050 case Sema::PCC_MemberTemplate:
Douglas Gregor0ac41382010-09-23 23:01:17 +00003051 if (S.CurContext->isFileContext())
3052 return CodeCompletionContext::CCC_TopLevel;
David Blaikie8a40f702012-01-17 06:56:22 +00003053 if (S.CurContext->isRecord())
Douglas Gregor0ac41382010-09-23 23:01:17 +00003054 return CodeCompletionContext::CCC_ClassStructUnion;
David Blaikie8a40f702012-01-17 06:56:22 +00003055 return CodeCompletionContext::CCC_Other;
Douglas Gregor0ac41382010-09-23 23:01:17 +00003056
John McCallfaf5fb42010-08-26 23:41:50 +00003057 case Sema::PCC_RecoveryInFunction:
Douglas Gregor0ac41382010-09-23 23:01:17 +00003058 return CodeCompletionContext::CCC_Recovery;
Douglas Gregorc769d6e2010-10-18 22:01:46 +00003059
John McCallfaf5fb42010-08-26 23:41:50 +00003060 case Sema::PCC_ForInit:
David Blaikiebbafb8a2012-03-11 07:00:24 +00003061 if (S.getLangOpts().CPlusPlus || S.getLangOpts().C99 ||
3062 S.getLangOpts().ObjC1)
Douglas Gregorc769d6e2010-10-18 22:01:46 +00003063 return CodeCompletionContext::CCC_ParenthesizedExpression;
3064 else
3065 return CodeCompletionContext::CCC_Expression;
3066
3067 case Sema::PCC_Expression:
John McCallfaf5fb42010-08-26 23:41:50 +00003068 case Sema::PCC_Condition:
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003069 return CodeCompletionContext::CCC_Expression;
3070
John McCallfaf5fb42010-08-26 23:41:50 +00003071 case Sema::PCC_Statement:
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003072 return CodeCompletionContext::CCC_Statement;
Douglas Gregorf02e5f32010-08-24 01:11:00 +00003073
John McCallfaf5fb42010-08-26 23:41:50 +00003074 case Sema::PCC_Type:
Douglas Gregorf02e5f32010-08-24 01:11:00 +00003075 return CodeCompletionContext::CCC_Type;
Douglas Gregor5e35d592010-09-14 23:59:36 +00003076
3077 case Sema::PCC_ParenthesizedExpression:
3078 return CodeCompletionContext::CCC_ParenthesizedExpression;
Douglas Gregor80039242011-02-15 20:33:25 +00003079
3080 case Sema::PCC_LocalDeclarationSpecifiers:
3081 return CodeCompletionContext::CCC_Type;
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003082 }
David Blaikie8a40f702012-01-17 06:56:22 +00003083
3084 llvm_unreachable("Invalid ParserCompletionContext!");
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003085}
3086
Douglas Gregorac322ec2010-08-27 21:18:54 +00003087/// \brief If we're in a C++ virtual member function, add completion results
3088/// that invoke the functions we override, since it's common to invoke the
3089/// overridden function as well as adding new functionality.
3090///
3091/// \param S The semantic analysis object for which we are generating results.
3092///
3093/// \param InContext This context in which the nested-name-specifier preceding
3094/// the code-completion point
3095static void MaybeAddOverrideCalls(Sema &S, DeclContext *InContext,
3096 ResultBuilder &Results) {
3097 // Look through blocks.
3098 DeclContext *CurContext = S.CurContext;
3099 while (isa<BlockDecl>(CurContext))
3100 CurContext = CurContext->getParent();
3101
3102
3103 CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(CurContext);
3104 if (!Method || !Method->isVirtual())
3105 return;
3106
3107 // We need to have names for all of the parameters, if we're going to
3108 // generate a forwarding call.
Aaron Ballman43b68be2014-03-07 17:50:17 +00003109 for (auto P : Method->params())
3110 if (!P->getDeclName())
Douglas Gregorac322ec2010-08-27 21:18:54 +00003111 return;
Douglas Gregorac322ec2010-08-27 21:18:54 +00003112
Douglas Gregor75acd922011-09-27 23:30:47 +00003113 PrintingPolicy Policy = getCompletionPrintingPolicy(S);
Douglas Gregorac322ec2010-08-27 21:18:54 +00003114 for (CXXMethodDecl::method_iterator M = Method->begin_overridden_methods(),
3115 MEnd = Method->end_overridden_methods();
3116 M != MEnd; ++M) {
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003117 CodeCompletionBuilder Builder(Results.getAllocator(),
3118 Results.getCodeCompletionTUInfo());
Dmitri Gribenko6cfb1532013-02-14 13:53:30 +00003119 const CXXMethodDecl *Overridden = *M;
Douglas Gregorac322ec2010-08-27 21:18:54 +00003120 if (Overridden->getCanonicalDecl() == Method->getCanonicalDecl())
3121 continue;
3122
3123 // If we need a nested-name-specifier, add one now.
3124 if (!InContext) {
3125 NestedNameSpecifier *NNS
3126 = getRequiredQualification(S.Context, CurContext,
3127 Overridden->getDeclContext());
3128 if (NNS) {
3129 std::string Str;
3130 llvm::raw_string_ostream OS(Str);
Douglas Gregor75acd922011-09-27 23:30:47 +00003131 NNS->print(OS, Policy);
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00003132 Builder.AddTextChunk(Results.getAllocator().CopyString(OS.str()));
Douglas Gregorac322ec2010-08-27 21:18:54 +00003133 }
3134 } else if (!InContext->Equals(Overridden->getDeclContext()))
3135 continue;
3136
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00003137 Builder.AddTypedTextChunk(Results.getAllocator().CopyString(
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003138 Overridden->getNameAsString()));
3139 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
Douglas Gregorac322ec2010-08-27 21:18:54 +00003140 bool FirstParam = true;
Aaron Ballman43b68be2014-03-07 17:50:17 +00003141 for (auto P : Method->params()) {
Douglas Gregorac322ec2010-08-27 21:18:54 +00003142 if (FirstParam)
3143 FirstParam = false;
3144 else
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003145 Builder.AddChunk(CodeCompletionString::CK_Comma);
Douglas Gregorac322ec2010-08-27 21:18:54 +00003146
Aaron Ballman43b68be2014-03-07 17:50:17 +00003147 Builder.AddPlaceholderChunk(
3148 Results.getAllocator().CopyString(P->getIdentifier()->getName()));
Douglas Gregorac322ec2010-08-27 21:18:54 +00003149 }
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003150 Builder.AddChunk(CodeCompletionString::CK_RightParen);
3151 Results.AddResult(CodeCompletionResult(Builder.TakeString(),
Douglas Gregorac322ec2010-08-27 21:18:54 +00003152 CCP_SuperCompletion,
Douglas Gregor78254c82012-03-27 23:34:16 +00003153 CXCursor_CXXMethod,
3154 CXAvailability_Available,
3155 Overridden));
Douglas Gregorac322ec2010-08-27 21:18:54 +00003156 Results.Ignore(Overridden);
3157 }
3158}
3159
Douglas Gregor07f43572012-01-29 18:15:03 +00003160void Sema::CodeCompleteModuleImport(SourceLocation ImportLoc,
3161 ModuleIdPath Path) {
3162 typedef CodeCompletionResult Result;
3163 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003164 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor07f43572012-01-29 18:15:03 +00003165 CodeCompletionContext::CCC_Other);
3166 Results.EnterNewScope();
3167
3168 CodeCompletionAllocator &Allocator = Results.getAllocator();
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003169 CodeCompletionBuilder Builder(Allocator, Results.getCodeCompletionTUInfo());
Douglas Gregor07f43572012-01-29 18:15:03 +00003170 typedef CodeCompletionResult Result;
3171 if (Path.empty()) {
3172 // Enumerate all top-level modules.
Dmitri Gribenkof8579502013-01-12 19:30:44 +00003173 SmallVector<Module *, 8> Modules;
Douglas Gregor07f43572012-01-29 18:15:03 +00003174 PP.getHeaderSearchInfo().collectAllModules(Modules);
3175 for (unsigned I = 0, N = Modules.size(); I != N; ++I) {
3176 Builder.AddTypedTextChunk(
3177 Builder.getAllocator().CopyString(Modules[I]->Name));
3178 Results.AddResult(Result(Builder.TakeString(),
3179 CCP_Declaration,
Argyrios Kyrtzidis345d05f2013-05-29 18:50:15 +00003180 CXCursor_ModuleImportDecl,
Douglas Gregor07f43572012-01-29 18:15:03 +00003181 Modules[I]->isAvailable()
3182 ? CXAvailability_Available
3183 : CXAvailability_NotAvailable));
3184 }
Daniel Jasper07e6c402013-08-05 20:26:17 +00003185 } else if (getLangOpts().Modules) {
Douglas Gregor07f43572012-01-29 18:15:03 +00003186 // Load the named module.
3187 Module *Mod = PP.getModuleLoader().loadModule(ImportLoc, Path,
3188 Module::AllVisible,
3189 /*IsInclusionDirective=*/false);
3190 // Enumerate submodules.
3191 if (Mod) {
3192 for (Module::submodule_iterator Sub = Mod->submodule_begin(),
3193 SubEnd = Mod->submodule_end();
3194 Sub != SubEnd; ++Sub) {
3195
3196 Builder.AddTypedTextChunk(
3197 Builder.getAllocator().CopyString((*Sub)->Name));
3198 Results.AddResult(Result(Builder.TakeString(),
3199 CCP_Declaration,
Argyrios Kyrtzidis345d05f2013-05-29 18:50:15 +00003200 CXCursor_ModuleImportDecl,
Douglas Gregor07f43572012-01-29 18:15:03 +00003201 (*Sub)->isAvailable()
3202 ? CXAvailability_Available
3203 : CXAvailability_NotAvailable));
3204 }
3205 }
3206 }
3207 Results.ExitScope();
3208 HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(),
3209 Results.data(),Results.size());
3210}
3211
Douglas Gregor504a6ae2010-01-10 23:08:15 +00003212void Sema::CodeCompleteOrdinaryName(Scope *S,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003213 ParserCompletionContext CompletionContext) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003214 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003215 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor0ac41382010-09-23 23:01:17 +00003216 mapCodeCompletionContext(*this, CompletionContext));
Douglas Gregorac322ec2010-08-27 21:18:54 +00003217 Results.EnterNewScope();
Douglas Gregor50832e02010-09-20 22:39:41 +00003218
Douglas Gregor504a6ae2010-01-10 23:08:15 +00003219 // Determine how to filter results, e.g., so that the names of
3220 // values (functions, enumerators, function templates, etc.) are
3221 // only allowed where we can have an expression.
3222 switch (CompletionContext) {
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003223 case PCC_Namespace:
3224 case PCC_Class:
3225 case PCC_ObjCInterface:
3226 case PCC_ObjCImplementation:
3227 case PCC_ObjCInstanceVariableList:
3228 case PCC_Template:
3229 case PCC_MemberTemplate:
Douglas Gregorf02e5f32010-08-24 01:11:00 +00003230 case PCC_Type:
Douglas Gregor80039242011-02-15 20:33:25 +00003231 case PCC_LocalDeclarationSpecifiers:
Douglas Gregor504a6ae2010-01-10 23:08:15 +00003232 Results.setFilter(&ResultBuilder::IsOrdinaryNonValueName);
3233 break;
3234
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003235 case PCC_Statement:
Douglas Gregor5e35d592010-09-14 23:59:36 +00003236 case PCC_ParenthesizedExpression:
Douglas Gregor4d755e82010-08-24 23:58:17 +00003237 case PCC_Expression:
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003238 case PCC_ForInit:
3239 case PCC_Condition:
David Blaikiebbafb8a2012-03-11 07:00:24 +00003240 if (WantTypesInContext(CompletionContext, getLangOpts()))
Douglas Gregor70febae2010-05-28 00:49:12 +00003241 Results.setFilter(&ResultBuilder::IsOrdinaryName);
3242 else
3243 Results.setFilter(&ResultBuilder::IsOrdinaryNonTypeName);
Douglas Gregorac322ec2010-08-27 21:18:54 +00003244
David Blaikiebbafb8a2012-03-11 07:00:24 +00003245 if (getLangOpts().CPlusPlus)
Craig Topperc3ec1492014-05-26 06:22:03 +00003246 MaybeAddOverrideCalls(*this, /*InContext=*/nullptr, Results);
Douglas Gregor504a6ae2010-01-10 23:08:15 +00003247 break;
Douglas Gregor6da3db42010-05-25 05:58:43 +00003248
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003249 case PCC_RecoveryInFunction:
Douglas Gregor6da3db42010-05-25 05:58:43 +00003250 // Unfiltered
3251 break;
Douglas Gregor504a6ae2010-01-10 23:08:15 +00003252 }
3253
Douglas Gregor9be0ed42010-08-26 16:36:48 +00003254 // If we are in a C++ non-static member function, check the qualifiers on
3255 // the member function to filter/prioritize the results list.
3256 if (CXXMethodDecl *CurMethod = dyn_cast<CXXMethodDecl>(CurContext))
3257 if (CurMethod->isInstance())
3258 Results.setObjectTypeQualifiers(
3259 Qualifiers::fromCVRMask(CurMethod->getTypeQualifiers()));
3260
Douglas Gregorc580c522010-01-14 01:09:38 +00003261 CodeCompletionDeclConsumer Consumer(Results, CurContext);
Douglas Gregor39982192010-08-15 06:18:01 +00003262 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
3263 CodeCompleter->includeGlobals());
Douglas Gregor92253692009-12-07 09:54:55 +00003264
Douglas Gregorf98e6a22010-01-13 23:51:12 +00003265 AddOrdinaryNameResults(CompletionContext, S, *this, Results);
Douglas Gregor92253692009-12-07 09:54:55 +00003266 Results.ExitScope();
3267
Douglas Gregorce0e8562010-08-23 21:54:33 +00003268 switch (CompletionContext) {
Douglas Gregor5e35d592010-09-14 23:59:36 +00003269 case PCC_ParenthesizedExpression:
Douglas Gregorf02e5f32010-08-24 01:11:00 +00003270 case PCC_Expression:
3271 case PCC_Statement:
3272 case PCC_RecoveryInFunction:
3273 if (S->getFnParent())
David Blaikiebbafb8a2012-03-11 07:00:24 +00003274 AddPrettyFunctionResults(PP.getLangOpts(), Results);
Douglas Gregorf02e5f32010-08-24 01:11:00 +00003275 break;
3276
3277 case PCC_Namespace:
3278 case PCC_Class:
3279 case PCC_ObjCInterface:
3280 case PCC_ObjCImplementation:
3281 case PCC_ObjCInstanceVariableList:
3282 case PCC_Template:
3283 case PCC_MemberTemplate:
3284 case PCC_ForInit:
3285 case PCC_Condition:
3286 case PCC_Type:
Douglas Gregor80039242011-02-15 20:33:25 +00003287 case PCC_LocalDeclarationSpecifiers:
Douglas Gregorf02e5f32010-08-24 01:11:00 +00003288 break;
Douglas Gregorce0e8562010-08-23 21:54:33 +00003289 }
3290
Douglas Gregor9eb77012009-11-07 00:00:49 +00003291 if (CodeCompleter->includeMacros())
Douglas Gregor8cb17462012-10-09 16:01:50 +00003292 AddMacroResults(PP, Results, false);
Douglas Gregorce0e8562010-08-23 21:54:33 +00003293
Douglas Gregor50832e02010-09-20 22:39:41 +00003294 HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003295 Results.data(),Results.size());
Douglas Gregor9d64c5e2009-09-21 20:51:25 +00003296}
3297
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00003298static void AddClassMessageCompletions(Sema &SemaRef, Scope *S,
3299 ParsedType Receiver,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00003300 ArrayRef<IdentifierInfo *> SelIdents,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00003301 bool AtArgumentExpression,
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00003302 bool IsSuper,
3303 ResultBuilder &Results);
3304
3305void Sema::CodeCompleteDeclSpec(Scope *S, DeclSpec &DS,
3306 bool AllowNonIdentifiers,
3307 bool AllowNestedNameSpecifiers) {
John McCall276321a2010-08-25 06:19:51 +00003308 typedef CodeCompletionResult Result;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003309 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003310 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor0ac41382010-09-23 23:01:17 +00003311 AllowNestedNameSpecifiers
3312 ? CodeCompletionContext::CCC_PotentiallyQualifiedName
3313 : CodeCompletionContext::CCC_Name);
Douglas Gregorc49f5b22010-08-23 18:23:48 +00003314 Results.EnterNewScope();
3315
3316 // Type qualifiers can come after names.
3317 Results.AddResult(Result("const"));
3318 Results.AddResult(Result("volatile"));
David Blaikiebbafb8a2012-03-11 07:00:24 +00003319 if (getLangOpts().C99)
Douglas Gregorc49f5b22010-08-23 18:23:48 +00003320 Results.AddResult(Result("restrict"));
3321
David Blaikiebbafb8a2012-03-11 07:00:24 +00003322 if (getLangOpts().CPlusPlus) {
Douglas Gregorc49f5b22010-08-23 18:23:48 +00003323 if (AllowNonIdentifiers) {
3324 Results.AddResult(Result("operator"));
3325 }
3326
3327 // Add nested-name-specifiers.
3328 if (AllowNestedNameSpecifiers) {
3329 Results.allowNestedNameSpecifiers();
Douglas Gregor0ac41382010-09-23 23:01:17 +00003330 Results.setFilter(&ResultBuilder::IsImpossibleToSatisfy);
Douglas Gregorc49f5b22010-08-23 18:23:48 +00003331 CodeCompletionDeclConsumer Consumer(Results, CurContext);
3332 LookupVisibleDecls(S, LookupNestedNameSpecifierName, Consumer,
3333 CodeCompleter->includeGlobals());
Craig Topperc3ec1492014-05-26 06:22:03 +00003334 Results.setFilter(nullptr);
Douglas Gregorc49f5b22010-08-23 18:23:48 +00003335 }
3336 }
3337 Results.ExitScope();
3338
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00003339 // If we're in a context where we might have an expression (rather than a
3340 // declaration), and what we've seen so far is an Objective-C type that could
3341 // be a receiver of a class message, this may be a class message send with
3342 // the initial opening bracket '[' missing. Add appropriate completions.
3343 if (AllowNonIdentifiers && !AllowNestedNameSpecifiers &&
Richard Smithb4a9e862013-04-12 22:46:28 +00003344 DS.getParsedSpecifiers() == DeclSpec::PQ_TypeSpecifier &&
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00003345 DS.getTypeSpecType() == DeclSpec::TST_typename &&
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00003346 DS.getTypeSpecComplex() == DeclSpec::TSC_unspecified &&
3347 DS.getTypeSpecSign() == DeclSpec::TSS_unspecified &&
Richard Smithb4a9e862013-04-12 22:46:28 +00003348 !DS.isTypeAltiVecVector() &&
3349 S &&
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00003350 (S->getFlags() & Scope::DeclScope) != 0 &&
3351 (S->getFlags() & (Scope::ClassScope | Scope::TemplateParamScope |
3352 Scope::FunctionPrototypeScope |
3353 Scope::AtCatchScope)) == 0) {
3354 ParsedType T = DS.getRepAsType();
3355 if (!T.get().isNull() && T.get()->isObjCObjectOrInterfaceType())
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00003356 AddClassMessageCompletions(*this, S, T, None, false, false, Results);
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00003357 }
3358
Douglas Gregor56ccce02010-08-24 04:59:56 +00003359 // Note that we intentionally suppress macro results here, since we do not
3360 // encourage using macros to produce the names of entities.
3361
Douglas Gregor0ac41382010-09-23 23:01:17 +00003362 HandleCodeCompleteResults(this, CodeCompleter,
3363 Results.getCompletionContext(),
Douglas Gregorc49f5b22010-08-23 18:23:48 +00003364 Results.data(), Results.size());
3365}
3366
Douglas Gregor68762e72010-08-23 21:17:50 +00003367struct Sema::CodeCompleteExpressionData {
3368 CodeCompleteExpressionData(QualType PreferredType = QualType())
3369 : PreferredType(PreferredType), IntegralConstantExpression(false),
3370 ObjCCollection(false) { }
3371
3372 QualType PreferredType;
3373 bool IntegralConstantExpression;
3374 bool ObjCCollection;
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003375 SmallVector<Decl *, 4> IgnoreDecls;
Douglas Gregor68762e72010-08-23 21:17:50 +00003376};
3377
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003378/// \brief Perform code-completion in an expression context when we know what
3379/// type we're looking for.
Douglas Gregor68762e72010-08-23 21:17:50 +00003380void Sema::CodeCompleteExpression(Scope *S,
3381 const CodeCompleteExpressionData &Data) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003382 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003383 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003384 CodeCompletionContext::CCC_Expression);
Douglas Gregor68762e72010-08-23 21:17:50 +00003385 if (Data.ObjCCollection)
3386 Results.setFilter(&ResultBuilder::IsObjCCollection);
3387 else if (Data.IntegralConstantExpression)
Douglas Gregor85b50632010-07-28 21:50:18 +00003388 Results.setFilter(&ResultBuilder::IsIntegralConstantValue);
David Blaikiebbafb8a2012-03-11 07:00:24 +00003389 else if (WantTypesInContext(PCC_Expression, getLangOpts()))
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003390 Results.setFilter(&ResultBuilder::IsOrdinaryName);
3391 else
3392 Results.setFilter(&ResultBuilder::IsOrdinaryNonTypeName);
Douglas Gregor68762e72010-08-23 21:17:50 +00003393
3394 if (!Data.PreferredType.isNull())
3395 Results.setPreferredType(Data.PreferredType.getNonReferenceType());
3396
3397 // Ignore any declarations that we were told that we don't care about.
3398 for (unsigned I = 0, N = Data.IgnoreDecls.size(); I != N; ++I)
3399 Results.Ignore(Data.IgnoreDecls[I]);
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003400
3401 CodeCompletionDeclConsumer Consumer(Results, CurContext);
Douglas Gregor39982192010-08-15 06:18:01 +00003402 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
3403 CodeCompleter->includeGlobals());
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003404
3405 Results.EnterNewScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003406 AddOrdinaryNameResults(PCC_Expression, S, *this, Results);
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003407 Results.ExitScope();
3408
Douglas Gregor55b037b2010-07-08 20:55:51 +00003409 bool PreferredTypeIsPointer = false;
Douglas Gregor68762e72010-08-23 21:17:50 +00003410 if (!Data.PreferredType.isNull())
3411 PreferredTypeIsPointer = Data.PreferredType->isAnyPointerType()
3412 || Data.PreferredType->isMemberPointerType()
3413 || Data.PreferredType->isBlockPointerType();
Douglas Gregor55b037b2010-07-08 20:55:51 +00003414
Douglas Gregorce0e8562010-08-23 21:54:33 +00003415 if (S->getFnParent() &&
3416 !Data.ObjCCollection &&
3417 !Data.IntegralConstantExpression)
David Blaikiebbafb8a2012-03-11 07:00:24 +00003418 AddPrettyFunctionResults(PP.getLangOpts(), Results);
Douglas Gregorce0e8562010-08-23 21:54:33 +00003419
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003420 if (CodeCompleter->includeMacros())
Douglas Gregor8cb17462012-10-09 16:01:50 +00003421 AddMacroResults(PP, Results, false, PreferredTypeIsPointer);
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003422 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor68762e72010-08-23 21:17:50 +00003423 CodeCompletionContext(CodeCompletionContext::CCC_Expression,
3424 Data.PreferredType),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003425 Results.data(),Results.size());
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003426}
3427
Douglas Gregoreda7e542010-09-18 01:28:11 +00003428void Sema::CodeCompletePostfixExpression(Scope *S, ExprResult E) {
3429 if (E.isInvalid())
3430 CodeCompleteOrdinaryName(S, PCC_RecoveryInFunction);
David Blaikiebbafb8a2012-03-11 07:00:24 +00003431 else if (getLangOpts().ObjC1)
Nikola Smiljanic01a75982014-05-29 10:55:11 +00003432 CodeCompleteObjCInstanceMessage(S, E.get(), None, false);
Douglas Gregored0b69d2010-09-15 16:23:04 +00003433}
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003434
Douglas Gregorb888acf2010-12-09 23:01:55 +00003435/// \brief The set of properties that have already been added, referenced by
3436/// property name.
3437typedef llvm::SmallPtrSet<IdentifierInfo*, 16> AddedPropertiesSet;
3438
Douglas Gregor9b4f3702012-06-12 13:44:08 +00003439/// \brief Retrieve the container definition, if any?
3440static ObjCContainerDecl *getContainerDef(ObjCContainerDecl *Container) {
3441 if (ObjCInterfaceDecl *Interface = dyn_cast<ObjCInterfaceDecl>(Container)) {
3442 if (Interface->hasDefinition())
3443 return Interface->getDefinition();
3444
3445 return Interface;
3446 }
3447
3448 if (ObjCProtocolDecl *Protocol = dyn_cast<ObjCProtocolDecl>(Container)) {
3449 if (Protocol->hasDefinition())
3450 return Protocol->getDefinition();
3451
3452 return Protocol;
3453 }
3454 return Container;
3455}
3456
3457static void AddObjCProperties(ObjCContainerDecl *Container,
Douglas Gregor5d649882009-11-18 22:32:06 +00003458 bool AllowCategories,
Douglas Gregor95147142011-05-05 15:50:42 +00003459 bool AllowNullaryMethods,
Douglas Gregor9291bad2009-11-18 01:29:26 +00003460 DeclContext *CurContext,
Douglas Gregorb888acf2010-12-09 23:01:55 +00003461 AddedPropertiesSet &AddedProperties,
Douglas Gregor9291bad2009-11-18 01:29:26 +00003462 ResultBuilder &Results) {
John McCall276321a2010-08-25 06:19:51 +00003463 typedef CodeCompletionResult Result;
Douglas Gregor9291bad2009-11-18 01:29:26 +00003464
Douglas Gregor9b4f3702012-06-12 13:44:08 +00003465 // Retrieve the definition.
3466 Container = getContainerDef(Container);
3467
Douglas Gregor9291bad2009-11-18 01:29:26 +00003468 // Add properties in this container.
Aaron Ballmand174edf2014-03-13 19:11:50 +00003469 for (const auto *P : Container->properties())
David Blaikie82e95a32014-11-19 07:49:47 +00003470 if (AddedProperties.insert(P->getIdentifier()).second)
Craig Topperc3ec1492014-05-26 06:22:03 +00003471 Results.MaybeAddResult(Result(P, Results.getBasePriority(P), nullptr),
Douglas Gregor0a0e2b32013-01-31 04:52:16 +00003472 CurContext);
Craig Topperc3ec1492014-05-26 06:22:03 +00003473
Douglas Gregor95147142011-05-05 15:50:42 +00003474 // Add nullary methods
3475 if (AllowNullaryMethods) {
3476 ASTContext &Context = Container->getASTContext();
Douglas Gregor75acd922011-09-27 23:30:47 +00003477 PrintingPolicy Policy = getCompletionPrintingPolicy(Results.getSema());
Aaron Ballmanaff18c02014-03-13 19:03:34 +00003478 for (auto *M : Container->methods()) {
Douglas Gregor95147142011-05-05 15:50:42 +00003479 if (M->getSelector().isUnarySelector())
3480 if (IdentifierInfo *Name = M->getSelector().getIdentifierInfoForSlot(0))
David Blaikie82e95a32014-11-19 07:49:47 +00003481 if (AddedProperties.insert(Name).second) {
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003482 CodeCompletionBuilder Builder(Results.getAllocator(),
3483 Results.getCodeCompletionTUInfo());
Aaron Ballmanaff18c02014-03-13 19:03:34 +00003484 AddResultTypeChunk(Context, Policy, M, Builder);
Douglas Gregor95147142011-05-05 15:50:42 +00003485 Builder.AddTypedTextChunk(
3486 Results.getAllocator().CopyString(Name->getName()));
3487
Aaron Ballmanaff18c02014-03-13 19:03:34 +00003488 Results.MaybeAddResult(Result(Builder.TakeString(), M,
Douglas Gregor78254c82012-03-27 23:34:16 +00003489 CCP_MemberDeclaration + CCD_MethodAsProperty),
Douglas Gregor95147142011-05-05 15:50:42 +00003490 CurContext);
3491 }
3492 }
3493 }
3494
3495
Douglas Gregor9291bad2009-11-18 01:29:26 +00003496 // Add properties in referenced protocols.
3497 if (ObjCProtocolDecl *Protocol = dyn_cast<ObjCProtocolDecl>(Container)) {
Aaron Ballman0f6e64d2014-03-13 22:58:06 +00003498 for (auto *P : Protocol->protocols())
3499 AddObjCProperties(P, AllowCategories, AllowNullaryMethods, CurContext,
Douglas Gregor95147142011-05-05 15:50:42 +00003500 AddedProperties, Results);
Douglas Gregor9291bad2009-11-18 01:29:26 +00003501 } else if (ObjCInterfaceDecl *IFace = dyn_cast<ObjCInterfaceDecl>(Container)){
Douglas Gregor5d649882009-11-18 22:32:06 +00003502 if (AllowCategories) {
3503 // Look through categories.
Aaron Ballman15063e12014-03-13 21:35:02 +00003504 for (auto *Cat : IFace->known_categories())
3505 AddObjCProperties(Cat, AllowCategories, AllowNullaryMethods, CurContext,
3506 AddedProperties, Results);
Douglas Gregor5d649882009-11-18 22:32:06 +00003507 }
Aaron Ballman15063e12014-03-13 21:35:02 +00003508
Douglas Gregor9291bad2009-11-18 01:29:26 +00003509 // Look through protocols.
Aaron Ballmana9f49e32014-03-13 20:55:22 +00003510 for (auto *I : IFace->all_referenced_protocols())
3511 AddObjCProperties(I, AllowCategories, AllowNullaryMethods, CurContext,
Douglas Gregor95147142011-05-05 15:50:42 +00003512 AddedProperties, Results);
Douglas Gregor9291bad2009-11-18 01:29:26 +00003513
3514 // Look in the superclass.
3515 if (IFace->getSuperClass())
Douglas Gregor95147142011-05-05 15:50:42 +00003516 AddObjCProperties(IFace->getSuperClass(), AllowCategories,
3517 AllowNullaryMethods, CurContext,
Douglas Gregorb888acf2010-12-09 23:01:55 +00003518 AddedProperties, Results);
Douglas Gregor9291bad2009-11-18 01:29:26 +00003519 } else if (const ObjCCategoryDecl *Category
3520 = dyn_cast<ObjCCategoryDecl>(Container)) {
3521 // Look through protocols.
Aaron Ballman19a41762014-03-14 12:55:57 +00003522 for (auto *P : Category->protocols())
3523 AddObjCProperties(P, AllowCategories, AllowNullaryMethods, CurContext,
Douglas Gregor95147142011-05-05 15:50:42 +00003524 AddedProperties, Results);
Douglas Gregor9291bad2009-11-18 01:29:26 +00003525 }
3526}
3527
Douglas Gregor1cc88a92012-01-23 15:59:30 +00003528void Sema::CodeCompleteMemberReferenceExpr(Scope *S, Expr *Base,
Douglas Gregor2436e712009-09-17 21:32:03 +00003529 SourceLocation OpLoc,
3530 bool IsArrow) {
Douglas Gregor1cc88a92012-01-23 15:59:30 +00003531 if (!Base || !CodeCompleter)
Douglas Gregor2436e712009-09-17 21:32:03 +00003532 return;
3533
Douglas Gregor1cc88a92012-01-23 15:59:30 +00003534 ExprResult ConvertedBase = PerformMemberExprBaseConversion(Base, IsArrow);
3535 if (ConvertedBase.isInvalid())
3536 return;
3537 Base = ConvertedBase.get();
3538
John McCall276321a2010-08-25 06:19:51 +00003539 typedef CodeCompletionResult Result;
Douglas Gregor3545ff42009-09-21 16:56:56 +00003540
Douglas Gregor2436e712009-09-17 21:32:03 +00003541 QualType BaseType = Base->getType();
Douglas Gregor3545ff42009-09-21 16:56:56 +00003542
3543 if (IsArrow) {
3544 if (const PointerType *Ptr = BaseType->getAs<PointerType>())
3545 BaseType = Ptr->getPointeeType();
3546 else if (BaseType->isObjCObjectPointerType())
Douglas Gregor9be0ed42010-08-26 16:36:48 +00003547 /*Do nothing*/ ;
Douglas Gregor3545ff42009-09-21 16:56:56 +00003548 else
3549 return;
3550 }
3551
Douglas Gregor21325842011-07-07 16:03:39 +00003552 enum CodeCompletionContext::Kind contextKind;
3553
3554 if (IsArrow) {
3555 contextKind = CodeCompletionContext::CCC_ArrowMemberAccess;
3556 }
3557 else {
3558 if (BaseType->isObjCObjectPointerType() ||
3559 BaseType->isObjCObjectOrInterfaceType()) {
3560 contextKind = CodeCompletionContext::CCC_ObjCPropertyAccess;
3561 }
3562 else {
3563 contextKind = CodeCompletionContext::CCC_DotMemberAccess;
3564 }
3565 }
3566
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003567 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003568 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor21325842011-07-07 16:03:39 +00003569 CodeCompletionContext(contextKind,
Douglas Gregor0ac41382010-09-23 23:01:17 +00003570 BaseType),
3571 &ResultBuilder::IsMember);
Douglas Gregor9291bad2009-11-18 01:29:26 +00003572 Results.EnterNewScope();
3573 if (const RecordType *Record = BaseType->getAs<RecordType>()) {
Douglas Gregor9be0ed42010-08-26 16:36:48 +00003574 // Indicate that we are performing a member access, and the cv-qualifiers
3575 // for the base object type.
3576 Results.setObjectTypeQualifiers(BaseType.getQualifiers());
3577
Douglas Gregor9291bad2009-11-18 01:29:26 +00003578 // Access to a C/C++ class, struct, or union.
Douglas Gregor6ae4c522010-01-14 03:21:49 +00003579 Results.allowNestedNameSpecifiers();
Douglas Gregor09bbc652010-01-14 15:47:35 +00003580 CodeCompletionDeclConsumer Consumer(Results, CurContext);
Douglas Gregor39982192010-08-15 06:18:01 +00003581 LookupVisibleDecls(Record->getDecl(), LookupMemberName, Consumer,
3582 CodeCompleter->includeGlobals());
Daniel Dunbar242ea9a2009-11-13 08:58:20 +00003583
David Blaikiebbafb8a2012-03-11 07:00:24 +00003584 if (getLangOpts().CPlusPlus) {
Douglas Gregor9291bad2009-11-18 01:29:26 +00003585 if (!Results.empty()) {
3586 // The "template" keyword can follow "->" or "." in the grammar.
3587 // However, we only want to suggest the template keyword if something
3588 // is dependent.
3589 bool IsDependent = BaseType->isDependentType();
3590 if (!IsDependent) {
3591 for (Scope *DepScope = S; DepScope; DepScope = DepScope->getParent())
Ted Kremenekc37877d2013-10-08 17:08:03 +00003592 if (DeclContext *Ctx = DepScope->getEntity()) {
Douglas Gregor9291bad2009-11-18 01:29:26 +00003593 IsDependent = Ctx->isDependentContext();
3594 break;
3595 }
3596 }
Daniel Dunbar242ea9a2009-11-13 08:58:20 +00003597
Douglas Gregor9291bad2009-11-18 01:29:26 +00003598 if (IsDependent)
Douglas Gregor78a21012010-01-14 16:01:26 +00003599 Results.AddResult(Result("template"));
Daniel Dunbar242ea9a2009-11-13 08:58:20 +00003600 }
Daniel Dunbar242ea9a2009-11-13 08:58:20 +00003601 }
Douglas Gregor9291bad2009-11-18 01:29:26 +00003602 } else if (!IsArrow && BaseType->getAsObjCInterfacePointerType()) {
3603 // Objective-C property reference.
Douglas Gregorb888acf2010-12-09 23:01:55 +00003604 AddedPropertiesSet AddedProperties;
Douglas Gregor9291bad2009-11-18 01:29:26 +00003605
3606 // Add property results based on our interface.
3607 const ObjCObjectPointerType *ObjCPtr
3608 = BaseType->getAsObjCInterfacePointerType();
3609 assert(ObjCPtr && "Non-NULL pointer guaranteed above!");
Douglas Gregor95147142011-05-05 15:50:42 +00003610 AddObjCProperties(ObjCPtr->getInterfaceDecl(), true,
3611 /*AllowNullaryMethods=*/true, CurContext,
Douglas Gregorb888acf2010-12-09 23:01:55 +00003612 AddedProperties, Results);
Douglas Gregor9291bad2009-11-18 01:29:26 +00003613
3614 // Add properties from the protocols in a qualified interface.
Aaron Ballman83731462014-03-17 16:14:00 +00003615 for (auto *I : ObjCPtr->quals())
3616 AddObjCProperties(I, true, /*AllowNullaryMethods=*/true, CurContext,
Douglas Gregor95147142011-05-05 15:50:42 +00003617 AddedProperties, Results);
Douglas Gregor9291bad2009-11-18 01:29:26 +00003618 } else if ((IsArrow && BaseType->isObjCObjectPointerType()) ||
John McCall8b07ec22010-05-15 11:32:37 +00003619 (!IsArrow && BaseType->isObjCObjectType())) {
Douglas Gregor9291bad2009-11-18 01:29:26 +00003620 // Objective-C instance variable access.
Craig Topperc3ec1492014-05-26 06:22:03 +00003621 ObjCInterfaceDecl *Class = nullptr;
Douglas Gregor9291bad2009-11-18 01:29:26 +00003622 if (const ObjCObjectPointerType *ObjCPtr
3623 = BaseType->getAs<ObjCObjectPointerType>())
3624 Class = ObjCPtr->getInterfaceDecl();
3625 else
John McCall8b07ec22010-05-15 11:32:37 +00003626 Class = BaseType->getAs<ObjCObjectType>()->getInterface();
Douglas Gregor9291bad2009-11-18 01:29:26 +00003627
3628 // Add all ivars from this class and its superclasses.
Douglas Gregor2b8162b2010-01-14 16:08:12 +00003629 if (Class) {
3630 CodeCompletionDeclConsumer Consumer(Results, CurContext);
3631 Results.setFilter(&ResultBuilder::IsObjCIvar);
Douglas Gregor39982192010-08-15 06:18:01 +00003632 LookupVisibleDecls(Class, LookupMemberName, Consumer,
3633 CodeCompleter->includeGlobals());
Douglas Gregor9291bad2009-11-18 01:29:26 +00003634 }
Douglas Gregor3545ff42009-09-21 16:56:56 +00003635 }
Douglas Gregor9291bad2009-11-18 01:29:26 +00003636
3637 // FIXME: How do we cope with isa?
3638
3639 Results.ExitScope();
Daniel Dunbar242ea9a2009-11-13 08:58:20 +00003640
Daniel Dunbar242ea9a2009-11-13 08:58:20 +00003641 // Hand off the results found for code completion.
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003642 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor0ac41382010-09-23 23:01:17 +00003643 Results.getCompletionContext(),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003644 Results.data(),Results.size());
Douglas Gregor2436e712009-09-17 21:32:03 +00003645}
3646
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00003647void Sema::CodeCompleteTag(Scope *S, unsigned TagSpec) {
3648 if (!CodeCompleter)
3649 return;
Craig Topperc3ec1492014-05-26 06:22:03 +00003650
3651 ResultBuilder::LookupFilter Filter = nullptr;
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003652 enum CodeCompletionContext::Kind ContextKind
3653 = CodeCompletionContext::CCC_Other;
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00003654 switch ((DeclSpec::TST)TagSpec) {
3655 case DeclSpec::TST_enum:
Douglas Gregor3545ff42009-09-21 16:56:56 +00003656 Filter = &ResultBuilder::IsEnum;
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003657 ContextKind = CodeCompletionContext::CCC_EnumTag;
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00003658 break;
3659
3660 case DeclSpec::TST_union:
Douglas Gregor3545ff42009-09-21 16:56:56 +00003661 Filter = &ResultBuilder::IsUnion;
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003662 ContextKind = CodeCompletionContext::CCC_UnionTag;
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00003663 break;
3664
3665 case DeclSpec::TST_struct:
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00003666 case DeclSpec::TST_class:
Joao Matosdc86f942012-08-31 18:45:21 +00003667 case DeclSpec::TST_interface:
Douglas Gregor3545ff42009-09-21 16:56:56 +00003668 Filter = &ResultBuilder::IsClassOrStruct;
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003669 ContextKind = CodeCompletionContext::CCC_ClassOrStructTag;
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00003670 break;
3671
3672 default:
David Blaikie83d382b2011-09-23 05:06:16 +00003673 llvm_unreachable("Unknown type specifier kind in CodeCompleteTag");
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00003674 }
Douglas Gregor3545ff42009-09-21 16:56:56 +00003675
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003676 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
3677 CodeCompleter->getCodeCompletionTUInfo(), ContextKind);
Douglas Gregora6e2edc2010-01-14 03:27:13 +00003678 CodeCompletionDeclConsumer Consumer(Results, CurContext);
John McCalle87beb22010-04-23 18:46:30 +00003679
3680 // First pass: look for tags.
3681 Results.setFilter(Filter);
Douglas Gregor39982192010-08-15 06:18:01 +00003682 LookupVisibleDecls(S, LookupTagName, Consumer,
3683 CodeCompleter->includeGlobals());
John McCalle87beb22010-04-23 18:46:30 +00003684
Douglas Gregor39982192010-08-15 06:18:01 +00003685 if (CodeCompleter->includeGlobals()) {
3686 // Second pass: look for nested name specifiers.
3687 Results.setFilter(&ResultBuilder::IsNestedNameSpecifier);
3688 LookupVisibleDecls(S, LookupNestedNameSpecifierName, Consumer);
3689 }
Douglas Gregor3545ff42009-09-21 16:56:56 +00003690
Douglas Gregor0ac41382010-09-23 23:01:17 +00003691 HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003692 Results.data(),Results.size());
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00003693}
3694
Douglas Gregor28c78432010-08-27 17:35:51 +00003695void Sema::CodeCompleteTypeQualifiers(DeclSpec &DS) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003696 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003697 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003698 CodeCompletionContext::CCC_TypeQualifiers);
Douglas Gregor28c78432010-08-27 17:35:51 +00003699 Results.EnterNewScope();
3700 if (!(DS.getTypeQualifiers() & DeclSpec::TQ_const))
3701 Results.AddResult("const");
3702 if (!(DS.getTypeQualifiers() & DeclSpec::TQ_volatile))
3703 Results.AddResult("volatile");
David Blaikiebbafb8a2012-03-11 07:00:24 +00003704 if (getLangOpts().C99 &&
Douglas Gregor28c78432010-08-27 17:35:51 +00003705 !(DS.getTypeQualifiers() & DeclSpec::TQ_restrict))
3706 Results.AddResult("restrict");
Richard Smith8e1ac332013-03-28 01:55:44 +00003707 if (getLangOpts().C11 &&
3708 !(DS.getTypeQualifiers() & DeclSpec::TQ_atomic))
3709 Results.AddResult("_Atomic");
Douglas Gregor28c78432010-08-27 17:35:51 +00003710 Results.ExitScope();
3711 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor0ac41382010-09-23 23:01:17 +00003712 Results.getCompletionContext(),
Douglas Gregor28c78432010-08-27 17:35:51 +00003713 Results.data(), Results.size());
3714}
3715
Douglas Gregord328d572009-09-21 18:10:23 +00003716void Sema::CodeCompleteCase(Scope *S) {
John McCallaab3e412010-08-25 08:40:02 +00003717 if (getCurFunction()->SwitchStack.empty() || !CodeCompleter)
Douglas Gregord328d572009-09-21 18:10:23 +00003718 return;
John McCall5939b162011-08-06 07:30:58 +00003719
John McCallaab3e412010-08-25 08:40:02 +00003720 SwitchStmt *Switch = getCurFunction()->SwitchStack.back();
John McCall5939b162011-08-06 07:30:58 +00003721 QualType type = Switch->getCond()->IgnoreImplicit()->getType();
3722 if (!type->isEnumeralType()) {
3723 CodeCompleteExpressionData Data(type);
Douglas Gregor68762e72010-08-23 21:17:50 +00003724 Data.IntegralConstantExpression = true;
3725 CodeCompleteExpression(S, Data);
Douglas Gregord328d572009-09-21 18:10:23 +00003726 return;
Douglas Gregor85b50632010-07-28 21:50:18 +00003727 }
Douglas Gregord328d572009-09-21 18:10:23 +00003728
3729 // Code-complete the cases of a switch statement over an enumeration type
3730 // by providing the list of
John McCall5939b162011-08-06 07:30:58 +00003731 EnumDecl *Enum = type->castAs<EnumType>()->getDecl();
Douglas Gregor9b4f3702012-06-12 13:44:08 +00003732 if (EnumDecl *Def = Enum->getDefinition())
3733 Enum = Def;
Douglas Gregord328d572009-09-21 18:10:23 +00003734
3735 // Determine which enumerators we have already seen in the switch statement.
3736 // FIXME: Ideally, we would also be able to look *past* the code-completion
3737 // token, in case we are code-completing in the middle of the switch and not
3738 // at the end. However, we aren't able to do so at the moment.
3739 llvm::SmallPtrSet<EnumConstantDecl *, 8> EnumeratorsSeen;
Craig Topperc3ec1492014-05-26 06:22:03 +00003740 NestedNameSpecifier *Qualifier = nullptr;
Douglas Gregord328d572009-09-21 18:10:23 +00003741 for (SwitchCase *SC = Switch->getSwitchCaseList(); SC;
3742 SC = SC->getNextSwitchCase()) {
3743 CaseStmt *Case = dyn_cast<CaseStmt>(SC);
3744 if (!Case)
3745 continue;
3746
3747 Expr *CaseVal = Case->getLHS()->IgnoreParenCasts();
3748 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CaseVal))
3749 if (EnumConstantDecl *Enumerator
3750 = dyn_cast<EnumConstantDecl>(DRE->getDecl())) {
3751 // We look into the AST of the case statement to determine which
3752 // enumerator was named. Alternatively, we could compute the value of
3753 // the integral constant expression, then compare it against the
3754 // values of each enumerator. However, value-based approach would not
3755 // work as well with C++ templates where enumerators declared within a
3756 // template are type- and value-dependent.
3757 EnumeratorsSeen.insert(Enumerator);
3758
Douglas Gregorf2510672009-09-21 19:57:38 +00003759 // If this is a qualified-id, keep track of the nested-name-specifier
3760 // so that we can reproduce it as part of code completion, e.g.,
Douglas Gregord328d572009-09-21 18:10:23 +00003761 //
3762 // switch (TagD.getKind()) {
3763 // case TagDecl::TK_enum:
3764 // break;
3765 // case XXX
3766 //
Douglas Gregorf2510672009-09-21 19:57:38 +00003767 // At the XXX, our completions are TagDecl::TK_union,
Douglas Gregord328d572009-09-21 18:10:23 +00003768 // TagDecl::TK_struct, and TagDecl::TK_class, rather than TK_union,
3769 // TK_struct, and TK_class.
Douglas Gregor4bd90e52009-10-23 18:54:35 +00003770 Qualifier = DRE->getQualifier();
Douglas Gregord328d572009-09-21 18:10:23 +00003771 }
3772 }
3773
David Blaikiebbafb8a2012-03-11 07:00:24 +00003774 if (getLangOpts().CPlusPlus && !Qualifier && EnumeratorsSeen.empty()) {
Douglas Gregorf2510672009-09-21 19:57:38 +00003775 // If there are no prior enumerators in C++, check whether we have to
3776 // qualify the names of the enumerators that we suggest, because they
3777 // may not be visible in this scope.
Douglas Gregord3cebdb2012-02-01 05:02:47 +00003778 Qualifier = getRequiredQualification(Context, CurContext, Enum);
Douglas Gregorf2510672009-09-21 19:57:38 +00003779 }
3780
Douglas Gregord328d572009-09-21 18:10:23 +00003781 // Add any enumerators that have not yet been mentioned.
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003782 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003783 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003784 CodeCompletionContext::CCC_Expression);
Douglas Gregord328d572009-09-21 18:10:23 +00003785 Results.EnterNewScope();
Aaron Ballman23a6dcb2014-03-08 18:45:14 +00003786 for (auto *E : Enum->enumerators()) {
3787 if (EnumeratorsSeen.count(E))
Douglas Gregord328d572009-09-21 18:10:23 +00003788 continue;
3789
Aaron Ballman23a6dcb2014-03-08 18:45:14 +00003790 CodeCompletionResult R(E, CCP_EnumInCase, Qualifier);
Craig Topperc3ec1492014-05-26 06:22:03 +00003791 Results.AddResult(R, CurContext, nullptr, false);
Douglas Gregord328d572009-09-21 18:10:23 +00003792 }
3793 Results.ExitScope();
Douglas Gregor285560922010-04-06 20:02:15 +00003794
Douglas Gregor21325842011-07-07 16:03:39 +00003795 //We need to make sure we're setting the right context,
3796 //so only say we include macros if the code completer says we do
3797 enum CodeCompletionContext::Kind kind = CodeCompletionContext::CCC_Other;
3798 if (CodeCompleter->includeMacros()) {
Douglas Gregor8cb17462012-10-09 16:01:50 +00003799 AddMacroResults(PP, Results, false);
Douglas Gregor21325842011-07-07 16:03:39 +00003800 kind = CodeCompletionContext::CCC_OtherWithMacros;
3801 }
3802
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003803 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor21325842011-07-07 16:03:39 +00003804 kind,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003805 Results.data(),Results.size());
Douglas Gregord328d572009-09-21 18:10:23 +00003806}
3807
Robert Wilhelm16e94b92013-08-09 18:02:13 +00003808static bool anyNullArguments(ArrayRef<Expr *> Args) {
Ahmed Charlesb24b9aa2012-02-25 11:00:22 +00003809 if (Args.size() && !Args.data())
Douglas Gregor6ed3eb82010-05-30 06:10:08 +00003810 return true;
Ahmed Charlesb24b9aa2012-02-25 11:00:22 +00003811
3812 for (unsigned I = 0; I != Args.size(); ++I)
Douglas Gregor6ed3eb82010-05-30 06:10:08 +00003813 if (!Args[I])
3814 return true;
Ahmed Charlesb24b9aa2012-02-25 11:00:22 +00003815
Douglas Gregor6ed3eb82010-05-30 06:10:08 +00003816 return false;
3817}
3818
Robert Wilhelm16e94b92013-08-09 18:02:13 +00003819void Sema::CodeCompleteCall(Scope *S, Expr *FnIn, ArrayRef<Expr *> Args) {
Douglas Gregorcabea402009-09-22 15:41:20 +00003820 if (!CodeCompleter)
3821 return;
Douglas Gregor3ef59522009-12-11 19:06:04 +00003822
3823 // When we're code-completing for a call, we fall back to ordinary
3824 // name code-completion whenever we can't produce specific
3825 // results. We may want to revisit this strategy in the future,
3826 // e.g., by merging the two kinds of results.
3827
Douglas Gregorcabea402009-09-22 15:41:20 +00003828 Expr *Fn = (Expr *)FnIn;
Douglas Gregor3ef59522009-12-11 19:06:04 +00003829
Douglas Gregorcabea402009-09-22 15:41:20 +00003830 // Ignore type-dependent call expressions entirely.
Ahmed Charlesb24b9aa2012-02-25 11:00:22 +00003831 if (!Fn || Fn->isTypeDependent() || anyNullArguments(Args) ||
3832 Expr::hasAnyTypeDependentArguments(Args)) {
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003833 CodeCompleteOrdinaryName(S, PCC_Expression);
Douglas Gregorcabea402009-09-22 15:41:20 +00003834 return;
Douglas Gregor3ef59522009-12-11 19:06:04 +00003835 }
Douglas Gregorcabea402009-09-22 15:41:20 +00003836
John McCall57500772009-12-16 12:17:52 +00003837 // Build an overload candidate set based on the functions we find.
John McCallbc077cf2010-02-08 23:07:23 +00003838 SourceLocation Loc = Fn->getExprLoc();
Richard Smith100b24a2014-04-17 01:52:14 +00003839 OverloadCandidateSet CandidateSet(Loc, OverloadCandidateSet::CSK_Normal);
John McCall57500772009-12-16 12:17:52 +00003840
Douglas Gregorcabea402009-09-22 15:41:20 +00003841 // FIXME: What if we're calling something that isn't a function declaration?
3842 // FIXME: What if we're calling a pseudo-destructor?
3843 // FIXME: What if we're calling a member function?
3844
Douglas Gregorff59f672010-01-21 15:46:19 +00003845 typedef CodeCompleteConsumer::OverloadCandidate ResultCandidate;
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003846 SmallVector<ResultCandidate, 8> Results;
Douglas Gregorff59f672010-01-21 15:46:19 +00003847
John McCall57500772009-12-16 12:17:52 +00003848 Expr *NakedFn = Fn->IgnoreParenCasts();
3849 if (UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(NakedFn))
Ahmed Charlesb24b9aa2012-02-25 11:00:22 +00003850 AddOverloadedCallCandidates(ULE, Args, CandidateSet,
John McCall57500772009-12-16 12:17:52 +00003851 /*PartialOverloading=*/ true);
3852 else if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(NakedFn)) {
3853 FunctionDecl *FDecl = dyn_cast<FunctionDecl>(DRE->getDecl());
Douglas Gregorff59f672010-01-21 15:46:19 +00003854 if (FDecl) {
David Blaikiebbafb8a2012-03-11 07:00:24 +00003855 if (!getLangOpts().CPlusPlus ||
Douglas Gregor6ed3eb82010-05-30 06:10:08 +00003856 !FDecl->getType()->getAs<FunctionProtoType>())
Douglas Gregorff59f672010-01-21 15:46:19 +00003857 Results.push_back(ResultCandidate(FDecl));
3858 else
John McCallb89836b2010-01-26 01:37:31 +00003859 // FIXME: access?
Ahmed Charlesb24b9aa2012-02-25 11:00:22 +00003860 AddOverloadCandidate(FDecl, DeclAccessPair::make(FDecl, AS_none), Args,
3861 CandidateSet, false, /*PartialOverloading*/true);
Douglas Gregorff59f672010-01-21 15:46:19 +00003862 }
John McCall57500772009-12-16 12:17:52 +00003863 }
Douglas Gregorcabea402009-09-22 15:41:20 +00003864
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003865 QualType ParamType;
3866
Douglas Gregorff59f672010-01-21 15:46:19 +00003867 if (!CandidateSet.empty()) {
3868 // Sort the overload candidate set by placing the best overloads first.
Benjamin Kramerbbdd7642014-03-01 14:48:57 +00003869 std::stable_sort(
3870 CandidateSet.begin(), CandidateSet.end(),
3871 [&](const OverloadCandidate &X, const OverloadCandidate &Y) {
3872 return isBetterOverloadCandidate(*this, X, Y, Loc);
3873 });
3874
Douglas Gregorff59f672010-01-21 15:46:19 +00003875 // Add the remaining viable overload candidates as code-completion reslults.
3876 for (OverloadCandidateSet::iterator Cand = CandidateSet.begin(),
3877 CandEnd = CandidateSet.end();
3878 Cand != CandEnd; ++Cand) {
3879 if (Cand->Viable)
3880 Results.push_back(ResultCandidate(Cand->Function));
3881 }
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003882
3883 // From the viable candidates, try to determine the type of this parameter.
3884 for (unsigned I = 0, N = Results.size(); I != N; ++I) {
3885 if (const FunctionType *FType = Results[I].getFunctionType())
3886 if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FType))
Alp Toker9cacbab2014-01-20 20:26:09 +00003887 if (Args.size() < Proto->getNumParams()) {
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003888 if (ParamType.isNull())
Alp Toker9cacbab2014-01-20 20:26:09 +00003889 ParamType = Proto->getParamType(Args.size());
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003890 else if (!Context.hasSameUnqualifiedType(
Alp Toker9cacbab2014-01-20 20:26:09 +00003891 ParamType.getNonReferenceType(),
3892 Proto->getParamType(Args.size())
3893 .getNonReferenceType())) {
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003894 ParamType = QualType();
3895 break;
3896 }
3897 }
3898 }
3899 } else {
3900 // Try to determine the parameter type from the type of the expression
3901 // being called.
3902 QualType FunctionType = Fn->getType();
3903 if (const PointerType *Ptr = FunctionType->getAs<PointerType>())
3904 FunctionType = Ptr->getPointeeType();
3905 else if (const BlockPointerType *BlockPtr
3906 = FunctionType->getAs<BlockPointerType>())
3907 FunctionType = BlockPtr->getPointeeType();
3908 else if (const MemberPointerType *MemPtr
3909 = FunctionType->getAs<MemberPointerType>())
3910 FunctionType = MemPtr->getPointeeType();
3911
3912 if (const FunctionProtoType *Proto
3913 = FunctionType->getAs<FunctionProtoType>()) {
Alp Toker9cacbab2014-01-20 20:26:09 +00003914 if (Args.size() < Proto->getNumParams())
3915 ParamType = Proto->getParamType(Args.size());
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003916 }
Douglas Gregorcabea402009-09-22 15:41:20 +00003917 }
Douglas Gregor3ef59522009-12-11 19:06:04 +00003918
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003919 if (ParamType.isNull())
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003920 CodeCompleteOrdinaryName(S, PCC_Expression);
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003921 else
3922 CodeCompleteExpression(S, ParamType);
3923
Douglas Gregorc01890e2010-04-06 20:19:47 +00003924 if (!Results.empty())
Ahmed Charlesb24b9aa2012-02-25 11:00:22 +00003925 CodeCompleter->ProcessOverloadCandidates(*this, Args.size(), Results.data(),
Douglas Gregor3ef59522009-12-11 19:06:04 +00003926 Results.size());
Douglas Gregorcabea402009-09-22 15:41:20 +00003927}
3928
John McCall48871652010-08-21 09:40:31 +00003929void Sema::CodeCompleteInitializer(Scope *S, Decl *D) {
3930 ValueDecl *VD = dyn_cast_or_null<ValueDecl>(D);
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003931 if (!VD) {
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003932 CodeCompleteOrdinaryName(S, PCC_Expression);
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003933 return;
3934 }
3935
3936 CodeCompleteExpression(S, VD->getType());
3937}
3938
3939void Sema::CodeCompleteReturn(Scope *S) {
3940 QualType ResultType;
3941 if (isa<BlockDecl>(CurContext)) {
3942 if (BlockScopeInfo *BSI = getCurBlock())
3943 ResultType = BSI->ReturnType;
3944 } else if (FunctionDecl *Function = dyn_cast<FunctionDecl>(CurContext))
Alp Toker314cc812014-01-25 16:55:45 +00003945 ResultType = Function->getReturnType();
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003946 else if (ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(CurContext))
Alp Toker314cc812014-01-25 16:55:45 +00003947 ResultType = Method->getReturnType();
3948
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003949 if (ResultType.isNull())
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003950 CodeCompleteOrdinaryName(S, PCC_Expression);
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003951 else
3952 CodeCompleteExpression(S, ResultType);
3953}
3954
Douglas Gregor4ecb7202011-07-30 08:36:53 +00003955void Sema::CodeCompleteAfterIf(Scope *S) {
Douglas Gregor4ecb7202011-07-30 08:36:53 +00003956 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003957 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor4ecb7202011-07-30 08:36:53 +00003958 mapCodeCompletionContext(*this, PCC_Statement));
3959 Results.setFilter(&ResultBuilder::IsOrdinaryName);
3960 Results.EnterNewScope();
3961
3962 CodeCompletionDeclConsumer Consumer(Results, CurContext);
3963 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
3964 CodeCompleter->includeGlobals());
3965
3966 AddOrdinaryNameResults(PCC_Statement, S, *this, Results);
3967
3968 // "else" block
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003969 CodeCompletionBuilder Builder(Results.getAllocator(),
3970 Results.getCodeCompletionTUInfo());
Douglas Gregor4ecb7202011-07-30 08:36:53 +00003971 Builder.AddTypedTextChunk("else");
Douglas Gregor3a5d6c22012-02-16 17:49:04 +00003972 if (Results.includeCodePatterns()) {
3973 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
3974 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
3975 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
3976 Builder.AddPlaceholderChunk("statements");
3977 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
3978 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
3979 }
Douglas Gregor4ecb7202011-07-30 08:36:53 +00003980 Results.AddResult(Builder.TakeString());
3981
3982 // "else if" block
3983 Builder.AddTypedTextChunk("else");
3984 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
3985 Builder.AddTextChunk("if");
3986 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
3987 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
David Blaikiebbafb8a2012-03-11 07:00:24 +00003988 if (getLangOpts().CPlusPlus)
Douglas Gregor4ecb7202011-07-30 08:36:53 +00003989 Builder.AddPlaceholderChunk("condition");
3990 else
3991 Builder.AddPlaceholderChunk("expression");
3992 Builder.AddChunk(CodeCompletionString::CK_RightParen);
Douglas Gregor3a5d6c22012-02-16 17:49:04 +00003993 if (Results.includeCodePatterns()) {
3994 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
3995 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
3996 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
3997 Builder.AddPlaceholderChunk("statements");
3998 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
3999 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
4000 }
Douglas Gregor4ecb7202011-07-30 08:36:53 +00004001 Results.AddResult(Builder.TakeString());
4002
4003 Results.ExitScope();
4004
4005 if (S->getFnParent())
David Blaikiebbafb8a2012-03-11 07:00:24 +00004006 AddPrettyFunctionResults(PP.getLangOpts(), Results);
Douglas Gregor4ecb7202011-07-30 08:36:53 +00004007
4008 if (CodeCompleter->includeMacros())
Douglas Gregor8cb17462012-10-09 16:01:50 +00004009 AddMacroResults(PP, Results, false);
Douglas Gregor4ecb7202011-07-30 08:36:53 +00004010
4011 HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(),
4012 Results.data(),Results.size());
4013}
4014
Richard Trieu2bd04012011-09-09 02:00:50 +00004015void Sema::CodeCompleteAssignmentRHS(Scope *S, Expr *LHS) {
Douglas Gregor7aa6b222010-05-30 01:49:25 +00004016 if (LHS)
4017 CodeCompleteExpression(S, static_cast<Expr *>(LHS)->getType());
4018 else
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004019 CodeCompleteOrdinaryName(S, PCC_Expression);
Douglas Gregor7aa6b222010-05-30 01:49:25 +00004020}
4021
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00004022void Sema::CodeCompleteQualifiedId(Scope *S, CXXScopeSpec &SS,
Douglas Gregor2436e712009-09-17 21:32:03 +00004023 bool EnteringContext) {
4024 if (!SS.getScopeRep() || !CodeCompleter)
4025 return;
4026
Douglas Gregor3545ff42009-09-21 16:56:56 +00004027 DeclContext *Ctx = computeDeclContext(SS, EnteringContext);
4028 if (!Ctx)
4029 return;
Douglas Gregor800f2f02009-12-11 18:28:39 +00004030
4031 // Try to instantiate any non-dependent declaration contexts before
4032 // we look in them.
John McCall0b66eb32010-05-01 00:40:08 +00004033 if (!isDependentScopeSpecifier(SS) && RequireCompleteDeclContext(SS, Ctx))
Douglas Gregor800f2f02009-12-11 18:28:39 +00004034 return;
4035
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004036 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004037 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004038 CodeCompletionContext::CCC_Name);
Douglas Gregorac322ec2010-08-27 21:18:54 +00004039 Results.EnterNewScope();
Douglas Gregor0ac41382010-09-23 23:01:17 +00004040
Douglas Gregor3545ff42009-09-21 16:56:56 +00004041 // The "template" keyword can follow "::" in the grammar, but only
4042 // put it into the grammar if the nested-name-specifier is dependent.
Aaron Ballman4a979672014-01-03 13:56:08 +00004043 NestedNameSpecifier *NNS = SS.getScopeRep();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004044 if (!Results.empty() && NNS->isDependent())
Douglas Gregor78a21012010-01-14 16:01:26 +00004045 Results.AddResult("template");
Douglas Gregorac322ec2010-08-27 21:18:54 +00004046
4047 // Add calls to overridden virtual functions, if there are any.
4048 //
4049 // FIXME: This isn't wonderful, because we don't know whether we're actually
4050 // in a context that permits expressions. This is a general issue with
4051 // qualified-id completions.
4052 if (!EnteringContext)
4053 MaybeAddOverrideCalls(*this, Ctx, Results);
4054 Results.ExitScope();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004055
Douglas Gregorac322ec2010-08-27 21:18:54 +00004056 CodeCompletionDeclConsumer Consumer(Results, CurContext);
4057 LookupVisibleDecls(Ctx, LookupOrdinaryName, Consumer);
4058
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004059 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregorc1679ec2011-07-25 17:48:11 +00004060 Results.getCompletionContext(),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004061 Results.data(),Results.size());
Douglas Gregor2436e712009-09-17 21:32:03 +00004062}
Douglas Gregor7e90c6d2009-09-18 19:03:04 +00004063
4064void Sema::CodeCompleteUsing(Scope *S) {
4065 if (!CodeCompleter)
4066 return;
4067
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004068 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004069 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor0ac41382010-09-23 23:01:17 +00004070 CodeCompletionContext::CCC_PotentiallyQualifiedName,
4071 &ResultBuilder::IsNestedNameSpecifier);
Douglas Gregor64b12b52009-09-22 23:31:26 +00004072 Results.EnterNewScope();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004073
4074 // If we aren't in class scope, we could see the "namespace" keyword.
4075 if (!S->isClassScope())
John McCall276321a2010-08-25 06:19:51 +00004076 Results.AddResult(CodeCompletionResult("namespace"));
Douglas Gregor3545ff42009-09-21 16:56:56 +00004077
4078 // After "using", we can see anything that would start a
4079 // nested-name-specifier.
Douglas Gregora6e2edc2010-01-14 03:27:13 +00004080 CodeCompletionDeclConsumer Consumer(Results, CurContext);
Douglas Gregor39982192010-08-15 06:18:01 +00004081 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
4082 CodeCompleter->includeGlobals());
Douglas Gregor64b12b52009-09-22 23:31:26 +00004083 Results.ExitScope();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004084
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004085 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor0ac41382010-09-23 23:01:17 +00004086 CodeCompletionContext::CCC_PotentiallyQualifiedName,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004087 Results.data(),Results.size());
Douglas Gregor7e90c6d2009-09-18 19:03:04 +00004088}
4089
4090void Sema::CodeCompleteUsingDirective(Scope *S) {
4091 if (!CodeCompleter)
4092 return;
4093
Douglas Gregor3545ff42009-09-21 16:56:56 +00004094 // After "using namespace", we expect to see a namespace name or namespace
4095 // alias.
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004096 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004097 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004098 CodeCompletionContext::CCC_Namespace,
Douglas Gregor0ac41382010-09-23 23:01:17 +00004099 &ResultBuilder::IsNamespaceOrAlias);
Douglas Gregor64b12b52009-09-22 23:31:26 +00004100 Results.EnterNewScope();
Douglas Gregora6e2edc2010-01-14 03:27:13 +00004101 CodeCompletionDeclConsumer Consumer(Results, CurContext);
Douglas Gregor39982192010-08-15 06:18:01 +00004102 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
4103 CodeCompleter->includeGlobals());
Douglas Gregor64b12b52009-09-22 23:31:26 +00004104 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004105 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor39982192010-08-15 06:18:01 +00004106 CodeCompletionContext::CCC_Namespace,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004107 Results.data(),Results.size());
Douglas Gregor7e90c6d2009-09-18 19:03:04 +00004108}
4109
4110void Sema::CodeCompleteNamespaceDecl(Scope *S) {
4111 if (!CodeCompleter)
4112 return;
4113
Ted Kremenekc37877d2013-10-08 17:08:03 +00004114 DeclContext *Ctx = S->getEntity();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004115 if (!S->getParent())
4116 Ctx = Context.getTranslationUnitDecl();
4117
Douglas Gregor0ac41382010-09-23 23:01:17 +00004118 bool SuppressedGlobalResults
4119 = Ctx && !CodeCompleter->includeGlobals() && isa<TranslationUnitDecl>(Ctx);
4120
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004121 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004122 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor0ac41382010-09-23 23:01:17 +00004123 SuppressedGlobalResults
4124 ? CodeCompletionContext::CCC_Namespace
4125 : CodeCompletionContext::CCC_Other,
4126 &ResultBuilder::IsNamespace);
4127
4128 if (Ctx && Ctx->isFileContext() && !SuppressedGlobalResults) {
Douglas Gregor3545ff42009-09-21 16:56:56 +00004129 // We only want to see those namespaces that have already been defined
4130 // within this scope, because its likely that the user is creating an
4131 // extended namespace declaration. Keep track of the most recent
4132 // definition of each namespace.
4133 std::map<NamespaceDecl *, NamespaceDecl *> OrigToLatest;
4134 for (DeclContext::specific_decl_iterator<NamespaceDecl>
4135 NS(Ctx->decls_begin()), NSEnd(Ctx->decls_end());
4136 NS != NSEnd; ++NS)
David Blaikie40ed2972012-06-06 20:45:41 +00004137 OrigToLatest[NS->getOriginalNamespace()] = *NS;
Douglas Gregor3545ff42009-09-21 16:56:56 +00004138
4139 // Add the most recent definition (or extended definition) of each
4140 // namespace to the list of results.
Douglas Gregor64b12b52009-09-22 23:31:26 +00004141 Results.EnterNewScope();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004142 for (std::map<NamespaceDecl *, NamespaceDecl *>::iterator
Douglas Gregor78254c82012-03-27 23:34:16 +00004143 NS = OrigToLatest.begin(),
4144 NSEnd = OrigToLatest.end();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004145 NS != NSEnd; ++NS)
Douglas Gregor0a0e2b32013-01-31 04:52:16 +00004146 Results.AddResult(CodeCompletionResult(
Craig Topperc3ec1492014-05-26 06:22:03 +00004147 NS->second, Results.getBasePriority(NS->second),
4148 nullptr),
4149 CurContext, nullptr, false);
Douglas Gregor64b12b52009-09-22 23:31:26 +00004150 Results.ExitScope();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004151 }
4152
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004153 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor0ac41382010-09-23 23:01:17 +00004154 Results.getCompletionContext(),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004155 Results.data(),Results.size());
Douglas Gregor7e90c6d2009-09-18 19:03:04 +00004156}
4157
4158void Sema::CodeCompleteNamespaceAliasDecl(Scope *S) {
4159 if (!CodeCompleter)
4160 return;
4161
Douglas Gregor3545ff42009-09-21 16:56:56 +00004162 // After "namespace", we expect to see a namespace or alias.
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004163 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004164 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004165 CodeCompletionContext::CCC_Namespace,
Douglas Gregor0ac41382010-09-23 23:01:17 +00004166 &ResultBuilder::IsNamespaceOrAlias);
Douglas Gregora6e2edc2010-01-14 03:27:13 +00004167 CodeCompletionDeclConsumer Consumer(Results, CurContext);
Douglas Gregor39982192010-08-15 06:18:01 +00004168 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
4169 CodeCompleter->includeGlobals());
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004170 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor0ac41382010-09-23 23:01:17 +00004171 Results.getCompletionContext(),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004172 Results.data(),Results.size());
Douglas Gregor7e90c6d2009-09-18 19:03:04 +00004173}
4174
Douglas Gregorc811ede2009-09-18 20:05:18 +00004175void Sema::CodeCompleteOperatorName(Scope *S) {
4176 if (!CodeCompleter)
4177 return;
Douglas Gregor3545ff42009-09-21 16:56:56 +00004178
John McCall276321a2010-08-25 06:19:51 +00004179 typedef CodeCompletionResult Result;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004180 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004181 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004182 CodeCompletionContext::CCC_Type,
Douglas Gregor0ac41382010-09-23 23:01:17 +00004183 &ResultBuilder::IsType);
Douglas Gregor64b12b52009-09-22 23:31:26 +00004184 Results.EnterNewScope();
Douglas Gregorc811ede2009-09-18 20:05:18 +00004185
Douglas Gregor3545ff42009-09-21 16:56:56 +00004186 // Add the names of overloadable operators.
4187#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
4188 if (std::strcmp(Spelling, "?")) \
Douglas Gregor78a21012010-01-14 16:01:26 +00004189 Results.AddResult(Result(Spelling));
Douglas Gregor3545ff42009-09-21 16:56:56 +00004190#include "clang/Basic/OperatorKinds.def"
4191
4192 // Add any type names visible from the current scope
Douglas Gregor6ae4c522010-01-14 03:21:49 +00004193 Results.allowNestedNameSpecifiers();
Douglas Gregora6e2edc2010-01-14 03:27:13 +00004194 CodeCompletionDeclConsumer Consumer(Results, CurContext);
Douglas Gregor39982192010-08-15 06:18:01 +00004195 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
4196 CodeCompleter->includeGlobals());
Douglas Gregor3545ff42009-09-21 16:56:56 +00004197
4198 // Add any type specifiers
David Blaikiebbafb8a2012-03-11 07:00:24 +00004199 AddTypeSpecifierResults(getLangOpts(), Results);
Douglas Gregor64b12b52009-09-22 23:31:26 +00004200 Results.ExitScope();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004201
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004202 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor39982192010-08-15 06:18:01 +00004203 CodeCompletionContext::CCC_Type,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004204 Results.data(),Results.size());
Douglas Gregorc811ede2009-09-18 20:05:18 +00004205}
Douglas Gregor7e90c6d2009-09-18 19:03:04 +00004206
Dmitri Gribenko27cb3dd02013-06-23 22:58:02 +00004207void Sema::CodeCompleteConstructorInitializer(
4208 Decl *ConstructorD,
4209 ArrayRef <CXXCtorInitializer *> Initializers) {
Douglas Gregor75acd922011-09-27 23:30:47 +00004210 PrintingPolicy Policy = getCompletionPrintingPolicy(*this);
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004211 CXXConstructorDecl *Constructor
4212 = static_cast<CXXConstructorDecl *>(ConstructorD);
4213 if (!Constructor)
4214 return;
4215
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004216 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004217 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor0ac41382010-09-23 23:01:17 +00004218 CodeCompletionContext::CCC_PotentiallyQualifiedName);
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004219 Results.EnterNewScope();
4220
4221 // Fill in any already-initialized fields or base classes.
4222 llvm::SmallPtrSet<FieldDecl *, 4> InitializedFields;
4223 llvm::SmallPtrSet<CanQualType, 4> InitializedBases;
Dmitri Gribenko27cb3dd02013-06-23 22:58:02 +00004224 for (unsigned I = 0, E = Initializers.size(); I != E; ++I) {
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004225 if (Initializers[I]->isBaseInitializer())
4226 InitializedBases.insert(
4227 Context.getCanonicalType(QualType(Initializers[I]->getBaseClass(), 0)));
4228 else
Francois Pichetd583da02010-12-04 09:14:42 +00004229 InitializedFields.insert(cast<FieldDecl>(
4230 Initializers[I]->getAnyMember()));
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004231 }
4232
4233 // Add completions for base classes.
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004234 CodeCompletionBuilder Builder(Results.getAllocator(),
4235 Results.getCodeCompletionTUInfo());
Dmitri Gribenko27cb3dd02013-06-23 22:58:02 +00004236 bool SawLastInitializer = Initializers.empty();
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004237 CXXRecordDecl *ClassDecl = Constructor->getParent();
Aaron Ballman574705e2014-03-13 15:41:46 +00004238 for (const auto &Base : ClassDecl->bases()) {
David Blaikie82e95a32014-11-19 07:49:47 +00004239 if (!InitializedBases.insert(Context.getCanonicalType(Base.getType()))
4240 .second) {
Douglas Gregor99129ef2010-08-29 19:27:27 +00004241 SawLastInitializer
Dmitri Gribenko27cb3dd02013-06-23 22:58:02 +00004242 = !Initializers.empty() &&
4243 Initializers.back()->isBaseInitializer() &&
Aaron Ballman574705e2014-03-13 15:41:46 +00004244 Context.hasSameUnqualifiedType(Base.getType(),
Dmitri Gribenko27cb3dd02013-06-23 22:58:02 +00004245 QualType(Initializers.back()->getBaseClass(), 0));
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004246 continue;
Douglas Gregor99129ef2010-08-29 19:27:27 +00004247 }
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004248
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004249 Builder.AddTypedTextChunk(
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00004250 Results.getAllocator().CopyString(
Aaron Ballman574705e2014-03-13 15:41:46 +00004251 Base.getType().getAsString(Policy)));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004252 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
4253 Builder.AddPlaceholderChunk("args");
4254 Builder.AddChunk(CodeCompletionString::CK_RightParen);
4255 Results.AddResult(CodeCompletionResult(Builder.TakeString(),
Douglas Gregor99129ef2010-08-29 19:27:27 +00004256 SawLastInitializer? CCP_NextInitializer
4257 : CCP_MemberDeclaration));
4258 SawLastInitializer = false;
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004259 }
4260
4261 // Add completions for virtual base classes.
Aaron Ballman445a9392014-03-13 16:15:17 +00004262 for (const auto &Base : ClassDecl->vbases()) {
David Blaikie82e95a32014-11-19 07:49:47 +00004263 if (!InitializedBases.insert(Context.getCanonicalType(Base.getType()))
4264 .second) {
Douglas Gregor99129ef2010-08-29 19:27:27 +00004265 SawLastInitializer
Dmitri Gribenko27cb3dd02013-06-23 22:58:02 +00004266 = !Initializers.empty() &&
4267 Initializers.back()->isBaseInitializer() &&
Aaron Ballman445a9392014-03-13 16:15:17 +00004268 Context.hasSameUnqualifiedType(Base.getType(),
Dmitri Gribenko27cb3dd02013-06-23 22:58:02 +00004269 QualType(Initializers.back()->getBaseClass(), 0));
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004270 continue;
Douglas Gregor99129ef2010-08-29 19:27:27 +00004271 }
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004272
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004273 Builder.AddTypedTextChunk(
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00004274 Builder.getAllocator().CopyString(
Aaron Ballman445a9392014-03-13 16:15:17 +00004275 Base.getType().getAsString(Policy)));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004276 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
4277 Builder.AddPlaceholderChunk("args");
4278 Builder.AddChunk(CodeCompletionString::CK_RightParen);
4279 Results.AddResult(CodeCompletionResult(Builder.TakeString(),
Douglas Gregor99129ef2010-08-29 19:27:27 +00004280 SawLastInitializer? CCP_NextInitializer
4281 : CCP_MemberDeclaration));
4282 SawLastInitializer = false;
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004283 }
4284
4285 // Add completions for members.
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00004286 for (auto *Field : ClassDecl->fields()) {
David Blaikie82e95a32014-11-19 07:49:47 +00004287 if (!InitializedFields.insert(cast<FieldDecl>(Field->getCanonicalDecl()))
4288 .second) {
Douglas Gregor99129ef2010-08-29 19:27:27 +00004289 SawLastInitializer
Dmitri Gribenko27cb3dd02013-06-23 22:58:02 +00004290 = !Initializers.empty() &&
4291 Initializers.back()->isAnyMemberInitializer() &&
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00004292 Initializers.back()->getAnyMember() == Field;
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004293 continue;
Douglas Gregor99129ef2010-08-29 19:27:27 +00004294 }
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004295
4296 if (!Field->getDeclName())
4297 continue;
4298
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00004299 Builder.AddTypedTextChunk(Builder.getAllocator().CopyString(
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004300 Field->getIdentifier()->getName()));
4301 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
4302 Builder.AddPlaceholderChunk("args");
4303 Builder.AddChunk(CodeCompletionString::CK_RightParen);
4304 Results.AddResult(CodeCompletionResult(Builder.TakeString(),
Douglas Gregor99129ef2010-08-29 19:27:27 +00004305 SawLastInitializer? CCP_NextInitializer
Douglas Gregorf3af3112010-09-09 21:42:20 +00004306 : CCP_MemberDeclaration,
Douglas Gregor78254c82012-03-27 23:34:16 +00004307 CXCursor_MemberRef,
4308 CXAvailability_Available,
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00004309 Field));
Douglas Gregor99129ef2010-08-29 19:27:27 +00004310 SawLastInitializer = false;
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004311 }
4312 Results.ExitScope();
4313
Douglas Gregor0ac41382010-09-23 23:01:17 +00004314 HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(),
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004315 Results.data(), Results.size());
4316}
4317
Douglas Gregord8c61782012-02-15 15:34:24 +00004318/// \brief Determine whether this scope denotes a namespace.
4319static bool isNamespaceScope(Scope *S) {
Ted Kremenekc37877d2013-10-08 17:08:03 +00004320 DeclContext *DC = S->getEntity();
Douglas Gregord8c61782012-02-15 15:34:24 +00004321 if (!DC)
4322 return false;
4323
4324 return DC->isFileContext();
4325}
4326
4327void Sema::CodeCompleteLambdaIntroducer(Scope *S, LambdaIntroducer &Intro,
4328 bool AfterAmpersand) {
4329 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004330 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregord8c61782012-02-15 15:34:24 +00004331 CodeCompletionContext::CCC_Other);
4332 Results.EnterNewScope();
4333
4334 // Note what has already been captured.
4335 llvm::SmallPtrSet<IdentifierInfo *, 4> Known;
4336 bool IncludedThis = false;
Benjamin Kramerf3ca26982014-05-10 16:31:55 +00004337 for (const auto &C : Intro.Captures) {
4338 if (C.Kind == LCK_This) {
Douglas Gregord8c61782012-02-15 15:34:24 +00004339 IncludedThis = true;
4340 continue;
4341 }
4342
Benjamin Kramerf3ca26982014-05-10 16:31:55 +00004343 Known.insert(C.Id);
Douglas Gregord8c61782012-02-15 15:34:24 +00004344 }
4345
4346 // Look for other capturable variables.
4347 for (; S && !isNamespaceScope(S); S = S->getParent()) {
Aaron Ballman35c54952014-03-17 16:55:25 +00004348 for (const auto *D : S->decls()) {
4349 const auto *Var = dyn_cast<VarDecl>(D);
Douglas Gregord8c61782012-02-15 15:34:24 +00004350 if (!Var ||
4351 !Var->hasLocalStorage() ||
4352 Var->hasAttr<BlocksAttr>())
4353 continue;
4354
David Blaikie82e95a32014-11-19 07:49:47 +00004355 if (Known.insert(Var->getIdentifier()).second)
Douglas Gregor0a0e2b32013-01-31 04:52:16 +00004356 Results.AddResult(CodeCompletionResult(Var, CCP_LocalDeclaration),
Craig Topperc3ec1492014-05-26 06:22:03 +00004357 CurContext, nullptr, false);
Douglas Gregord8c61782012-02-15 15:34:24 +00004358 }
4359 }
4360
4361 // Add 'this', if it would be valid.
4362 if (!IncludedThis && !AfterAmpersand && Intro.Default != LCD_ByCopy)
4363 addThisCompletion(*this, Results);
4364
4365 Results.ExitScope();
4366
4367 HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(),
4368 Results.data(), Results.size());
4369}
4370
James Dennett596e4752012-06-14 03:11:41 +00004371/// Macro that optionally prepends an "@" to the string literal passed in via
4372/// Keyword, depending on whether NeedAt is true or false.
4373#define OBJC_AT_KEYWORD_NAME(NeedAt,Keyword) ((NeedAt)? "@" Keyword : Keyword)
4374
Douglas Gregorf98e6a22010-01-13 23:51:12 +00004375static void AddObjCImplementationResults(const LangOptions &LangOpts,
Douglas Gregorf1934162010-01-13 21:24:21 +00004376 ResultBuilder &Results,
4377 bool NeedAt) {
John McCall276321a2010-08-25 06:19:51 +00004378 typedef CodeCompletionResult Result;
Douglas Gregorf1934162010-01-13 21:24:21 +00004379 // Since we have an implementation, we can end it.
James Dennett596e4752012-06-14 03:11:41 +00004380 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"end")));
Douglas Gregorf1934162010-01-13 21:24:21 +00004381
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004382 CodeCompletionBuilder Builder(Results.getAllocator(),
4383 Results.getCodeCompletionTUInfo());
Douglas Gregorf1934162010-01-13 21:24:21 +00004384 if (LangOpts.ObjC2) {
4385 // @dynamic
James Dennett596e4752012-06-14 03:11:41 +00004386 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"dynamic"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004387 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4388 Builder.AddPlaceholderChunk("property");
4389 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf1934162010-01-13 21:24:21 +00004390
4391 // @synthesize
James Dennett596e4752012-06-14 03:11:41 +00004392 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"synthesize"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004393 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4394 Builder.AddPlaceholderChunk("property");
4395 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf1934162010-01-13 21:24:21 +00004396 }
4397}
4398
Douglas Gregorf98e6a22010-01-13 23:51:12 +00004399static void AddObjCInterfaceResults(const LangOptions &LangOpts,
Douglas Gregorf1934162010-01-13 21:24:21 +00004400 ResultBuilder &Results,
4401 bool NeedAt) {
John McCall276321a2010-08-25 06:19:51 +00004402 typedef CodeCompletionResult Result;
Douglas Gregorf1934162010-01-13 21:24:21 +00004403
4404 // Since we have an interface or protocol, we can end it.
James Dennett596e4752012-06-14 03:11:41 +00004405 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"end")));
Douglas Gregorf1934162010-01-13 21:24:21 +00004406
4407 if (LangOpts.ObjC2) {
4408 // @property
James Dennett596e4752012-06-14 03:11:41 +00004409 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"property")));
Douglas Gregorf1934162010-01-13 21:24:21 +00004410
4411 // @required
James Dennett596e4752012-06-14 03:11:41 +00004412 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"required")));
Douglas Gregorf1934162010-01-13 21:24:21 +00004413
4414 // @optional
James Dennett596e4752012-06-14 03:11:41 +00004415 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"optional")));
Douglas Gregorf1934162010-01-13 21:24:21 +00004416 }
4417}
4418
Douglas Gregorf98e6a22010-01-13 23:51:12 +00004419static void AddObjCTopLevelResults(ResultBuilder &Results, bool NeedAt) {
John McCall276321a2010-08-25 06:19:51 +00004420 typedef CodeCompletionResult Result;
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004421 CodeCompletionBuilder Builder(Results.getAllocator(),
4422 Results.getCodeCompletionTUInfo());
Douglas Gregorf1934162010-01-13 21:24:21 +00004423
4424 // @class name ;
James Dennett596e4752012-06-14 03:11:41 +00004425 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"class"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004426 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4427 Builder.AddPlaceholderChunk("name");
4428 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf1934162010-01-13 21:24:21 +00004429
Douglas Gregorf4c33342010-05-28 00:22:41 +00004430 if (Results.includeCodePatterns()) {
4431 // @interface name
4432 // FIXME: Could introduce the whole pattern, including superclasses and
4433 // such.
James Dennett596e4752012-06-14 03:11:41 +00004434 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"interface"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004435 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4436 Builder.AddPlaceholderChunk("class");
4437 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf1934162010-01-13 21:24:21 +00004438
Douglas Gregorf4c33342010-05-28 00:22:41 +00004439 // @protocol name
James Dennett596e4752012-06-14 03:11:41 +00004440 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"protocol"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004441 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4442 Builder.AddPlaceholderChunk("protocol");
4443 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf4c33342010-05-28 00:22:41 +00004444
4445 // @implementation name
James Dennett596e4752012-06-14 03:11:41 +00004446 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"implementation"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004447 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4448 Builder.AddPlaceholderChunk("class");
4449 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf4c33342010-05-28 00:22:41 +00004450 }
Douglas Gregorf1934162010-01-13 21:24:21 +00004451
4452 // @compatibility_alias name
James Dennett596e4752012-06-14 03:11:41 +00004453 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"compatibility_alias"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004454 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4455 Builder.AddPlaceholderChunk("alias");
4456 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4457 Builder.AddPlaceholderChunk("class");
4458 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor61e36812013-03-07 23:26:24 +00004459
4460 if (Results.getSema().getLangOpts().Modules) {
4461 // @import name
4462 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt, "import"));
4463 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4464 Builder.AddPlaceholderChunk("module");
4465 Results.AddResult(Result(Builder.TakeString()));
4466 }
Douglas Gregorf1934162010-01-13 21:24:21 +00004467}
4468
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00004469void Sema::CodeCompleteObjCAtDirective(Scope *S) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004470 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004471 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004472 CodeCompletionContext::CCC_Other);
Douglas Gregorf48706c2009-12-07 09:27:33 +00004473 Results.EnterNewScope();
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00004474 if (isa<ObjCImplDecl>(CurContext))
David Blaikiebbafb8a2012-03-11 07:00:24 +00004475 AddObjCImplementationResults(getLangOpts(), Results, false);
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00004476 else if (CurContext->isObjCContainer())
David Blaikiebbafb8a2012-03-11 07:00:24 +00004477 AddObjCInterfaceResults(getLangOpts(), Results, false);
Douglas Gregorf1934162010-01-13 21:24:21 +00004478 else
Douglas Gregorf98e6a22010-01-13 23:51:12 +00004479 AddObjCTopLevelResults(Results, false);
Douglas Gregorf48706c2009-12-07 09:27:33 +00004480 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004481 HandleCodeCompleteResults(this, CodeCompleter,
4482 CodeCompletionContext::CCC_Other,
4483 Results.data(),Results.size());
Douglas Gregorf48706c2009-12-07 09:27:33 +00004484}
4485
Douglas Gregorf98e6a22010-01-13 23:51:12 +00004486static void AddObjCExpressionResults(ResultBuilder &Results, bool NeedAt) {
John McCall276321a2010-08-25 06:19:51 +00004487 typedef CodeCompletionResult Result;
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004488 CodeCompletionBuilder Builder(Results.getAllocator(),
4489 Results.getCodeCompletionTUInfo());
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004490
4491 // @encode ( type-name )
Douglas Gregore5c79d52011-10-18 21:20:17 +00004492 const char *EncodeType = "char[]";
David Blaikiebbafb8a2012-03-11 07:00:24 +00004493 if (Results.getSema().getLangOpts().CPlusPlus ||
4494 Results.getSema().getLangOpts().ConstStrings)
Jordan Rose9da05852012-06-15 18:19:56 +00004495 EncodeType = "const char[]";
Douglas Gregore5c79d52011-10-18 21:20:17 +00004496 Builder.AddResultTypeChunk(EncodeType);
James Dennett596e4752012-06-14 03:11:41 +00004497 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"encode"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004498 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
4499 Builder.AddPlaceholderChunk("type-name");
4500 Builder.AddChunk(CodeCompletionString::CK_RightParen);
4501 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004502
4503 // @protocol ( protocol-name )
Douglas Gregore5c79d52011-10-18 21:20:17 +00004504 Builder.AddResultTypeChunk("Protocol *");
James Dennett596e4752012-06-14 03:11:41 +00004505 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"protocol"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004506 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
4507 Builder.AddPlaceholderChunk("protocol-name");
4508 Builder.AddChunk(CodeCompletionString::CK_RightParen);
4509 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004510
4511 // @selector ( selector )
Douglas Gregore5c79d52011-10-18 21:20:17 +00004512 Builder.AddResultTypeChunk("SEL");
James Dennett596e4752012-06-14 03:11:41 +00004513 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"selector"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004514 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
4515 Builder.AddPlaceholderChunk("selector");
4516 Builder.AddChunk(CodeCompletionString::CK_RightParen);
4517 Results.AddResult(Result(Builder.TakeString()));
Jordan Rose9da05852012-06-15 18:19:56 +00004518
4519 // @"string"
4520 Builder.AddResultTypeChunk("NSString *");
4521 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"\""));
4522 Builder.AddPlaceholderChunk("string");
4523 Builder.AddTextChunk("\"");
4524 Results.AddResult(Result(Builder.TakeString()));
4525
Douglas Gregor951de302012-07-17 23:24:47 +00004526 // @[objects, ...]
Jordan Rose9da05852012-06-15 18:19:56 +00004527 Builder.AddResultTypeChunk("NSArray *");
James Dennett596e4752012-06-14 03:11:41 +00004528 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"["));
Ted Kremeneke65b0862012-03-06 20:05:56 +00004529 Builder.AddPlaceholderChunk("objects, ...");
Ted Kremeneke65b0862012-03-06 20:05:56 +00004530 Builder.AddChunk(CodeCompletionString::CK_RightBracket);
4531 Results.AddResult(Result(Builder.TakeString()));
4532
Douglas Gregor951de302012-07-17 23:24:47 +00004533 // @{key : object, ...}
Jordan Rose9da05852012-06-15 18:19:56 +00004534 Builder.AddResultTypeChunk("NSDictionary *");
James Dennett596e4752012-06-14 03:11:41 +00004535 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"{"));
Ted Kremeneke65b0862012-03-06 20:05:56 +00004536 Builder.AddPlaceholderChunk("key");
Ted Kremeneke65b0862012-03-06 20:05:56 +00004537 Builder.AddChunk(CodeCompletionString::CK_Colon);
4538 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4539 Builder.AddPlaceholderChunk("object, ...");
Ted Kremeneke65b0862012-03-06 20:05:56 +00004540 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
4541 Results.AddResult(Result(Builder.TakeString()));
Jordan Rose9da05852012-06-15 18:19:56 +00004542
Douglas Gregor951de302012-07-17 23:24:47 +00004543 // @(expression)
Jordan Rose9da05852012-06-15 18:19:56 +00004544 Builder.AddResultTypeChunk("id");
4545 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt, "("));
Jordan Rose9da05852012-06-15 18:19:56 +00004546 Builder.AddPlaceholderChunk("expression");
Jordan Rose9da05852012-06-15 18:19:56 +00004547 Builder.AddChunk(CodeCompletionString::CK_RightParen);
4548 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004549}
4550
Douglas Gregorf98e6a22010-01-13 23:51:12 +00004551static void AddObjCStatementResults(ResultBuilder &Results, bool NeedAt) {
John McCall276321a2010-08-25 06:19:51 +00004552 typedef CodeCompletionResult Result;
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004553 CodeCompletionBuilder Builder(Results.getAllocator(),
4554 Results.getCodeCompletionTUInfo());
Douglas Gregorf1934162010-01-13 21:24:21 +00004555
Douglas Gregorf4c33342010-05-28 00:22:41 +00004556 if (Results.includeCodePatterns()) {
4557 // @try { statements } @catch ( declaration ) { statements } @finally
4558 // { statements }
James Dennett596e4752012-06-14 03:11:41 +00004559 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"try"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004560 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
4561 Builder.AddPlaceholderChunk("statements");
4562 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
4563 Builder.AddTextChunk("@catch");
4564 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
4565 Builder.AddPlaceholderChunk("parameter");
4566 Builder.AddChunk(CodeCompletionString::CK_RightParen);
4567 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
4568 Builder.AddPlaceholderChunk("statements");
4569 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
4570 Builder.AddTextChunk("@finally");
4571 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
4572 Builder.AddPlaceholderChunk("statements");
4573 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
4574 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf4c33342010-05-28 00:22:41 +00004575 }
Douglas Gregorf1934162010-01-13 21:24:21 +00004576
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004577 // @throw
James Dennett596e4752012-06-14 03:11:41 +00004578 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"throw"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004579 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4580 Builder.AddPlaceholderChunk("expression");
4581 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf1934162010-01-13 21:24:21 +00004582
Douglas Gregorf4c33342010-05-28 00:22:41 +00004583 if (Results.includeCodePatterns()) {
4584 // @synchronized ( expression ) { statements }
James Dennett596e4752012-06-14 03:11:41 +00004585 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"synchronized"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004586 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4587 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
4588 Builder.AddPlaceholderChunk("expression");
4589 Builder.AddChunk(CodeCompletionString::CK_RightParen);
4590 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
4591 Builder.AddPlaceholderChunk("statements");
4592 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
4593 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf4c33342010-05-28 00:22:41 +00004594 }
Douglas Gregorf1934162010-01-13 21:24:21 +00004595}
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004596
Douglas Gregorf98e6a22010-01-13 23:51:12 +00004597static void AddObjCVisibilityResults(const LangOptions &LangOpts,
Douglas Gregor48d46252010-01-13 21:54:15 +00004598 ResultBuilder &Results,
4599 bool NeedAt) {
John McCall276321a2010-08-25 06:19:51 +00004600 typedef CodeCompletionResult Result;
James Dennett596e4752012-06-14 03:11:41 +00004601 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"private")));
4602 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"protected")));
4603 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"public")));
Douglas Gregor48d46252010-01-13 21:54:15 +00004604 if (LangOpts.ObjC2)
James Dennett596e4752012-06-14 03:11:41 +00004605 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"package")));
Douglas Gregor48d46252010-01-13 21:54:15 +00004606}
4607
4608void Sema::CodeCompleteObjCAtVisibility(Scope *S) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004609 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004610 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004611 CodeCompletionContext::CCC_Other);
Douglas Gregor48d46252010-01-13 21:54:15 +00004612 Results.EnterNewScope();
David Blaikiebbafb8a2012-03-11 07:00:24 +00004613 AddObjCVisibilityResults(getLangOpts(), Results, false);
Douglas Gregor48d46252010-01-13 21:54:15 +00004614 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004615 HandleCodeCompleteResults(this, CodeCompleter,
4616 CodeCompletionContext::CCC_Other,
4617 Results.data(),Results.size());
Douglas Gregor48d46252010-01-13 21:54:15 +00004618}
4619
4620void Sema::CodeCompleteObjCAtStatement(Scope *S) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004621 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004622 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004623 CodeCompletionContext::CCC_Other);
Douglas Gregorf1934162010-01-13 21:24:21 +00004624 Results.EnterNewScope();
Douglas Gregorf98e6a22010-01-13 23:51:12 +00004625 AddObjCStatementResults(Results, false);
4626 AddObjCExpressionResults(Results, false);
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004627 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004628 HandleCodeCompleteResults(this, CodeCompleter,
4629 CodeCompletionContext::CCC_Other,
4630 Results.data(),Results.size());
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004631}
4632
4633void Sema::CodeCompleteObjCAtExpression(Scope *S) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004634 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004635 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004636 CodeCompletionContext::CCC_Other);
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004637 Results.EnterNewScope();
Douglas Gregorf98e6a22010-01-13 23:51:12 +00004638 AddObjCExpressionResults(Results, false);
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004639 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004640 HandleCodeCompleteResults(this, CodeCompleter,
4641 CodeCompletionContext::CCC_Other,
4642 Results.data(),Results.size());
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004643}
4644
Douglas Gregore6078da2009-11-19 00:14:45 +00004645/// \brief Determine whether the addition of the given flag to an Objective-C
4646/// property's attributes will cause a conflict.
Bill Wendling44426052012-12-20 19:22:21 +00004647static bool ObjCPropertyFlagConflicts(unsigned Attributes, unsigned NewFlag) {
Douglas Gregore6078da2009-11-19 00:14:45 +00004648 // Check if we've already added this flag.
Bill Wendling44426052012-12-20 19:22:21 +00004649 if (Attributes & NewFlag)
Douglas Gregore6078da2009-11-19 00:14:45 +00004650 return true;
4651
Bill Wendling44426052012-12-20 19:22:21 +00004652 Attributes |= NewFlag;
Douglas Gregore6078da2009-11-19 00:14:45 +00004653
4654 // Check for collisions with "readonly".
Bill Wendling44426052012-12-20 19:22:21 +00004655 if ((Attributes & ObjCDeclSpec::DQ_PR_readonly) &&
4656 (Attributes & ObjCDeclSpec::DQ_PR_readwrite))
Douglas Gregore6078da2009-11-19 00:14:45 +00004657 return true;
4658
Jordan Rose53cb2f32012-08-20 20:01:13 +00004659 // Check for more than one of { assign, copy, retain, strong, weak }.
Bill Wendling44426052012-12-20 19:22:21 +00004660 unsigned AssignCopyRetMask = Attributes & (ObjCDeclSpec::DQ_PR_assign |
John McCall31168b02011-06-15 23:02:42 +00004661 ObjCDeclSpec::DQ_PR_unsafe_unretained |
Douglas Gregore6078da2009-11-19 00:14:45 +00004662 ObjCDeclSpec::DQ_PR_copy |
Jordan Rose53cb2f32012-08-20 20:01:13 +00004663 ObjCDeclSpec::DQ_PR_retain |
4664 ObjCDeclSpec::DQ_PR_strong |
4665 ObjCDeclSpec::DQ_PR_weak);
Douglas Gregore6078da2009-11-19 00:14:45 +00004666 if (AssignCopyRetMask &&
4667 AssignCopyRetMask != ObjCDeclSpec::DQ_PR_assign &&
John McCall31168b02011-06-15 23:02:42 +00004668 AssignCopyRetMask != ObjCDeclSpec::DQ_PR_unsafe_unretained &&
Douglas Gregore6078da2009-11-19 00:14:45 +00004669 AssignCopyRetMask != ObjCDeclSpec::DQ_PR_copy &&
John McCall31168b02011-06-15 23:02:42 +00004670 AssignCopyRetMask != ObjCDeclSpec::DQ_PR_retain &&
Jordan Rose53cb2f32012-08-20 20:01:13 +00004671 AssignCopyRetMask != ObjCDeclSpec::DQ_PR_strong &&
4672 AssignCopyRetMask != ObjCDeclSpec::DQ_PR_weak)
Douglas Gregore6078da2009-11-19 00:14:45 +00004673 return true;
4674
4675 return false;
4676}
4677
Douglas Gregor36029f42009-11-18 23:08:07 +00004678void Sema::CodeCompleteObjCPropertyFlags(Scope *S, ObjCDeclSpec &ODS) {
Steve Naroff936354c2009-10-08 21:55:05 +00004679 if (!CodeCompleter)
4680 return;
Douglas Gregor1b605f72009-11-19 01:08:35 +00004681
Bill Wendling44426052012-12-20 19:22:21 +00004682 unsigned Attributes = ODS.getPropertyAttributes();
Steve Naroff936354c2009-10-08 21:55:05 +00004683
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004684 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004685 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004686 CodeCompletionContext::CCC_Other);
Steve Naroff936354c2009-10-08 21:55:05 +00004687 Results.EnterNewScope();
Bill Wendling44426052012-12-20 19:22:21 +00004688 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_readonly))
John McCall276321a2010-08-25 06:19:51 +00004689 Results.AddResult(CodeCompletionResult("readonly"));
Bill Wendling44426052012-12-20 19:22:21 +00004690 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_assign))
John McCall276321a2010-08-25 06:19:51 +00004691 Results.AddResult(CodeCompletionResult("assign"));
Bill Wendling44426052012-12-20 19:22:21 +00004692 if (!ObjCPropertyFlagConflicts(Attributes,
John McCall31168b02011-06-15 23:02:42 +00004693 ObjCDeclSpec::DQ_PR_unsafe_unretained))
4694 Results.AddResult(CodeCompletionResult("unsafe_unretained"));
Bill Wendling44426052012-12-20 19:22:21 +00004695 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_readwrite))
John McCall276321a2010-08-25 06:19:51 +00004696 Results.AddResult(CodeCompletionResult("readwrite"));
Bill Wendling44426052012-12-20 19:22:21 +00004697 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_retain))
John McCall276321a2010-08-25 06:19:51 +00004698 Results.AddResult(CodeCompletionResult("retain"));
Bill Wendling44426052012-12-20 19:22:21 +00004699 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_strong))
John McCall31168b02011-06-15 23:02:42 +00004700 Results.AddResult(CodeCompletionResult("strong"));
Bill Wendling44426052012-12-20 19:22:21 +00004701 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_copy))
John McCall276321a2010-08-25 06:19:51 +00004702 Results.AddResult(CodeCompletionResult("copy"));
Bill Wendling44426052012-12-20 19:22:21 +00004703 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_nonatomic))
John McCall276321a2010-08-25 06:19:51 +00004704 Results.AddResult(CodeCompletionResult("nonatomic"));
Bill Wendling44426052012-12-20 19:22:21 +00004705 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_atomic))
Fariborz Jahanian1c2d29e2011-06-11 17:14:27 +00004706 Results.AddResult(CodeCompletionResult("atomic"));
Jordan Rose53cb2f32012-08-20 20:01:13 +00004707
4708 // Only suggest "weak" if we're compiling for ARC-with-weak-references or GC.
John McCall3deb1ad2012-08-21 02:47:43 +00004709 if (getLangOpts().ObjCARCWeak || getLangOpts().getGC() != LangOptions::NonGC)
Bill Wendling44426052012-12-20 19:22:21 +00004710 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_weak))
Jordan Rose53cb2f32012-08-20 20:01:13 +00004711 Results.AddResult(CodeCompletionResult("weak"));
4712
Bill Wendling44426052012-12-20 19:22:21 +00004713 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_setter)) {
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004714 CodeCompletionBuilder Setter(Results.getAllocator(),
4715 Results.getCodeCompletionTUInfo());
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004716 Setter.AddTypedTextChunk("setter");
Argyrios Kyrtzidis7bbb8812014-02-20 07:55:15 +00004717 Setter.AddTextChunk("=");
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004718 Setter.AddPlaceholderChunk("method");
4719 Results.AddResult(CodeCompletionResult(Setter.TakeString()));
Douglas Gregor45f83ee2009-11-19 00:01:57 +00004720 }
Bill Wendling44426052012-12-20 19:22:21 +00004721 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_getter)) {
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004722 CodeCompletionBuilder Getter(Results.getAllocator(),
4723 Results.getCodeCompletionTUInfo());
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004724 Getter.AddTypedTextChunk("getter");
Argyrios Kyrtzidis7bbb8812014-02-20 07:55:15 +00004725 Getter.AddTextChunk("=");
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004726 Getter.AddPlaceholderChunk("method");
4727 Results.AddResult(CodeCompletionResult(Getter.TakeString()));
Douglas Gregor45f83ee2009-11-19 00:01:57 +00004728 }
Steve Naroff936354c2009-10-08 21:55:05 +00004729 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004730 HandleCodeCompleteResults(this, CodeCompleter,
4731 CodeCompletionContext::CCC_Other,
4732 Results.data(),Results.size());
Steve Naroff936354c2009-10-08 21:55:05 +00004733}
Steve Naroffeae65032009-11-07 02:08:14 +00004734
James Dennettf1243872012-06-17 05:33:25 +00004735/// \brief Describes the kind of Objective-C method that we want to find
Douglas Gregorc8537c52009-11-19 07:41:15 +00004736/// via code completion.
4737enum ObjCMethodKind {
Dmitri Gribenko4280e5c2012-06-08 23:13:42 +00004738 MK_Any, ///< Any kind of method, provided it means other specified criteria.
4739 MK_ZeroArgSelector, ///< Zero-argument (unary) selector.
4740 MK_OneArgSelector ///< One-argument selector.
Douglas Gregorc8537c52009-11-19 07:41:15 +00004741};
4742
Douglas Gregor67c692c2010-08-26 15:07:07 +00004743static bool isAcceptableObjCSelector(Selector Sel,
4744 ObjCMethodKind WantKind,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004745 ArrayRef<IdentifierInfo *> SelIdents,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00004746 bool AllowSameLength = true) {
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004747 unsigned NumSelIdents = SelIdents.size();
Douglas Gregor67c692c2010-08-26 15:07:07 +00004748 if (NumSelIdents > Sel.getNumArgs())
4749 return false;
4750
4751 switch (WantKind) {
4752 case MK_Any: break;
4753 case MK_ZeroArgSelector: return Sel.isUnarySelector();
4754 case MK_OneArgSelector: return Sel.getNumArgs() == 1;
4755 }
4756
Douglas Gregorb4a7c032010-11-17 21:36:08 +00004757 if (!AllowSameLength && NumSelIdents && NumSelIdents == Sel.getNumArgs())
4758 return false;
4759
Douglas Gregor67c692c2010-08-26 15:07:07 +00004760 for (unsigned I = 0; I != NumSelIdents; ++I)
4761 if (SelIdents[I] != Sel.getIdentifierInfoForSlot(I))
4762 return false;
4763
4764 return true;
4765}
4766
Douglas Gregorc8537c52009-11-19 07:41:15 +00004767static bool isAcceptableObjCMethod(ObjCMethodDecl *Method,
4768 ObjCMethodKind WantKind,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004769 ArrayRef<IdentifierInfo *> SelIdents,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00004770 bool AllowSameLength = true) {
Douglas Gregor67c692c2010-08-26 15:07:07 +00004771 return isAcceptableObjCSelector(Method->getSelector(), WantKind, SelIdents,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004772 AllowSameLength);
Douglas Gregorc8537c52009-11-19 07:41:15 +00004773}
Douglas Gregor1154e272010-09-16 16:06:31 +00004774
4775namespace {
4776 /// \brief A set of selectors, which is used to avoid introducing multiple
4777 /// completions with the same selector into the result set.
4778 typedef llvm::SmallPtrSet<Selector, 16> VisitedSelectorSet;
4779}
4780
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00004781/// \brief Add all of the Objective-C methods in the given Objective-C
4782/// container to the set of results.
4783///
4784/// The container will be a class, protocol, category, or implementation of
4785/// any of the above. This mether will recurse to include methods from
4786/// the superclasses of classes along with their categories, protocols, and
4787/// implementations.
4788///
4789/// \param Container the container in which we'll look to find methods.
4790///
James Dennett596e4752012-06-14 03:11:41 +00004791/// \param WantInstanceMethods Whether to add instance methods (only); if
4792/// false, this routine will add factory methods (only).
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00004793///
4794/// \param CurContext the context in which we're performing the lookup that
4795/// finds methods.
4796///
Douglas Gregorb4a7c032010-11-17 21:36:08 +00004797/// \param AllowSameLength Whether we allow a method to be added to the list
4798/// when it has the same number of parameters as we have selector identifiers.
4799///
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00004800/// \param Results the structure into which we'll add results.
4801static void AddObjCMethods(ObjCContainerDecl *Container,
4802 bool WantInstanceMethods,
Douglas Gregorc8537c52009-11-19 07:41:15 +00004803 ObjCMethodKind WantKind,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004804 ArrayRef<IdentifierInfo *> SelIdents,
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00004805 DeclContext *CurContext,
Douglas Gregor1154e272010-09-16 16:06:31 +00004806 VisitedSelectorSet &Selectors,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00004807 bool AllowSameLength,
Douglas Gregor416b5752010-08-25 01:08:01 +00004808 ResultBuilder &Results,
4809 bool InOriginalClass = true) {
John McCall276321a2010-08-25 06:19:51 +00004810 typedef CodeCompletionResult Result;
Douglas Gregor9b4f3702012-06-12 13:44:08 +00004811 Container = getContainerDef(Container);
Douglas Gregor41778c32013-01-30 06:58:39 +00004812 ObjCInterfaceDecl *IFace = dyn_cast<ObjCInterfaceDecl>(Container);
4813 bool isRootClass = IFace && !IFace->getSuperClass();
Aaron Ballmanaff18c02014-03-13 19:03:34 +00004814 for (auto *M : Container->methods()) {
Douglas Gregor41778c32013-01-30 06:58:39 +00004815 // The instance methods on the root class can be messaged via the
4816 // metaclass.
4817 if (M->isInstanceMethod() == WantInstanceMethods ||
4818 (isRootClass && !WantInstanceMethods)) {
Douglas Gregor1b605f72009-11-19 01:08:35 +00004819 // Check whether the selector identifiers we've been given are a
4820 // subset of the identifiers for this particular method.
Aaron Ballmanaff18c02014-03-13 19:03:34 +00004821 if (!isAcceptableObjCMethod(M, WantKind, SelIdents, AllowSameLength))
Douglas Gregor1b605f72009-11-19 01:08:35 +00004822 continue;
Douglas Gregorc8537c52009-11-19 07:41:15 +00004823
David Blaikie82e95a32014-11-19 07:49:47 +00004824 if (!Selectors.insert(M->getSelector()).second)
Douglas Gregor1154e272010-09-16 16:06:31 +00004825 continue;
Craig Topperc3ec1492014-05-26 06:22:03 +00004826
4827 Result R = Result(M, Results.getBasePriority(M), nullptr);
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004828 R.StartParameter = SelIdents.size();
Douglas Gregorc8537c52009-11-19 07:41:15 +00004829 R.AllParametersAreInformative = (WantKind != MK_Any);
Douglas Gregor416b5752010-08-25 01:08:01 +00004830 if (!InOriginalClass)
4831 R.Priority += CCD_InBaseClass;
Douglas Gregor1b605f72009-11-19 01:08:35 +00004832 Results.MaybeAddResult(R, CurContext);
4833 }
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00004834 }
4835
Douglas Gregorf37c9492010-09-16 15:34:59 +00004836 // Visit the protocols of protocols.
4837 if (ObjCProtocolDecl *Protocol = dyn_cast<ObjCProtocolDecl>(Container)) {
Douglas Gregore6e48b12012-01-01 19:29:29 +00004838 if (Protocol->hasDefinition()) {
4839 const ObjCList<ObjCProtocolDecl> &Protocols
4840 = Protocol->getReferencedProtocols();
4841 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
4842 E = Protocols.end();
4843 I != E; ++I)
4844 AddObjCMethods(*I, WantInstanceMethods, WantKind, SelIdents,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004845 CurContext, Selectors, AllowSameLength, Results, false);
Douglas Gregore6e48b12012-01-01 19:29:29 +00004846 }
Douglas Gregorf37c9492010-09-16 15:34:59 +00004847 }
4848
Douglas Gregorc0ac7d62011-12-15 05:27:12 +00004849 if (!IFace || !IFace->hasDefinition())
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00004850 return;
4851
4852 // Add methods in protocols.
Aaron Ballmana49c5062014-03-13 20:29:09 +00004853 for (auto *I : IFace->protocols())
4854 AddObjCMethods(I, WantInstanceMethods, WantKind, SelIdents,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00004855 CurContext, Selectors, AllowSameLength, Results, false);
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00004856
4857 // Add methods in categories.
Aaron Ballman15063e12014-03-13 21:35:02 +00004858 for (auto *CatDecl : IFace->known_categories()) {
Douglas Gregor048fbfa2013-01-16 23:00:23 +00004859 AddObjCMethods(CatDecl, WantInstanceMethods, WantKind, SelIdents,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004860 CurContext, Selectors, AllowSameLength,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00004861 Results, InOriginalClass);
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00004862
4863 // Add a categories protocol methods.
4864 const ObjCList<ObjCProtocolDecl> &Protocols
4865 = CatDecl->getReferencedProtocols();
4866 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
4867 E = Protocols.end();
4868 I != E; ++I)
Douglas Gregorc8537c52009-11-19 07:41:15 +00004869 AddObjCMethods(*I, WantInstanceMethods, WantKind, SelIdents,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004870 CurContext, Selectors, AllowSameLength,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00004871 Results, false);
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00004872
4873 // Add methods in category implementations.
4874 if (ObjCCategoryImplDecl *Impl = CatDecl->getImplementation())
Douglas Gregorc8537c52009-11-19 07:41:15 +00004875 AddObjCMethods(Impl, WantInstanceMethods, WantKind, SelIdents,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004876 CurContext, Selectors, AllowSameLength,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00004877 Results, InOriginalClass);
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00004878 }
4879
4880 // Add methods in superclass.
4881 if (IFace->getSuperClass())
Douglas Gregorc8537c52009-11-19 07:41:15 +00004882 AddObjCMethods(IFace->getSuperClass(), WantInstanceMethods, WantKind,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004883 SelIdents, CurContext, Selectors,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00004884 AllowSameLength, Results, false);
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00004885
4886 // Add methods in our implementation, if any.
4887 if (ObjCImplementationDecl *Impl = IFace->getImplementation())
Douglas Gregorc8537c52009-11-19 07:41:15 +00004888 AddObjCMethods(Impl, WantInstanceMethods, WantKind, SelIdents,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004889 CurContext, Selectors, AllowSameLength,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00004890 Results, InOriginalClass);
Douglas Gregorc8537c52009-11-19 07:41:15 +00004891}
4892
4893
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00004894void Sema::CodeCompleteObjCPropertyGetter(Scope *S) {
Douglas Gregorc8537c52009-11-19 07:41:15 +00004895 // Try to find the interface where getters might live.
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00004896 ObjCInterfaceDecl *Class = dyn_cast_or_null<ObjCInterfaceDecl>(CurContext);
Douglas Gregorc8537c52009-11-19 07:41:15 +00004897 if (!Class) {
4898 if (ObjCCategoryDecl *Category
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00004899 = dyn_cast_or_null<ObjCCategoryDecl>(CurContext))
Douglas Gregorc8537c52009-11-19 07:41:15 +00004900 Class = Category->getClassInterface();
4901
4902 if (!Class)
4903 return;
4904 }
4905
4906 // Find all of the potential getters.
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004907 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004908 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004909 CodeCompletionContext::CCC_Other);
Douglas Gregorc8537c52009-11-19 07:41:15 +00004910 Results.EnterNewScope();
4911
Douglas Gregor1154e272010-09-16 16:06:31 +00004912 VisitedSelectorSet Selectors;
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004913 AddObjCMethods(Class, true, MK_ZeroArgSelector, None, CurContext, Selectors,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00004914 /*AllowSameLength=*/true, Results);
Douglas Gregorc8537c52009-11-19 07:41:15 +00004915 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004916 HandleCodeCompleteResults(this, CodeCompleter,
4917 CodeCompletionContext::CCC_Other,
4918 Results.data(),Results.size());
Douglas Gregorc8537c52009-11-19 07:41:15 +00004919}
4920
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00004921void Sema::CodeCompleteObjCPropertySetter(Scope *S) {
Douglas Gregorc8537c52009-11-19 07:41:15 +00004922 // Try to find the interface where setters might live.
4923 ObjCInterfaceDecl *Class
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00004924 = dyn_cast_or_null<ObjCInterfaceDecl>(CurContext);
Douglas Gregorc8537c52009-11-19 07:41:15 +00004925 if (!Class) {
4926 if (ObjCCategoryDecl *Category
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00004927 = dyn_cast_or_null<ObjCCategoryDecl>(CurContext))
Douglas Gregorc8537c52009-11-19 07:41:15 +00004928 Class = Category->getClassInterface();
4929
4930 if (!Class)
4931 return;
4932 }
4933
4934 // Find all of the potential getters.
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004935 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004936 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004937 CodeCompletionContext::CCC_Other);
Douglas Gregorc8537c52009-11-19 07:41:15 +00004938 Results.EnterNewScope();
4939
Douglas Gregor1154e272010-09-16 16:06:31 +00004940 VisitedSelectorSet Selectors;
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004941 AddObjCMethods(Class, true, MK_OneArgSelector, None, CurContext,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00004942 Selectors, /*AllowSameLength=*/true, Results);
Douglas Gregorc8537c52009-11-19 07:41:15 +00004943
4944 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004945 HandleCodeCompleteResults(this, CodeCompleter,
4946 CodeCompletionContext::CCC_Other,
4947 Results.data(),Results.size());
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00004948}
4949
Douglas Gregorf34a6f02011-02-15 22:19:42 +00004950void Sema::CodeCompleteObjCPassingType(Scope *S, ObjCDeclSpec &DS,
4951 bool IsParameter) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004952 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004953 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004954 CodeCompletionContext::CCC_Type);
Douglas Gregor99fa2642010-08-24 01:06:58 +00004955 Results.EnterNewScope();
4956
4957 // Add context-sensitive, Objective-C parameter-passing keywords.
4958 bool AddedInOut = false;
4959 if ((DS.getObjCDeclQualifier() &
4960 (ObjCDeclSpec::DQ_In | ObjCDeclSpec::DQ_Inout)) == 0) {
4961 Results.AddResult("in");
4962 Results.AddResult("inout");
4963 AddedInOut = true;
4964 }
4965 if ((DS.getObjCDeclQualifier() &
4966 (ObjCDeclSpec::DQ_Out | ObjCDeclSpec::DQ_Inout)) == 0) {
4967 Results.AddResult("out");
4968 if (!AddedInOut)
4969 Results.AddResult("inout");
4970 }
4971 if ((DS.getObjCDeclQualifier() &
4972 (ObjCDeclSpec::DQ_Bycopy | ObjCDeclSpec::DQ_Byref |
4973 ObjCDeclSpec::DQ_Oneway)) == 0) {
4974 Results.AddResult("bycopy");
4975 Results.AddResult("byref");
4976 Results.AddResult("oneway");
4977 }
4978
Douglas Gregorf34a6f02011-02-15 22:19:42 +00004979 // If we're completing the return type of an Objective-C method and the
4980 // identifier IBAction refers to a macro, provide a completion item for
4981 // an action, e.g.,
4982 // IBAction)<#selector#>:(id)sender
4983 if (DS.getObjCDeclQualifier() == 0 && !IsParameter &&
4984 Context.Idents.get("IBAction").hasMacroDefinition()) {
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004985 CodeCompletionBuilder Builder(Results.getAllocator(),
4986 Results.getCodeCompletionTUInfo(),
4987 CCP_CodePattern, CXAvailability_Available);
Douglas Gregorf34a6f02011-02-15 22:19:42 +00004988 Builder.AddTypedTextChunk("IBAction");
Benjamin Kramerdb534a42012-03-26 16:57:36 +00004989 Builder.AddChunk(CodeCompletionString::CK_RightParen);
Douglas Gregorf34a6f02011-02-15 22:19:42 +00004990 Builder.AddPlaceholderChunk("selector");
Benjamin Kramerdb534a42012-03-26 16:57:36 +00004991 Builder.AddChunk(CodeCompletionString::CK_Colon);
4992 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
Douglas Gregorf34a6f02011-02-15 22:19:42 +00004993 Builder.AddTextChunk("id");
Benjamin Kramerdb534a42012-03-26 16:57:36 +00004994 Builder.AddChunk(CodeCompletionString::CK_RightParen);
Douglas Gregorf34a6f02011-02-15 22:19:42 +00004995 Builder.AddTextChunk("sender");
4996 Results.AddResult(CodeCompletionResult(Builder.TakeString()));
4997 }
Douglas Gregored1f5972013-01-30 07:11:43 +00004998
4999 // If we're completing the return type, provide 'instancetype'.
5000 if (!IsParameter) {
5001 Results.AddResult(CodeCompletionResult("instancetype"));
5002 }
Douglas Gregorf34a6f02011-02-15 22:19:42 +00005003
Douglas Gregor99fa2642010-08-24 01:06:58 +00005004 // Add various builtin type names and specifiers.
5005 AddOrdinaryNameResults(PCC_Type, S, *this, Results);
5006 Results.ExitScope();
5007
5008 // Add the various type names
5009 Results.setFilter(&ResultBuilder::IsOrdinaryNonValueName);
5010 CodeCompletionDeclConsumer Consumer(Results, CurContext);
5011 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
5012 CodeCompleter->includeGlobals());
5013
5014 if (CodeCompleter->includeMacros())
Douglas Gregor8cb17462012-10-09 16:01:50 +00005015 AddMacroResults(PP, Results, false);
Douglas Gregor99fa2642010-08-24 01:06:58 +00005016
5017 HandleCodeCompleteResults(this, CodeCompleter,
5018 CodeCompletionContext::CCC_Type,
5019 Results.data(), Results.size());
5020}
5021
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005022/// \brief When we have an expression with type "id", we may assume
5023/// that it has some more-specific class type based on knowledge of
5024/// common uses of Objective-C. This routine returns that class type,
5025/// or NULL if no better result could be determined.
5026static ObjCInterfaceDecl *GetAssumedMessageSendExprType(Expr *E) {
Douglas Gregored0b69d2010-09-15 16:23:04 +00005027 ObjCMessageExpr *Msg = dyn_cast_or_null<ObjCMessageExpr>(E);
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005028 if (!Msg)
Craig Topperc3ec1492014-05-26 06:22:03 +00005029 return nullptr;
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005030
5031 Selector Sel = Msg->getSelector();
5032 if (Sel.isNull())
Craig Topperc3ec1492014-05-26 06:22:03 +00005033 return nullptr;
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005034
5035 IdentifierInfo *Id = Sel.getIdentifierInfoForSlot(0);
5036 if (!Id)
Craig Topperc3ec1492014-05-26 06:22:03 +00005037 return nullptr;
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005038
5039 ObjCMethodDecl *Method = Msg->getMethodDecl();
5040 if (!Method)
Craig Topperc3ec1492014-05-26 06:22:03 +00005041 return nullptr;
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005042
5043 // Determine the class that we're sending the message to.
Craig Topperc3ec1492014-05-26 06:22:03 +00005044 ObjCInterfaceDecl *IFace = nullptr;
Douglas Gregor9a129192010-04-21 00:45:42 +00005045 switch (Msg->getReceiverKind()) {
5046 case ObjCMessageExpr::Class:
John McCall8b07ec22010-05-15 11:32:37 +00005047 if (const ObjCObjectType *ObjType
5048 = Msg->getClassReceiver()->getAs<ObjCObjectType>())
5049 IFace = ObjType->getInterface();
Douglas Gregor9a129192010-04-21 00:45:42 +00005050 break;
5051
5052 case ObjCMessageExpr::Instance: {
5053 QualType T = Msg->getInstanceReceiver()->getType();
5054 if (const ObjCObjectPointerType *Ptr = T->getAs<ObjCObjectPointerType>())
5055 IFace = Ptr->getInterfaceDecl();
5056 break;
5057 }
5058
5059 case ObjCMessageExpr::SuperInstance:
5060 case ObjCMessageExpr::SuperClass:
5061 break;
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005062 }
5063
5064 if (!IFace)
Craig Topperc3ec1492014-05-26 06:22:03 +00005065 return nullptr;
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005066
5067 ObjCInterfaceDecl *Super = IFace->getSuperClass();
5068 if (Method->isInstanceMethod())
5069 return llvm::StringSwitch<ObjCInterfaceDecl *>(Id->getName())
5070 .Case("retain", IFace)
John McCall31168b02011-06-15 23:02:42 +00005071 .Case("strong", IFace)
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005072 .Case("autorelease", IFace)
5073 .Case("copy", IFace)
5074 .Case("copyWithZone", IFace)
5075 .Case("mutableCopy", IFace)
5076 .Case("mutableCopyWithZone", IFace)
5077 .Case("awakeFromCoder", IFace)
5078 .Case("replacementObjectFromCoder", IFace)
5079 .Case("class", IFace)
5080 .Case("classForCoder", IFace)
5081 .Case("superclass", Super)
Craig Topperc3ec1492014-05-26 06:22:03 +00005082 .Default(nullptr);
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005083
5084 return llvm::StringSwitch<ObjCInterfaceDecl *>(Id->getName())
5085 .Case("new", IFace)
5086 .Case("alloc", IFace)
5087 .Case("allocWithZone", IFace)
5088 .Case("class", IFace)
5089 .Case("superclass", Super)
Craig Topperc3ec1492014-05-26 06:22:03 +00005090 .Default(nullptr);
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005091}
5092
Douglas Gregor6fc04132010-08-27 15:10:57 +00005093// Add a special completion for a message send to "super", which fills in the
5094// most likely case of forwarding all of our arguments to the superclass
5095// function.
5096///
5097/// \param S The semantic analysis object.
5098///
Dmitri Gribenkoadba9be2012-08-23 17:58:28 +00005099/// \param NeedSuperKeyword Whether we need to prefix this completion with
Douglas Gregor6fc04132010-08-27 15:10:57 +00005100/// the "super" keyword. Otherwise, we just need to provide the arguments.
5101///
5102/// \param SelIdents The identifiers in the selector that have already been
5103/// provided as arguments for a send to "super".
5104///
Douglas Gregor6fc04132010-08-27 15:10:57 +00005105/// \param Results The set of results to augment.
5106///
5107/// \returns the Objective-C method declaration that would be invoked by
5108/// this "super" completion. If NULL, no completion was added.
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005109static ObjCMethodDecl *AddSuperSendCompletion(
5110 Sema &S, bool NeedSuperKeyword,
5111 ArrayRef<IdentifierInfo *> SelIdents,
5112 ResultBuilder &Results) {
Douglas Gregor6fc04132010-08-27 15:10:57 +00005113 ObjCMethodDecl *CurMethod = S.getCurMethodDecl();
5114 if (!CurMethod)
Craig Topperc3ec1492014-05-26 06:22:03 +00005115 return nullptr;
5116
Douglas Gregor6fc04132010-08-27 15:10:57 +00005117 ObjCInterfaceDecl *Class = CurMethod->getClassInterface();
5118 if (!Class)
Craig Topperc3ec1492014-05-26 06:22:03 +00005119 return nullptr;
5120
Douglas Gregor6fc04132010-08-27 15:10:57 +00005121 // Try to find a superclass method with the same selector.
Craig Topperc3ec1492014-05-26 06:22:03 +00005122 ObjCMethodDecl *SuperMethod = nullptr;
Douglas Gregorb5f1e462011-02-16 00:51:18 +00005123 while ((Class = Class->getSuperClass()) && !SuperMethod) {
5124 // Check in the class
Douglas Gregor6fc04132010-08-27 15:10:57 +00005125 SuperMethod = Class->getMethod(CurMethod->getSelector(),
5126 CurMethod->isInstanceMethod());
5127
Douglas Gregorb5f1e462011-02-16 00:51:18 +00005128 // Check in categories or class extensions.
5129 if (!SuperMethod) {
Aaron Ballman15063e12014-03-13 21:35:02 +00005130 for (const auto *Cat : Class->known_categories()) {
Douglas Gregor048fbfa2013-01-16 23:00:23 +00005131 if ((SuperMethod = Cat->getMethod(CurMethod->getSelector(),
Douglas Gregorb5f1e462011-02-16 00:51:18 +00005132 CurMethod->isInstanceMethod())))
5133 break;
Douglas Gregor048fbfa2013-01-16 23:00:23 +00005134 }
Douglas Gregorb5f1e462011-02-16 00:51:18 +00005135 }
5136 }
5137
Douglas Gregor6fc04132010-08-27 15:10:57 +00005138 if (!SuperMethod)
Craig Topperc3ec1492014-05-26 06:22:03 +00005139 return nullptr;
5140
Douglas Gregor6fc04132010-08-27 15:10:57 +00005141 // Check whether the superclass method has the same signature.
5142 if (CurMethod->param_size() != SuperMethod->param_size() ||
5143 CurMethod->isVariadic() != SuperMethod->isVariadic())
Craig Topperc3ec1492014-05-26 06:22:03 +00005144 return nullptr;
5145
Douglas Gregor6fc04132010-08-27 15:10:57 +00005146 for (ObjCMethodDecl::param_iterator CurP = CurMethod->param_begin(),
5147 CurPEnd = CurMethod->param_end(),
5148 SuperP = SuperMethod->param_begin();
5149 CurP != CurPEnd; ++CurP, ++SuperP) {
5150 // Make sure the parameter types are compatible.
5151 if (!S.Context.hasSameUnqualifiedType((*CurP)->getType(),
5152 (*SuperP)->getType()))
Craig Topperc3ec1492014-05-26 06:22:03 +00005153 return nullptr;
5154
Douglas Gregor6fc04132010-08-27 15:10:57 +00005155 // Make sure we have a parameter name to forward!
5156 if (!(*CurP)->getIdentifier())
Craig Topperc3ec1492014-05-26 06:22:03 +00005157 return nullptr;
Douglas Gregor6fc04132010-08-27 15:10:57 +00005158 }
5159
5160 // We have a superclass method. Now, form the send-to-super completion.
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005161 CodeCompletionBuilder Builder(Results.getAllocator(),
5162 Results.getCodeCompletionTUInfo());
Douglas Gregor6fc04132010-08-27 15:10:57 +00005163
5164 // Give this completion a return type.
Douglas Gregor75acd922011-09-27 23:30:47 +00005165 AddResultTypeChunk(S.Context, getCompletionPrintingPolicy(S), SuperMethod,
5166 Builder);
Douglas Gregor6fc04132010-08-27 15:10:57 +00005167
5168 // If we need the "super" keyword, add it (plus some spacing).
5169 if (NeedSuperKeyword) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005170 Builder.AddTypedTextChunk("super");
5171 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
Douglas Gregor6fc04132010-08-27 15:10:57 +00005172 }
5173
5174 Selector Sel = CurMethod->getSelector();
5175 if (Sel.isUnarySelector()) {
5176 if (NeedSuperKeyword)
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005177 Builder.AddTextChunk(Builder.getAllocator().CopyString(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00005178 Sel.getNameForSlot(0)));
Douglas Gregor6fc04132010-08-27 15:10:57 +00005179 else
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005180 Builder.AddTypedTextChunk(Builder.getAllocator().CopyString(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00005181 Sel.getNameForSlot(0)));
Douglas Gregor6fc04132010-08-27 15:10:57 +00005182 } else {
5183 ObjCMethodDecl::param_iterator CurP = CurMethod->param_begin();
5184 for (unsigned I = 0, N = Sel.getNumArgs(); I != N; ++I, ++CurP) {
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005185 if (I > SelIdents.size())
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005186 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
Douglas Gregor6fc04132010-08-27 15:10:57 +00005187
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005188 if (I < SelIdents.size())
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005189 Builder.AddInformativeChunk(
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005190 Builder.getAllocator().CopyString(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00005191 Sel.getNameForSlot(I) + ":"));
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005192 else if (NeedSuperKeyword || I > SelIdents.size()) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005193 Builder.AddTextChunk(
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005194 Builder.getAllocator().CopyString(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00005195 Sel.getNameForSlot(I) + ":"));
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005196 Builder.AddPlaceholderChunk(Builder.getAllocator().CopyString(
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005197 (*CurP)->getIdentifier()->getName()));
Douglas Gregor6fc04132010-08-27 15:10:57 +00005198 } else {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005199 Builder.AddTypedTextChunk(
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005200 Builder.getAllocator().CopyString(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00005201 Sel.getNameForSlot(I) + ":"));
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005202 Builder.AddPlaceholderChunk(Builder.getAllocator().CopyString(
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005203 (*CurP)->getIdentifier()->getName()));
Douglas Gregor6fc04132010-08-27 15:10:57 +00005204 }
5205 }
5206 }
5207
Douglas Gregor78254c82012-03-27 23:34:16 +00005208 Results.AddResult(CodeCompletionResult(Builder.TakeString(), SuperMethod,
5209 CCP_SuperCompletion));
Douglas Gregor6fc04132010-08-27 15:10:57 +00005210 return SuperMethod;
5211}
5212
Douglas Gregora817a192010-05-27 23:06:34 +00005213void Sema::CodeCompleteObjCMessageReceiver(Scope *S) {
John McCall276321a2010-08-25 06:19:51 +00005214 typedef CodeCompletionResult Result;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005215 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005216 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005217 CodeCompletionContext::CCC_ObjCMessageReceiver,
Richard Smith2bf7fdb2013-01-02 11:42:31 +00005218 getLangOpts().CPlusPlus11
Douglas Gregord8c61782012-02-15 15:34:24 +00005219 ? &ResultBuilder::IsObjCMessageReceiverOrLambdaCapture
5220 : &ResultBuilder::IsObjCMessageReceiver);
Douglas Gregora817a192010-05-27 23:06:34 +00005221
Douglas Gregora817a192010-05-27 23:06:34 +00005222 CodeCompletionDeclConsumer Consumer(Results, CurContext);
5223 Results.EnterNewScope();
Douglas Gregor39982192010-08-15 06:18:01 +00005224 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
5225 CodeCompleter->includeGlobals());
Douglas Gregora817a192010-05-27 23:06:34 +00005226
5227 // If we are in an Objective-C method inside a class that has a superclass,
5228 // add "super" as an option.
5229 if (ObjCMethodDecl *Method = getCurMethodDecl())
5230 if (ObjCInterfaceDecl *Iface = Method->getClassInterface())
Douglas Gregor6fc04132010-08-27 15:10:57 +00005231 if (Iface->getSuperClass()) {
Douglas Gregora817a192010-05-27 23:06:34 +00005232 Results.AddResult(Result("super"));
Douglas Gregor6fc04132010-08-27 15:10:57 +00005233
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005234 AddSuperSendCompletion(*this, /*NeedSuperKeyword=*/true, None, Results);
Douglas Gregor6fc04132010-08-27 15:10:57 +00005235 }
Douglas Gregora817a192010-05-27 23:06:34 +00005236
Richard Smith2bf7fdb2013-01-02 11:42:31 +00005237 if (getLangOpts().CPlusPlus11)
Douglas Gregord8c61782012-02-15 15:34:24 +00005238 addThisCompletion(*this, Results);
5239
Douglas Gregora817a192010-05-27 23:06:34 +00005240 Results.ExitScope();
5241
5242 if (CodeCompleter->includeMacros())
Douglas Gregor8cb17462012-10-09 16:01:50 +00005243 AddMacroResults(PP, Results, false);
Douglas Gregor50832e02010-09-20 22:39:41 +00005244 HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005245 Results.data(), Results.size());
Douglas Gregora817a192010-05-27 23:06:34 +00005246
5247}
5248
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005249void Sema::CodeCompleteObjCSuperMessage(Scope *S, SourceLocation SuperLoc,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005250 ArrayRef<IdentifierInfo *> SelIdents,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00005251 bool AtArgumentExpression) {
Craig Topperc3ec1492014-05-26 06:22:03 +00005252 ObjCInterfaceDecl *CDecl = nullptr;
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005253 if (ObjCMethodDecl *CurMethod = getCurMethodDecl()) {
5254 // Figure out which interface we're in.
5255 CDecl = CurMethod->getClassInterface();
5256 if (!CDecl)
5257 return;
5258
5259 // Find the superclass of this class.
5260 CDecl = CDecl->getSuperClass();
5261 if (!CDecl)
5262 return;
5263
5264 if (CurMethod->isInstanceMethod()) {
5265 // We are inside an instance method, which means that the message
5266 // send [super ...] is actually calling an instance method on the
Douglas Gregor392a84b2010-10-13 21:24:53 +00005267 // current object.
Craig Topperc3ec1492014-05-26 06:22:03 +00005268 return CodeCompleteObjCInstanceMessage(S, nullptr, SelIdents,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00005269 AtArgumentExpression,
Douglas Gregor392a84b2010-10-13 21:24:53 +00005270 CDecl);
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005271 }
5272
5273 // Fall through to send to the superclass in CDecl.
5274 } else {
5275 // "super" may be the name of a type or variable. Figure out which
5276 // it is.
Argyrios Kyrtzidis3e56dd42013-03-14 22:56:43 +00005277 IdentifierInfo *Super = getSuperIdentifier();
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005278 NamedDecl *ND = LookupSingleName(S, Super, SuperLoc,
5279 LookupOrdinaryName);
5280 if ((CDecl = dyn_cast_or_null<ObjCInterfaceDecl>(ND))) {
5281 // "super" names an interface. Use it.
5282 } else if (TypeDecl *TD = dyn_cast_or_null<TypeDecl>(ND)) {
John McCall8b07ec22010-05-15 11:32:37 +00005283 if (const ObjCObjectType *Iface
5284 = Context.getTypeDeclType(TD)->getAs<ObjCObjectType>())
5285 CDecl = Iface->getInterface();
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005286 } else if (ND && isa<UnresolvedUsingTypenameDecl>(ND)) {
5287 // "super" names an unresolved type; we can't be more specific.
5288 } else {
5289 // Assume that "super" names some kind of value and parse that way.
5290 CXXScopeSpec SS;
Abramo Bagnara7945c982012-01-27 09:46:47 +00005291 SourceLocation TemplateKWLoc;
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005292 UnqualifiedId id;
5293 id.setIdentifier(Super, SuperLoc);
Abramo Bagnara7945c982012-01-27 09:46:47 +00005294 ExprResult SuperExpr = ActOnIdExpression(S, SS, TemplateKWLoc, id,
5295 false, false);
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005296 return CodeCompleteObjCInstanceMessage(S, (Expr *)SuperExpr.get(),
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005297 SelIdents,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00005298 AtArgumentExpression);
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005299 }
5300
5301 // Fall through
5302 }
5303
John McCallba7bf592010-08-24 05:47:05 +00005304 ParsedType Receiver;
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005305 if (CDecl)
John McCallba7bf592010-08-24 05:47:05 +00005306 Receiver = ParsedType::make(Context.getObjCInterfaceType(CDecl));
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005307 return CodeCompleteObjCClassMessage(S, Receiver, SelIdents,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005308 AtArgumentExpression,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00005309 /*IsSuper=*/true);
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005310}
5311
Douglas Gregor74661272010-09-21 00:03:25 +00005312/// \brief Given a set of code-completion results for the argument of a message
5313/// send, determine the preferred type (if any) for that argument expression.
5314static QualType getPreferredArgumentTypeForMessageSend(ResultBuilder &Results,
5315 unsigned NumSelIdents) {
5316 typedef CodeCompletionResult Result;
5317 ASTContext &Context = Results.getSema().Context;
5318
5319 QualType PreferredType;
5320 unsigned BestPriority = CCP_Unlikely * 2;
5321 Result *ResultsData = Results.data();
5322 for (unsigned I = 0, N = Results.size(); I != N; ++I) {
5323 Result &R = ResultsData[I];
5324 if (R.Kind == Result::RK_Declaration &&
5325 isa<ObjCMethodDecl>(R.Declaration)) {
5326 if (R.Priority <= BestPriority) {
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00005327 const ObjCMethodDecl *Method = cast<ObjCMethodDecl>(R.Declaration);
Douglas Gregor74661272010-09-21 00:03:25 +00005328 if (NumSelIdents <= Method->param_size()) {
Alp Toker03376dc2014-07-07 09:02:20 +00005329 QualType MyPreferredType = Method->parameters()[NumSelIdents - 1]
Douglas Gregor74661272010-09-21 00:03:25 +00005330 ->getType();
5331 if (R.Priority < BestPriority || PreferredType.isNull()) {
5332 BestPriority = R.Priority;
5333 PreferredType = MyPreferredType;
5334 } else if (!Context.hasSameUnqualifiedType(PreferredType,
5335 MyPreferredType)) {
5336 PreferredType = QualType();
5337 }
5338 }
5339 }
5340 }
5341 }
5342
5343 return PreferredType;
5344}
5345
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005346static void AddClassMessageCompletions(Sema &SemaRef, Scope *S,
5347 ParsedType Receiver,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005348 ArrayRef<IdentifierInfo *> SelIdents,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00005349 bool AtArgumentExpression,
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005350 bool IsSuper,
5351 ResultBuilder &Results) {
John McCall276321a2010-08-25 06:19:51 +00005352 typedef CodeCompletionResult Result;
Craig Topperc3ec1492014-05-26 06:22:03 +00005353 ObjCInterfaceDecl *CDecl = nullptr;
5354
Douglas Gregor8ce33212009-11-17 17:59:40 +00005355 // If the given name refers to an interface type, retrieve the
5356 // corresponding declaration.
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005357 if (Receiver) {
Craig Topperc3ec1492014-05-26 06:22:03 +00005358 QualType T = SemaRef.GetTypeFromParser(Receiver, nullptr);
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005359 if (!T.isNull())
John McCall8b07ec22010-05-15 11:32:37 +00005360 if (const ObjCObjectType *Interface = T->getAs<ObjCObjectType>())
5361 CDecl = Interface->getInterface();
Douglas Gregor8ce33212009-11-17 17:59:40 +00005362 }
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005363
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005364 // Add all of the factory methods in this Objective-C class, its protocols,
5365 // superclasses, categories, implementation, etc.
Steve Naroffeae65032009-11-07 02:08:14 +00005366 Results.EnterNewScope();
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005367
Douglas Gregor6fc04132010-08-27 15:10:57 +00005368 // If this is a send-to-super, try to add the special "super" send
5369 // completion.
5370 if (IsSuper) {
5371 if (ObjCMethodDecl *SuperMethod
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005372 = AddSuperSendCompletion(SemaRef, false, SelIdents, Results))
Douglas Gregor6fc04132010-08-27 15:10:57 +00005373 Results.Ignore(SuperMethod);
5374 }
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005375
Douglas Gregorc2cb2e22010-08-27 15:29:55 +00005376 // If we're inside an Objective-C method definition, prefer its selector to
5377 // others.
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005378 if (ObjCMethodDecl *CurMethod = SemaRef.getCurMethodDecl())
Douglas Gregorc2cb2e22010-08-27 15:29:55 +00005379 Results.setPreferredSelector(CurMethod->getSelector());
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005380
Douglas Gregor1154e272010-09-16 16:06:31 +00005381 VisitedSelectorSet Selectors;
Douglas Gregor6285f752010-04-06 16:40:00 +00005382 if (CDecl)
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005383 AddObjCMethods(CDecl, false, MK_Any, SelIdents,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005384 SemaRef.CurContext, Selectors, AtArgumentExpression,
5385 Results);
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005386 else {
Douglas Gregor6285f752010-04-06 16:40:00 +00005387 // We're messaging "id" as a type; provide all class/factory methods.
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005388
Douglas Gregord720daf2010-04-06 17:30:22 +00005389 // If we have an external source, load the entire class method
Sebastian Redld44cd6a2010-08-18 23:57:06 +00005390 // pool from the AST file.
Axel Naumanndd433f02012-10-18 19:05:02 +00005391 if (SemaRef.getExternalSource()) {
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005392 for (uint32_t I = 0,
Axel Naumanndd433f02012-10-18 19:05:02 +00005393 N = SemaRef.getExternalSource()->GetNumExternalSelectors();
John McCall75b960e2010-06-01 09:23:16 +00005394 I != N; ++I) {
Axel Naumanndd433f02012-10-18 19:05:02 +00005395 Selector Sel = SemaRef.getExternalSource()->GetExternalSelector(I);
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005396 if (Sel.isNull() || SemaRef.MethodPool.count(Sel))
Douglas Gregord720daf2010-04-06 17:30:22 +00005397 continue;
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005398
5399 SemaRef.ReadMethodPool(Sel);
Douglas Gregord720daf2010-04-06 17:30:22 +00005400 }
5401 }
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005402
5403 for (Sema::GlobalMethodPool::iterator M = SemaRef.MethodPool.begin(),
5404 MEnd = SemaRef.MethodPool.end();
Sebastian Redl75d8a322010-08-02 23:18:59 +00005405 M != MEnd; ++M) {
5406 for (ObjCMethodList *MethList = &M->second.second;
Nico Weber2e0c8f72014-12-27 03:58:08 +00005407 MethList && MethList->getMethod();
Argyrios Kyrtzidisd3da6e02013-04-17 00:08:58 +00005408 MethList = MethList->getNext()) {
Nico Weber2e0c8f72014-12-27 03:58:08 +00005409 if (!isAcceptableObjCMethod(MethList->getMethod(), MK_Any, SelIdents))
Douglas Gregor6285f752010-04-06 16:40:00 +00005410 continue;
Craig Topperc3ec1492014-05-26 06:22:03 +00005411
Nico Weber2e0c8f72014-12-27 03:58:08 +00005412 Result R(MethList->getMethod(),
5413 Results.getBasePriority(MethList->getMethod()), nullptr);
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005414 R.StartParameter = SelIdents.size();
Douglas Gregor6285f752010-04-06 16:40:00 +00005415 R.AllParametersAreInformative = false;
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005416 Results.MaybeAddResult(R, SemaRef.CurContext);
Douglas Gregor6285f752010-04-06 16:40:00 +00005417 }
5418 }
5419 }
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005420
5421 Results.ExitScope();
5422}
Douglas Gregor6285f752010-04-06 16:40:00 +00005423
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005424void Sema::CodeCompleteObjCClassMessage(Scope *S, ParsedType Receiver,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005425 ArrayRef<IdentifierInfo *> SelIdents,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00005426 bool AtArgumentExpression,
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005427 bool IsSuper) {
Douglas Gregor63745d52011-07-21 01:05:26 +00005428
5429 QualType T = this->GetTypeFromParser(Receiver);
5430
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005431 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005432 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor63745d52011-07-21 01:05:26 +00005433 CodeCompletionContext(CodeCompletionContext::CCC_ObjCClassMessage,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005434 T, SelIdents));
Douglas Gregor63745d52011-07-21 01:05:26 +00005435
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005436 AddClassMessageCompletions(*this, S, Receiver, SelIdents,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00005437 AtArgumentExpression, IsSuper, Results);
Douglas Gregor74661272010-09-21 00:03:25 +00005438
5439 // If we're actually at the argument expression (rather than prior to the
5440 // selector), we're actually performing code completion for an expression.
5441 // Determine whether we have a single, best method. If so, we can
5442 // code-complete the expression using the corresponding parameter type as
5443 // our preferred type, improving completion results.
5444 if (AtArgumentExpression) {
5445 QualType PreferredType = getPreferredArgumentTypeForMessageSend(Results,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005446 SelIdents.size());
Douglas Gregor74661272010-09-21 00:03:25 +00005447 if (PreferredType.isNull())
5448 CodeCompleteOrdinaryName(S, PCC_Expression);
5449 else
5450 CodeCompleteExpression(S, PreferredType);
5451 return;
5452 }
5453
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005454 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor63745d52011-07-21 01:05:26 +00005455 Results.getCompletionContext(),
Douglas Gregor6fc04132010-08-27 15:10:57 +00005456 Results.data(), Results.size());
Steve Naroffeae65032009-11-07 02:08:14 +00005457}
5458
Richard Trieu2bd04012011-09-09 02:00:50 +00005459void Sema::CodeCompleteObjCInstanceMessage(Scope *S, Expr *Receiver,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005460 ArrayRef<IdentifierInfo *> SelIdents,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00005461 bool AtArgumentExpression,
Douglas Gregor392a84b2010-10-13 21:24:53 +00005462 ObjCInterfaceDecl *Super) {
John McCall276321a2010-08-25 06:19:51 +00005463 typedef CodeCompletionResult Result;
Steve Naroffeae65032009-11-07 02:08:14 +00005464
5465 Expr *RecExpr = static_cast<Expr *>(Receiver);
Steve Naroffeae65032009-11-07 02:08:14 +00005466
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005467 // If necessary, apply function/array conversion to the receiver.
5468 // C99 6.7.5.3p[7,8].
John Wiegley01296292011-04-08 18:41:53 +00005469 if (RecExpr) {
5470 ExprResult Conv = DefaultFunctionArrayLvalueConversion(RecExpr);
5471 if (Conv.isInvalid()) // conversion failed. bail.
5472 return;
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005473 RecExpr = Conv.get();
John Wiegley01296292011-04-08 18:41:53 +00005474 }
Douglas Gregor392a84b2010-10-13 21:24:53 +00005475 QualType ReceiverType = RecExpr? RecExpr->getType()
5476 : Super? Context.getObjCObjectPointerType(
5477 Context.getObjCInterfaceType(Super))
5478 : Context.getObjCIdType();
Steve Naroffeae65032009-11-07 02:08:14 +00005479
Douglas Gregordc520b02010-11-08 21:12:30 +00005480 // If we're messaging an expression with type "id" or "Class", check
5481 // whether we know something special about the receiver that allows
5482 // us to assume a more-specific receiver type.
Anders Carlsson382ba412014-02-28 19:07:22 +00005483 if (ReceiverType->isObjCIdType() || ReceiverType->isObjCClassType()) {
Douglas Gregordc520b02010-11-08 21:12:30 +00005484 if (ObjCInterfaceDecl *IFace = GetAssumedMessageSendExprType(RecExpr)) {
5485 if (ReceiverType->isObjCClassType())
5486 return CodeCompleteObjCClassMessage(S,
5487 ParsedType::make(Context.getObjCInterfaceType(IFace)),
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005488 SelIdents,
Douglas Gregordc520b02010-11-08 21:12:30 +00005489 AtArgumentExpression, Super);
5490
5491 ReceiverType = Context.getObjCObjectPointerType(
5492 Context.getObjCInterfaceType(IFace));
5493 }
Anders Carlsson382ba412014-02-28 19:07:22 +00005494 } else if (RecExpr && getLangOpts().CPlusPlus) {
5495 ExprResult Conv = PerformContextuallyConvertToObjCPointer(RecExpr);
5496 if (Conv.isUsable()) {
Nikola Smiljanic01a75982014-05-29 10:55:11 +00005497 RecExpr = Conv.get();
Anders Carlsson382ba412014-02-28 19:07:22 +00005498 ReceiverType = RecExpr->getType();
5499 }
5500 }
Douglas Gregordc520b02010-11-08 21:12:30 +00005501
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005502 // Build the set of methods we can see.
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005503 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005504 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor63745d52011-07-21 01:05:26 +00005505 CodeCompletionContext(CodeCompletionContext::CCC_ObjCInstanceMessage,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005506 ReceiverType, SelIdents));
Douglas Gregor63745d52011-07-21 01:05:26 +00005507
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005508 Results.EnterNewScope();
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005509
Douglas Gregor6fc04132010-08-27 15:10:57 +00005510 // If this is a send-to-super, try to add the special "super" send
5511 // completion.
Douglas Gregor392a84b2010-10-13 21:24:53 +00005512 if (Super) {
Douglas Gregor6fc04132010-08-27 15:10:57 +00005513 if (ObjCMethodDecl *SuperMethod
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005514 = AddSuperSendCompletion(*this, false, SelIdents, Results))
Douglas Gregor6fc04132010-08-27 15:10:57 +00005515 Results.Ignore(SuperMethod);
5516 }
5517
Douglas Gregorc2cb2e22010-08-27 15:29:55 +00005518 // If we're inside an Objective-C method definition, prefer its selector to
5519 // others.
5520 if (ObjCMethodDecl *CurMethod = getCurMethodDecl())
5521 Results.setPreferredSelector(CurMethod->getSelector());
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005522
Douglas Gregor1154e272010-09-16 16:06:31 +00005523 // Keep track of the selectors we've already added.
5524 VisitedSelectorSet Selectors;
5525
Douglas Gregora3329fa2009-11-18 00:06:18 +00005526 // Handle messages to Class. This really isn't a message to an instance
5527 // method, so we treat it the same way we would treat a message send to a
5528 // class method.
5529 if (ReceiverType->isObjCClassType() ||
5530 ReceiverType->isObjCQualifiedClassType()) {
5531 if (ObjCMethodDecl *CurMethod = getCurMethodDecl()) {
5532 if (ObjCInterfaceDecl *ClassDecl = CurMethod->getClassInterface())
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005533 AddObjCMethods(ClassDecl, false, MK_Any, SelIdents,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005534 CurContext, Selectors, AtArgumentExpression, Results);
Douglas Gregora3329fa2009-11-18 00:06:18 +00005535 }
5536 }
5537 // Handle messages to a qualified ID ("id<foo>").
5538 else if (const ObjCObjectPointerType *QualID
5539 = ReceiverType->getAsObjCQualifiedIdType()) {
5540 // Search protocols for instance methods.
Aaron Ballman83731462014-03-17 16:14:00 +00005541 for (auto *I : QualID->quals())
5542 AddObjCMethods(I, true, MK_Any, SelIdents, CurContext,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005543 Selectors, AtArgumentExpression, Results);
Douglas Gregora3329fa2009-11-18 00:06:18 +00005544 }
5545 // Handle messages to a pointer to interface type.
5546 else if (const ObjCObjectPointerType *IFacePtr
5547 = ReceiverType->getAsObjCInterfacePointerType()) {
5548 // Search the class, its superclasses, etc., for instance methods.
Douglas Gregorc8537c52009-11-19 07:41:15 +00005549 AddObjCMethods(IFacePtr->getInterfaceDecl(), true, MK_Any, SelIdents,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005550 CurContext, Selectors, AtArgumentExpression,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005551 Results);
Douglas Gregora3329fa2009-11-18 00:06:18 +00005552
5553 // Search protocols for instance methods.
Aaron Ballman83731462014-03-17 16:14:00 +00005554 for (auto *I : IFacePtr->quals())
5555 AddObjCMethods(I, true, MK_Any, SelIdents, CurContext,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005556 Selectors, AtArgumentExpression, Results);
Douglas Gregora3329fa2009-11-18 00:06:18 +00005557 }
Douglas Gregor6285f752010-04-06 16:40:00 +00005558 // Handle messages to "id".
5559 else if (ReceiverType->isObjCIdType()) {
Douglas Gregord720daf2010-04-06 17:30:22 +00005560 // We're messaging "id", so provide all instance methods we know
5561 // about as code-completion results.
5562
5563 // If we have an external source, load the entire class method
Sebastian Redld44cd6a2010-08-18 23:57:06 +00005564 // pool from the AST file.
Douglas Gregord720daf2010-04-06 17:30:22 +00005565 if (ExternalSource) {
John McCall75b960e2010-06-01 09:23:16 +00005566 for (uint32_t I = 0, N = ExternalSource->GetNumExternalSelectors();
5567 I != N; ++I) {
5568 Selector Sel = ExternalSource->GetExternalSelector(I);
Sebastian Redl75d8a322010-08-02 23:18:59 +00005569 if (Sel.isNull() || MethodPool.count(Sel))
Douglas Gregord720daf2010-04-06 17:30:22 +00005570 continue;
5571
Sebastian Redl75d8a322010-08-02 23:18:59 +00005572 ReadMethodPool(Sel);
Douglas Gregord720daf2010-04-06 17:30:22 +00005573 }
5574 }
5575
Sebastian Redl75d8a322010-08-02 23:18:59 +00005576 for (GlobalMethodPool::iterator M = MethodPool.begin(),
5577 MEnd = MethodPool.end();
5578 M != MEnd; ++M) {
5579 for (ObjCMethodList *MethList = &M->second.first;
Nico Weber2e0c8f72014-12-27 03:58:08 +00005580 MethList && MethList->getMethod();
Argyrios Kyrtzidisd3da6e02013-04-17 00:08:58 +00005581 MethList = MethList->getNext()) {
Nico Weber2e0c8f72014-12-27 03:58:08 +00005582 if (!isAcceptableObjCMethod(MethList->getMethod(), MK_Any, SelIdents))
Douglas Gregor6285f752010-04-06 16:40:00 +00005583 continue;
Douglas Gregor1154e272010-09-16 16:06:31 +00005584
Nico Weber2e0c8f72014-12-27 03:58:08 +00005585 if (!Selectors.insert(MethList->getMethod()->getSelector()).second)
Douglas Gregor1154e272010-09-16 16:06:31 +00005586 continue;
Craig Topperc3ec1492014-05-26 06:22:03 +00005587
Nico Weber2e0c8f72014-12-27 03:58:08 +00005588 Result R(MethList->getMethod(),
5589 Results.getBasePriority(MethList->getMethod()), nullptr);
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005590 R.StartParameter = SelIdents.size();
Douglas Gregor6285f752010-04-06 16:40:00 +00005591 R.AllParametersAreInformative = false;
5592 Results.MaybeAddResult(R, CurContext);
5593 }
5594 }
5595 }
Steve Naroffeae65032009-11-07 02:08:14 +00005596 Results.ExitScope();
Douglas Gregor74661272010-09-21 00:03:25 +00005597
5598
5599 // If we're actually at the argument expression (rather than prior to the
5600 // selector), we're actually performing code completion for an expression.
5601 // Determine whether we have a single, best method. If so, we can
5602 // code-complete the expression using the corresponding parameter type as
5603 // our preferred type, improving completion results.
5604 if (AtArgumentExpression) {
5605 QualType PreferredType = getPreferredArgumentTypeForMessageSend(Results,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005606 SelIdents.size());
Douglas Gregor74661272010-09-21 00:03:25 +00005607 if (PreferredType.isNull())
5608 CodeCompleteOrdinaryName(S, PCC_Expression);
5609 else
5610 CodeCompleteExpression(S, PreferredType);
5611 return;
5612 }
5613
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005614 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor63745d52011-07-21 01:05:26 +00005615 Results.getCompletionContext(),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005616 Results.data(),Results.size());
Steve Naroffeae65032009-11-07 02:08:14 +00005617}
Douglas Gregorbaf69612009-11-18 04:19:12 +00005618
Douglas Gregor68762e72010-08-23 21:17:50 +00005619void Sema::CodeCompleteObjCForCollection(Scope *S,
5620 DeclGroupPtrTy IterationVar) {
5621 CodeCompleteExpressionData Data;
5622 Data.ObjCCollection = true;
5623
5624 if (IterationVar.getAsOpaquePtr()) {
Serge Pavlov9ddb76e2013-08-27 13:15:56 +00005625 DeclGroupRef DG = IterationVar.get();
Douglas Gregor68762e72010-08-23 21:17:50 +00005626 for (DeclGroupRef::iterator I = DG.begin(), End = DG.end(); I != End; ++I) {
5627 if (*I)
5628 Data.IgnoreDecls.push_back(*I);
5629 }
5630 }
5631
5632 CodeCompleteExpression(S, Data);
5633}
5634
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005635void Sema::CodeCompleteObjCSelector(Scope *S,
5636 ArrayRef<IdentifierInfo *> SelIdents) {
Douglas Gregor67c692c2010-08-26 15:07:07 +00005637 // If we have an external source, load the entire class method
5638 // pool from the AST file.
5639 if (ExternalSource) {
5640 for (uint32_t I = 0, N = ExternalSource->GetNumExternalSelectors();
5641 I != N; ++I) {
5642 Selector Sel = ExternalSource->GetExternalSelector(I);
5643 if (Sel.isNull() || MethodPool.count(Sel))
5644 continue;
5645
5646 ReadMethodPool(Sel);
5647 }
5648 }
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 Gregorb278aaf2011-02-01 19:23:04 +00005652 CodeCompletionContext::CCC_SelectorName);
Douglas Gregor67c692c2010-08-26 15:07:07 +00005653 Results.EnterNewScope();
5654 for (GlobalMethodPool::iterator M = MethodPool.begin(),
5655 MEnd = MethodPool.end();
5656 M != MEnd; ++M) {
5657
5658 Selector Sel = M->first;
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005659 if (!isAcceptableObjCSelector(Sel, MK_Any, SelIdents))
Douglas Gregor67c692c2010-08-26 15:07:07 +00005660 continue;
5661
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005662 CodeCompletionBuilder Builder(Results.getAllocator(),
5663 Results.getCodeCompletionTUInfo());
Douglas Gregor67c692c2010-08-26 15:07:07 +00005664 if (Sel.isUnarySelector()) {
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005665 Builder.AddTypedTextChunk(Builder.getAllocator().CopyString(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00005666 Sel.getNameForSlot(0)));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005667 Results.AddResult(Builder.TakeString());
Douglas Gregor67c692c2010-08-26 15:07:07 +00005668 continue;
5669 }
5670
Douglas Gregor9ac1ad12010-08-26 16:46:39 +00005671 std::string Accumulator;
Douglas Gregor67c692c2010-08-26 15:07:07 +00005672 for (unsigned I = 0, N = Sel.getNumArgs(); I != N; ++I) {
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005673 if (I == SelIdents.size()) {
Douglas Gregor9ac1ad12010-08-26 16:46:39 +00005674 if (!Accumulator.empty()) {
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005675 Builder.AddInformativeChunk(Builder.getAllocator().CopyString(
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005676 Accumulator));
Douglas Gregor9ac1ad12010-08-26 16:46:39 +00005677 Accumulator.clear();
5678 }
5679 }
5680
Benjamin Kramer632500c2011-07-26 16:59:25 +00005681 Accumulator += Sel.getNameForSlot(I);
Douglas Gregor9ac1ad12010-08-26 16:46:39 +00005682 Accumulator += ':';
Douglas Gregor67c692c2010-08-26 15:07:07 +00005683 }
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005684 Builder.AddTypedTextChunk(Builder.getAllocator().CopyString( Accumulator));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005685 Results.AddResult(Builder.TakeString());
Douglas Gregor67c692c2010-08-26 15:07:07 +00005686 }
5687 Results.ExitScope();
5688
5689 HandleCodeCompleteResults(this, CodeCompleter,
5690 CodeCompletionContext::CCC_SelectorName,
5691 Results.data(), Results.size());
5692}
5693
Douglas Gregorbaf69612009-11-18 04:19:12 +00005694/// \brief Add all of the protocol declarations that we find in the given
5695/// (translation unit) context.
5696static void AddProtocolResults(DeclContext *Ctx, DeclContext *CurContext,
Douglas Gregor5b4671c2009-11-18 04:49:41 +00005697 bool OnlyForwardDeclarations,
Douglas Gregorbaf69612009-11-18 04:19:12 +00005698 ResultBuilder &Results) {
John McCall276321a2010-08-25 06:19:51 +00005699 typedef CodeCompletionResult Result;
Douglas Gregorbaf69612009-11-18 04:19:12 +00005700
Aaron Ballman629afae2014-03-07 19:56:05 +00005701 for (const auto *D : Ctx->decls()) {
Douglas Gregorbaf69612009-11-18 04:19:12 +00005702 // Record any protocols we find.
Aaron Ballman629afae2014-03-07 19:56:05 +00005703 if (const auto *Proto = dyn_cast<ObjCProtocolDecl>(D))
Douglas Gregore6e48b12012-01-01 19:29:29 +00005704 if (!OnlyForwardDeclarations || !Proto->hasDefinition())
Craig Topperc3ec1492014-05-26 06:22:03 +00005705 Results.AddResult(Result(Proto, Results.getBasePriority(Proto),nullptr),
5706 CurContext, nullptr, false);
Douglas Gregorbaf69612009-11-18 04:19:12 +00005707 }
5708}
5709
5710void Sema::CodeCompleteObjCProtocolReferences(IdentifierLocPair *Protocols,
5711 unsigned NumProtocols) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005712 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005713 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005714 CodeCompletionContext::CCC_ObjCProtocolName);
Douglas Gregorbaf69612009-11-18 04:19:12 +00005715
Douglas Gregora3b23b02010-12-09 21:44:02 +00005716 if (CodeCompleter && CodeCompleter->includeGlobals()) {
5717 Results.EnterNewScope();
5718
5719 // Tell the result set to ignore all of the protocols we have
5720 // already seen.
5721 // FIXME: This doesn't work when caching code-completion results.
5722 for (unsigned I = 0; I != NumProtocols; ++I)
5723 if (ObjCProtocolDecl *Protocol = LookupProtocol(Protocols[I].first,
5724 Protocols[I].second))
5725 Results.Ignore(Protocol);
Douglas Gregorbaf69612009-11-18 04:19:12 +00005726
Douglas Gregora3b23b02010-12-09 21:44:02 +00005727 // Add all protocols.
5728 AddProtocolResults(Context.getTranslationUnitDecl(), CurContext, false,
5729 Results);
Douglas Gregor5b4671c2009-11-18 04:49:41 +00005730
Douglas Gregora3b23b02010-12-09 21:44:02 +00005731 Results.ExitScope();
5732 }
5733
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005734 HandleCodeCompleteResults(this, CodeCompleter,
5735 CodeCompletionContext::CCC_ObjCProtocolName,
5736 Results.data(),Results.size());
Douglas Gregor5b4671c2009-11-18 04:49:41 +00005737}
5738
5739void Sema::CodeCompleteObjCProtocolDecl(Scope *) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005740 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005741 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005742 CodeCompletionContext::CCC_ObjCProtocolName);
Douglas Gregor5b4671c2009-11-18 04:49:41 +00005743
Douglas Gregora3b23b02010-12-09 21:44:02 +00005744 if (CodeCompleter && CodeCompleter->includeGlobals()) {
5745 Results.EnterNewScope();
5746
5747 // Add all protocols.
5748 AddProtocolResults(Context.getTranslationUnitDecl(), CurContext, true,
5749 Results);
Douglas Gregorbaf69612009-11-18 04:19:12 +00005750
Douglas Gregora3b23b02010-12-09 21:44:02 +00005751 Results.ExitScope();
5752 }
5753
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005754 HandleCodeCompleteResults(this, CodeCompleter,
5755 CodeCompletionContext::CCC_ObjCProtocolName,
5756 Results.data(),Results.size());
Douglas Gregorbaf69612009-11-18 04:19:12 +00005757}
Douglas Gregor49c22a72009-11-18 16:26:39 +00005758
5759/// \brief Add all of the Objective-C interface declarations that we find in
5760/// the given (translation unit) context.
5761static void AddInterfaceResults(DeclContext *Ctx, DeclContext *CurContext,
5762 bool OnlyForwardDeclarations,
5763 bool OnlyUnimplemented,
5764 ResultBuilder &Results) {
John McCall276321a2010-08-25 06:19:51 +00005765 typedef CodeCompletionResult Result;
Douglas Gregor49c22a72009-11-18 16:26:39 +00005766
Aaron Ballman629afae2014-03-07 19:56:05 +00005767 for (const auto *D : Ctx->decls()) {
Douglas Gregor1c283312010-08-11 12:19:30 +00005768 // Record any interfaces we find.
Aaron Ballman629afae2014-03-07 19:56:05 +00005769 if (const auto *Class = dyn_cast<ObjCInterfaceDecl>(D))
Douglas Gregordc9166c2011-12-15 20:29:51 +00005770 if ((!OnlyForwardDeclarations || !Class->hasDefinition()) &&
Douglas Gregor1c283312010-08-11 12:19:30 +00005771 (!OnlyUnimplemented || !Class->getImplementation()))
Craig Topperc3ec1492014-05-26 06:22:03 +00005772 Results.AddResult(Result(Class, Results.getBasePriority(Class),nullptr),
5773 CurContext, nullptr, false);
Douglas Gregor49c22a72009-11-18 16:26:39 +00005774 }
5775}
5776
5777void Sema::CodeCompleteObjCInterfaceDecl(Scope *S) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005778 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005779 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005780 CodeCompletionContext::CCC_Other);
Douglas Gregor49c22a72009-11-18 16:26:39 +00005781 Results.EnterNewScope();
5782
Douglas Gregor2c595ad2011-07-30 06:55:39 +00005783 if (CodeCompleter->includeGlobals()) {
5784 // Add all classes.
5785 AddInterfaceResults(Context.getTranslationUnitDecl(), CurContext, false,
5786 false, Results);
5787 }
5788
Douglas Gregor49c22a72009-11-18 16:26:39 +00005789 Results.ExitScope();
Douglas Gregor2c595ad2011-07-30 06:55:39 +00005790
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005791 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor2c595ad2011-07-30 06:55:39 +00005792 CodeCompletionContext::CCC_ObjCInterfaceName,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005793 Results.data(),Results.size());
Douglas Gregor49c22a72009-11-18 16:26:39 +00005794}
5795
Douglas Gregorb2ccf012010-04-15 22:33:43 +00005796void Sema::CodeCompleteObjCSuperclass(Scope *S, IdentifierInfo *ClassName,
5797 SourceLocation ClassNameLoc) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005798 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005799 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor2c595ad2011-07-30 06:55:39 +00005800 CodeCompletionContext::CCC_ObjCInterfaceName);
Douglas Gregor49c22a72009-11-18 16:26:39 +00005801 Results.EnterNewScope();
5802
5803 // Make sure that we ignore the class we're currently defining.
5804 NamedDecl *CurClass
Douglas Gregorb2ccf012010-04-15 22:33:43 +00005805 = LookupSingleName(TUScope, ClassName, ClassNameLoc, LookupOrdinaryName);
Douglas Gregor5d34fd32009-11-18 19:08:43 +00005806 if (CurClass && isa<ObjCInterfaceDecl>(CurClass))
Douglas Gregor49c22a72009-11-18 16:26:39 +00005807 Results.Ignore(CurClass);
5808
Douglas Gregor2c595ad2011-07-30 06:55:39 +00005809 if (CodeCompleter->includeGlobals()) {
5810 // Add all classes.
5811 AddInterfaceResults(Context.getTranslationUnitDecl(), CurContext, false,
5812 false, Results);
5813 }
5814
Douglas Gregor49c22a72009-11-18 16:26:39 +00005815 Results.ExitScope();
Douglas Gregor2c595ad2011-07-30 06:55:39 +00005816
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005817 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor2c595ad2011-07-30 06:55:39 +00005818 CodeCompletionContext::CCC_ObjCInterfaceName,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005819 Results.data(),Results.size());
Douglas Gregor49c22a72009-11-18 16:26:39 +00005820}
5821
5822void Sema::CodeCompleteObjCImplementationDecl(Scope *S) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005823 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005824 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005825 CodeCompletionContext::CCC_Other);
Douglas Gregor49c22a72009-11-18 16:26:39 +00005826 Results.EnterNewScope();
5827
Douglas Gregor2c595ad2011-07-30 06:55:39 +00005828 if (CodeCompleter->includeGlobals()) {
5829 // Add all unimplemented classes.
5830 AddInterfaceResults(Context.getTranslationUnitDecl(), CurContext, false,
5831 true, Results);
5832 }
5833
Douglas Gregor49c22a72009-11-18 16:26:39 +00005834 Results.ExitScope();
Douglas Gregor2c595ad2011-07-30 06:55:39 +00005835
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005836 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor2c595ad2011-07-30 06:55:39 +00005837 CodeCompletionContext::CCC_ObjCInterfaceName,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005838 Results.data(),Results.size());
Douglas Gregor49c22a72009-11-18 16:26:39 +00005839}
Douglas Gregor5d34fd32009-11-18 19:08:43 +00005840
5841void Sema::CodeCompleteObjCInterfaceCategory(Scope *S,
Douglas Gregorb2ccf012010-04-15 22:33:43 +00005842 IdentifierInfo *ClassName,
5843 SourceLocation ClassNameLoc) {
John McCall276321a2010-08-25 06:19:51 +00005844 typedef CodeCompletionResult Result;
Douglas Gregor5d34fd32009-11-18 19:08:43 +00005845
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005846 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005847 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor21325842011-07-07 16:03:39 +00005848 CodeCompletionContext::CCC_ObjCCategoryName);
Douglas Gregor5d34fd32009-11-18 19:08:43 +00005849
5850 // Ignore any categories we find that have already been implemented by this
5851 // interface.
5852 llvm::SmallPtrSet<IdentifierInfo *, 16> CategoryNames;
5853 NamedDecl *CurClass
Douglas Gregorb2ccf012010-04-15 22:33:43 +00005854 = LookupSingleName(TUScope, ClassName, ClassNameLoc, LookupOrdinaryName);
Douglas Gregor048fbfa2013-01-16 23:00:23 +00005855 if (ObjCInterfaceDecl *Class = dyn_cast_or_null<ObjCInterfaceDecl>(CurClass)){
Aaron Ballman3fe486a2014-03-13 21:23:55 +00005856 for (const auto *Cat : Class->visible_categories())
Douglas Gregor048fbfa2013-01-16 23:00:23 +00005857 CategoryNames.insert(Cat->getIdentifier());
Douglas Gregor048fbfa2013-01-16 23:00:23 +00005858 }
5859
Douglas Gregor5d34fd32009-11-18 19:08:43 +00005860 // Add all of the categories we know about.
5861 Results.EnterNewScope();
5862 TranslationUnitDecl *TU = Context.getTranslationUnitDecl();
Aaron Ballman629afae2014-03-07 19:56:05 +00005863 for (const auto *D : TU->decls())
5864 if (const auto *Category = dyn_cast<ObjCCategoryDecl>(D))
David Blaikie82e95a32014-11-19 07:49:47 +00005865 if (CategoryNames.insert(Category->getIdentifier()).second)
Craig Topperc3ec1492014-05-26 06:22:03 +00005866 Results.AddResult(Result(Category, Results.getBasePriority(Category),
5867 nullptr),
5868 CurContext, nullptr, false);
Douglas Gregor5d34fd32009-11-18 19:08:43 +00005869 Results.ExitScope();
5870
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005871 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor21325842011-07-07 16:03:39 +00005872 CodeCompletionContext::CCC_ObjCCategoryName,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005873 Results.data(),Results.size());
Douglas Gregor5d34fd32009-11-18 19:08:43 +00005874}
5875
5876void Sema::CodeCompleteObjCImplementationCategory(Scope *S,
Douglas Gregorb2ccf012010-04-15 22:33:43 +00005877 IdentifierInfo *ClassName,
5878 SourceLocation ClassNameLoc) {
John McCall276321a2010-08-25 06:19:51 +00005879 typedef CodeCompletionResult Result;
Douglas Gregor5d34fd32009-11-18 19:08:43 +00005880
5881 // Find the corresponding interface. If we couldn't find the interface, the
5882 // program itself is ill-formed. However, we'll try to be helpful still by
5883 // providing the list of all of the categories we know about.
5884 NamedDecl *CurClass
Douglas Gregorb2ccf012010-04-15 22:33:43 +00005885 = LookupSingleName(TUScope, ClassName, ClassNameLoc, LookupOrdinaryName);
Douglas Gregor5d34fd32009-11-18 19:08:43 +00005886 ObjCInterfaceDecl *Class = dyn_cast_or_null<ObjCInterfaceDecl>(CurClass);
5887 if (!Class)
Douglas Gregorb2ccf012010-04-15 22:33:43 +00005888 return CodeCompleteObjCInterfaceCategory(S, ClassName, ClassNameLoc);
Douglas Gregor5d34fd32009-11-18 19:08:43 +00005889
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005890 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005891 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor21325842011-07-07 16:03:39 +00005892 CodeCompletionContext::CCC_ObjCCategoryName);
Douglas Gregor5d34fd32009-11-18 19:08:43 +00005893
5894 // Add all of the categories that have have corresponding interface
5895 // declarations in this class and any of its superclasses, except for
5896 // already-implemented categories in the class itself.
5897 llvm::SmallPtrSet<IdentifierInfo *, 16> CategoryNames;
5898 Results.EnterNewScope();
5899 bool IgnoreImplemented = true;
5900 while (Class) {
Aaron Ballman3fe486a2014-03-13 21:23:55 +00005901 for (const auto *Cat : Class->visible_categories()) {
Douglas Gregor048fbfa2013-01-16 23:00:23 +00005902 if ((!IgnoreImplemented || !Cat->getImplementation()) &&
David Blaikie82e95a32014-11-19 07:49:47 +00005903 CategoryNames.insert(Cat->getIdentifier()).second)
Craig Topperc3ec1492014-05-26 06:22:03 +00005904 Results.AddResult(Result(Cat, Results.getBasePriority(Cat), nullptr),
5905 CurContext, nullptr, false);
Douglas Gregor048fbfa2013-01-16 23:00:23 +00005906 }
Douglas Gregor5d34fd32009-11-18 19:08:43 +00005907
5908 Class = Class->getSuperClass();
5909 IgnoreImplemented = false;
5910 }
5911 Results.ExitScope();
5912
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005913 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor21325842011-07-07 16:03:39 +00005914 CodeCompletionContext::CCC_ObjCCategoryName,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005915 Results.data(),Results.size());
Douglas Gregor5d34fd32009-11-18 19:08:43 +00005916}
Douglas Gregor5d649882009-11-18 22:32:06 +00005917
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00005918void Sema::CodeCompleteObjCPropertyDefinition(Scope *S) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005919 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005920 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005921 CodeCompletionContext::CCC_Other);
Douglas Gregor5d649882009-11-18 22:32:06 +00005922
5923 // Figure out where this @synthesize lives.
5924 ObjCContainerDecl *Container
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00005925 = dyn_cast_or_null<ObjCContainerDecl>(CurContext);
Douglas Gregor5d649882009-11-18 22:32:06 +00005926 if (!Container ||
5927 (!isa<ObjCImplementationDecl>(Container) &&
5928 !isa<ObjCCategoryImplDecl>(Container)))
5929 return;
5930
5931 // Ignore any properties that have already been implemented.
Douglas Gregor9b4f3702012-06-12 13:44:08 +00005932 Container = getContainerDef(Container);
Aaron Ballman629afae2014-03-07 19:56:05 +00005933 for (const auto *D : Container->decls())
5934 if (const auto *PropertyImpl = dyn_cast<ObjCPropertyImplDecl>(D))
Douglas Gregor5d649882009-11-18 22:32:06 +00005935 Results.Ignore(PropertyImpl->getPropertyDecl());
5936
5937 // Add any properties that we find.
Douglas Gregorb888acf2010-12-09 23:01:55 +00005938 AddedPropertiesSet AddedProperties;
Douglas Gregor5d649882009-11-18 22:32:06 +00005939 Results.EnterNewScope();
5940 if (ObjCImplementationDecl *ClassImpl
5941 = dyn_cast<ObjCImplementationDecl>(Container))
Douglas Gregor95147142011-05-05 15:50:42 +00005942 AddObjCProperties(ClassImpl->getClassInterface(), false,
5943 /*AllowNullaryMethods=*/false, CurContext,
Douglas Gregorb888acf2010-12-09 23:01:55 +00005944 AddedProperties, Results);
Douglas Gregor5d649882009-11-18 22:32:06 +00005945 else
5946 AddObjCProperties(cast<ObjCCategoryImplDecl>(Container)->getCategoryDecl(),
Douglas Gregor95147142011-05-05 15:50:42 +00005947 false, /*AllowNullaryMethods=*/false, CurContext,
5948 AddedProperties, Results);
Douglas Gregor5d649882009-11-18 22:32:06 +00005949 Results.ExitScope();
5950
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005951 HandleCodeCompleteResults(this, CodeCompleter,
5952 CodeCompletionContext::CCC_Other,
5953 Results.data(),Results.size());
Douglas Gregor5d649882009-11-18 22:32:06 +00005954}
5955
5956void Sema::CodeCompleteObjCPropertySynthesizeIvar(Scope *S,
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00005957 IdentifierInfo *PropertyName) {
John McCall276321a2010-08-25 06:19:51 +00005958 typedef CodeCompletionResult Result;
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_Other);
Douglas Gregor5d649882009-11-18 22:32:06 +00005962
5963 // Figure out where this @synthesize lives.
5964 ObjCContainerDecl *Container
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00005965 = dyn_cast_or_null<ObjCContainerDecl>(CurContext);
Douglas Gregor5d649882009-11-18 22:32:06 +00005966 if (!Container ||
5967 (!isa<ObjCImplementationDecl>(Container) &&
5968 !isa<ObjCCategoryImplDecl>(Container)))
5969 return;
5970
5971 // Figure out which interface we're looking into.
Craig Topperc3ec1492014-05-26 06:22:03 +00005972 ObjCInterfaceDecl *Class = nullptr;
Douglas Gregor5d649882009-11-18 22:32:06 +00005973 if (ObjCImplementationDecl *ClassImpl
5974 = dyn_cast<ObjCImplementationDecl>(Container))
5975 Class = ClassImpl->getClassInterface();
5976 else
5977 Class = cast<ObjCCategoryImplDecl>(Container)->getCategoryDecl()
5978 ->getClassInterface();
5979
Douglas Gregor6c7a9ee2011-04-18 14:40:46 +00005980 // Determine the type of the property we're synthesizing.
5981 QualType PropertyType = Context.getObjCIdType();
5982 if (Class) {
5983 if (ObjCPropertyDecl *Property
5984 = Class->FindPropertyDeclaration(PropertyName)) {
5985 PropertyType
5986 = Property->getType().getNonReferenceType().getUnqualifiedType();
5987
5988 // Give preference to ivars
5989 Results.setPreferredType(PropertyType);
5990 }
5991 }
5992
Douglas Gregor5d649882009-11-18 22:32:06 +00005993 // Add all of the instance variables in this class and its superclasses.
5994 Results.EnterNewScope();
Douglas Gregor331faa02011-04-18 14:13:53 +00005995 bool SawSimilarlyNamedIvar = false;
5996 std::string NameWithPrefix;
5997 NameWithPrefix += '_';
Benjamin Kramer632500c2011-07-26 16:59:25 +00005998 NameWithPrefix += PropertyName->getName();
Douglas Gregor331faa02011-04-18 14:13:53 +00005999 std::string NameWithSuffix = PropertyName->getName().str();
6000 NameWithSuffix += '_';
Douglas Gregor5d649882009-11-18 22:32:06 +00006001 for(; Class; Class = Class->getSuperClass()) {
Douglas Gregor331faa02011-04-18 14:13:53 +00006002 for (ObjCIvarDecl *Ivar = Class->all_declared_ivar_begin(); Ivar;
6003 Ivar = Ivar->getNextIvar()) {
Craig Topperc3ec1492014-05-26 06:22:03 +00006004 Results.AddResult(Result(Ivar, Results.getBasePriority(Ivar), nullptr),
6005 CurContext, nullptr, false);
6006
Douglas Gregor331faa02011-04-18 14:13:53 +00006007 // Determine whether we've seen an ivar with a name similar to the
6008 // property.
Douglas Gregor6c7a9ee2011-04-18 14:40:46 +00006009 if ((PropertyName == Ivar->getIdentifier() ||
Douglas Gregor331faa02011-04-18 14:13:53 +00006010 NameWithPrefix == Ivar->getName() ||
Douglas Gregor6c7a9ee2011-04-18 14:40:46 +00006011 NameWithSuffix == Ivar->getName())) {
Douglas Gregor331faa02011-04-18 14:13:53 +00006012 SawSimilarlyNamedIvar = true;
Douglas Gregor6c7a9ee2011-04-18 14:40:46 +00006013
6014 // Reduce the priority of this result by one, to give it a slight
6015 // advantage over other results whose names don't match so closely.
6016 if (Results.size() &&
6017 Results.data()[Results.size() - 1].Kind
6018 == CodeCompletionResult::RK_Declaration &&
6019 Results.data()[Results.size() - 1].Declaration == Ivar)
6020 Results.data()[Results.size() - 1].Priority--;
6021 }
Douglas Gregor331faa02011-04-18 14:13:53 +00006022 }
Douglas Gregor5d649882009-11-18 22:32:06 +00006023 }
Douglas Gregor331faa02011-04-18 14:13:53 +00006024
6025 if (!SawSimilarlyNamedIvar) {
6026 // Create ivar result _propName, that the user can use to synthesize
Douglas Gregor6c7a9ee2011-04-18 14:40:46 +00006027 // an ivar of the appropriate type.
6028 unsigned Priority = CCP_MemberDeclaration + 1;
Douglas Gregor331faa02011-04-18 14:13:53 +00006029 typedef CodeCompletionResult Result;
6030 CodeCompletionAllocator &Allocator = Results.getAllocator();
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00006031 CodeCompletionBuilder Builder(Allocator, Results.getCodeCompletionTUInfo(),
6032 Priority,CXAvailability_Available);
Douglas Gregor331faa02011-04-18 14:13:53 +00006033
Douglas Gregor75acd922011-09-27 23:30:47 +00006034 PrintingPolicy Policy = getCompletionPrintingPolicy(*this);
Douglas Gregor6c7a9ee2011-04-18 14:40:46 +00006035 Builder.AddResultTypeChunk(GetCompletionTypeString(PropertyType, Context,
Douglas Gregor75acd922011-09-27 23:30:47 +00006036 Policy, Allocator));
Douglas Gregor331faa02011-04-18 14:13:53 +00006037 Builder.AddTypedTextChunk(Allocator.CopyString(NameWithPrefix));
6038 Results.AddResult(Result(Builder.TakeString(), Priority,
6039 CXCursor_ObjCIvarDecl));
6040 }
6041
Douglas Gregor5d649882009-11-18 22:32:06 +00006042 Results.ExitScope();
6043
Douglas Gregor00c37ef2010-08-11 21:23:17 +00006044 HandleCodeCompleteResults(this, CodeCompleter,
6045 CodeCompletionContext::CCC_Other,
6046 Results.data(),Results.size());
Douglas Gregor5d649882009-11-18 22:32:06 +00006047}
Douglas Gregor636a61e2010-04-07 00:21:17 +00006048
Douglas Gregor416b5752010-08-25 01:08:01 +00006049// Mapping from selectors to the methods that implement that selector, along
6050// with the "in original class" flag.
Benjamin Kramereb8c4462013-06-29 17:52:13 +00006051typedef llvm::DenseMap<
6052 Selector, llvm::PointerIntPair<ObjCMethodDecl *, 1, bool> > KnownMethodsMap;
Douglas Gregor636a61e2010-04-07 00:21:17 +00006053
6054/// \brief Find all of the methods that reside in the given container
6055/// (and its superclasses, protocols, etc.) that meet the given
6056/// criteria. Insert those methods into the map of known methods,
6057/// indexed by selector so they can be easily found.
6058static void FindImplementableMethods(ASTContext &Context,
6059 ObjCContainerDecl *Container,
6060 bool WantInstanceMethods,
6061 QualType ReturnType,
Douglas Gregor416b5752010-08-25 01:08:01 +00006062 KnownMethodsMap &KnownMethods,
6063 bool InOriginalClass = true) {
Douglas Gregor636a61e2010-04-07 00:21:17 +00006064 if (ObjCInterfaceDecl *IFace = dyn_cast<ObjCInterfaceDecl>(Container)) {
Douglas Gregor9b4f3702012-06-12 13:44:08 +00006065 // Make sure we have a definition; that's what we'll walk.
Douglas Gregorc0ac7d62011-12-15 05:27:12 +00006066 if (!IFace->hasDefinition())
6067 return;
Douglas Gregor9b4f3702012-06-12 13:44:08 +00006068
6069 IFace = IFace->getDefinition();
6070 Container = IFace;
Douglas Gregorc0ac7d62011-12-15 05:27:12 +00006071
Douglas Gregor636a61e2010-04-07 00:21:17 +00006072 const ObjCList<ObjCProtocolDecl> &Protocols
6073 = IFace->getReferencedProtocols();
6074 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006075 E = Protocols.end();
Douglas Gregor636a61e2010-04-07 00:21:17 +00006076 I != E; ++I)
6077 FindImplementableMethods(Context, *I, WantInstanceMethods, ReturnType,
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006078 KnownMethods, InOriginalClass);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006079
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006080 // Add methods from any class extensions and categories.
Aaron Ballman3fe486a2014-03-13 21:23:55 +00006081 for (auto *Cat : IFace->visible_categories()) {
6082 FindImplementableMethods(Context, Cat, WantInstanceMethods, ReturnType,
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006083 KnownMethods, false);
Douglas Gregor048fbfa2013-01-16 23:00:23 +00006084 }
6085
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006086 // Visit the superclass.
6087 if (IFace->getSuperClass())
6088 FindImplementableMethods(Context, IFace->getSuperClass(),
6089 WantInstanceMethods, ReturnType,
6090 KnownMethods, false);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006091 }
6092
6093 if (ObjCCategoryDecl *Category = dyn_cast<ObjCCategoryDecl>(Container)) {
6094 // Recurse into protocols.
6095 const ObjCList<ObjCProtocolDecl> &Protocols
6096 = Category->getReferencedProtocols();
6097 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006098 E = Protocols.end();
Douglas Gregor636a61e2010-04-07 00:21:17 +00006099 I != E; ++I)
6100 FindImplementableMethods(Context, *I, WantInstanceMethods, ReturnType,
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006101 KnownMethods, InOriginalClass);
6102
6103 // If this category is the original class, jump to the interface.
6104 if (InOriginalClass && Category->getClassInterface())
6105 FindImplementableMethods(Context, Category->getClassInterface(),
6106 WantInstanceMethods, ReturnType, KnownMethods,
6107 false);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006108 }
6109
6110 if (ObjCProtocolDecl *Protocol = dyn_cast<ObjCProtocolDecl>(Container)) {
Douglas Gregor9b4f3702012-06-12 13:44:08 +00006111 // Make sure we have a definition; that's what we'll walk.
6112 if (!Protocol->hasDefinition())
6113 return;
6114 Protocol = Protocol->getDefinition();
6115 Container = Protocol;
6116
6117 // Recurse into protocols.
6118 const ObjCList<ObjCProtocolDecl> &Protocols
6119 = Protocol->getReferencedProtocols();
6120 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
6121 E = Protocols.end();
6122 I != E; ++I)
6123 FindImplementableMethods(Context, *I, WantInstanceMethods, ReturnType,
6124 KnownMethods, false);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006125 }
6126
6127 // Add methods in this container. This operation occurs last because
6128 // we want the methods from this container to override any methods
6129 // we've previously seen with the same selector.
Aaron Ballmanaff18c02014-03-13 19:03:34 +00006130 for (auto *M : Container->methods()) {
David Blaikie2d7c57e2012-04-30 02:36:29 +00006131 if (M->isInstanceMethod() == WantInstanceMethods) {
Douglas Gregor636a61e2010-04-07 00:21:17 +00006132 if (!ReturnType.isNull() &&
Alp Toker314cc812014-01-25 16:55:45 +00006133 !Context.hasSameUnqualifiedType(ReturnType, M->getReturnType()))
Douglas Gregor636a61e2010-04-07 00:21:17 +00006134 continue;
6135
Benjamin Kramereb8c4462013-06-29 17:52:13 +00006136 KnownMethods[M->getSelector()] =
Aaron Ballmanaff18c02014-03-13 19:03:34 +00006137 KnownMethodsMap::mapped_type(M, InOriginalClass);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006138 }
6139 }
6140}
6141
Douglas Gregor669a25a2011-02-17 00:22:45 +00006142/// \brief Add the parenthesized return or parameter type chunk to a code
6143/// completion string.
6144static void AddObjCPassingTypeChunk(QualType Type,
Douglas Gregor29979142012-04-10 18:35:07 +00006145 unsigned ObjCDeclQuals,
Douglas Gregor669a25a2011-02-17 00:22:45 +00006146 ASTContext &Context,
Douglas Gregor75acd922011-09-27 23:30:47 +00006147 const PrintingPolicy &Policy,
Douglas Gregor669a25a2011-02-17 00:22:45 +00006148 CodeCompletionBuilder &Builder) {
6149 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
Douglas Gregor29979142012-04-10 18:35:07 +00006150 std::string Quals = formatObjCParamQualifiers(ObjCDeclQuals);
6151 if (!Quals.empty())
6152 Builder.AddTextChunk(Builder.getAllocator().CopyString(Quals));
Douglas Gregor75acd922011-09-27 23:30:47 +00006153 Builder.AddTextChunk(GetCompletionTypeString(Type, Context, Policy,
Douglas Gregor669a25a2011-02-17 00:22:45 +00006154 Builder.getAllocator()));
6155 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6156}
6157
6158/// \brief Determine whether the given class is or inherits from a class by
6159/// the given name.
6160static bool InheritsFromClassNamed(ObjCInterfaceDecl *Class,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006161 StringRef Name) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006162 if (!Class)
6163 return false;
6164
6165 if (Class->getIdentifier() && Class->getIdentifier()->getName() == Name)
6166 return true;
6167
6168 return InheritsFromClassNamed(Class->getSuperClass(), Name);
6169}
6170
6171/// \brief Add code completions for Objective-C Key-Value Coding (KVC) and
6172/// Key-Value Observing (KVO).
6173static void AddObjCKeyValueCompletions(ObjCPropertyDecl *Property,
6174 bool IsInstanceMethod,
6175 QualType ReturnType,
6176 ASTContext &Context,
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006177 VisitedSelectorSet &KnownSelectors,
Douglas Gregor669a25a2011-02-17 00:22:45 +00006178 ResultBuilder &Results) {
6179 IdentifierInfo *PropName = Property->getIdentifier();
6180 if (!PropName || PropName->getLength() == 0)
6181 return;
6182
Douglas Gregor75acd922011-09-27 23:30:47 +00006183 PrintingPolicy Policy = getCompletionPrintingPolicy(Results.getSema());
6184
Douglas Gregor669a25a2011-02-17 00:22:45 +00006185 // Builder that will create each code completion.
6186 typedef CodeCompletionResult Result;
6187 CodeCompletionAllocator &Allocator = Results.getAllocator();
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00006188 CodeCompletionBuilder Builder(Allocator, Results.getCodeCompletionTUInfo());
Douglas Gregor669a25a2011-02-17 00:22:45 +00006189
6190 // The selector table.
6191 SelectorTable &Selectors = Context.Selectors;
6192
6193 // The property name, copied into the code completion allocation region
6194 // on demand.
6195 struct KeyHolder {
6196 CodeCompletionAllocator &Allocator;
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006197 StringRef Key;
Douglas Gregor669a25a2011-02-17 00:22:45 +00006198 const char *CopiedKey;
Craig Topperc3ec1492014-05-26 06:22:03 +00006199
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006200 KeyHolder(CodeCompletionAllocator &Allocator, StringRef Key)
Craig Topperc3ec1492014-05-26 06:22:03 +00006201 : Allocator(Allocator), Key(Key), CopiedKey(nullptr) {}
6202
Douglas Gregor669a25a2011-02-17 00:22:45 +00006203 operator const char *() {
6204 if (CopiedKey)
6205 return CopiedKey;
6206
6207 return CopiedKey = Allocator.CopyString(Key);
6208 }
6209 } Key(Allocator, PropName->getName());
6210
6211 // The uppercased name of the property name.
6212 std::string UpperKey = PropName->getName();
6213 if (!UpperKey.empty())
Jordan Rose4938f272013-02-09 10:09:43 +00006214 UpperKey[0] = toUppercase(UpperKey[0]);
Douglas Gregor669a25a2011-02-17 00:22:45 +00006215
6216 bool ReturnTypeMatchesProperty = ReturnType.isNull() ||
6217 Context.hasSameUnqualifiedType(ReturnType.getNonReferenceType(),
6218 Property->getType());
6219 bool ReturnTypeMatchesVoid
6220 = ReturnType.isNull() || ReturnType->isVoidType();
6221
6222 // Add the normal accessor -(type)key.
6223 if (IsInstanceMethod &&
David Blaikie82e95a32014-11-19 07:49:47 +00006224 KnownSelectors.insert(Selectors.getNullarySelector(PropName)).second &&
Douglas Gregor669a25a2011-02-17 00:22:45 +00006225 ReturnTypeMatchesProperty && !Property->getGetterMethodDecl()) {
6226 if (ReturnType.isNull())
Douglas Gregor29979142012-04-10 18:35:07 +00006227 AddObjCPassingTypeChunk(Property->getType(), /*Quals=*/0,
6228 Context, Policy, Builder);
Douglas Gregor669a25a2011-02-17 00:22:45 +00006229
6230 Builder.AddTypedTextChunk(Key);
6231 Results.AddResult(Result(Builder.TakeString(), CCP_CodePattern,
6232 CXCursor_ObjCInstanceMethodDecl));
6233 }
6234
6235 // If we have an integral or boolean property (or the user has provided
6236 // an integral or boolean return type), add the accessor -(type)isKey.
6237 if (IsInstanceMethod &&
6238 ((!ReturnType.isNull() &&
6239 (ReturnType->isIntegerType() || ReturnType->isBooleanType())) ||
6240 (ReturnType.isNull() &&
6241 (Property->getType()->isIntegerType() ||
6242 Property->getType()->isBooleanType())))) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006243 std::string SelectorName = (Twine("is") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006244 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00006245 if (KnownSelectors.insert(Selectors.getNullarySelector(SelectorId))
6246 .second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006247 if (ReturnType.isNull()) {
6248 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6249 Builder.AddTextChunk("BOOL");
6250 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6251 }
6252
6253 Builder.AddTypedTextChunk(
6254 Allocator.CopyString(SelectorId->getName()));
6255 Results.AddResult(Result(Builder.TakeString(), CCP_CodePattern,
6256 CXCursor_ObjCInstanceMethodDecl));
6257 }
6258 }
6259
6260 // Add the normal mutator.
6261 if (IsInstanceMethod && ReturnTypeMatchesVoid &&
6262 !Property->getSetterMethodDecl()) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006263 std::string SelectorName = (Twine("set") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006264 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00006265 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006266 if (ReturnType.isNull()) {
6267 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6268 Builder.AddTextChunk("void");
6269 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6270 }
6271
6272 Builder.AddTypedTextChunk(
6273 Allocator.CopyString(SelectorId->getName()));
6274 Builder.AddTypedTextChunk(":");
Douglas Gregor29979142012-04-10 18:35:07 +00006275 AddObjCPassingTypeChunk(Property->getType(), /*Quals=*/0,
6276 Context, Policy, Builder);
Douglas Gregor669a25a2011-02-17 00:22:45 +00006277 Builder.AddTextChunk(Key);
6278 Results.AddResult(Result(Builder.TakeString(), CCP_CodePattern,
6279 CXCursor_ObjCInstanceMethodDecl));
6280 }
6281 }
6282
6283 // Indexed and unordered accessors
6284 unsigned IndexedGetterPriority = CCP_CodePattern;
6285 unsigned IndexedSetterPriority = CCP_CodePattern;
6286 unsigned UnorderedGetterPriority = CCP_CodePattern;
6287 unsigned UnorderedSetterPriority = CCP_CodePattern;
6288 if (const ObjCObjectPointerType *ObjCPointer
6289 = Property->getType()->getAs<ObjCObjectPointerType>()) {
6290 if (ObjCInterfaceDecl *IFace = ObjCPointer->getInterfaceDecl()) {
6291 // If this interface type is not provably derived from a known
6292 // collection, penalize the corresponding completions.
6293 if (!InheritsFromClassNamed(IFace, "NSMutableArray")) {
6294 IndexedSetterPriority += CCD_ProbablyNotObjCCollection;
6295 if (!InheritsFromClassNamed(IFace, "NSArray"))
6296 IndexedGetterPriority += CCD_ProbablyNotObjCCollection;
6297 }
6298
6299 if (!InheritsFromClassNamed(IFace, "NSMutableSet")) {
6300 UnorderedSetterPriority += CCD_ProbablyNotObjCCollection;
6301 if (!InheritsFromClassNamed(IFace, "NSSet"))
6302 UnorderedGetterPriority += CCD_ProbablyNotObjCCollection;
6303 }
6304 }
6305 } else {
6306 IndexedGetterPriority += CCD_ProbablyNotObjCCollection;
6307 IndexedSetterPriority += CCD_ProbablyNotObjCCollection;
6308 UnorderedGetterPriority += CCD_ProbablyNotObjCCollection;
6309 UnorderedSetterPriority += CCD_ProbablyNotObjCCollection;
6310 }
6311
6312 // Add -(NSUInteger)countOf<key>
6313 if (IsInstanceMethod &&
6314 (ReturnType.isNull() || ReturnType->isIntegerType())) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006315 std::string SelectorName = (Twine("countOf") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006316 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00006317 if (KnownSelectors.insert(Selectors.getNullarySelector(SelectorId))
6318 .second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006319 if (ReturnType.isNull()) {
6320 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6321 Builder.AddTextChunk("NSUInteger");
6322 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6323 }
6324
6325 Builder.AddTypedTextChunk(
6326 Allocator.CopyString(SelectorId->getName()));
6327 Results.AddResult(Result(Builder.TakeString(),
6328 std::min(IndexedGetterPriority,
6329 UnorderedGetterPriority),
6330 CXCursor_ObjCInstanceMethodDecl));
6331 }
6332 }
6333
6334 // Indexed getters
6335 // Add -(id)objectInKeyAtIndex:(NSUInteger)index
6336 if (IsInstanceMethod &&
6337 (ReturnType.isNull() || ReturnType->isObjCObjectPointerType())) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006338 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006339 = (Twine("objectIn") + UpperKey + "AtIndex").str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006340 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00006341 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006342 if (ReturnType.isNull()) {
6343 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6344 Builder.AddTextChunk("id");
6345 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6346 }
6347
6348 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6349 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6350 Builder.AddTextChunk("NSUInteger");
6351 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6352 Builder.AddTextChunk("index");
6353 Results.AddResult(Result(Builder.TakeString(), IndexedGetterPriority,
6354 CXCursor_ObjCInstanceMethodDecl));
6355 }
6356 }
6357
6358 // Add -(NSArray *)keyAtIndexes:(NSIndexSet *)indexes
6359 if (IsInstanceMethod &&
6360 (ReturnType.isNull() ||
6361 (ReturnType->isObjCObjectPointerType() &&
6362 ReturnType->getAs<ObjCObjectPointerType>()->getInterfaceDecl() &&
6363 ReturnType->getAs<ObjCObjectPointerType>()->getInterfaceDecl()
6364 ->getName() == "NSArray"))) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006365 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006366 = (Twine(Property->getName()) + "AtIndexes").str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006367 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00006368 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006369 if (ReturnType.isNull()) {
6370 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6371 Builder.AddTextChunk("NSArray *");
6372 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6373 }
6374
6375 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6376 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6377 Builder.AddTextChunk("NSIndexSet *");
6378 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6379 Builder.AddTextChunk("indexes");
6380 Results.AddResult(Result(Builder.TakeString(), IndexedGetterPriority,
6381 CXCursor_ObjCInstanceMethodDecl));
6382 }
6383 }
6384
6385 // Add -(void)getKey:(type **)buffer range:(NSRange)inRange
6386 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006387 std::string SelectorName = (Twine("get") + UpperKey).str();
Douglas Gregor669a25a2011-02-17 00:22:45 +00006388 IdentifierInfo *SelectorIds[2] = {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006389 &Context.Idents.get(SelectorName),
Douglas Gregor669a25a2011-02-17 00:22:45 +00006390 &Context.Idents.get("range")
6391 };
6392
David Blaikie82e95a32014-11-19 07:49:47 +00006393 if (KnownSelectors.insert(Selectors.getSelector(2, SelectorIds)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006394 if (ReturnType.isNull()) {
6395 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6396 Builder.AddTextChunk("void");
6397 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6398 }
6399
6400 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6401 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6402 Builder.AddPlaceholderChunk("object-type");
6403 Builder.AddTextChunk(" **");
6404 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6405 Builder.AddTextChunk("buffer");
6406 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
6407 Builder.AddTypedTextChunk("range:");
6408 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6409 Builder.AddTextChunk("NSRange");
6410 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6411 Builder.AddTextChunk("inRange");
6412 Results.AddResult(Result(Builder.TakeString(), IndexedGetterPriority,
6413 CXCursor_ObjCInstanceMethodDecl));
6414 }
6415 }
6416
6417 // Mutable indexed accessors
6418
6419 // - (void)insertObject:(type *)object inKeyAtIndex:(NSUInteger)index
6420 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006421 std::string SelectorName = (Twine("in") + UpperKey + "AtIndex").str();
Douglas Gregor669a25a2011-02-17 00:22:45 +00006422 IdentifierInfo *SelectorIds[2] = {
6423 &Context.Idents.get("insertObject"),
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006424 &Context.Idents.get(SelectorName)
Douglas Gregor669a25a2011-02-17 00:22:45 +00006425 };
6426
David Blaikie82e95a32014-11-19 07:49:47 +00006427 if (KnownSelectors.insert(Selectors.getSelector(2, SelectorIds)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006428 if (ReturnType.isNull()) {
6429 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6430 Builder.AddTextChunk("void");
6431 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6432 }
6433
6434 Builder.AddTypedTextChunk("insertObject:");
6435 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6436 Builder.AddPlaceholderChunk("object-type");
6437 Builder.AddTextChunk(" *");
6438 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6439 Builder.AddTextChunk("object");
6440 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
6441 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6442 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6443 Builder.AddPlaceholderChunk("NSUInteger");
6444 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6445 Builder.AddTextChunk("index");
6446 Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority,
6447 CXCursor_ObjCInstanceMethodDecl));
6448 }
6449 }
6450
6451 // - (void)insertKey:(NSArray *)array atIndexes:(NSIndexSet *)indexes
6452 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006453 std::string SelectorName = (Twine("insert") + UpperKey).str();
Douglas Gregor669a25a2011-02-17 00:22:45 +00006454 IdentifierInfo *SelectorIds[2] = {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006455 &Context.Idents.get(SelectorName),
Douglas Gregor669a25a2011-02-17 00:22:45 +00006456 &Context.Idents.get("atIndexes")
6457 };
6458
David Blaikie82e95a32014-11-19 07:49:47 +00006459 if (KnownSelectors.insert(Selectors.getSelector(2, SelectorIds)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006460 if (ReturnType.isNull()) {
6461 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6462 Builder.AddTextChunk("void");
6463 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6464 }
6465
6466 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6467 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6468 Builder.AddTextChunk("NSArray *");
6469 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6470 Builder.AddTextChunk("array");
6471 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
6472 Builder.AddTypedTextChunk("atIndexes:");
6473 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6474 Builder.AddPlaceholderChunk("NSIndexSet *");
6475 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6476 Builder.AddTextChunk("indexes");
6477 Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority,
6478 CXCursor_ObjCInstanceMethodDecl));
6479 }
6480 }
6481
6482 // -(void)removeObjectFromKeyAtIndex:(NSUInteger)index
6483 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006484 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006485 = (Twine("removeObjectFrom") + UpperKey + "AtIndex").str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006486 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00006487 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006488 if (ReturnType.isNull()) {
6489 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6490 Builder.AddTextChunk("void");
6491 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6492 }
6493
6494 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6495 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6496 Builder.AddTextChunk("NSUInteger");
6497 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6498 Builder.AddTextChunk("index");
6499 Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority,
6500 CXCursor_ObjCInstanceMethodDecl));
6501 }
6502 }
6503
6504 // -(void)removeKeyAtIndexes:(NSIndexSet *)indexes
6505 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006506 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006507 = (Twine("remove") + UpperKey + "AtIndexes").str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006508 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00006509 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006510 if (ReturnType.isNull()) {
6511 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6512 Builder.AddTextChunk("void");
6513 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6514 }
6515
6516 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6517 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6518 Builder.AddTextChunk("NSIndexSet *");
6519 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6520 Builder.AddTextChunk("indexes");
6521 Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority,
6522 CXCursor_ObjCInstanceMethodDecl));
6523 }
6524 }
6525
6526 // - (void)replaceObjectInKeyAtIndex:(NSUInteger)index withObject:(id)object
6527 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006528 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006529 = (Twine("replaceObjectIn") + UpperKey + "AtIndex").str();
Douglas Gregor669a25a2011-02-17 00:22:45 +00006530 IdentifierInfo *SelectorIds[2] = {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006531 &Context.Idents.get(SelectorName),
Douglas Gregor669a25a2011-02-17 00:22:45 +00006532 &Context.Idents.get("withObject")
6533 };
6534
David Blaikie82e95a32014-11-19 07:49:47 +00006535 if (KnownSelectors.insert(Selectors.getSelector(2, SelectorIds)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006536 if (ReturnType.isNull()) {
6537 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6538 Builder.AddTextChunk("void");
6539 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6540 }
6541
6542 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6543 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6544 Builder.AddPlaceholderChunk("NSUInteger");
6545 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6546 Builder.AddTextChunk("index");
6547 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
6548 Builder.AddTypedTextChunk("withObject:");
6549 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6550 Builder.AddTextChunk("id");
6551 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6552 Builder.AddTextChunk("object");
6553 Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority,
6554 CXCursor_ObjCInstanceMethodDecl));
6555 }
6556 }
6557
6558 // - (void)replaceKeyAtIndexes:(NSIndexSet *)indexes withKey:(NSArray *)array
6559 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006560 std::string SelectorName1
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006561 = (Twine("replace") + UpperKey + "AtIndexes").str();
6562 std::string SelectorName2 = (Twine("with") + UpperKey).str();
Douglas Gregor669a25a2011-02-17 00:22:45 +00006563 IdentifierInfo *SelectorIds[2] = {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006564 &Context.Idents.get(SelectorName1),
6565 &Context.Idents.get(SelectorName2)
Douglas Gregor669a25a2011-02-17 00:22:45 +00006566 };
6567
David Blaikie82e95a32014-11-19 07:49:47 +00006568 if (KnownSelectors.insert(Selectors.getSelector(2, SelectorIds)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006569 if (ReturnType.isNull()) {
6570 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6571 Builder.AddTextChunk("void");
6572 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6573 }
6574
6575 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName1 + ":"));
6576 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6577 Builder.AddPlaceholderChunk("NSIndexSet *");
6578 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6579 Builder.AddTextChunk("indexes");
6580 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
6581 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName2 + ":"));
6582 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6583 Builder.AddTextChunk("NSArray *");
6584 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6585 Builder.AddTextChunk("array");
6586 Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority,
6587 CXCursor_ObjCInstanceMethodDecl));
6588 }
6589 }
6590
6591 // Unordered getters
6592 // - (NSEnumerator *)enumeratorOfKey
6593 if (IsInstanceMethod &&
6594 (ReturnType.isNull() ||
6595 (ReturnType->isObjCObjectPointerType() &&
6596 ReturnType->getAs<ObjCObjectPointerType>()->getInterfaceDecl() &&
6597 ReturnType->getAs<ObjCObjectPointerType>()->getInterfaceDecl()
6598 ->getName() == "NSEnumerator"))) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006599 std::string SelectorName = (Twine("enumeratorOf") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006600 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00006601 if (KnownSelectors.insert(Selectors.getNullarySelector(SelectorId))
6602 .second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006603 if (ReturnType.isNull()) {
6604 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6605 Builder.AddTextChunk("NSEnumerator *");
6606 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6607 }
6608
6609 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName));
6610 Results.AddResult(Result(Builder.TakeString(), UnorderedGetterPriority,
6611 CXCursor_ObjCInstanceMethodDecl));
6612 }
6613 }
6614
6615 // - (type *)memberOfKey:(type *)object
6616 if (IsInstanceMethod &&
6617 (ReturnType.isNull() || ReturnType->isObjCObjectPointerType())) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006618 std::string SelectorName = (Twine("memberOf") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006619 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00006620 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006621 if (ReturnType.isNull()) {
6622 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6623 Builder.AddPlaceholderChunk("object-type");
6624 Builder.AddTextChunk(" *");
6625 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6626 }
6627
6628 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6629 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6630 if (ReturnType.isNull()) {
6631 Builder.AddPlaceholderChunk("object-type");
6632 Builder.AddTextChunk(" *");
6633 } else {
6634 Builder.AddTextChunk(GetCompletionTypeString(ReturnType, Context,
Douglas Gregor75acd922011-09-27 23:30:47 +00006635 Policy,
Douglas Gregor669a25a2011-02-17 00:22:45 +00006636 Builder.getAllocator()));
6637 }
6638 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6639 Builder.AddTextChunk("object");
6640 Results.AddResult(Result(Builder.TakeString(), UnorderedGetterPriority,
6641 CXCursor_ObjCInstanceMethodDecl));
6642 }
6643 }
6644
6645 // Mutable unordered accessors
6646 // - (void)addKeyObject:(type *)object
6647 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006648 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006649 = (Twine("add") + UpperKey + Twine("Object")).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006650 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00006651 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006652 if (ReturnType.isNull()) {
6653 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6654 Builder.AddTextChunk("void");
6655 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6656 }
6657
6658 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6659 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6660 Builder.AddPlaceholderChunk("object-type");
6661 Builder.AddTextChunk(" *");
6662 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6663 Builder.AddTextChunk("object");
6664 Results.AddResult(Result(Builder.TakeString(), UnorderedSetterPriority,
6665 CXCursor_ObjCInstanceMethodDecl));
6666 }
6667 }
6668
6669 // - (void)addKey:(NSSet *)objects
6670 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006671 std::string SelectorName = (Twine("add") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006672 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00006673 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006674 if (ReturnType.isNull()) {
6675 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6676 Builder.AddTextChunk("void");
6677 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6678 }
6679
6680 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6681 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6682 Builder.AddTextChunk("NSSet *");
6683 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6684 Builder.AddTextChunk("objects");
6685 Results.AddResult(Result(Builder.TakeString(), UnorderedSetterPriority,
6686 CXCursor_ObjCInstanceMethodDecl));
6687 }
6688 }
6689
6690 // - (void)removeKeyObject:(type *)object
6691 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006692 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006693 = (Twine("remove") + UpperKey + Twine("Object")).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006694 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00006695 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006696 if (ReturnType.isNull()) {
6697 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6698 Builder.AddTextChunk("void");
6699 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6700 }
6701
6702 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6703 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6704 Builder.AddPlaceholderChunk("object-type");
6705 Builder.AddTextChunk(" *");
6706 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6707 Builder.AddTextChunk("object");
6708 Results.AddResult(Result(Builder.TakeString(), UnorderedSetterPriority,
6709 CXCursor_ObjCInstanceMethodDecl));
6710 }
6711 }
6712
6713 // - (void)removeKey:(NSSet *)objects
6714 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006715 std::string SelectorName = (Twine("remove") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006716 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00006717 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006718 if (ReturnType.isNull()) {
6719 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6720 Builder.AddTextChunk("void");
6721 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6722 }
6723
6724 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6725 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6726 Builder.AddTextChunk("NSSet *");
6727 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6728 Builder.AddTextChunk("objects");
6729 Results.AddResult(Result(Builder.TakeString(), UnorderedSetterPriority,
6730 CXCursor_ObjCInstanceMethodDecl));
6731 }
6732 }
6733
6734 // - (void)intersectKey:(NSSet *)objects
6735 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006736 std::string SelectorName = (Twine("intersect") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006737 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00006738 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId)).second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006739 if (ReturnType.isNull()) {
6740 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6741 Builder.AddTextChunk("void");
6742 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6743 }
6744
6745 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6746 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6747 Builder.AddTextChunk("NSSet *");
6748 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6749 Builder.AddTextChunk("objects");
6750 Results.AddResult(Result(Builder.TakeString(), UnorderedSetterPriority,
6751 CXCursor_ObjCInstanceMethodDecl));
6752 }
6753 }
6754
6755 // Key-Value Observing
6756 // + (NSSet *)keyPathsForValuesAffectingKey
6757 if (!IsInstanceMethod &&
6758 (ReturnType.isNull() ||
6759 (ReturnType->isObjCObjectPointerType() &&
6760 ReturnType->getAs<ObjCObjectPointerType>()->getInterfaceDecl() &&
6761 ReturnType->getAs<ObjCObjectPointerType>()->getInterfaceDecl()
6762 ->getName() == "NSSet"))) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006763 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006764 = (Twine("keyPathsForValuesAffecting") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006765 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00006766 if (KnownSelectors.insert(Selectors.getNullarySelector(SelectorId))
6767 .second) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006768 if (ReturnType.isNull()) {
6769 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6770 Builder.AddTextChunk("NSSet *");
6771 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6772 }
6773
6774 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName));
6775 Results.AddResult(Result(Builder.TakeString(), CCP_CodePattern,
Douglas Gregor857bcda2011-06-02 04:02:27 +00006776 CXCursor_ObjCClassMethodDecl));
6777 }
6778 }
6779
6780 // + (BOOL)automaticallyNotifiesObserversForKey
6781 if (!IsInstanceMethod &&
6782 (ReturnType.isNull() ||
6783 ReturnType->isIntegerType() ||
6784 ReturnType->isBooleanType())) {
6785 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006786 = (Twine("automaticallyNotifiesObserversOf") + UpperKey).str();
Douglas Gregor857bcda2011-06-02 04:02:27 +00006787 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
David Blaikie82e95a32014-11-19 07:49:47 +00006788 if (KnownSelectors.insert(Selectors.getNullarySelector(SelectorId))
6789 .second) {
Douglas Gregor857bcda2011-06-02 04:02:27 +00006790 if (ReturnType.isNull()) {
6791 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6792 Builder.AddTextChunk("BOOL");
6793 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6794 }
6795
6796 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName));
6797 Results.AddResult(Result(Builder.TakeString(), CCP_CodePattern,
6798 CXCursor_ObjCClassMethodDecl));
Douglas Gregor669a25a2011-02-17 00:22:45 +00006799 }
6800 }
6801}
6802
Douglas Gregor636a61e2010-04-07 00:21:17 +00006803void Sema::CodeCompleteObjCMethodDecl(Scope *S,
6804 bool IsInstanceMethod,
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00006805 ParsedType ReturnTy) {
Douglas Gregor636a61e2010-04-07 00:21:17 +00006806 // Determine the return type of the method we're declaring, if
6807 // provided.
6808 QualType ReturnType = GetTypeFromParser(ReturnTy);
Craig Topperc3ec1492014-05-26 06:22:03 +00006809 Decl *IDecl = nullptr;
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00006810 if (CurContext->isObjCContainer()) {
6811 ObjCContainerDecl *OCD = dyn_cast<ObjCContainerDecl>(CurContext);
6812 IDecl = cast<Decl>(OCD);
6813 }
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006814 // Determine where we should start searching for methods.
Craig Topperc3ec1492014-05-26 06:22:03 +00006815 ObjCContainerDecl *SearchDecl = nullptr;
Douglas Gregor636a61e2010-04-07 00:21:17 +00006816 bool IsInImplementation = false;
John McCall48871652010-08-21 09:40:31 +00006817 if (Decl *D = IDecl) {
Douglas Gregor636a61e2010-04-07 00:21:17 +00006818 if (ObjCImplementationDecl *Impl = dyn_cast<ObjCImplementationDecl>(D)) {
6819 SearchDecl = Impl->getClassInterface();
Douglas Gregor636a61e2010-04-07 00:21:17 +00006820 IsInImplementation = true;
6821 } else if (ObjCCategoryImplDecl *CatImpl
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006822 = dyn_cast<ObjCCategoryImplDecl>(D)) {
Douglas Gregor636a61e2010-04-07 00:21:17 +00006823 SearchDecl = CatImpl->getCategoryDecl();
Douglas Gregor636a61e2010-04-07 00:21:17 +00006824 IsInImplementation = true;
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006825 } else
Douglas Gregor636a61e2010-04-07 00:21:17 +00006826 SearchDecl = dyn_cast<ObjCContainerDecl>(D);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006827 }
6828
6829 if (!SearchDecl && S) {
Ted Kremenekc37877d2013-10-08 17:08:03 +00006830 if (DeclContext *DC = S->getEntity())
Douglas Gregor636a61e2010-04-07 00:21:17 +00006831 SearchDecl = dyn_cast<ObjCContainerDecl>(DC);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006832 }
6833
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006834 if (!SearchDecl) {
Douglas Gregor00c37ef2010-08-11 21:23:17 +00006835 HandleCodeCompleteResults(this, CodeCompleter,
6836 CodeCompletionContext::CCC_Other,
Craig Topperc3ec1492014-05-26 06:22:03 +00006837 nullptr, 0);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006838 return;
6839 }
6840
6841 // Find all of the methods that we could declare/implement here.
6842 KnownMethodsMap KnownMethods;
6843 FindImplementableMethods(Context, SearchDecl, IsInstanceMethod,
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006844 ReturnType, KnownMethods);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006845
Douglas Gregor636a61e2010-04-07 00:21:17 +00006846 // Add declarations or definitions for each of the known methods.
John McCall276321a2010-08-25 06:19:51 +00006847 typedef CodeCompletionResult Result;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006848 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00006849 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006850 CodeCompletionContext::CCC_Other);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006851 Results.EnterNewScope();
Douglas Gregor75acd922011-09-27 23:30:47 +00006852 PrintingPolicy Policy = getCompletionPrintingPolicy(*this);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006853 for (KnownMethodsMap::iterator M = KnownMethods.begin(),
6854 MEnd = KnownMethods.end();
6855 M != MEnd; ++M) {
Benjamin Kramereb8c4462013-06-29 17:52:13 +00006856 ObjCMethodDecl *Method = M->second.getPointer();
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00006857 CodeCompletionBuilder Builder(Results.getAllocator(),
6858 Results.getCodeCompletionTUInfo());
Douglas Gregor636a61e2010-04-07 00:21:17 +00006859
6860 // If the result type was not already provided, add it to the
6861 // pattern as (type).
Douglas Gregor669a25a2011-02-17 00:22:45 +00006862 if (ReturnType.isNull())
Alp Toker314cc812014-01-25 16:55:45 +00006863 AddObjCPassingTypeChunk(Method->getReturnType(),
6864 Method->getObjCDeclQualifier(), Context, Policy,
6865 Builder);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006866
6867 Selector Sel = Method->getSelector();
6868
6869 // Add the first part of the selector to the pattern.
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00006870 Builder.AddTypedTextChunk(Builder.getAllocator().CopyString(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00006871 Sel.getNameForSlot(0)));
Douglas Gregor636a61e2010-04-07 00:21:17 +00006872
6873 // Add parameters to the pattern.
6874 unsigned I = 0;
6875 for (ObjCMethodDecl::param_iterator P = Method->param_begin(),
6876 PEnd = Method->param_end();
6877 P != PEnd; (void)++P, ++I) {
6878 // Add the part of the selector name.
6879 if (I == 0)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006880 Builder.AddTypedTextChunk(":");
Douglas Gregor636a61e2010-04-07 00:21:17 +00006881 else if (I < Sel.getNumArgs()) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006882 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
6883 Builder.AddTypedTextChunk(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00006884 Builder.getAllocator().CopyString(Sel.getNameForSlot(I) + ":"));
Douglas Gregor636a61e2010-04-07 00:21:17 +00006885 } else
6886 break;
6887
6888 // Add the parameter type.
Douglas Gregor29979142012-04-10 18:35:07 +00006889 AddObjCPassingTypeChunk((*P)->getOriginalType(),
6890 (*P)->getObjCDeclQualifier(),
6891 Context, Policy,
Douglas Gregor75acd922011-09-27 23:30:47 +00006892 Builder);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006893
6894 if (IdentifierInfo *Id = (*P)->getIdentifier())
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00006895 Builder.AddTextChunk(Builder.getAllocator().CopyString( Id->getName()));
Douglas Gregor636a61e2010-04-07 00:21:17 +00006896 }
6897
6898 if (Method->isVariadic()) {
6899 if (Method->param_size() > 0)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006900 Builder.AddChunk(CodeCompletionString::CK_Comma);
6901 Builder.AddTextChunk("...");
Douglas Gregor400f5972010-08-31 05:13:43 +00006902 }
Douglas Gregor636a61e2010-04-07 00:21:17 +00006903
Douglas Gregord37c59d2010-05-28 00:57:46 +00006904 if (IsInImplementation && Results.includeCodePatterns()) {
Douglas Gregor636a61e2010-04-07 00:21:17 +00006905 // We will be defining the method here, so add a compound statement.
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006906 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
6907 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
6908 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
Alp Toker314cc812014-01-25 16:55:45 +00006909 if (!Method->getReturnType()->isVoidType()) {
Douglas Gregor636a61e2010-04-07 00:21:17 +00006910 // If the result type is not void, add a return clause.
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006911 Builder.AddTextChunk("return");
6912 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
6913 Builder.AddPlaceholderChunk("expression");
6914 Builder.AddChunk(CodeCompletionString::CK_SemiColon);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006915 } else
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006916 Builder.AddPlaceholderChunk("statements");
Douglas Gregor636a61e2010-04-07 00:21:17 +00006917
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006918 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
6919 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006920 }
6921
Douglas Gregor416b5752010-08-25 01:08:01 +00006922 unsigned Priority = CCP_CodePattern;
Benjamin Kramereb8c4462013-06-29 17:52:13 +00006923 if (!M->second.getInt())
Douglas Gregor416b5752010-08-25 01:08:01 +00006924 Priority += CCD_InBaseClass;
6925
Douglas Gregor78254c82012-03-27 23:34:16 +00006926 Results.AddResult(Result(Builder.TakeString(), Method, Priority));
Douglas Gregor636a61e2010-04-07 00:21:17 +00006927 }
6928
Douglas Gregor669a25a2011-02-17 00:22:45 +00006929 // Add Key-Value-Coding and Key-Value-Observing accessor methods for all of
6930 // the properties in this class and its categories.
David Blaikiebbafb8a2012-03-11 07:00:24 +00006931 if (Context.getLangOpts().ObjC2) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006932 SmallVector<ObjCContainerDecl *, 4> Containers;
Douglas Gregor669a25a2011-02-17 00:22:45 +00006933 Containers.push_back(SearchDecl);
6934
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006935 VisitedSelectorSet KnownSelectors;
6936 for (KnownMethodsMap::iterator M = KnownMethods.begin(),
6937 MEnd = KnownMethods.end();
6938 M != MEnd; ++M)
6939 KnownSelectors.insert(M->first);
6940
6941
Douglas Gregor669a25a2011-02-17 00:22:45 +00006942 ObjCInterfaceDecl *IFace = dyn_cast<ObjCInterfaceDecl>(SearchDecl);
6943 if (!IFace)
6944 if (ObjCCategoryDecl *Category = dyn_cast<ObjCCategoryDecl>(SearchDecl))
6945 IFace = Category->getClassInterface();
6946
Aaron Ballman3fe486a2014-03-13 21:23:55 +00006947 if (IFace)
6948 for (auto *Cat : IFace->visible_categories())
6949 Containers.push_back(Cat);
Douglas Gregor669a25a2011-02-17 00:22:45 +00006950
Aaron Ballmandc4bea42014-03-13 18:47:37 +00006951 for (unsigned I = 0, N = Containers.size(); I != N; ++I)
Aaron Ballmand174edf2014-03-13 19:11:50 +00006952 for (auto *P : Containers[I]->properties())
Aaron Ballmandc4bea42014-03-13 18:47:37 +00006953 AddObjCKeyValueCompletions(P, IsInstanceMethod, ReturnType, Context,
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006954 KnownSelectors, Results);
Douglas Gregor669a25a2011-02-17 00:22:45 +00006955 }
6956
Douglas Gregor636a61e2010-04-07 00:21:17 +00006957 Results.ExitScope();
6958
Douglas Gregor00c37ef2010-08-11 21:23:17 +00006959 HandleCodeCompleteResults(this, CodeCompleter,
6960 CodeCompletionContext::CCC_Other,
6961 Results.data(),Results.size());
Douglas Gregor636a61e2010-04-07 00:21:17 +00006962}
Douglas Gregor95887f92010-07-08 23:20:03 +00006963
6964void Sema::CodeCompleteObjCMethodDeclSelector(Scope *S,
6965 bool IsInstanceMethod,
Douglas Gregor45879692010-07-08 23:37:41 +00006966 bool AtParameterName,
John McCallba7bf592010-08-24 05:47:05 +00006967 ParsedType ReturnTy,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00006968 ArrayRef<IdentifierInfo *> SelIdents) {
Douglas Gregor95887f92010-07-08 23:20:03 +00006969 // If we have an external source, load the entire class method
Sebastian Redld44cd6a2010-08-18 23:57:06 +00006970 // pool from the AST file.
Douglas Gregor95887f92010-07-08 23:20:03 +00006971 if (ExternalSource) {
6972 for (uint32_t I = 0, N = ExternalSource->GetNumExternalSelectors();
6973 I != N; ++I) {
6974 Selector Sel = ExternalSource->GetExternalSelector(I);
Sebastian Redl75d8a322010-08-02 23:18:59 +00006975 if (Sel.isNull() || MethodPool.count(Sel))
Douglas Gregor95887f92010-07-08 23:20:03 +00006976 continue;
Sebastian Redl75d8a322010-08-02 23:18:59 +00006977
6978 ReadMethodPool(Sel);
Douglas Gregor95887f92010-07-08 23:20:03 +00006979 }
6980 }
6981
6982 // Build the set of methods we can see.
John McCall276321a2010-08-25 06:19:51 +00006983 typedef CodeCompletionResult Result;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006984 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00006985 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006986 CodeCompletionContext::CCC_Other);
Douglas Gregor95887f92010-07-08 23:20:03 +00006987
6988 if (ReturnTy)
6989 Results.setPreferredType(GetTypeFromParser(ReturnTy).getNonReferenceType());
Sebastian Redl75d8a322010-08-02 23:18:59 +00006990
Douglas Gregor95887f92010-07-08 23:20:03 +00006991 Results.EnterNewScope();
Sebastian Redl75d8a322010-08-02 23:18:59 +00006992 for (GlobalMethodPool::iterator M = MethodPool.begin(),
6993 MEnd = MethodPool.end();
6994 M != MEnd; ++M) {
6995 for (ObjCMethodList *MethList = IsInstanceMethod ? &M->second.first :
6996 &M->second.second;
Nico Weber2e0c8f72014-12-27 03:58:08 +00006997 MethList && MethList->getMethod();
Argyrios Kyrtzidisd3da6e02013-04-17 00:08:58 +00006998 MethList = MethList->getNext()) {
Nico Weber2e0c8f72014-12-27 03:58:08 +00006999 if (!isAcceptableObjCMethod(MethList->getMethod(), MK_Any, SelIdents))
Douglas Gregor95887f92010-07-08 23:20:03 +00007000 continue;
7001
Douglas Gregor45879692010-07-08 23:37:41 +00007002 if (AtParameterName) {
7003 // Suggest parameter names we've seen before.
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00007004 unsigned NumSelIdents = SelIdents.size();
Nico Weber2e0c8f72014-12-27 03:58:08 +00007005 if (NumSelIdents &&
7006 NumSelIdents <= MethList->getMethod()->param_size()) {
7007 ParmVarDecl *Param =
7008 MethList->getMethod()->parameters()[NumSelIdents - 1];
Douglas Gregor45879692010-07-08 23:37:41 +00007009 if (Param->getIdentifier()) {
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007010 CodeCompletionBuilder Builder(Results.getAllocator(),
7011 Results.getCodeCompletionTUInfo());
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00007012 Builder.AddTypedTextChunk(Builder.getAllocator().CopyString(
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007013 Param->getIdentifier()->getName()));
7014 Results.AddResult(Builder.TakeString());
Douglas Gregor45879692010-07-08 23:37:41 +00007015 }
7016 }
7017
7018 continue;
7019 }
Craig Topperc3ec1492014-05-26 06:22:03 +00007020
Nico Weber2e0c8f72014-12-27 03:58:08 +00007021 Result R(MethList->getMethod(),
7022 Results.getBasePriority(MethList->getMethod()), nullptr);
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00007023 R.StartParameter = SelIdents.size();
Douglas Gregor95887f92010-07-08 23:20:03 +00007024 R.AllParametersAreInformative = false;
7025 R.DeclaringEntity = true;
7026 Results.MaybeAddResult(R, CurContext);
7027 }
7028 }
7029
7030 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00007031 HandleCodeCompleteResults(this, CodeCompleter,
7032 CodeCompletionContext::CCC_Other,
7033 Results.data(),Results.size());
Douglas Gregor95887f92010-07-08 23:20:03 +00007034}
Douglas Gregorb14904c2010-08-13 22:48:40 +00007035
Douglas Gregorec00a262010-08-24 22:20:20 +00007036void Sema::CodeCompletePreprocessorDirective(bool InConditional) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007037 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007038 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor0ac41382010-09-23 23:01:17 +00007039 CodeCompletionContext::CCC_PreprocessorDirective);
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007040 Results.EnterNewScope();
7041
7042 // #if <condition>
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007043 CodeCompletionBuilder Builder(Results.getAllocator(),
7044 Results.getCodeCompletionTUInfo());
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007045 Builder.AddTypedTextChunk("if");
7046 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7047 Builder.AddPlaceholderChunk("condition");
7048 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007049
7050 // #ifdef <macro>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007051 Builder.AddTypedTextChunk("ifdef");
7052 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7053 Builder.AddPlaceholderChunk("macro");
7054 Results.AddResult(Builder.TakeString());
7055
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007056 // #ifndef <macro>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007057 Builder.AddTypedTextChunk("ifndef");
7058 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7059 Builder.AddPlaceholderChunk("macro");
7060 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007061
7062 if (InConditional) {
7063 // #elif <condition>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007064 Builder.AddTypedTextChunk("elif");
7065 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7066 Builder.AddPlaceholderChunk("condition");
7067 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007068
7069 // #else
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007070 Builder.AddTypedTextChunk("else");
7071 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007072
7073 // #endif
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007074 Builder.AddTypedTextChunk("endif");
7075 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007076 }
7077
7078 // #include "header"
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007079 Builder.AddTypedTextChunk("include");
7080 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7081 Builder.AddTextChunk("\"");
7082 Builder.AddPlaceholderChunk("header");
7083 Builder.AddTextChunk("\"");
7084 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007085
7086 // #include <header>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007087 Builder.AddTypedTextChunk("include");
7088 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7089 Builder.AddTextChunk("<");
7090 Builder.AddPlaceholderChunk("header");
7091 Builder.AddTextChunk(">");
7092 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007093
7094 // #define <macro>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007095 Builder.AddTypedTextChunk("define");
7096 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7097 Builder.AddPlaceholderChunk("macro");
7098 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007099
7100 // #define <macro>(<args>)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007101 Builder.AddTypedTextChunk("define");
7102 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7103 Builder.AddPlaceholderChunk("macro");
7104 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
7105 Builder.AddPlaceholderChunk("args");
7106 Builder.AddChunk(CodeCompletionString::CK_RightParen);
7107 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007108
7109 // #undef <macro>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007110 Builder.AddTypedTextChunk("undef");
7111 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7112 Builder.AddPlaceholderChunk("macro");
7113 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007114
7115 // #line <number>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007116 Builder.AddTypedTextChunk("line");
7117 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7118 Builder.AddPlaceholderChunk("number");
7119 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007120
7121 // #line <number> "filename"
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007122 Builder.AddTypedTextChunk("line");
7123 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7124 Builder.AddPlaceholderChunk("number");
7125 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7126 Builder.AddTextChunk("\"");
7127 Builder.AddPlaceholderChunk("filename");
7128 Builder.AddTextChunk("\"");
7129 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007130
7131 // #error <message>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007132 Builder.AddTypedTextChunk("error");
7133 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7134 Builder.AddPlaceholderChunk("message");
7135 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007136
7137 // #pragma <arguments>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007138 Builder.AddTypedTextChunk("pragma");
7139 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7140 Builder.AddPlaceholderChunk("arguments");
7141 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007142
David Blaikiebbafb8a2012-03-11 07:00:24 +00007143 if (getLangOpts().ObjC1) {
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007144 // #import "header"
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007145 Builder.AddTypedTextChunk("import");
7146 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7147 Builder.AddTextChunk("\"");
7148 Builder.AddPlaceholderChunk("header");
7149 Builder.AddTextChunk("\"");
7150 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007151
7152 // #import <header>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007153 Builder.AddTypedTextChunk("import");
7154 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7155 Builder.AddTextChunk("<");
7156 Builder.AddPlaceholderChunk("header");
7157 Builder.AddTextChunk(">");
7158 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007159 }
7160
7161 // #include_next "header"
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007162 Builder.AddTypedTextChunk("include_next");
7163 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7164 Builder.AddTextChunk("\"");
7165 Builder.AddPlaceholderChunk("header");
7166 Builder.AddTextChunk("\"");
7167 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007168
7169 // #include_next <header>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007170 Builder.AddTypedTextChunk("include_next");
7171 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7172 Builder.AddTextChunk("<");
7173 Builder.AddPlaceholderChunk("header");
7174 Builder.AddTextChunk(">");
7175 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007176
7177 // #warning <message>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007178 Builder.AddTypedTextChunk("warning");
7179 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7180 Builder.AddPlaceholderChunk("message");
7181 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007182
7183 // Note: #ident and #sccs are such crazy anachronisms that we don't provide
7184 // completions for them. And __include_macros is a Clang-internal extension
7185 // that we don't want to encourage anyone to use.
7186
7187 // FIXME: we don't support #assert or #unassert, so don't suggest them.
7188 Results.ExitScope();
7189
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007190 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor0de55ce2010-08-25 18:41:16 +00007191 CodeCompletionContext::CCC_PreprocessorDirective,
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007192 Results.data(), Results.size());
7193}
7194
7195void Sema::CodeCompleteInPreprocessorConditionalExclusion(Scope *S) {
Douglas Gregorec00a262010-08-24 22:20:20 +00007196 CodeCompleteOrdinaryName(S,
John McCallfaf5fb42010-08-26 23:41:50 +00007197 S->getFnParent()? Sema::PCC_RecoveryInFunction
7198 : Sema::PCC_Namespace);
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007199}
7200
Douglas Gregorec00a262010-08-24 22:20:20 +00007201void Sema::CodeCompletePreprocessorMacroName(bool IsDefinition) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007202 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007203 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor0ac41382010-09-23 23:01:17 +00007204 IsDefinition? CodeCompletionContext::CCC_MacroName
7205 : CodeCompletionContext::CCC_MacroNameUse);
Douglas Gregor12785102010-08-24 20:21:13 +00007206 if (!IsDefinition && (!CodeCompleter || CodeCompleter->includeMacros())) {
7207 // Add just the names of macros, not their arguments.
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007208 CodeCompletionBuilder Builder(Results.getAllocator(),
7209 Results.getCodeCompletionTUInfo());
Douglas Gregor12785102010-08-24 20:21:13 +00007210 Results.EnterNewScope();
7211 for (Preprocessor::macro_iterator M = PP.macro_begin(),
7212 MEnd = PP.macro_end();
7213 M != MEnd; ++M) {
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00007214 Builder.AddTypedTextChunk(Builder.getAllocator().CopyString(
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007215 M->first->getName()));
Argyrios Kyrtzidis5c8b1cd2012-09-27 00:24:09 +00007216 Results.AddResult(CodeCompletionResult(Builder.TakeString(),
7217 CCP_CodePattern,
7218 CXCursor_MacroDefinition));
Douglas Gregor12785102010-08-24 20:21:13 +00007219 }
7220 Results.ExitScope();
7221 } else if (IsDefinition) {
7222 // FIXME: Can we detect when the user just wrote an include guard above?
7223 }
7224
Douglas Gregor0ac41382010-09-23 23:01:17 +00007225 HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(),
Douglas Gregor12785102010-08-24 20:21:13 +00007226 Results.data(), Results.size());
7227}
7228
Douglas Gregorec00a262010-08-24 22:20:20 +00007229void Sema::CodeCompletePreprocessorExpression() {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007230 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007231 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor0ac41382010-09-23 23:01:17 +00007232 CodeCompletionContext::CCC_PreprocessorExpression);
Douglas Gregorec00a262010-08-24 22:20:20 +00007233
7234 if (!CodeCompleter || CodeCompleter->includeMacros())
Douglas Gregor8cb17462012-10-09 16:01:50 +00007235 AddMacroResults(PP, Results, true);
Douglas Gregorec00a262010-08-24 22:20:20 +00007236
7237 // defined (<macro>)
7238 Results.EnterNewScope();
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007239 CodeCompletionBuilder Builder(Results.getAllocator(),
7240 Results.getCodeCompletionTUInfo());
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007241 Builder.AddTypedTextChunk("defined");
7242 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7243 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
7244 Builder.AddPlaceholderChunk("macro");
7245 Builder.AddChunk(CodeCompletionString::CK_RightParen);
7246 Results.AddResult(Builder.TakeString());
Douglas Gregorec00a262010-08-24 22:20:20 +00007247 Results.ExitScope();
7248
7249 HandleCodeCompleteResults(this, CodeCompleter,
7250 CodeCompletionContext::CCC_PreprocessorExpression,
7251 Results.data(), Results.size());
7252}
7253
7254void Sema::CodeCompletePreprocessorMacroArgument(Scope *S,
7255 IdentifierInfo *Macro,
7256 MacroInfo *MacroInfo,
7257 unsigned Argument) {
7258 // FIXME: In the future, we could provide "overload" results, much like we
7259 // do for function calls.
7260
Argyrios Kyrtzidis75f6cd22011-08-18 19:41:28 +00007261 // Now just ignore this. There will be another code-completion callback
7262 // for the expanded tokens.
Douglas Gregorec00a262010-08-24 22:20:20 +00007263}
7264
Douglas Gregor11583702010-08-25 17:04:25 +00007265void Sema::CodeCompleteNaturalLanguage() {
Douglas Gregor11583702010-08-25 17:04:25 +00007266 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregorea736372010-08-25 17:10:00 +00007267 CodeCompletionContext::CCC_NaturalLanguage,
Craig Topperc3ec1492014-05-26 06:22:03 +00007268 nullptr, 0);
Douglas Gregor11583702010-08-25 17:04:25 +00007269}
7270
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00007271void Sema::GatherGlobalCodeCompletions(CodeCompletionAllocator &Allocator,
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007272 CodeCompletionTUInfo &CCTUInfo,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00007273 SmallVectorImpl<CodeCompletionResult> &Results) {
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007274 ResultBuilder Builder(*this, Allocator, CCTUInfo,
7275 CodeCompletionContext::CCC_Recovery);
Douglas Gregor39982192010-08-15 06:18:01 +00007276 if (!CodeCompleter || CodeCompleter->includeGlobals()) {
7277 CodeCompletionDeclConsumer Consumer(Builder,
7278 Context.getTranslationUnitDecl());
7279 LookupVisibleDecls(Context.getTranslationUnitDecl(), LookupAnyName,
7280 Consumer);
7281 }
Douglas Gregorb14904c2010-08-13 22:48:40 +00007282
7283 if (!CodeCompleter || CodeCompleter->includeMacros())
Douglas Gregor8cb17462012-10-09 16:01:50 +00007284 AddMacroResults(PP, Builder, true);
Douglas Gregorb14904c2010-08-13 22:48:40 +00007285
7286 Results.clear();
7287 Results.insert(Results.end(),
7288 Builder.data(), Builder.data() + Builder.size());
7289}