blob: 832553aea7c6ae5a2155310e4ddd1953af67e953 [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;
107 DeclOrVector = ((NamedDecl *)0);
108 }
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,
175 LookupFilter Filter = 0)
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),
180 ObjCImplementation(0)
181 {
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 }
215
Douglas Gregor3545ff42009-09-21 16:56:56 +0000216 Result *data() { return Results.empty()? 0 : &Results.front(); }
217 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.
Douglas Gregor2af2f672009-09-21 20:12:40 +0000292 void MaybeAddResult(Result R, DeclContext *CurContext = 0);
Douglas Gregor3545ff42009-09-21 16:56:56 +0000293
Douglas Gregorc580c522010-01-14 01:09:38 +0000294 /// \brief Add a new result to this result set, where we already know
295 /// the hiding declation (if any).
296 ///
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 };
367
368 iterator() : DeclOrIterator((NamedDecl *)0), SingleDeclIndex(0) { }
369
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 *>()) {
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000378 DeclOrIterator = (NamedDecl *)0;
379 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 }
464
465 NestedNameSpecifier *Result = 0;
466 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
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000483bool ResultBuilder::isInterestingDecl(const NamedDecl *ND,
Douglas Gregor6ae4c522010-01-14 03:21:49 +0000484 bool &AsNestedNameSpecifier) const {
485 AsNestedNameSpecifier = false;
486
Douglas Gregor7c208612010-01-14 00:20:49 +0000487 ND = ND->getUnderlyingDecl();
488 unsigned IDNS = ND->getIdentifierNamespace();
Douglas Gregor58acf322009-10-09 22:16:47 +0000489
490 // Skip unnamed entities.
Douglas Gregor7c208612010-01-14 00:20:49 +0000491 if (!ND->getDeclName())
492 return false;
Douglas Gregor3545ff42009-09-21 16:56:56 +0000493
494 // Friend declarations and declarations introduced due to friends are never
495 // added as results.
John McCallbbbbe4e2010-03-11 07:50:04 +0000496 if (IDNS & (Decl::IDNS_OrdinaryFriend | Decl::IDNS_TagFriend))
Douglas Gregor7c208612010-01-14 00:20:49 +0000497 return false;
498
Douglas Gregor99fe2ad2009-12-11 17:31:05 +0000499 // Class template (partial) specializations are never added as results.
Douglas Gregor7c208612010-01-14 00:20:49 +0000500 if (isa<ClassTemplateSpecializationDecl>(ND) ||
501 isa<ClassTemplatePartialSpecializationDecl>(ND))
502 return false;
Douglas Gregor3545ff42009-09-21 16:56:56 +0000503
Douglas Gregor99fe2ad2009-12-11 17:31:05 +0000504 // Using declarations themselves are never added as results.
Douglas Gregor7c208612010-01-14 00:20:49 +0000505 if (isa<UsingDecl>(ND))
506 return false;
507
508 // Some declarations have reserved names that we don't want to ever show.
509 if (const IdentifierInfo *Id = ND->getIdentifier()) {
Douglas Gregor3545ff42009-09-21 16:56:56 +0000510 // __va_list_tag is a freak of nature. Find it and skip it.
511 if (Id->isStr("__va_list_tag") || Id->isStr("__builtin_va_list"))
Douglas Gregor7c208612010-01-14 00:20:49 +0000512 return false;
Douglas Gregor3545ff42009-09-21 16:56:56 +0000513
Douglas Gregor58acf322009-10-09 22:16:47 +0000514 // Filter out names reserved for the implementation (C99 7.1.3,
Douglas Gregor9f1570d2010-07-14 17:44:04 +0000515 // C++ [lib.global.names]) if they come from a system header.
Daniel Dunbar2c422dc92009-10-18 20:26:12 +0000516 //
517 // FIXME: Add predicate for this.
Douglas Gregor58acf322009-10-09 22:16:47 +0000518 if (Id->getLength() >= 2) {
Daniel Dunbar2c422dc92009-10-18 20:26:12 +0000519 const char *Name = Id->getNameStart();
Douglas Gregor58acf322009-10-09 22:16:47 +0000520 if (Name[0] == '_' &&
Douglas Gregor9f1570d2010-07-14 17:44:04 +0000521 (Name[1] == '_' || (Name[1] >= 'A' && Name[1] <= 'Z')) &&
522 (ND->getLocation().isInvalid() ||
523 SemaRef.SourceMgr.isInSystemHeader(
524 SemaRef.SourceMgr.getSpellingLoc(ND->getLocation()))))
Douglas Gregor7c208612010-01-14 00:20:49 +0000525 return false;
Douglas Gregor58acf322009-10-09 22:16:47 +0000526 }
Douglas Gregor3545ff42009-09-21 16:56:56 +0000527 }
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 &&
533 Filter != 0))
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;
782 const CXXRecordDecl *Record = 0;
783 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.
897 if (!AllDeclsFound.insert(CanonDecl))
898 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))
Douglas Gregor5bf52692009-09-22 23:15:58 +0000913 R.Qualifier = NestedNameSpecifier::Create(SemaRef.Context, 0, Namespace);
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000914 else if (const TagDecl *Tag = dyn_cast<TagDecl>(Ctx))
Douglas Gregor5bf52692009-09-22 23:15:58 +0000915 R.Qualifier = NestedNameSpecifier::Create(SemaRef.Context, 0, false,
916 SemaRef.Context.getTypeDeclType(Tag).getTypePtr());
917 else
918 R.QualifierIsInformative = false;
919 }
Douglas Gregore412a5a2009-09-23 22:26:46 +0000920
Douglas Gregor3545ff42009-09-21 16:56:56 +0000921 // Insert this result into the set of results and into the current shadow
922 // map.
Douglas Gregor05e7ca32009-12-06 20:23:50 +0000923 SMap[R.Declaration->getDeclName()].Add(R.Declaration, Results.size());
Douglas Gregor3545ff42009-09-21 16:56:56 +0000924 Results.push_back(R);
Douglas Gregor0212fd72010-09-21 16:06:22 +0000925
926 if (!AsNestedNameSpecifier)
927 MaybeAddConstructorResults(R);
Douglas Gregor3545ff42009-09-21 16:56:56 +0000928}
929
Douglas Gregorc580c522010-01-14 01:09:38 +0000930void ResultBuilder::AddResult(Result R, DeclContext *CurContext,
Douglas Gregor09bbc652010-01-14 15:47:35 +0000931 NamedDecl *Hiding, bool InBaseClass = false) {
Douglas Gregor78a21012010-01-14 16:01:26 +0000932 if (R.Kind != Result::RK_Declaration) {
933 // For non-declaration results, just add the result.
934 Results.push_back(R);
935 return;
936 }
937
Douglas Gregorc580c522010-01-14 01:09:38 +0000938 // Look through using declarations.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000939 if (const UsingShadowDecl *Using = dyn_cast<UsingShadowDecl>(R.Declaration)) {
Douglas Gregor0a0e2b32013-01-31 04:52:16 +0000940 AddResult(Result(Using->getTargetDecl(),
941 getBasePriority(Using->getTargetDecl()),
942 R.Qualifier),
943 CurContext, Hiding);
Douglas Gregorc580c522010-01-14 01:09:38 +0000944 return;
945 }
946
Douglas Gregor6ae4c522010-01-14 03:21:49 +0000947 bool AsNestedNameSpecifier = false;
948 if (!isInterestingDecl(R.Declaration, AsNestedNameSpecifier))
Douglas Gregorc580c522010-01-14 01:09:38 +0000949 return;
950
Douglas Gregor0212fd72010-09-21 16:06:22 +0000951 // C++ constructors are never found by name lookup.
952 if (isa<CXXConstructorDecl>(R.Declaration))
953 return;
954
Douglas Gregorc580c522010-01-14 01:09:38 +0000955 if (Hiding && CheckHiddenResult(R, CurContext, Hiding))
956 return;
Nick Lewyckyc3921482012-04-03 21:44:08 +0000957
Douglas Gregorc580c522010-01-14 01:09:38 +0000958 // Make sure that any given declaration only shows up in the result set once.
959 if (!AllDeclsFound.insert(R.Declaration->getCanonicalDecl()))
960 return;
961
962 // If the filter is for nested-name-specifiers, then this result starts a
963 // nested-name-specifier.
Douglas Gregora2db7932010-05-26 22:00:08 +0000964 if (AsNestedNameSpecifier) {
Douglas Gregorc580c522010-01-14 01:09:38 +0000965 R.StartsNestedNameSpecifier = true;
Douglas Gregora2db7932010-05-26 22:00:08 +0000966 R.Priority = CCP_NestedNameSpecifier;
967 }
Douglas Gregor09bbc652010-01-14 15:47:35 +0000968 else if (Filter == &ResultBuilder::IsMember && !R.Qualifier && InBaseClass &&
969 isa<CXXRecordDecl>(R.Declaration->getDeclContext()
Sebastian Redl50c68252010-08-31 00:36:30 +0000970 ->getRedeclContext()))
Douglas Gregor09bbc652010-01-14 15:47:35 +0000971 R.QualifierIsInformative = true;
972
Douglas Gregorc580c522010-01-14 01:09:38 +0000973 // If this result is supposed to have an informative qualifier, add one.
974 if (R.QualifierIsInformative && !R.Qualifier &&
975 !R.StartsNestedNameSpecifier) {
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000976 const DeclContext *Ctx = R.Declaration->getDeclContext();
977 if (const NamespaceDecl *Namespace = dyn_cast<NamespaceDecl>(Ctx))
Douglas Gregorc580c522010-01-14 01:09:38 +0000978 R.Qualifier = NestedNameSpecifier::Create(SemaRef.Context, 0, Namespace);
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000979 else if (const TagDecl *Tag = dyn_cast<TagDecl>(Ctx))
Douglas Gregorc580c522010-01-14 01:09:38 +0000980 R.Qualifier = NestedNameSpecifier::Create(SemaRef.Context, 0, false,
Douglas Gregor6ae4c522010-01-14 03:21:49 +0000981 SemaRef.Context.getTypeDeclType(Tag).getTypePtr());
Douglas Gregorc580c522010-01-14 01:09:38 +0000982 else
983 R.QualifierIsInformative = false;
984 }
985
Douglas Gregora2db7932010-05-26 22:00:08 +0000986 // Adjust the priority if this result comes from a base class.
987 if (InBaseClass)
988 R.Priority += CCD_InBaseClass;
989
Douglas Gregor50832e02010-09-20 22:39:41 +0000990 AdjustResultPriorityForDecl(R);
Douglas Gregor7aa6b222010-05-30 01:49:25 +0000991
Douglas Gregor9be0ed42010-08-26 16:36:48 +0000992 if (HasObjectTypeQualifiers)
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +0000993 if (const CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(R.Declaration))
Douglas Gregor9be0ed42010-08-26 16:36:48 +0000994 if (Method->isInstance()) {
995 Qualifiers MethodQuals
996 = Qualifiers::fromCVRMask(Method->getTypeQualifiers());
997 if (ObjectTypeQualifiers == MethodQuals)
998 R.Priority += CCD_ObjectQualifierMatch;
999 else if (ObjectTypeQualifiers - MethodQuals) {
1000 // The method cannot be invoked, because doing so would drop
1001 // qualifiers.
1002 return;
1003 }
1004 }
1005
Douglas Gregorc580c522010-01-14 01:09:38 +00001006 // Insert this result into the set of results.
1007 Results.push_back(R);
Douglas Gregor0212fd72010-09-21 16:06:22 +00001008
1009 if (!AsNestedNameSpecifier)
1010 MaybeAddConstructorResults(R);
Douglas Gregorc580c522010-01-14 01:09:38 +00001011}
1012
Douglas Gregor78a21012010-01-14 16:01:26 +00001013void ResultBuilder::AddResult(Result R) {
1014 assert(R.Kind != Result::RK_Declaration &&
1015 "Declaration results need more context");
1016 Results.push_back(R);
1017}
1018
Douglas Gregor3545ff42009-09-21 16:56:56 +00001019/// \brief Enter into a new scope.
1020void ResultBuilder::EnterNewScope() {
1021 ShadowMaps.push_back(ShadowMap());
1022}
1023
1024/// \brief Exit from the current scope.
1025void ResultBuilder::ExitScope() {
Douglas Gregor05e7ca32009-12-06 20:23:50 +00001026 for (ShadowMap::iterator E = ShadowMaps.back().begin(),
1027 EEnd = ShadowMaps.back().end();
1028 E != EEnd;
1029 ++E)
1030 E->second.Destroy();
1031
Douglas Gregor3545ff42009-09-21 16:56:56 +00001032 ShadowMaps.pop_back();
1033}
1034
Douglas Gregor9d64c5e2009-09-21 20:51:25 +00001035/// \brief Determines whether this given declaration will be found by
1036/// ordinary name lookup.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001037bool ResultBuilder::IsOrdinaryName(const NamedDecl *ND) const {
Douglas Gregor70febae2010-05-28 00:49:12 +00001038 ND = cast<NamedDecl>(ND->getUnderlyingDecl());
1039
Richard Smith541b38b2013-09-20 01:15:31 +00001040 // If name lookup finds a local extern declaration, then we are in a
1041 // context where it behaves like an ordinary name.
1042 unsigned IDNS = Decl::IDNS_Ordinary | Decl::IDNS_LocalExtern;
David Blaikiebbafb8a2012-03-11 07:00:24 +00001043 if (SemaRef.getLangOpts().CPlusPlus)
Douglas Gregor9858ed52010-06-15 20:26:51 +00001044 IDNS |= Decl::IDNS_Tag | Decl::IDNS_Namespace | Decl::IDNS_Member;
David Blaikiebbafb8a2012-03-11 07:00:24 +00001045 else if (SemaRef.getLangOpts().ObjC1) {
Douglas Gregor05fcf842010-11-02 20:36:02 +00001046 if (isa<ObjCIvarDecl>(ND))
1047 return true;
Douglas Gregor05fcf842010-11-02 20:36:02 +00001048 }
1049
Douglas Gregor9d64c5e2009-09-21 20:51:25 +00001050 return ND->getIdentifierNamespace() & IDNS;
1051}
1052
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001053/// \brief Determines whether this given declaration will be found by
Douglas Gregor70febae2010-05-28 00:49:12 +00001054/// ordinary name lookup but is not a type name.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001055bool ResultBuilder::IsOrdinaryNonTypeName(const NamedDecl *ND) const {
Douglas Gregor70febae2010-05-28 00:49:12 +00001056 ND = cast<NamedDecl>(ND->getUnderlyingDecl());
1057 if (isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND))
1058 return false;
1059
Richard Smith541b38b2013-09-20 01:15:31 +00001060 unsigned IDNS = Decl::IDNS_Ordinary | Decl::IDNS_LocalExtern;
David Blaikiebbafb8a2012-03-11 07:00:24 +00001061 if (SemaRef.getLangOpts().CPlusPlus)
Douglas Gregor9858ed52010-06-15 20:26:51 +00001062 IDNS |= Decl::IDNS_Tag | Decl::IDNS_Namespace | Decl::IDNS_Member;
David Blaikiebbafb8a2012-03-11 07:00:24 +00001063 else if (SemaRef.getLangOpts().ObjC1) {
Douglas Gregor05fcf842010-11-02 20:36:02 +00001064 if (isa<ObjCIvarDecl>(ND))
1065 return true;
Douglas Gregor05fcf842010-11-02 20:36:02 +00001066 }
1067
Douglas Gregor70febae2010-05-28 00:49:12 +00001068 return ND->getIdentifierNamespace() & IDNS;
1069}
1070
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001071bool ResultBuilder::IsIntegralConstantValue(const NamedDecl *ND) const {
Douglas Gregor85b50632010-07-28 21:50:18 +00001072 if (!IsOrdinaryNonTypeName(ND))
1073 return 0;
1074
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001075 if (const ValueDecl *VD = dyn_cast<ValueDecl>(ND->getUnderlyingDecl()))
Douglas Gregor85b50632010-07-28 21:50:18 +00001076 if (VD->getType()->isIntegralOrEnumerationType())
1077 return true;
1078
1079 return false;
1080}
1081
Douglas Gregor70febae2010-05-28 00:49:12 +00001082/// \brief Determines whether this given declaration will be found by
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001083/// ordinary name lookup.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001084bool ResultBuilder::IsOrdinaryNonValueName(const NamedDecl *ND) const {
Douglas Gregor70febae2010-05-28 00:49:12 +00001085 ND = cast<NamedDecl>(ND->getUnderlyingDecl());
1086
Richard Smith541b38b2013-09-20 01:15:31 +00001087 unsigned IDNS = Decl::IDNS_Ordinary | Decl::IDNS_LocalExtern;
David Blaikiebbafb8a2012-03-11 07:00:24 +00001088 if (SemaRef.getLangOpts().CPlusPlus)
John McCalle87beb22010-04-23 18:46:30 +00001089 IDNS |= Decl::IDNS_Tag | Decl::IDNS_Namespace;
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001090
1091 return (ND->getIdentifierNamespace() & IDNS) &&
Douglas Gregor70febae2010-05-28 00:49:12 +00001092 !isa<ValueDecl>(ND) && !isa<FunctionTemplateDecl>(ND) &&
1093 !isa<ObjCPropertyDecl>(ND);
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001094}
1095
Douglas Gregor3545ff42009-09-21 16:56:56 +00001096/// \brief Determines whether the given declaration is suitable as the
1097/// start of a C++ nested-name-specifier, e.g., a class or namespace.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001098bool ResultBuilder::IsNestedNameSpecifier(const NamedDecl *ND) const {
Douglas Gregor3545ff42009-09-21 16:56:56 +00001099 // Allow us to find class templates, too.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001100 if (const ClassTemplateDecl *ClassTemplate = dyn_cast<ClassTemplateDecl>(ND))
Douglas Gregor3545ff42009-09-21 16:56:56 +00001101 ND = ClassTemplate->getTemplatedDecl();
1102
1103 return SemaRef.isAcceptableNestedNameSpecifier(ND);
1104}
1105
1106/// \brief Determines whether the given declaration is an enumeration.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001107bool ResultBuilder::IsEnum(const NamedDecl *ND) const {
Douglas Gregor3545ff42009-09-21 16:56:56 +00001108 return isa<EnumDecl>(ND);
1109}
1110
1111/// \brief Determines whether the given declaration is a class or struct.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001112bool ResultBuilder::IsClassOrStruct(const NamedDecl *ND) const {
Douglas Gregor3545ff42009-09-21 16:56:56 +00001113 // Allow us to find class templates, too.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001114 if (const ClassTemplateDecl *ClassTemplate = dyn_cast<ClassTemplateDecl>(ND))
Douglas Gregor3545ff42009-09-21 16:56:56 +00001115 ND = ClassTemplate->getTemplatedDecl();
Joao Matosdc86f942012-08-31 18:45:21 +00001116
1117 // For purposes of this check, interfaces match too.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001118 if (const RecordDecl *RD = dyn_cast<RecordDecl>(ND))
Abramo Bagnara6150c882010-05-11 21:36:43 +00001119 return RD->getTagKind() == TTK_Class ||
Joao Matosdc86f942012-08-31 18:45:21 +00001120 RD->getTagKind() == TTK_Struct ||
1121 RD->getTagKind() == TTK_Interface;
Douglas Gregor3545ff42009-09-21 16:56:56 +00001122
1123 return false;
1124}
1125
1126/// \brief Determines whether the given declaration is a union.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001127bool ResultBuilder::IsUnion(const NamedDecl *ND) const {
Douglas Gregor3545ff42009-09-21 16:56:56 +00001128 // Allow us to find class templates, too.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001129 if (const ClassTemplateDecl *ClassTemplate = dyn_cast<ClassTemplateDecl>(ND))
Douglas Gregor3545ff42009-09-21 16:56:56 +00001130 ND = ClassTemplate->getTemplatedDecl();
1131
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001132 if (const RecordDecl *RD = dyn_cast<RecordDecl>(ND))
Abramo Bagnara6150c882010-05-11 21:36:43 +00001133 return RD->getTagKind() == TTK_Union;
Douglas Gregor3545ff42009-09-21 16:56:56 +00001134
1135 return false;
1136}
1137
1138/// \brief Determines whether the given declaration is a namespace.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001139bool ResultBuilder::IsNamespace(const NamedDecl *ND) const {
Douglas Gregor3545ff42009-09-21 16:56:56 +00001140 return isa<NamespaceDecl>(ND);
1141}
1142
1143/// \brief Determines whether the given declaration is a namespace or
1144/// namespace alias.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001145bool ResultBuilder::IsNamespaceOrAlias(const NamedDecl *ND) const {
Douglas Gregor3545ff42009-09-21 16:56:56 +00001146 return isa<NamespaceDecl>(ND) || isa<NamespaceAliasDecl>(ND);
1147}
1148
Douglas Gregor99fe2ad2009-12-11 17:31:05 +00001149/// \brief Determines whether the given declaration is a type.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001150bool ResultBuilder::IsType(const NamedDecl *ND) const {
1151 if (const UsingShadowDecl *Using = dyn_cast<UsingShadowDecl>(ND))
Douglas Gregor99fa2642010-08-24 01:06:58 +00001152 ND = Using->getTargetDecl();
1153
1154 return isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND);
Douglas Gregor3545ff42009-09-21 16:56:56 +00001155}
1156
Douglas Gregor99fe2ad2009-12-11 17:31:05 +00001157/// \brief Determines which members of a class should be visible via
1158/// "." or "->". Only value declarations, nested name specifiers, and
1159/// using declarations thereof should show up.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001160bool ResultBuilder::IsMember(const NamedDecl *ND) const {
1161 if (const UsingShadowDecl *Using = dyn_cast<UsingShadowDecl>(ND))
Douglas Gregor99fe2ad2009-12-11 17:31:05 +00001162 ND = Using->getTargetDecl();
1163
Douglas Gregor70788392009-12-11 18:14:22 +00001164 return isa<ValueDecl>(ND) || isa<FunctionTemplateDecl>(ND) ||
1165 isa<ObjCPropertyDecl>(ND);
Douglas Gregore412a5a2009-09-23 22:26:46 +00001166}
1167
Douglas Gregora817a192010-05-27 23:06:34 +00001168static bool isObjCReceiverType(ASTContext &C, QualType T) {
1169 T = C.getCanonicalType(T);
1170 switch (T->getTypeClass()) {
1171 case Type::ObjCObject:
1172 case Type::ObjCInterface:
1173 case Type::ObjCObjectPointer:
1174 return true;
1175
1176 case Type::Builtin:
1177 switch (cast<BuiltinType>(T)->getKind()) {
1178 case BuiltinType::ObjCId:
1179 case BuiltinType::ObjCClass:
1180 case BuiltinType::ObjCSel:
1181 return true;
1182
1183 default:
1184 break;
1185 }
1186 return false;
1187
1188 default:
1189 break;
1190 }
1191
David Blaikiebbafb8a2012-03-11 07:00:24 +00001192 if (!C.getLangOpts().CPlusPlus)
Douglas Gregora817a192010-05-27 23:06:34 +00001193 return false;
1194
1195 // FIXME: We could perform more analysis here to determine whether a
1196 // particular class type has any conversions to Objective-C types. For now,
1197 // just accept all class types.
1198 return T->isDependentType() || T->isRecordType();
1199}
1200
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001201bool ResultBuilder::IsObjCMessageReceiver(const NamedDecl *ND) const {
Douglas Gregora817a192010-05-27 23:06:34 +00001202 QualType T = getDeclUsageType(SemaRef.Context, ND);
1203 if (T.isNull())
1204 return false;
1205
1206 T = SemaRef.Context.getBaseElementType(T);
1207 return isObjCReceiverType(SemaRef.Context, T);
1208}
1209
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001210bool ResultBuilder::IsObjCMessageReceiverOrLambdaCapture(const NamedDecl *ND) const {
Douglas Gregord8c61782012-02-15 15:34:24 +00001211 if (IsObjCMessageReceiver(ND))
1212 return true;
1213
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001214 const VarDecl *Var = dyn_cast<VarDecl>(ND);
Douglas Gregord8c61782012-02-15 15:34:24 +00001215 if (!Var)
1216 return false;
1217
1218 return Var->hasLocalStorage() && !Var->hasAttr<BlocksAttr>();
1219}
1220
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001221bool ResultBuilder::IsObjCCollection(const NamedDecl *ND) const {
David Blaikiebbafb8a2012-03-11 07:00:24 +00001222 if ((SemaRef.getLangOpts().CPlusPlus && !IsOrdinaryName(ND)) ||
1223 (!SemaRef.getLangOpts().CPlusPlus && !IsOrdinaryNonTypeName(ND)))
Douglas Gregor68762e72010-08-23 21:17:50 +00001224 return false;
1225
1226 QualType T = getDeclUsageType(SemaRef.Context, ND);
1227 if (T.isNull())
1228 return false;
1229
1230 T = SemaRef.Context.getBaseElementType(T);
1231 return T->isObjCObjectType() || T->isObjCObjectPointerType() ||
1232 T->isObjCIdType() ||
David Blaikiebbafb8a2012-03-11 07:00:24 +00001233 (SemaRef.getLangOpts().CPlusPlus && T->isRecordType());
Douglas Gregor68762e72010-08-23 21:17:50 +00001234}
Douglas Gregora817a192010-05-27 23:06:34 +00001235
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001236bool ResultBuilder::IsImpossibleToSatisfy(const NamedDecl *ND) const {
Douglas Gregor0ac41382010-09-23 23:01:17 +00001237 return false;
1238}
1239
James Dennettf1243872012-06-17 05:33:25 +00001240/// \brief Determines whether the given declaration is an Objective-C
Douglas Gregor2b8162b2010-01-14 16:08:12 +00001241/// instance variable.
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00001242bool ResultBuilder::IsObjCIvar(const NamedDecl *ND) const {
Douglas Gregor2b8162b2010-01-14 16:08:12 +00001243 return isa<ObjCIvarDecl>(ND);
1244}
1245
Douglas Gregorc580c522010-01-14 01:09:38 +00001246namespace {
1247 /// \brief Visible declaration consumer that adds a code-completion result
1248 /// for each visible declaration.
1249 class CodeCompletionDeclConsumer : public VisibleDeclConsumer {
1250 ResultBuilder &Results;
1251 DeclContext *CurContext;
1252
1253 public:
1254 CodeCompletionDeclConsumer(ResultBuilder &Results, DeclContext *CurContext)
1255 : Results(Results), CurContext(CurContext) { }
Craig Toppere14c0f82014-03-12 04:55:44 +00001256
1257 void FoundDecl(NamedDecl *ND, NamedDecl *Hiding, DeclContext *Ctx,
1258 bool InBaseClass) override {
Erik Verbruggen2e657ff2011-10-06 07:27:49 +00001259 bool Accessible = true;
Douglas Gregor03ba1882011-11-03 16:51:37 +00001260 if (Ctx)
1261 Accessible = Results.getSema().IsSimplyAccessible(ND, Ctx);
1262
Douglas Gregor0a0e2b32013-01-31 04:52:16 +00001263 ResultBuilder::Result Result(ND, Results.getBasePriority(ND), 0, false,
1264 Accessible);
Erik Verbruggen2e657ff2011-10-06 07:27:49 +00001265 Results.AddResult(Result, CurContext, Hiding, InBaseClass);
Douglas Gregorc580c522010-01-14 01:09:38 +00001266 }
1267 };
1268}
1269
Douglas Gregor3545ff42009-09-21 16:56:56 +00001270/// \brief Add type specifiers for the current language as keyword results.
Douglas Gregorf98e6a22010-01-13 23:51:12 +00001271static void AddTypeSpecifierResults(const LangOptions &LangOpts,
Douglas Gregor3545ff42009-09-21 16:56:56 +00001272 ResultBuilder &Results) {
John McCall276321a2010-08-25 06:19:51 +00001273 typedef CodeCompletionResult Result;
Douglas Gregora2db7932010-05-26 22:00:08 +00001274 Results.AddResult(Result("short", CCP_Type));
1275 Results.AddResult(Result("long", CCP_Type));
1276 Results.AddResult(Result("signed", CCP_Type));
1277 Results.AddResult(Result("unsigned", CCP_Type));
1278 Results.AddResult(Result("void", CCP_Type));
1279 Results.AddResult(Result("char", CCP_Type));
1280 Results.AddResult(Result("int", CCP_Type));
1281 Results.AddResult(Result("float", CCP_Type));
1282 Results.AddResult(Result("double", CCP_Type));
1283 Results.AddResult(Result("enum", CCP_Type));
1284 Results.AddResult(Result("struct", CCP_Type));
1285 Results.AddResult(Result("union", CCP_Type));
1286 Results.AddResult(Result("const", CCP_Type));
1287 Results.AddResult(Result("volatile", CCP_Type));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001288
Douglas Gregor3545ff42009-09-21 16:56:56 +00001289 if (LangOpts.C99) {
1290 // C99-specific
Douglas Gregora2db7932010-05-26 22:00:08 +00001291 Results.AddResult(Result("_Complex", CCP_Type));
1292 Results.AddResult(Result("_Imaginary", CCP_Type));
1293 Results.AddResult(Result("_Bool", CCP_Type));
1294 Results.AddResult(Result("restrict", CCP_Type));
Douglas Gregor3545ff42009-09-21 16:56:56 +00001295 }
1296
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00001297 CodeCompletionBuilder Builder(Results.getAllocator(),
1298 Results.getCodeCompletionTUInfo());
Douglas Gregor3545ff42009-09-21 16:56:56 +00001299 if (LangOpts.CPlusPlus) {
1300 // C++-specific
Douglas Gregor9dcf58a2010-09-20 21:11:48 +00001301 Results.AddResult(Result("bool", CCP_Type +
1302 (LangOpts.ObjC1? CCD_bool_in_ObjC : 0)));
Douglas Gregora2db7932010-05-26 22:00:08 +00001303 Results.AddResult(Result("class", CCP_Type));
1304 Results.AddResult(Result("wchar_t", CCP_Type));
Douglas Gregor3545ff42009-09-21 16:56:56 +00001305
Douglas Gregorf4c33342010-05-28 00:22:41 +00001306 // typename qualified-id
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001307 Builder.AddTypedTextChunk("typename");
1308 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1309 Builder.AddPlaceholderChunk("qualifier");
1310 Builder.AddTextChunk("::");
1311 Builder.AddPlaceholderChunk("name");
1312 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf64acca2010-05-25 21:41:55 +00001313
Richard Smith2bf7fdb2013-01-02 11:42:31 +00001314 if (LangOpts.CPlusPlus11) {
Douglas Gregora2db7932010-05-26 22:00:08 +00001315 Results.AddResult(Result("auto", CCP_Type));
1316 Results.AddResult(Result("char16_t", CCP_Type));
1317 Results.AddResult(Result("char32_t", CCP_Type));
Douglas Gregorf4c33342010-05-28 00:22:41 +00001318
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001319 Builder.AddTypedTextChunk("decltype");
1320 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1321 Builder.AddPlaceholderChunk("expression");
1322 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1323 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor3545ff42009-09-21 16:56:56 +00001324 }
1325 }
1326
1327 // GNU extensions
1328 if (LangOpts.GNUMode) {
1329 // FIXME: Enable when we actually support decimal floating point.
Douglas Gregor78a21012010-01-14 16:01:26 +00001330 // Results.AddResult(Result("_Decimal32"));
1331 // Results.AddResult(Result("_Decimal64"));
1332 // Results.AddResult(Result("_Decimal128"));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001333
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001334 Builder.AddTypedTextChunk("typeof");
1335 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1336 Builder.AddPlaceholderChunk("expression");
1337 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf4c33342010-05-28 00:22:41 +00001338
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001339 Builder.AddTypedTextChunk("typeof");
1340 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1341 Builder.AddPlaceholderChunk("type");
1342 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1343 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor3545ff42009-09-21 16:56:56 +00001344 }
1345}
1346
John McCallfaf5fb42010-08-26 23:41:50 +00001347static void AddStorageSpecifiers(Sema::ParserCompletionContext CCC,
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001348 const LangOptions &LangOpts,
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001349 ResultBuilder &Results) {
John McCall276321a2010-08-25 06:19:51 +00001350 typedef CodeCompletionResult Result;
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001351 // Note: we don't suggest either "auto" or "register", because both
1352 // are pointless as storage specifiers. Elsewhere, we suggest "auto"
1353 // in C++0x as a type specifier.
Douglas Gregor78a21012010-01-14 16:01:26 +00001354 Results.AddResult(Result("extern"));
1355 Results.AddResult(Result("static"));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001356}
1357
John McCallfaf5fb42010-08-26 23:41:50 +00001358static void AddFunctionSpecifiers(Sema::ParserCompletionContext CCC,
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001359 const LangOptions &LangOpts,
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001360 ResultBuilder &Results) {
John McCall276321a2010-08-25 06:19:51 +00001361 typedef CodeCompletionResult Result;
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001362 switch (CCC) {
John McCallfaf5fb42010-08-26 23:41:50 +00001363 case Sema::PCC_Class:
1364 case Sema::PCC_MemberTemplate:
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001365 if (LangOpts.CPlusPlus) {
Douglas Gregor78a21012010-01-14 16:01:26 +00001366 Results.AddResult(Result("explicit"));
1367 Results.AddResult(Result("friend"));
1368 Results.AddResult(Result("mutable"));
1369 Results.AddResult(Result("virtual"));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001370 }
1371 // Fall through
1372
John McCallfaf5fb42010-08-26 23:41:50 +00001373 case Sema::PCC_ObjCInterface:
1374 case Sema::PCC_ObjCImplementation:
1375 case Sema::PCC_Namespace:
1376 case Sema::PCC_Template:
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001377 if (LangOpts.CPlusPlus || LangOpts.C99)
Douglas Gregor78a21012010-01-14 16:01:26 +00001378 Results.AddResult(Result("inline"));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001379 break;
1380
John McCallfaf5fb42010-08-26 23:41:50 +00001381 case Sema::PCC_ObjCInstanceVariableList:
1382 case Sema::PCC_Expression:
1383 case Sema::PCC_Statement:
1384 case Sema::PCC_ForInit:
1385 case Sema::PCC_Condition:
1386 case Sema::PCC_RecoveryInFunction:
1387 case Sema::PCC_Type:
Douglas Gregor5e35d592010-09-14 23:59:36 +00001388 case Sema::PCC_ParenthesizedExpression:
Douglas Gregor80039242011-02-15 20:33:25 +00001389 case Sema::PCC_LocalDeclarationSpecifiers:
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001390 break;
1391 }
1392}
1393
Douglas Gregorf98e6a22010-01-13 23:51:12 +00001394static void AddObjCExpressionResults(ResultBuilder &Results, bool NeedAt);
1395static void AddObjCStatementResults(ResultBuilder &Results, bool NeedAt);
1396static void AddObjCVisibilityResults(const LangOptions &LangOpts,
Douglas Gregor48d46252010-01-13 21:54:15 +00001397 ResultBuilder &Results,
1398 bool NeedAt);
Douglas Gregorf98e6a22010-01-13 23:51:12 +00001399static void AddObjCImplementationResults(const LangOptions &LangOpts,
Douglas Gregorf1934162010-01-13 21:24:21 +00001400 ResultBuilder &Results,
1401 bool NeedAt);
Douglas Gregorf98e6a22010-01-13 23:51:12 +00001402static void AddObjCInterfaceResults(const LangOptions &LangOpts,
Douglas Gregorf1934162010-01-13 21:24:21 +00001403 ResultBuilder &Results,
1404 bool NeedAt);
Douglas Gregorf98e6a22010-01-13 23:51:12 +00001405static void AddObjCTopLevelResults(ResultBuilder &Results, bool NeedAt);
Douglas Gregorf1934162010-01-13 21:24:21 +00001406
Douglas Gregorf4c33342010-05-28 00:22:41 +00001407static void AddTypedefResult(ResultBuilder &Results) {
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00001408 CodeCompletionBuilder Builder(Results.getAllocator(),
1409 Results.getCodeCompletionTUInfo());
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001410 Builder.AddTypedTextChunk("typedef");
1411 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1412 Builder.AddPlaceholderChunk("type");
1413 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1414 Builder.AddPlaceholderChunk("name");
1415 Results.AddResult(CodeCompletionResult(Builder.TakeString()));
Douglas Gregorf4c33342010-05-28 00:22:41 +00001416}
1417
John McCallfaf5fb42010-08-26 23:41:50 +00001418static bool WantTypesInContext(Sema::ParserCompletionContext CCC,
Douglas Gregor70febae2010-05-28 00:49:12 +00001419 const LangOptions &LangOpts) {
Douglas Gregor70febae2010-05-28 00:49:12 +00001420 switch (CCC) {
John McCallfaf5fb42010-08-26 23:41:50 +00001421 case Sema::PCC_Namespace:
1422 case Sema::PCC_Class:
1423 case Sema::PCC_ObjCInstanceVariableList:
1424 case Sema::PCC_Template:
1425 case Sema::PCC_MemberTemplate:
1426 case Sema::PCC_Statement:
1427 case Sema::PCC_RecoveryInFunction:
1428 case Sema::PCC_Type:
Douglas Gregor5e35d592010-09-14 23:59:36 +00001429 case Sema::PCC_ParenthesizedExpression:
Douglas Gregor80039242011-02-15 20:33:25 +00001430 case Sema::PCC_LocalDeclarationSpecifiers:
Douglas Gregor70febae2010-05-28 00:49:12 +00001431 return true;
1432
John McCallfaf5fb42010-08-26 23:41:50 +00001433 case Sema::PCC_Expression:
1434 case Sema::PCC_Condition:
Douglas Gregor5e35d592010-09-14 23:59:36 +00001435 return LangOpts.CPlusPlus;
1436
1437 case Sema::PCC_ObjCInterface:
1438 case Sema::PCC_ObjCImplementation:
Douglas Gregor70febae2010-05-28 00:49:12 +00001439 return false;
1440
John McCallfaf5fb42010-08-26 23:41:50 +00001441 case Sema::PCC_ForInit:
Douglas Gregor5e35d592010-09-14 23:59:36 +00001442 return LangOpts.CPlusPlus || LangOpts.ObjC1 || LangOpts.C99;
Douglas Gregor70febae2010-05-28 00:49:12 +00001443 }
David Blaikie8a40f702012-01-17 06:56:22 +00001444
1445 llvm_unreachable("Invalid ParserCompletionContext!");
Douglas Gregor70febae2010-05-28 00:49:12 +00001446}
1447
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00001448static PrintingPolicy getCompletionPrintingPolicy(const ASTContext &Context,
1449 const Preprocessor &PP) {
1450 PrintingPolicy Policy = Sema::getPrintingPolicy(Context, PP);
Douglas Gregore5c79d52011-10-18 21:20:17 +00001451 Policy.AnonymousTagLocations = false;
1452 Policy.SuppressStrongLifetime = true;
Douglas Gregor2e10cf92011-11-03 00:16:13 +00001453 Policy.SuppressUnwrittenScope = true;
Douglas Gregore5c79d52011-10-18 21:20:17 +00001454 return Policy;
1455}
1456
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00001457/// \brief Retrieve a printing policy suitable for code completion.
1458static PrintingPolicy getCompletionPrintingPolicy(Sema &S) {
1459 return getCompletionPrintingPolicy(S.Context, S.PP);
1460}
1461
Douglas Gregore5c79d52011-10-18 21:20:17 +00001462/// \brief Retrieve the string representation of the given type as a string
1463/// that has the appropriate lifetime for code completion.
1464///
1465/// This routine provides a fast path where we provide constant strings for
1466/// common type names.
1467static const char *GetCompletionTypeString(QualType T,
1468 ASTContext &Context,
1469 const PrintingPolicy &Policy,
1470 CodeCompletionAllocator &Allocator) {
1471 if (!T.getLocalQualifiers()) {
1472 // Built-in type names are constant strings.
1473 if (const BuiltinType *BT = dyn_cast<BuiltinType>(T))
Argyrios Kyrtzidisbbff3da2012-05-05 04:20:28 +00001474 return BT->getNameAsCString(Policy);
Douglas Gregore5c79d52011-10-18 21:20:17 +00001475
1476 // Anonymous tag types are constant strings.
1477 if (const TagType *TagT = dyn_cast<TagType>(T))
1478 if (TagDecl *Tag = TagT->getDecl())
John McCall5ea95772013-03-09 00:54:27 +00001479 if (!Tag->hasNameForLinkage()) {
Douglas Gregore5c79d52011-10-18 21:20:17 +00001480 switch (Tag->getTagKind()) {
1481 case TTK_Struct: return "struct <anonymous>";
Joao Matosdc86f942012-08-31 18:45:21 +00001482 case TTK_Interface: return "__interface <anonymous>";
1483 case TTK_Class: return "class <anonymous>";
Douglas Gregore5c79d52011-10-18 21:20:17 +00001484 case TTK_Union: return "union <anonymous>";
1485 case TTK_Enum: return "enum <anonymous>";
1486 }
1487 }
1488 }
1489
1490 // Slow path: format the type as a string.
1491 std::string Result;
1492 T.getAsStringInternal(Result, Policy);
1493 return Allocator.CopyString(Result);
1494}
1495
Douglas Gregord8c61782012-02-15 15:34:24 +00001496/// \brief Add a completion for "this", if we're in a member function.
1497static void addThisCompletion(Sema &S, ResultBuilder &Results) {
1498 QualType ThisTy = S.getCurrentThisType();
1499 if (ThisTy.isNull())
1500 return;
1501
1502 CodeCompletionAllocator &Allocator = Results.getAllocator();
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00001503 CodeCompletionBuilder Builder(Allocator, Results.getCodeCompletionTUInfo());
Douglas Gregord8c61782012-02-15 15:34:24 +00001504 PrintingPolicy Policy = getCompletionPrintingPolicy(S);
1505 Builder.AddResultTypeChunk(GetCompletionTypeString(ThisTy,
1506 S.Context,
1507 Policy,
1508 Allocator));
1509 Builder.AddTypedTextChunk("this");
Joao Matosdc86f942012-08-31 18:45:21 +00001510 Results.AddResult(CodeCompletionResult(Builder.TakeString()));
Douglas Gregord8c61782012-02-15 15:34:24 +00001511}
1512
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001513/// \brief Add language constructs that show up for "ordinary" names.
John McCallfaf5fb42010-08-26 23:41:50 +00001514static void AddOrdinaryNameResults(Sema::ParserCompletionContext CCC,
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001515 Scope *S,
1516 Sema &SemaRef,
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001517 ResultBuilder &Results) {
Douglas Gregore5c79d52011-10-18 21:20:17 +00001518 CodeCompletionAllocator &Allocator = Results.getAllocator();
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00001519 CodeCompletionBuilder Builder(Allocator, Results.getCodeCompletionTUInfo());
Douglas Gregore5c79d52011-10-18 21:20:17 +00001520 PrintingPolicy Policy = getCompletionPrintingPolicy(SemaRef);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001521
John McCall276321a2010-08-25 06:19:51 +00001522 typedef CodeCompletionResult Result;
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001523 switch (CCC) {
John McCallfaf5fb42010-08-26 23:41:50 +00001524 case Sema::PCC_Namespace:
David Blaikiebbafb8a2012-03-11 07:00:24 +00001525 if (SemaRef.getLangOpts().CPlusPlus) {
Douglas Gregorf4c33342010-05-28 00:22:41 +00001526 if (Results.includeCodePatterns()) {
1527 // namespace <identifier> { declarations }
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001528 Builder.AddTypedTextChunk("namespace");
1529 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1530 Builder.AddPlaceholderChunk("identifier");
1531 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
1532 Builder.AddPlaceholderChunk("declarations");
1533 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
1534 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
1535 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf4c33342010-05-28 00:22:41 +00001536 }
1537
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001538 // namespace identifier = identifier ;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001539 Builder.AddTypedTextChunk("namespace");
1540 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1541 Builder.AddPlaceholderChunk("name");
1542 Builder.AddChunk(CodeCompletionString::CK_Equal);
1543 Builder.AddPlaceholderChunk("namespace");
1544 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001545
1546 // Using directives
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001547 Builder.AddTypedTextChunk("using");
1548 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1549 Builder.AddTextChunk("namespace");
1550 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1551 Builder.AddPlaceholderChunk("identifier");
1552 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001553
1554 // asm(string-literal)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001555 Builder.AddTypedTextChunk("asm");
1556 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1557 Builder.AddPlaceholderChunk("string-literal");
1558 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1559 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001560
Douglas Gregorf4c33342010-05-28 00:22:41 +00001561 if (Results.includeCodePatterns()) {
1562 // Explicit template instantiation
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001563 Builder.AddTypedTextChunk("template");
1564 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1565 Builder.AddPlaceholderChunk("declaration");
1566 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf4c33342010-05-28 00:22:41 +00001567 }
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001568 }
Douglas Gregorf1934162010-01-13 21:24:21 +00001569
David Blaikiebbafb8a2012-03-11 07:00:24 +00001570 if (SemaRef.getLangOpts().ObjC1)
Douglas Gregorf98e6a22010-01-13 23:51:12 +00001571 AddObjCTopLevelResults(Results, true);
Douglas Gregorf1934162010-01-13 21:24:21 +00001572
Douglas Gregorf4c33342010-05-28 00:22:41 +00001573 AddTypedefResult(Results);
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001574 // Fall through
1575
John McCallfaf5fb42010-08-26 23:41:50 +00001576 case Sema::PCC_Class:
David Blaikiebbafb8a2012-03-11 07:00:24 +00001577 if (SemaRef.getLangOpts().CPlusPlus) {
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001578 // Using declaration
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001579 Builder.AddTypedTextChunk("using");
1580 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1581 Builder.AddPlaceholderChunk("qualifier");
1582 Builder.AddTextChunk("::");
1583 Builder.AddPlaceholderChunk("name");
1584 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001585
Douglas Gregorf4c33342010-05-28 00:22:41 +00001586 // using typename qualifier::name (only in a dependent context)
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001587 if (SemaRef.CurContext->isDependentContext()) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001588 Builder.AddTypedTextChunk("using");
1589 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1590 Builder.AddTextChunk("typename");
1591 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1592 Builder.AddPlaceholderChunk("qualifier");
1593 Builder.AddTextChunk("::");
1594 Builder.AddPlaceholderChunk("name");
1595 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001596 }
1597
John McCallfaf5fb42010-08-26 23:41:50 +00001598 if (CCC == Sema::PCC_Class) {
Douglas Gregorf4c33342010-05-28 00:22:41 +00001599 AddTypedefResult(Results);
1600
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001601 // public:
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001602 Builder.AddTypedTextChunk("public");
Douglas Gregor9489cdf2012-04-10 17:56:28 +00001603 if (Results.includeCodePatterns())
1604 Builder.AddChunk(CodeCompletionString::CK_Colon);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001605 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001606
1607 // protected:
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001608 Builder.AddTypedTextChunk("protected");
Douglas Gregor9489cdf2012-04-10 17:56:28 +00001609 if (Results.includeCodePatterns())
1610 Builder.AddChunk(CodeCompletionString::CK_Colon);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001611 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001612
1613 // private:
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001614 Builder.AddTypedTextChunk("private");
Douglas Gregor9489cdf2012-04-10 17:56:28 +00001615 if (Results.includeCodePatterns())
1616 Builder.AddChunk(CodeCompletionString::CK_Colon);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001617 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001618 }
1619 }
1620 // Fall through
1621
John McCallfaf5fb42010-08-26 23:41:50 +00001622 case Sema::PCC_Template:
1623 case Sema::PCC_MemberTemplate:
David Blaikiebbafb8a2012-03-11 07:00:24 +00001624 if (SemaRef.getLangOpts().CPlusPlus && Results.includeCodePatterns()) {
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001625 // template < parameters >
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001626 Builder.AddTypedTextChunk("template");
1627 Builder.AddChunk(CodeCompletionString::CK_LeftAngle);
1628 Builder.AddPlaceholderChunk("parameters");
1629 Builder.AddChunk(CodeCompletionString::CK_RightAngle);
1630 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001631 }
1632
David Blaikiebbafb8a2012-03-11 07:00:24 +00001633 AddStorageSpecifiers(CCC, SemaRef.getLangOpts(), Results);
1634 AddFunctionSpecifiers(CCC, SemaRef.getLangOpts(), Results);
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001635 break;
1636
John McCallfaf5fb42010-08-26 23:41:50 +00001637 case Sema::PCC_ObjCInterface:
David Blaikiebbafb8a2012-03-11 07:00:24 +00001638 AddObjCInterfaceResults(SemaRef.getLangOpts(), Results, true);
1639 AddStorageSpecifiers(CCC, SemaRef.getLangOpts(), Results);
1640 AddFunctionSpecifiers(CCC, SemaRef.getLangOpts(), Results);
Douglas Gregorf1934162010-01-13 21:24:21 +00001641 break;
1642
John McCallfaf5fb42010-08-26 23:41:50 +00001643 case Sema::PCC_ObjCImplementation:
David Blaikiebbafb8a2012-03-11 07:00:24 +00001644 AddObjCImplementationResults(SemaRef.getLangOpts(), Results, true);
1645 AddStorageSpecifiers(CCC, SemaRef.getLangOpts(), Results);
1646 AddFunctionSpecifiers(CCC, SemaRef.getLangOpts(), Results);
Douglas Gregorf1934162010-01-13 21:24:21 +00001647 break;
1648
John McCallfaf5fb42010-08-26 23:41:50 +00001649 case Sema::PCC_ObjCInstanceVariableList:
David Blaikiebbafb8a2012-03-11 07:00:24 +00001650 AddObjCVisibilityResults(SemaRef.getLangOpts(), Results, true);
Douglas Gregor48d46252010-01-13 21:54:15 +00001651 break;
1652
John McCallfaf5fb42010-08-26 23:41:50 +00001653 case Sema::PCC_RecoveryInFunction:
1654 case Sema::PCC_Statement: {
Douglas Gregorf4c33342010-05-28 00:22:41 +00001655 AddTypedefResult(Results);
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001656
David Blaikiebbafb8a2012-03-11 07:00:24 +00001657 if (SemaRef.getLangOpts().CPlusPlus && Results.includeCodePatterns() &&
1658 SemaRef.getLangOpts().CXXExceptions) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001659 Builder.AddTypedTextChunk("try");
1660 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
1661 Builder.AddPlaceholderChunk("statements");
1662 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
1663 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
1664 Builder.AddTextChunk("catch");
1665 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1666 Builder.AddPlaceholderChunk("declaration");
1667 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1668 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
1669 Builder.AddPlaceholderChunk("statements");
1670 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
1671 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
1672 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001673 }
David Blaikiebbafb8a2012-03-11 07:00:24 +00001674 if (SemaRef.getLangOpts().ObjC1)
Douglas Gregorf98e6a22010-01-13 23:51:12 +00001675 AddObjCStatementResults(Results, true);
Douglas Gregorf1934162010-01-13 21:24:21 +00001676
Douglas Gregorf64acca2010-05-25 21:41:55 +00001677 if (Results.includeCodePatterns()) {
1678 // if (condition) { statements }
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001679 Builder.AddTypedTextChunk("if");
1680 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
David Blaikiebbafb8a2012-03-11 07:00:24 +00001681 if (SemaRef.getLangOpts().CPlusPlus)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001682 Builder.AddPlaceholderChunk("condition");
Douglas Gregorf64acca2010-05-25 21:41:55 +00001683 else
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001684 Builder.AddPlaceholderChunk("expression");
1685 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1686 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
1687 Builder.AddPlaceholderChunk("statements");
1688 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
1689 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
1690 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001691
Douglas Gregorf64acca2010-05-25 21:41:55 +00001692 // switch (condition) { }
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001693 Builder.AddTypedTextChunk("switch");
1694 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
David Blaikiebbafb8a2012-03-11 07:00:24 +00001695 if (SemaRef.getLangOpts().CPlusPlus)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001696 Builder.AddPlaceholderChunk("condition");
Douglas Gregorf64acca2010-05-25 21:41:55 +00001697 else
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001698 Builder.AddPlaceholderChunk("expression");
1699 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1700 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
1701 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
1702 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
1703 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf64acca2010-05-25 21:41:55 +00001704 }
1705
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001706 // Switch-specific statements.
John McCallaab3e412010-08-25 08:40:02 +00001707 if (!SemaRef.getCurFunction()->SwitchStack.empty()) {
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001708 // case expression:
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001709 Builder.AddTypedTextChunk("case");
1710 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1711 Builder.AddPlaceholderChunk("expression");
1712 Builder.AddChunk(CodeCompletionString::CK_Colon);
1713 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001714
1715 // default:
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001716 Builder.AddTypedTextChunk("default");
1717 Builder.AddChunk(CodeCompletionString::CK_Colon);
1718 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001719 }
1720
Douglas Gregorf64acca2010-05-25 21:41:55 +00001721 if (Results.includeCodePatterns()) {
1722 /// while (condition) { statements }
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001723 Builder.AddTypedTextChunk("while");
1724 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
David Blaikiebbafb8a2012-03-11 07:00:24 +00001725 if (SemaRef.getLangOpts().CPlusPlus)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001726 Builder.AddPlaceholderChunk("condition");
Douglas Gregorf64acca2010-05-25 21:41:55 +00001727 else
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001728 Builder.AddPlaceholderChunk("expression");
1729 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1730 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
1731 Builder.AddPlaceholderChunk("statements");
1732 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
1733 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
1734 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf64acca2010-05-25 21:41:55 +00001735
1736 // do { statements } while ( expression );
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001737 Builder.AddTypedTextChunk("do");
1738 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
1739 Builder.AddPlaceholderChunk("statements");
1740 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
1741 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
1742 Builder.AddTextChunk("while");
1743 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1744 Builder.AddPlaceholderChunk("expression");
1745 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1746 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001747
Douglas Gregorf64acca2010-05-25 21:41:55 +00001748 // for ( for-init-statement ; condition ; expression ) { statements }
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001749 Builder.AddTypedTextChunk("for");
1750 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
David Blaikiebbafb8a2012-03-11 07:00:24 +00001751 if (SemaRef.getLangOpts().CPlusPlus || SemaRef.getLangOpts().C99)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001752 Builder.AddPlaceholderChunk("init-statement");
Douglas Gregorf64acca2010-05-25 21:41:55 +00001753 else
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001754 Builder.AddPlaceholderChunk("init-expression");
1755 Builder.AddChunk(CodeCompletionString::CK_SemiColon);
1756 Builder.AddPlaceholderChunk("condition");
1757 Builder.AddChunk(CodeCompletionString::CK_SemiColon);
1758 Builder.AddPlaceholderChunk("inc-expression");
1759 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1760 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
1761 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
1762 Builder.AddPlaceholderChunk("statements");
1763 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
1764 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
1765 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf64acca2010-05-25 21:41:55 +00001766 }
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001767
1768 if (S->getContinueParent()) {
1769 // continue ;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001770 Builder.AddTypedTextChunk("continue");
1771 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001772 }
1773
1774 if (S->getBreakParent()) {
1775 // break ;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001776 Builder.AddTypedTextChunk("break");
1777 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001778 }
1779
1780 // "return expression ;" or "return ;", depending on whether we
1781 // know the function is void or not.
1782 bool isVoid = false;
1783 if (FunctionDecl *Function = dyn_cast<FunctionDecl>(SemaRef.CurContext))
Alp Toker314cc812014-01-25 16:55:45 +00001784 isVoid = Function->getReturnType()->isVoidType();
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001785 else if (ObjCMethodDecl *Method
1786 = dyn_cast<ObjCMethodDecl>(SemaRef.CurContext))
Alp Toker314cc812014-01-25 16:55:45 +00001787 isVoid = Method->getReturnType()->isVoidType();
Douglas Gregor9a28e842010-03-01 23:15:13 +00001788 else if (SemaRef.getCurBlock() &&
1789 !SemaRef.getCurBlock()->ReturnType.isNull())
1790 isVoid = SemaRef.getCurBlock()->ReturnType->isVoidType();
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001791 Builder.AddTypedTextChunk("return");
Douglas Gregor44272ca2010-02-18 04:06:48 +00001792 if (!isVoid) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001793 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1794 Builder.AddPlaceholderChunk("expression");
Douglas Gregor44272ca2010-02-18 04:06:48 +00001795 }
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001796 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001797
Douglas Gregorf4c33342010-05-28 00:22:41 +00001798 // goto identifier ;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001799 Builder.AddTypedTextChunk("goto");
1800 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1801 Builder.AddPlaceholderChunk("label");
1802 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001803
Douglas Gregorf4c33342010-05-28 00:22:41 +00001804 // Using directives
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001805 Builder.AddTypedTextChunk("using");
1806 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1807 Builder.AddTextChunk("namespace");
1808 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1809 Builder.AddPlaceholderChunk("identifier");
1810 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001811 }
1812
1813 // Fall through (for statement expressions).
John McCallfaf5fb42010-08-26 23:41:50 +00001814 case Sema::PCC_ForInit:
1815 case Sema::PCC_Condition:
David Blaikiebbafb8a2012-03-11 07:00:24 +00001816 AddStorageSpecifiers(CCC, SemaRef.getLangOpts(), Results);
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001817 // Fall through: conditions and statements can have expressions.
1818
Douglas Gregor5e35d592010-09-14 23:59:36 +00001819 case Sema::PCC_ParenthesizedExpression:
David Blaikiebbafb8a2012-03-11 07:00:24 +00001820 if (SemaRef.getLangOpts().ObjCAutoRefCount &&
John McCall31168b02011-06-15 23:02:42 +00001821 CCC == Sema::PCC_ParenthesizedExpression) {
1822 // (__bridge <type>)<expression>
1823 Builder.AddTypedTextChunk("__bridge");
1824 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1825 Builder.AddPlaceholderChunk("type");
1826 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1827 Builder.AddPlaceholderChunk("expression");
1828 Results.AddResult(Result(Builder.TakeString()));
1829
1830 // (__bridge_transfer <Objective-C type>)<expression>
1831 Builder.AddTypedTextChunk("__bridge_transfer");
1832 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1833 Builder.AddPlaceholderChunk("Objective-C type");
1834 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1835 Builder.AddPlaceholderChunk("expression");
1836 Results.AddResult(Result(Builder.TakeString()));
1837
1838 // (__bridge_retained <CF type>)<expression>
1839 Builder.AddTypedTextChunk("__bridge_retained");
1840 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1841 Builder.AddPlaceholderChunk("CF type");
1842 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1843 Builder.AddPlaceholderChunk("expression");
1844 Results.AddResult(Result(Builder.TakeString()));
1845 }
1846 // Fall through
1847
John McCallfaf5fb42010-08-26 23:41:50 +00001848 case Sema::PCC_Expression: {
David Blaikiebbafb8a2012-03-11 07:00:24 +00001849 if (SemaRef.getLangOpts().CPlusPlus) {
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001850 // 'this', if we're in a non-static member function.
Douglas Gregord8c61782012-02-15 15:34:24 +00001851 addThisCompletion(SemaRef, Results);
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001852
Douglas Gregore5c79d52011-10-18 21:20:17 +00001853 // true
1854 Builder.AddResultTypeChunk("bool");
1855 Builder.AddTypedTextChunk("true");
1856 Results.AddResult(Result(Builder.TakeString()));
1857
1858 // false
1859 Builder.AddResultTypeChunk("bool");
1860 Builder.AddTypedTextChunk("false");
1861 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001862
David Blaikiebbafb8a2012-03-11 07:00:24 +00001863 if (SemaRef.getLangOpts().RTTI) {
Douglas Gregorc05f6572011-04-12 02:47:21 +00001864 // dynamic_cast < type-id > ( expression )
1865 Builder.AddTypedTextChunk("dynamic_cast");
1866 Builder.AddChunk(CodeCompletionString::CK_LeftAngle);
1867 Builder.AddPlaceholderChunk("type");
1868 Builder.AddChunk(CodeCompletionString::CK_RightAngle);
1869 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1870 Builder.AddPlaceholderChunk("expression");
1871 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1872 Results.AddResult(Result(Builder.TakeString()));
1873 }
Douglas Gregorf4c33342010-05-28 00:22:41 +00001874
1875 // static_cast < type-id > ( expression )
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001876 Builder.AddTypedTextChunk("static_cast");
1877 Builder.AddChunk(CodeCompletionString::CK_LeftAngle);
1878 Builder.AddPlaceholderChunk("type");
1879 Builder.AddChunk(CodeCompletionString::CK_RightAngle);
1880 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1881 Builder.AddPlaceholderChunk("expression");
1882 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1883 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001884
Douglas Gregorf4c33342010-05-28 00:22:41 +00001885 // reinterpret_cast < type-id > ( expression )
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001886 Builder.AddTypedTextChunk("reinterpret_cast");
1887 Builder.AddChunk(CodeCompletionString::CK_LeftAngle);
1888 Builder.AddPlaceholderChunk("type");
1889 Builder.AddChunk(CodeCompletionString::CK_RightAngle);
1890 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1891 Builder.AddPlaceholderChunk("expression");
1892 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1893 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001894
Douglas Gregorf4c33342010-05-28 00:22:41 +00001895 // const_cast < type-id > ( expression )
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001896 Builder.AddTypedTextChunk("const_cast");
1897 Builder.AddChunk(CodeCompletionString::CK_LeftAngle);
1898 Builder.AddPlaceholderChunk("type");
1899 Builder.AddChunk(CodeCompletionString::CK_RightAngle);
1900 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1901 Builder.AddPlaceholderChunk("expression");
1902 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1903 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001904
David Blaikiebbafb8a2012-03-11 07:00:24 +00001905 if (SemaRef.getLangOpts().RTTI) {
Douglas Gregorc05f6572011-04-12 02:47:21 +00001906 // typeid ( expression-or-type )
Douglas Gregore5c79d52011-10-18 21:20:17 +00001907 Builder.AddResultTypeChunk("std::type_info");
Douglas Gregorc05f6572011-04-12 02:47:21 +00001908 Builder.AddTypedTextChunk("typeid");
1909 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1910 Builder.AddPlaceholderChunk("expression-or-type");
1911 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1912 Results.AddResult(Result(Builder.TakeString()));
1913 }
1914
Douglas Gregorf4c33342010-05-28 00:22:41 +00001915 // new T ( ... )
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001916 Builder.AddTypedTextChunk("new");
1917 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1918 Builder.AddPlaceholderChunk("type");
1919 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1920 Builder.AddPlaceholderChunk("expressions");
1921 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1922 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001923
Douglas Gregorf4c33342010-05-28 00:22:41 +00001924 // new T [ ] ( ... )
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001925 Builder.AddTypedTextChunk("new");
1926 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1927 Builder.AddPlaceholderChunk("type");
1928 Builder.AddChunk(CodeCompletionString::CK_LeftBracket);
1929 Builder.AddPlaceholderChunk("size");
1930 Builder.AddChunk(CodeCompletionString::CK_RightBracket);
1931 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1932 Builder.AddPlaceholderChunk("expressions");
1933 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1934 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001935
Douglas Gregorf4c33342010-05-28 00:22:41 +00001936 // delete expression
Douglas Gregore5c79d52011-10-18 21:20:17 +00001937 Builder.AddResultTypeChunk("void");
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001938 Builder.AddTypedTextChunk("delete");
1939 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1940 Builder.AddPlaceholderChunk("expression");
1941 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001942
Douglas Gregorf4c33342010-05-28 00:22:41 +00001943 // delete [] expression
Douglas Gregore5c79d52011-10-18 21:20:17 +00001944 Builder.AddResultTypeChunk("void");
Douglas Gregorb278aaf2011-02-01 19:23:04 +00001945 Builder.AddTypedTextChunk("delete");
1946 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1947 Builder.AddChunk(CodeCompletionString::CK_LeftBracket);
1948 Builder.AddChunk(CodeCompletionString::CK_RightBracket);
1949 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1950 Builder.AddPlaceholderChunk("expression");
1951 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001952
David Blaikiebbafb8a2012-03-11 07:00:24 +00001953 if (SemaRef.getLangOpts().CXXExceptions) {
Douglas Gregorc05f6572011-04-12 02:47:21 +00001954 // throw expression
Douglas Gregore5c79d52011-10-18 21:20:17 +00001955 Builder.AddResultTypeChunk("void");
Douglas Gregorc05f6572011-04-12 02:47:21 +00001956 Builder.AddTypedTextChunk("throw");
1957 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
1958 Builder.AddPlaceholderChunk("expression");
1959 Results.AddResult(Result(Builder.TakeString()));
1960 }
Douglas Gregor4205fef2011-10-18 16:29:03 +00001961
Douglas Gregora2db7932010-05-26 22:00:08 +00001962 // FIXME: Rethrow?
Douglas Gregor4205fef2011-10-18 16:29:03 +00001963
Richard Smith2bf7fdb2013-01-02 11:42:31 +00001964 if (SemaRef.getLangOpts().CPlusPlus11) {
Douglas Gregor4205fef2011-10-18 16:29:03 +00001965 // nullptr
Douglas Gregore5c79d52011-10-18 21:20:17 +00001966 Builder.AddResultTypeChunk("std::nullptr_t");
Douglas Gregor4205fef2011-10-18 16:29:03 +00001967 Builder.AddTypedTextChunk("nullptr");
1968 Results.AddResult(Result(Builder.TakeString()));
1969
1970 // alignof
Douglas Gregore5c79d52011-10-18 21:20:17 +00001971 Builder.AddResultTypeChunk("size_t");
Douglas Gregor4205fef2011-10-18 16:29:03 +00001972 Builder.AddTypedTextChunk("alignof");
1973 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1974 Builder.AddPlaceholderChunk("type");
1975 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1976 Results.AddResult(Result(Builder.TakeString()));
1977
1978 // noexcept
Douglas Gregore5c79d52011-10-18 21:20:17 +00001979 Builder.AddResultTypeChunk("bool");
Douglas Gregor4205fef2011-10-18 16:29:03 +00001980 Builder.AddTypedTextChunk("noexcept");
1981 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1982 Builder.AddPlaceholderChunk("expression");
1983 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1984 Results.AddResult(Result(Builder.TakeString()));
1985
1986 // sizeof... expression
Douglas Gregore5c79d52011-10-18 21:20:17 +00001987 Builder.AddResultTypeChunk("size_t");
Douglas Gregor4205fef2011-10-18 16:29:03 +00001988 Builder.AddTypedTextChunk("sizeof...");
1989 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
1990 Builder.AddPlaceholderChunk("parameter-pack");
1991 Builder.AddChunk(CodeCompletionString::CK_RightParen);
1992 Results.AddResult(Result(Builder.TakeString()));
1993 }
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001994 }
1995
David Blaikiebbafb8a2012-03-11 07:00:24 +00001996 if (SemaRef.getLangOpts().ObjC1) {
Douglas Gregor504a6ae2010-01-10 23:08:15 +00001997 // Add "super", if we're in an Objective-C class with a superclass.
Ted Kremenek305a0a72010-05-31 21:43:10 +00001998 if (ObjCMethodDecl *Method = SemaRef.getCurMethodDecl()) {
1999 // The interface can be NULL.
2000 if (ObjCInterfaceDecl *ID = Method->getClassInterface())
Douglas Gregore5c79d52011-10-18 21:20:17 +00002001 if (ID->getSuperClass()) {
2002 std::string SuperType;
2003 SuperType = ID->getSuperClass()->getNameAsString();
2004 if (Method->isInstanceMethod())
2005 SuperType += " *";
2006
2007 Builder.AddResultTypeChunk(Allocator.CopyString(SuperType));
2008 Builder.AddTypedTextChunk("super");
2009 Results.AddResult(Result(Builder.TakeString()));
2010 }
Ted Kremenek305a0a72010-05-31 21:43:10 +00002011 }
2012
Douglas Gregorf98e6a22010-01-13 23:51:12 +00002013 AddObjCExpressionResults(Results, true);
Douglas Gregor504a6ae2010-01-10 23:08:15 +00002014 }
2015
Jordan Rose58d54722012-06-30 21:33:57 +00002016 if (SemaRef.getLangOpts().C11) {
2017 // _Alignof
2018 Builder.AddResultTypeChunk("size_t");
2019 if (SemaRef.getASTContext().Idents.get("alignof").hasMacroDefinition())
2020 Builder.AddTypedTextChunk("alignof");
2021 else
2022 Builder.AddTypedTextChunk("_Alignof");
2023 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
2024 Builder.AddPlaceholderChunk("type");
2025 Builder.AddChunk(CodeCompletionString::CK_RightParen);
2026 Results.AddResult(Result(Builder.TakeString()));
2027 }
2028
Douglas Gregorf4c33342010-05-28 00:22:41 +00002029 // sizeof expression
Douglas Gregore5c79d52011-10-18 21:20:17 +00002030 Builder.AddResultTypeChunk("size_t");
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002031 Builder.AddTypedTextChunk("sizeof");
2032 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
2033 Builder.AddPlaceholderChunk("expression-or-type");
2034 Builder.AddChunk(CodeCompletionString::CK_RightParen);
2035 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00002036 break;
2037 }
Douglas Gregor99fa2642010-08-24 01:06:58 +00002038
John McCallfaf5fb42010-08-26 23:41:50 +00002039 case Sema::PCC_Type:
Douglas Gregor80039242011-02-15 20:33:25 +00002040 case Sema::PCC_LocalDeclarationSpecifiers:
Douglas Gregor99fa2642010-08-24 01:06:58 +00002041 break;
Douglas Gregor504a6ae2010-01-10 23:08:15 +00002042 }
2043
David Blaikiebbafb8a2012-03-11 07:00:24 +00002044 if (WantTypesInContext(CCC, SemaRef.getLangOpts()))
2045 AddTypeSpecifierResults(SemaRef.getLangOpts(), Results);
Douglas Gregor504a6ae2010-01-10 23:08:15 +00002046
David Blaikiebbafb8a2012-03-11 07:00:24 +00002047 if (SemaRef.getLangOpts().CPlusPlus && CCC != Sema::PCC_Type)
Douglas Gregor78a21012010-01-14 16:01:26 +00002048 Results.AddResult(Result("operator"));
Douglas Gregor504a6ae2010-01-10 23:08:15 +00002049}
2050
Douglas Gregorb3fa9192009-12-18 18:53:37 +00002051/// \brief If the given declaration has an associated type, add it as a result
2052/// type chunk.
2053static void AddResultTypeChunk(ASTContext &Context,
Douglas Gregor75acd922011-09-27 23:30:47 +00002054 const PrintingPolicy &Policy,
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002055 const NamedDecl *ND,
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002056 CodeCompletionBuilder &Result) {
Douglas Gregorb3fa9192009-12-18 18:53:37 +00002057 if (!ND)
2058 return;
Douglas Gregor0212fd72010-09-21 16:06:22 +00002059
2060 // Skip constructors and conversion functions, which have their return types
2061 // built into their names.
2062 if (isa<CXXConstructorDecl>(ND) || isa<CXXConversionDecl>(ND))
2063 return;
2064
Douglas Gregorb3fa9192009-12-18 18:53:37 +00002065 // Determine the type of the declaration (if it has a type).
Alp Tokera2794f92014-01-22 07:29:52 +00002066 QualType T;
2067 if (const FunctionDecl *Function = ND->getAsFunction())
Alp Toker314cc812014-01-25 16:55:45 +00002068 T = Function->getReturnType();
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002069 else if (const ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(ND))
Alp Toker314cc812014-01-25 16:55:45 +00002070 T = Method->getReturnType();
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002071 else if (const EnumConstantDecl *Enumerator = dyn_cast<EnumConstantDecl>(ND))
Douglas Gregorb3fa9192009-12-18 18:53:37 +00002072 T = Context.getTypeDeclType(cast<TypeDecl>(Enumerator->getDeclContext()));
2073 else if (isa<UnresolvedUsingValueDecl>(ND)) {
2074 /* Do nothing: ignore unresolved using declarations*/
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002075 } else if (const ValueDecl *Value = dyn_cast<ValueDecl>(ND)) {
Douglas Gregorb3fa9192009-12-18 18:53:37 +00002076 T = Value->getType();
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002077 } else if (const ObjCPropertyDecl *Property = dyn_cast<ObjCPropertyDecl>(ND))
Douglas Gregorb3fa9192009-12-18 18:53:37 +00002078 T = Property->getType();
2079
2080 if (T.isNull() || Context.hasSameType(T, Context.DependentTy))
2081 return;
2082
Douglas Gregor75acd922011-09-27 23:30:47 +00002083 Result.AddResultTypeChunk(GetCompletionTypeString(T, Context, Policy,
Douglas Gregor304f9b02011-02-01 21:15:40 +00002084 Result.getAllocator()));
Douglas Gregorb3fa9192009-12-18 18:53:37 +00002085}
2086
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002087static void MaybeAddSentinel(ASTContext &Context,
2088 const NamedDecl *FunctionOrMethod,
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002089 CodeCompletionBuilder &Result) {
Douglas Gregordbb71db2010-08-23 23:51:41 +00002090 if (SentinelAttr *Sentinel = FunctionOrMethod->getAttr<SentinelAttr>())
2091 if (Sentinel->getSentinel() == 0) {
David Blaikiebbafb8a2012-03-11 07:00:24 +00002092 if (Context.getLangOpts().ObjC1 &&
Douglas Gregordbb71db2010-08-23 23:51:41 +00002093 Context.Idents.get("nil").hasMacroDefinition())
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002094 Result.AddTextChunk(", nil");
Douglas Gregordbb71db2010-08-23 23:51:41 +00002095 else if (Context.Idents.get("NULL").hasMacroDefinition())
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002096 Result.AddTextChunk(", NULL");
Douglas Gregordbb71db2010-08-23 23:51:41 +00002097 else
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002098 Result.AddTextChunk(", (void*)0");
Douglas Gregordbb71db2010-08-23 23:51:41 +00002099 }
2100}
2101
Douglas Gregor8f08d742011-07-30 07:55:26 +00002102static std::string formatObjCParamQualifiers(unsigned ObjCQuals) {
2103 std::string Result;
2104 if (ObjCQuals & Decl::OBJC_TQ_In)
Douglas Gregor407d1f92011-11-09 02:13:45 +00002105 Result += "in ";
Douglas Gregor8f08d742011-07-30 07:55:26 +00002106 else if (ObjCQuals & Decl::OBJC_TQ_Inout)
Douglas Gregor407d1f92011-11-09 02:13:45 +00002107 Result += "inout ";
Douglas Gregor8f08d742011-07-30 07:55:26 +00002108 else if (ObjCQuals & Decl::OBJC_TQ_Out)
Douglas Gregor407d1f92011-11-09 02:13:45 +00002109 Result += "out ";
Douglas Gregor8f08d742011-07-30 07:55:26 +00002110 if (ObjCQuals & Decl::OBJC_TQ_Bycopy)
Douglas Gregor407d1f92011-11-09 02:13:45 +00002111 Result += "bycopy ";
Douglas Gregor8f08d742011-07-30 07:55:26 +00002112 else if (ObjCQuals & Decl::OBJC_TQ_Byref)
Douglas Gregor407d1f92011-11-09 02:13:45 +00002113 Result += "byref ";
Douglas Gregor8f08d742011-07-30 07:55:26 +00002114 if (ObjCQuals & Decl::OBJC_TQ_Oneway)
Douglas Gregor407d1f92011-11-09 02:13:45 +00002115 Result += "oneway ";
Douglas Gregor8f08d742011-07-30 07:55:26 +00002116 return Result;
2117}
2118
Douglas Gregore90dd002010-08-24 16:15:59 +00002119static std::string FormatFunctionParameter(ASTContext &Context,
Douglas Gregor75acd922011-09-27 23:30:47 +00002120 const PrintingPolicy &Policy,
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002121 const ParmVarDecl *Param,
Douglas Gregord793e7c2011-10-18 04:23:19 +00002122 bool SuppressName = false,
2123 bool SuppressBlock = false) {
Douglas Gregore90dd002010-08-24 16:15:59 +00002124 bool ObjCMethodParam = isa<ObjCMethodDecl>(Param->getDeclContext());
2125 if (Param->getType()->isDependentType() ||
2126 !Param->getType()->isBlockPointerType()) {
2127 // The argument for a dependent or non-block parameter is a placeholder
2128 // containing that parameter's type.
2129 std::string Result;
2130
Douglas Gregor981a0c42010-08-29 19:47:46 +00002131 if (Param->getIdentifier() && !ObjCMethodParam && !SuppressName)
Douglas Gregore90dd002010-08-24 16:15:59 +00002132 Result = Param->getIdentifier()->getName();
2133
John McCall31168b02011-06-15 23:02:42 +00002134 Param->getType().getAsStringInternal(Result, Policy);
Douglas Gregore90dd002010-08-24 16:15:59 +00002135
2136 if (ObjCMethodParam) {
Douglas Gregor8f08d742011-07-30 07:55:26 +00002137 Result = "(" + formatObjCParamQualifiers(Param->getObjCDeclQualifier())
2138 + Result + ")";
Douglas Gregor981a0c42010-08-29 19:47:46 +00002139 if (Param->getIdentifier() && !SuppressName)
Douglas Gregore90dd002010-08-24 16:15:59 +00002140 Result += Param->getIdentifier()->getName();
2141 }
2142 return Result;
2143 }
2144
2145 // The argument for a block pointer parameter is a block literal with
2146 // the appropriate type.
David Blaikie6adc78e2013-02-18 22:06:02 +00002147 FunctionTypeLoc Block;
2148 FunctionProtoTypeLoc BlockProto;
Douglas Gregore90dd002010-08-24 16:15:59 +00002149 TypeLoc TL;
2150 if (TypeSourceInfo *TSInfo = Param->getTypeSourceInfo()) {
2151 TL = TSInfo->getTypeLoc().getUnqualifiedLoc();
2152 while (true) {
2153 // Look through typedefs.
Douglas Gregord793e7c2011-10-18 04:23:19 +00002154 if (!SuppressBlock) {
David Blaikie6adc78e2013-02-18 22:06:02 +00002155 if (TypedefTypeLoc TypedefTL = TL.getAs<TypedefTypeLoc>()) {
2156 if (TypeSourceInfo *InnerTSInfo =
2157 TypedefTL.getTypedefNameDecl()->getTypeSourceInfo()) {
Douglas Gregord793e7c2011-10-18 04:23:19 +00002158 TL = InnerTSInfo->getTypeLoc().getUnqualifiedLoc();
2159 continue;
2160 }
2161 }
2162
2163 // Look through qualified types
David Blaikie6adc78e2013-02-18 22:06:02 +00002164 if (QualifiedTypeLoc QualifiedTL = TL.getAs<QualifiedTypeLoc>()) {
2165 TL = QualifiedTL.getUnqualifiedLoc();
Douglas Gregore90dd002010-08-24 16:15:59 +00002166 continue;
2167 }
2168 }
2169
Douglas Gregore90dd002010-08-24 16:15:59 +00002170 // Try to get the function prototype behind the block pointer type,
2171 // then we're done.
David Blaikie6adc78e2013-02-18 22:06:02 +00002172 if (BlockPointerTypeLoc BlockPtr = TL.getAs<BlockPointerTypeLoc>()) {
2173 TL = BlockPtr.getPointeeLoc().IgnoreParens();
2174 Block = TL.getAs<FunctionTypeLoc>();
2175 BlockProto = TL.getAs<FunctionProtoTypeLoc>();
Douglas Gregore90dd002010-08-24 16:15:59 +00002176 }
2177 break;
2178 }
2179 }
2180
2181 if (!Block) {
2182 // We were unable to find a FunctionProtoTypeLoc with parameter names
2183 // for the block; just use the parameter type as a placeholder.
2184 std::string Result;
Douglas Gregord793e7c2011-10-18 04:23:19 +00002185 if (!ObjCMethodParam && Param->getIdentifier())
2186 Result = Param->getIdentifier()->getName();
2187
John McCall31168b02011-06-15 23:02:42 +00002188 Param->getType().getUnqualifiedType().getAsStringInternal(Result, Policy);
Douglas Gregore90dd002010-08-24 16:15:59 +00002189
2190 if (ObjCMethodParam) {
Douglas Gregor8f08d742011-07-30 07:55:26 +00002191 Result = "(" + formatObjCParamQualifiers(Param->getObjCDeclQualifier())
2192 + Result + ")";
Douglas Gregore90dd002010-08-24 16:15:59 +00002193 if (Param->getIdentifier())
2194 Result += Param->getIdentifier()->getName();
2195 }
2196
2197 return Result;
2198 }
Douglas Gregord793e7c2011-10-18 04:23:19 +00002199
Douglas Gregore90dd002010-08-24 16:15:59 +00002200 // We have the function prototype behind the block pointer type, as it was
2201 // written in the source.
Douglas Gregor67da50e2010-09-08 22:47:51 +00002202 std::string Result;
Alp Toker314cc812014-01-25 16:55:45 +00002203 QualType ResultType = Block.getTypePtr()->getReturnType();
Douglas Gregord793e7c2011-10-18 04:23:19 +00002204 if (!ResultType->isVoidType() || SuppressBlock)
John McCall31168b02011-06-15 23:02:42 +00002205 ResultType.getAsStringInternal(Result, Policy);
Douglas Gregord793e7c2011-10-18 04:23:19 +00002206
2207 // Format the parameter list.
2208 std::string Params;
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00002209 if (!BlockProto || Block.getNumParams() == 0) {
David Blaikie6adc78e2013-02-18 22:06:02 +00002210 if (BlockProto && BlockProto.getTypePtr()->isVariadic())
Douglas Gregord793e7c2011-10-18 04:23:19 +00002211 Params = "(...)";
Douglas Gregoraf25cfa2010-10-02 23:49:58 +00002212 else
Douglas Gregord793e7c2011-10-18 04:23:19 +00002213 Params = "(void)";
Douglas Gregor67da50e2010-09-08 22:47:51 +00002214 } else {
Douglas Gregord793e7c2011-10-18 04:23:19 +00002215 Params += "(";
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00002216 for (unsigned I = 0, N = Block.getNumParams(); I != N; ++I) {
Douglas Gregor67da50e2010-09-08 22:47:51 +00002217 if (I)
Douglas Gregord793e7c2011-10-18 04:23:19 +00002218 Params += ", ";
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00002219 Params += FormatFunctionParameter(Context, Policy, Block.getParam(I),
2220 /*SuppressName=*/false,
Douglas Gregord793e7c2011-10-18 04:23:19 +00002221 /*SuppressBlock=*/true);
Alp Tokerb3fd5cf2014-01-21 00:32:38 +00002222
David Blaikie6adc78e2013-02-18 22:06:02 +00002223 if (I == N - 1 && BlockProto.getTypePtr()->isVariadic())
Douglas Gregord793e7c2011-10-18 04:23:19 +00002224 Params += ", ...";
Douglas Gregor67da50e2010-09-08 22:47:51 +00002225 }
Douglas Gregord793e7c2011-10-18 04:23:19 +00002226 Params += ")";
Douglas Gregor400f5972010-08-31 05:13:43 +00002227 }
Douglas Gregor67da50e2010-09-08 22:47:51 +00002228
Douglas Gregord793e7c2011-10-18 04:23:19 +00002229 if (SuppressBlock) {
2230 // Format as a parameter.
2231 Result = Result + " (^";
2232 if (Param->getIdentifier())
2233 Result += Param->getIdentifier()->getName();
2234 Result += ")";
2235 Result += Params;
2236 } else {
2237 // Format as a block literal argument.
2238 Result = '^' + Result;
2239 Result += Params;
2240
2241 if (Param->getIdentifier())
2242 Result += Param->getIdentifier()->getName();
2243 }
2244
Douglas Gregore90dd002010-08-24 16:15:59 +00002245 return Result;
2246}
2247
Douglas Gregor3545ff42009-09-21 16:56:56 +00002248/// \brief Add function parameter chunks to the given code completion string.
2249static void AddFunctionParameterChunks(ASTContext &Context,
Douglas Gregor75acd922011-09-27 23:30:47 +00002250 const PrintingPolicy &Policy,
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002251 const FunctionDecl *Function,
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002252 CodeCompletionBuilder &Result,
2253 unsigned Start = 0,
2254 bool InOptional = false) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002255 bool FirstParameter = true;
Douglas Gregor9eb77012009-11-07 00:00:49 +00002256
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002257 for (unsigned P = Start, N = Function->getNumParams(); P != N; ++P) {
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002258 const ParmVarDecl *Param = Function->getParamDecl(P);
Douglas Gregor3545ff42009-09-21 16:56:56 +00002259
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002260 if (Param->hasDefaultArg() && !InOptional) {
Douglas Gregor3545ff42009-09-21 16:56:56 +00002261 // When we see an optional default argument, put that argument and
2262 // the remaining default arguments into a new, optional string.
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00002263 CodeCompletionBuilder Opt(Result.getAllocator(),
2264 Result.getCodeCompletionTUInfo());
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002265 if (!FirstParameter)
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002266 Opt.AddChunk(CodeCompletionString::CK_Comma);
Douglas Gregor75acd922011-09-27 23:30:47 +00002267 AddFunctionParameterChunks(Context, Policy, Function, Opt, P, true);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002268 Result.AddOptionalChunk(Opt.TakeString());
2269 break;
Douglas Gregor3545ff42009-09-21 16:56:56 +00002270 }
2271
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002272 if (FirstParameter)
2273 FirstParameter = false;
2274 else
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002275 Result.AddChunk(CodeCompletionString::CK_Comma);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002276
2277 InOptional = false;
Douglas Gregor3545ff42009-09-21 16:56:56 +00002278
2279 // Format the placeholder string.
Douglas Gregor75acd922011-09-27 23:30:47 +00002280 std::string PlaceholderStr = FormatFunctionParameter(Context, Policy,
2281 Param);
Douglas Gregore90dd002010-08-24 16:15:59 +00002282
Douglas Gregor400f5972010-08-31 05:13:43 +00002283 if (Function->isVariadic() && P == N - 1)
2284 PlaceholderStr += ", ...";
2285
Douglas Gregor3545ff42009-09-21 16:56:56 +00002286 // Add the placeholder string.
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002287 Result.AddPlaceholderChunk(
2288 Result.getAllocator().CopyString(PlaceholderStr));
Douglas Gregor3545ff42009-09-21 16:56:56 +00002289 }
Douglas Gregorba449032009-09-22 21:42:17 +00002290
2291 if (const FunctionProtoType *Proto
2292 = Function->getType()->getAs<FunctionProtoType>())
Douglas Gregordbb71db2010-08-23 23:51:41 +00002293 if (Proto->isVariadic()) {
Alp Toker9cacbab2014-01-20 20:26:09 +00002294 if (Proto->getNumParams() == 0)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002295 Result.AddPlaceholderChunk("...");
Douglas Gregordbb71db2010-08-23 23:51:41 +00002296
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002297 MaybeAddSentinel(Context, Function, Result);
Douglas Gregordbb71db2010-08-23 23:51:41 +00002298 }
Douglas Gregor3545ff42009-09-21 16:56:56 +00002299}
2300
2301/// \brief Add template parameter chunks to the given code completion string.
2302static void AddTemplateParameterChunks(ASTContext &Context,
Douglas Gregor75acd922011-09-27 23:30:47 +00002303 const PrintingPolicy &Policy,
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002304 const TemplateDecl *Template,
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002305 CodeCompletionBuilder &Result,
2306 unsigned MaxParameters = 0,
2307 unsigned Start = 0,
2308 bool InDefaultArg = false) {
Douglas Gregor3545ff42009-09-21 16:56:56 +00002309 bool FirstParameter = true;
2310
2311 TemplateParameterList *Params = Template->getTemplateParameters();
2312 TemplateParameterList::iterator PEnd = Params->end();
2313 if (MaxParameters)
2314 PEnd = Params->begin() + MaxParameters;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002315 for (TemplateParameterList::iterator P = Params->begin() + Start;
2316 P != PEnd; ++P) {
Douglas Gregor3545ff42009-09-21 16:56:56 +00002317 bool HasDefaultArg = false;
2318 std::string PlaceholderStr;
2319 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(*P)) {
2320 if (TTP->wasDeclaredWithTypename())
2321 PlaceholderStr = "typename";
2322 else
2323 PlaceholderStr = "class";
2324
2325 if (TTP->getIdentifier()) {
2326 PlaceholderStr += ' ';
2327 PlaceholderStr += TTP->getIdentifier()->getName();
2328 }
2329
2330 HasDefaultArg = TTP->hasDefaultArgument();
2331 } else if (NonTypeTemplateParmDecl *NTTP
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002332 = dyn_cast<NonTypeTemplateParmDecl>(*P)) {
Douglas Gregor3545ff42009-09-21 16:56:56 +00002333 if (NTTP->getIdentifier())
2334 PlaceholderStr = NTTP->getIdentifier()->getName();
John McCall31168b02011-06-15 23:02:42 +00002335 NTTP->getType().getAsStringInternal(PlaceholderStr, Policy);
Douglas Gregor3545ff42009-09-21 16:56:56 +00002336 HasDefaultArg = NTTP->hasDefaultArgument();
2337 } else {
2338 assert(isa<TemplateTemplateParmDecl>(*P));
2339 TemplateTemplateParmDecl *TTP = cast<TemplateTemplateParmDecl>(*P);
2340
2341 // Since putting the template argument list into the placeholder would
2342 // be very, very long, we just use an abbreviation.
2343 PlaceholderStr = "template<...> class";
2344 if (TTP->getIdentifier()) {
2345 PlaceholderStr += ' ';
2346 PlaceholderStr += TTP->getIdentifier()->getName();
2347 }
2348
2349 HasDefaultArg = TTP->hasDefaultArgument();
2350 }
2351
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002352 if (HasDefaultArg && !InDefaultArg) {
Douglas Gregor3545ff42009-09-21 16:56:56 +00002353 // When we see an optional default argument, put that argument and
2354 // the remaining default arguments into a new, optional string.
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00002355 CodeCompletionBuilder Opt(Result.getAllocator(),
2356 Result.getCodeCompletionTUInfo());
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002357 if (!FirstParameter)
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002358 Opt.AddChunk(CodeCompletionString::CK_Comma);
Douglas Gregor75acd922011-09-27 23:30:47 +00002359 AddTemplateParameterChunks(Context, Policy, Template, Opt, MaxParameters,
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002360 P - Params->begin(), true);
2361 Result.AddOptionalChunk(Opt.TakeString());
2362 break;
Douglas Gregor3545ff42009-09-21 16:56:56 +00002363 }
2364
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002365 InDefaultArg = false;
2366
Douglas Gregor3545ff42009-09-21 16:56:56 +00002367 if (FirstParameter)
2368 FirstParameter = false;
2369 else
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002370 Result.AddChunk(CodeCompletionString::CK_Comma);
Douglas Gregor3545ff42009-09-21 16:56:56 +00002371
2372 // Add the placeholder string.
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002373 Result.AddPlaceholderChunk(
2374 Result.getAllocator().CopyString(PlaceholderStr));
Douglas Gregor3545ff42009-09-21 16:56:56 +00002375 }
2376}
2377
Douglas Gregorf2510672009-09-21 19:57:38 +00002378/// \brief Add a qualifier to the given code-completion string, if the
2379/// provided nested-name-specifier is non-NULL.
Douglas Gregor0f622362009-12-11 18:44:16 +00002380static void
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002381AddQualifierToCompletionString(CodeCompletionBuilder &Result,
Douglas Gregor0f622362009-12-11 18:44:16 +00002382 NestedNameSpecifier *Qualifier,
2383 bool QualifierIsInformative,
Douglas Gregor75acd922011-09-27 23:30:47 +00002384 ASTContext &Context,
2385 const PrintingPolicy &Policy) {
Douglas Gregorf2510672009-09-21 19:57:38 +00002386 if (!Qualifier)
2387 return;
2388
2389 std::string PrintedNNS;
2390 {
2391 llvm::raw_string_ostream OS(PrintedNNS);
Douglas Gregor75acd922011-09-27 23:30:47 +00002392 Qualifier->print(OS, Policy);
Douglas Gregorf2510672009-09-21 19:57:38 +00002393 }
Douglas Gregor5bf52692009-09-22 23:15:58 +00002394 if (QualifierIsInformative)
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002395 Result.AddInformativeChunk(Result.getAllocator().CopyString(PrintedNNS));
Douglas Gregor5bf52692009-09-22 23:15:58 +00002396 else
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002397 Result.AddTextChunk(Result.getAllocator().CopyString(PrintedNNS));
Douglas Gregorf2510672009-09-21 19:57:38 +00002398}
2399
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002400static void
2401AddFunctionTypeQualsToCompletionString(CodeCompletionBuilder &Result,
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002402 const FunctionDecl *Function) {
Douglas Gregor0f622362009-12-11 18:44:16 +00002403 const FunctionProtoType *Proto
2404 = Function->getType()->getAs<FunctionProtoType>();
2405 if (!Proto || !Proto->getTypeQuals())
2406 return;
2407
Douglas Gregor304f9b02011-02-01 21:15:40 +00002408 // FIXME: Add ref-qualifier!
2409
2410 // Handle single qualifiers without copying
2411 if (Proto->getTypeQuals() == Qualifiers::Const) {
2412 Result.AddInformativeChunk(" const");
2413 return;
2414 }
2415
2416 if (Proto->getTypeQuals() == Qualifiers::Volatile) {
2417 Result.AddInformativeChunk(" volatile");
2418 return;
2419 }
2420
2421 if (Proto->getTypeQuals() == Qualifiers::Restrict) {
2422 Result.AddInformativeChunk(" restrict");
2423 return;
2424 }
2425
2426 // Handle multiple qualifiers.
Douglas Gregor0f622362009-12-11 18:44:16 +00002427 std::string QualsStr;
David Blaikief5697e52012-08-10 00:55:35 +00002428 if (Proto->isConst())
Douglas Gregor0f622362009-12-11 18:44:16 +00002429 QualsStr += " const";
David Blaikief5697e52012-08-10 00:55:35 +00002430 if (Proto->isVolatile())
Douglas Gregor0f622362009-12-11 18:44:16 +00002431 QualsStr += " volatile";
David Blaikief5697e52012-08-10 00:55:35 +00002432 if (Proto->isRestrict())
Douglas Gregor0f622362009-12-11 18:44:16 +00002433 QualsStr += " restrict";
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002434 Result.AddInformativeChunk(Result.getAllocator().CopyString(QualsStr));
Douglas Gregor0f622362009-12-11 18:44:16 +00002435}
2436
Douglas Gregor0212fd72010-09-21 16:06:22 +00002437/// \brief Add the name of the given declaration
Douglas Gregor75acd922011-09-27 23:30:47 +00002438static void AddTypedNameChunk(ASTContext &Context, const PrintingPolicy &Policy,
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002439 const NamedDecl *ND,
2440 CodeCompletionBuilder &Result) {
Douglas Gregor0212fd72010-09-21 16:06:22 +00002441 DeclarationName Name = ND->getDeclName();
2442 if (!Name)
2443 return;
2444
2445 switch (Name.getNameKind()) {
Douglas Gregor304f9b02011-02-01 21:15:40 +00002446 case DeclarationName::CXXOperatorName: {
2447 const char *OperatorName = 0;
2448 switch (Name.getCXXOverloadedOperator()) {
2449 case OO_None:
2450 case OO_Conditional:
2451 case NUM_OVERLOADED_OPERATORS:
2452 OperatorName = "operator";
2453 break;
2454
2455#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
2456 case OO_##Name: OperatorName = "operator" Spelling; break;
2457#define OVERLOADED_OPERATOR_MULTI(Name,Spelling,Unary,Binary,MemberOnly)
2458#include "clang/Basic/OperatorKinds.def"
2459
2460 case OO_New: OperatorName = "operator new"; break;
2461 case OO_Delete: OperatorName = "operator delete"; break;
2462 case OO_Array_New: OperatorName = "operator new[]"; break;
2463 case OO_Array_Delete: OperatorName = "operator delete[]"; break;
2464 case OO_Call: OperatorName = "operator()"; break;
2465 case OO_Subscript: OperatorName = "operator[]"; break;
2466 }
2467 Result.AddTypedTextChunk(OperatorName);
2468 break;
2469 }
2470
Douglas Gregor0212fd72010-09-21 16:06:22 +00002471 case DeclarationName::Identifier:
2472 case DeclarationName::CXXConversionFunctionName:
Douglas Gregor0212fd72010-09-21 16:06:22 +00002473 case DeclarationName::CXXDestructorName:
2474 case DeclarationName::CXXLiteralOperatorName:
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002475 Result.AddTypedTextChunk(
2476 Result.getAllocator().CopyString(ND->getNameAsString()));
Douglas Gregor0212fd72010-09-21 16:06:22 +00002477 break;
2478
2479 case DeclarationName::CXXUsingDirective:
2480 case DeclarationName::ObjCZeroArgSelector:
2481 case DeclarationName::ObjCOneArgSelector:
2482 case DeclarationName::ObjCMultiArgSelector:
2483 break;
2484
2485 case DeclarationName::CXXConstructorName: {
2486 CXXRecordDecl *Record = 0;
2487 QualType Ty = Name.getCXXNameType();
2488 if (const RecordType *RecordTy = Ty->getAs<RecordType>())
2489 Record = cast<CXXRecordDecl>(RecordTy->getDecl());
2490 else if (const InjectedClassNameType *InjectedTy
2491 = Ty->getAs<InjectedClassNameType>())
2492 Record = InjectedTy->getDecl();
2493 else {
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002494 Result.AddTypedTextChunk(
2495 Result.getAllocator().CopyString(ND->getNameAsString()));
Douglas Gregor0212fd72010-09-21 16:06:22 +00002496 break;
2497 }
2498
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002499 Result.AddTypedTextChunk(
2500 Result.getAllocator().CopyString(Record->getNameAsString()));
Douglas Gregor0212fd72010-09-21 16:06:22 +00002501 if (ClassTemplateDecl *Template = Record->getDescribedClassTemplate()) {
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002502 Result.AddChunk(CodeCompletionString::CK_LeftAngle);
Douglas Gregor75acd922011-09-27 23:30:47 +00002503 AddTemplateParameterChunks(Context, Policy, Template, Result);
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002504 Result.AddChunk(CodeCompletionString::CK_RightAngle);
Douglas Gregor0212fd72010-09-21 16:06:22 +00002505 }
2506 break;
2507 }
2508 }
2509}
2510
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002511CodeCompletionString *CodeCompletionResult::CreateCodeCompletionString(Sema &S,
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00002512 CodeCompletionAllocator &Allocator,
Dmitri Gribenko3292d062012-07-02 17:35:10 +00002513 CodeCompletionTUInfo &CCTUInfo,
2514 bool IncludeBriefComments) {
2515 return CreateCodeCompletionString(S.Context, S.PP, Allocator, CCTUInfo,
2516 IncludeBriefComments);
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002517}
2518
Douglas Gregor3545ff42009-09-21 16:56:56 +00002519/// \brief If possible, create a new code completion string for the given
2520/// result.
2521///
2522/// \returns Either a new, heap-allocated code completion string describing
2523/// how to use this result, or NULL to indicate that the string or name of the
2524/// result is all that is needed.
2525CodeCompletionString *
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002526CodeCompletionResult::CreateCodeCompletionString(ASTContext &Ctx,
2527 Preprocessor &PP,
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00002528 CodeCompletionAllocator &Allocator,
Dmitri Gribenko3292d062012-07-02 17:35:10 +00002529 CodeCompletionTUInfo &CCTUInfo,
2530 bool IncludeBriefComments) {
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00002531 CodeCompletionBuilder Result(Allocator, CCTUInfo, Priority, Availability);
Douglas Gregor9eb77012009-11-07 00:00:49 +00002532
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002533 PrintingPolicy Policy = getCompletionPrintingPolicy(Ctx, PP);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002534 if (Kind == RK_Pattern) {
2535 Pattern->Priority = Priority;
2536 Pattern->Availability = Availability;
Douglas Gregor78254c82012-03-27 23:34:16 +00002537
2538 if (Declaration) {
2539 Result.addParentContext(Declaration->getDeclContext());
Douglas Gregor78254c82012-03-27 23:34:16 +00002540 Pattern->ParentName = Result.getParentName();
Fariborz Jahanian1fcf4922013-03-22 17:55:27 +00002541 // Provide code completion comment for self.GetterName where
2542 // GetterName is the getter method for a property with name
2543 // different from the property name (declared via a property
2544 // getter attribute.
2545 const NamedDecl *ND = Declaration;
2546 if (const ObjCMethodDecl *M = dyn_cast<ObjCMethodDecl>(ND))
2547 if (M->isPropertyAccessor())
2548 if (const ObjCPropertyDecl *PDecl = M->findPropertyDecl())
2549 if (PDecl->getGetterName() == M->getSelector() &&
Fariborz Jahanianbe8bc672013-03-23 01:10:45 +00002550 PDecl->getIdentifier() != M->getIdentifier()) {
2551 if (const RawComment *RC =
2552 Ctx.getRawCommentForAnyRedecl(M)) {
Fariborz Jahanian1fcf4922013-03-22 17:55:27 +00002553 Result.addBriefComment(RC->getBriefText(Ctx));
2554 Pattern->BriefComment = Result.getBriefComment();
2555 }
Fariborz Jahanianbe8bc672013-03-23 01:10:45 +00002556 else if (const RawComment *RC =
2557 Ctx.getRawCommentForAnyRedecl(PDecl)) {
2558 Result.addBriefComment(RC->getBriefText(Ctx));
2559 Pattern->BriefComment = Result.getBriefComment();
2560 }
2561 }
Douglas Gregor78254c82012-03-27 23:34:16 +00002562 }
2563
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002564 return Pattern;
2565 }
Douglas Gregorf09935f2009-12-01 05:55:20 +00002566
Douglas Gregorf09935f2009-12-01 05:55:20 +00002567 if (Kind == RK_Keyword) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002568 Result.AddTypedTextChunk(Keyword);
2569 return Result.TakeString();
Douglas Gregorf09935f2009-12-01 05:55:20 +00002570 }
Douglas Gregor3545ff42009-09-21 16:56:56 +00002571
Douglas Gregorf329c7c2009-10-30 16:50:04 +00002572 if (Kind == RK_Macro) {
Argyrios Kyrtzidis09c9e812013-02-20 00:54:57 +00002573 const MacroDirective *MD = PP.getMacroDirectiveHistory(Macro);
2574 assert(MD && "Not a macro?");
Argyrios Kyrtzidisb6210df2013-03-26 17:17:01 +00002575 const MacroInfo *MI = MD->getMacroInfo();
Douglas Gregorf09935f2009-12-01 05:55:20 +00002576
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002577 Result.AddTypedTextChunk(
2578 Result.getAllocator().CopyString(Macro->getName()));
Douglas Gregorf09935f2009-12-01 05:55:20 +00002579
2580 if (!MI->isFunctionLike())
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002581 return Result.TakeString();
Douglas Gregorf329c7c2009-10-30 16:50:04 +00002582
2583 // Format a function-like macro with placeholders for the arguments.
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002584 Result.AddChunk(CodeCompletionString::CK_LeftParen);
Douglas Gregor0c505312011-07-30 08:17:44 +00002585 MacroInfo::arg_iterator A = MI->arg_begin(), AEnd = MI->arg_end();
Douglas Gregor3aa55262012-01-21 00:43:38 +00002586
2587 // C99 variadic macros add __VA_ARGS__ at the end. Skip it.
2588 if (MI->isC99Varargs()) {
2589 --AEnd;
2590
2591 if (A == AEnd) {
2592 Result.AddPlaceholderChunk("...");
2593 }
Douglas Gregor0c505312011-07-30 08:17:44 +00002594 }
Douglas Gregor3aa55262012-01-21 00:43:38 +00002595
Douglas Gregor0c505312011-07-30 08:17:44 +00002596 for (MacroInfo::arg_iterator A = MI->arg_begin(); A != AEnd; ++A) {
Douglas Gregorf329c7c2009-10-30 16:50:04 +00002597 if (A != MI->arg_begin())
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002598 Result.AddChunk(CodeCompletionString::CK_Comma);
Douglas Gregor3aa55262012-01-21 00:43:38 +00002599
2600 if (MI->isVariadic() && (A+1) == AEnd) {
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +00002601 SmallString<32> Arg = (*A)->getName();
Douglas Gregor3aa55262012-01-21 00:43:38 +00002602 if (MI->isC99Varargs())
2603 Arg += ", ...";
2604 else
2605 Arg += "...";
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002606 Result.AddPlaceholderChunk(Result.getAllocator().CopyString(Arg));
Douglas Gregor3aa55262012-01-21 00:43:38 +00002607 break;
Douglas Gregorf329c7c2009-10-30 16:50:04 +00002608 }
Douglas Gregor3aa55262012-01-21 00:43:38 +00002609
2610 // Non-variadic macros are simple.
2611 Result.AddPlaceholderChunk(
2612 Result.getAllocator().CopyString((*A)->getName()));
Douglas Gregor0c505312011-07-30 08:17:44 +00002613 }
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002614 Result.AddChunk(CodeCompletionString::CK_RightParen);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002615 return Result.TakeString();
Douglas Gregorf329c7c2009-10-30 16:50:04 +00002616 }
2617
Douglas Gregorf64acca2010-05-25 21:41:55 +00002618 assert(Kind == RK_Declaration && "Missed a result kind?");
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002619 const NamedDecl *ND = Declaration;
Douglas Gregor78254c82012-03-27 23:34:16 +00002620 Result.addParentContext(ND->getDeclContext());
Dmitri Gribenko3292d062012-07-02 17:35:10 +00002621
2622 if (IncludeBriefComments) {
2623 // Add documentation comment, if it exists.
Dmitri Gribenkoa43ec182012-08-11 00:51:43 +00002624 if (const RawComment *RC = Ctx.getRawCommentForAnyRedecl(ND)) {
Dmitri Gribenko3292d062012-07-02 17:35:10 +00002625 Result.addBriefComment(RC->getBriefText(Ctx));
Fariborz Jahanian15a0b552013-02-28 17:47:14 +00002626 }
2627 else if (const ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(ND))
2628 if (OMD->isPropertyAccessor())
2629 if (const ObjCPropertyDecl *PDecl = OMD->findPropertyDecl())
2630 if (const RawComment *RC = Ctx.getRawCommentForAnyRedecl(PDecl))
2631 Result.addBriefComment(RC->getBriefText(Ctx));
Dmitri Gribenko3292d062012-07-02 17:35:10 +00002632 }
2633
Douglas Gregor9eb77012009-11-07 00:00:49 +00002634 if (StartsNestedNameSpecifier) {
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002635 Result.AddTypedTextChunk(
2636 Result.getAllocator().CopyString(ND->getNameAsString()));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002637 Result.AddTextChunk("::");
2638 return Result.TakeString();
Douglas Gregor9eb77012009-11-07 00:00:49 +00002639 }
Erik Verbruggen98ea7f62011-10-14 15:31:08 +00002640
Aaron Ballmanbe22bcb2014-03-10 17:08:28 +00002641 for (const auto *I : ND->specific_attrs<AnnotateAttr>())
2642 Result.AddAnnotation(Result.getAllocator().CopyString(I->getAnnotation()));
Aaron Ballmanb97112e2014-03-08 22:19:01 +00002643
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002644 AddResultTypeChunk(Ctx, Policy, ND, Result);
Douglas Gregorb3fa9192009-12-18 18:53:37 +00002645
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002646 if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(ND)) {
Douglas Gregor5bf52692009-09-22 23:15:58 +00002647 AddQualifierToCompletionString(Result, Qualifier, QualifierIsInformative,
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002648 Ctx, Policy);
2649 AddTypedNameChunk(Ctx, Policy, ND, Result);
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002650 Result.AddChunk(CodeCompletionString::CK_LeftParen);
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002651 AddFunctionParameterChunks(Ctx, Policy, Function, Result);
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002652 Result.AddChunk(CodeCompletionString::CK_RightParen);
Douglas Gregor0f622362009-12-11 18:44:16 +00002653 AddFunctionTypeQualsToCompletionString(Result, Function);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002654 return Result.TakeString();
Douglas Gregor3545ff42009-09-21 16:56:56 +00002655 }
2656
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002657 if (const FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(ND)) {
Douglas Gregor5bf52692009-09-22 23:15:58 +00002658 AddQualifierToCompletionString(Result, Qualifier, QualifierIsInformative,
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002659 Ctx, Policy);
Douglas Gregor3545ff42009-09-21 16:56:56 +00002660 FunctionDecl *Function = FunTmpl->getTemplatedDecl();
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002661 AddTypedNameChunk(Ctx, Policy, Function, Result);
Douglas Gregor0212fd72010-09-21 16:06:22 +00002662
Douglas Gregor3545ff42009-09-21 16:56:56 +00002663 // Figure out which template parameters are deduced (or have default
2664 // arguments).
Benjamin Kramere0513cb2012-01-30 16:17:39 +00002665 llvm::SmallBitVector Deduced;
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002666 Sema::MarkDeducedTemplateParameters(Ctx, FunTmpl, Deduced);
Douglas Gregor3545ff42009-09-21 16:56:56 +00002667 unsigned LastDeducibleArgument;
2668 for (LastDeducibleArgument = Deduced.size(); LastDeducibleArgument > 0;
2669 --LastDeducibleArgument) {
2670 if (!Deduced[LastDeducibleArgument - 1]) {
2671 // C++0x: Figure out if the template argument has a default. If so,
2672 // the user doesn't need to type this argument.
2673 // FIXME: We need to abstract template parameters better!
2674 bool HasDefaultArg = false;
2675 NamedDecl *Param = FunTmpl->getTemplateParameters()->getParam(
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002676 LastDeducibleArgument - 1);
Douglas Gregor3545ff42009-09-21 16:56:56 +00002677 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(Param))
2678 HasDefaultArg = TTP->hasDefaultArgument();
2679 else if (NonTypeTemplateParmDecl *NTTP
2680 = dyn_cast<NonTypeTemplateParmDecl>(Param))
2681 HasDefaultArg = NTTP->hasDefaultArgument();
2682 else {
2683 assert(isa<TemplateTemplateParmDecl>(Param));
2684 HasDefaultArg
Douglas Gregor9eb77012009-11-07 00:00:49 +00002685 = cast<TemplateTemplateParmDecl>(Param)->hasDefaultArgument();
Douglas Gregor3545ff42009-09-21 16:56:56 +00002686 }
2687
2688 if (!HasDefaultArg)
2689 break;
2690 }
2691 }
2692
2693 if (LastDeducibleArgument) {
2694 // Some of the function template arguments cannot be deduced from a
2695 // function call, so we introduce an explicit template argument list
2696 // containing all of the arguments up to the first deducible argument.
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002697 Result.AddChunk(CodeCompletionString::CK_LeftAngle);
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002698 AddTemplateParameterChunks(Ctx, Policy, FunTmpl, Result,
Douglas Gregor3545ff42009-09-21 16:56:56 +00002699 LastDeducibleArgument);
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002700 Result.AddChunk(CodeCompletionString::CK_RightAngle);
Douglas Gregor3545ff42009-09-21 16:56:56 +00002701 }
2702
2703 // Add the function parameters
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002704 Result.AddChunk(CodeCompletionString::CK_LeftParen);
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002705 AddFunctionParameterChunks(Ctx, Policy, Function, Result);
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002706 Result.AddChunk(CodeCompletionString::CK_RightParen);
Douglas Gregor0f622362009-12-11 18:44:16 +00002707 AddFunctionTypeQualsToCompletionString(Result, Function);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002708 return Result.TakeString();
Douglas Gregor3545ff42009-09-21 16:56:56 +00002709 }
2710
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002711 if (const TemplateDecl *Template = dyn_cast<TemplateDecl>(ND)) {
Douglas Gregor5bf52692009-09-22 23:15:58 +00002712 AddQualifierToCompletionString(Result, Qualifier, QualifierIsInformative,
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002713 Ctx, Policy);
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002714 Result.AddTypedTextChunk(
2715 Result.getAllocator().CopyString(Template->getNameAsString()));
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002716 Result.AddChunk(CodeCompletionString::CK_LeftAngle);
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002717 AddTemplateParameterChunks(Ctx, Policy, Template, Result);
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002718 Result.AddChunk(CodeCompletionString::CK_RightAngle);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002719 return Result.TakeString();
Douglas Gregor3545ff42009-09-21 16:56:56 +00002720 }
2721
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002722 if (const ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(ND)) {
Douglas Gregord3c5d792009-11-17 16:44:22 +00002723 Selector Sel = Method->getSelector();
2724 if (Sel.isUnarySelector()) {
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002725 Result.AddTypedTextChunk(Result.getAllocator().CopyString(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00002726 Sel.getNameForSlot(0)));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002727 return Result.TakeString();
Douglas Gregord3c5d792009-11-17 16:44:22 +00002728 }
2729
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00002730 std::string SelName = Sel.getNameForSlot(0).str();
Douglas Gregor1b605f72009-11-19 01:08:35 +00002731 SelName += ':';
2732 if (StartParameter == 0)
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002733 Result.AddTypedTextChunk(Result.getAllocator().CopyString(SelName));
Douglas Gregor1b605f72009-11-19 01:08:35 +00002734 else {
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002735 Result.AddInformativeChunk(Result.getAllocator().CopyString(SelName));
Douglas Gregor1b605f72009-11-19 01:08:35 +00002736
2737 // If there is only one parameter, and we're past it, add an empty
2738 // typed-text chunk since there is nothing to type.
2739 if (Method->param_size() == 1)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002740 Result.AddTypedTextChunk("");
Douglas Gregor1b605f72009-11-19 01:08:35 +00002741 }
Douglas Gregord3c5d792009-11-17 16:44:22 +00002742 unsigned Idx = 0;
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002743 for (ObjCMethodDecl::param_const_iterator P = Method->param_begin(),
2744 PEnd = Method->param_end();
Douglas Gregord3c5d792009-11-17 16:44:22 +00002745 P != PEnd; (void)++P, ++Idx) {
2746 if (Idx > 0) {
Douglas Gregor1b605f72009-11-19 01:08:35 +00002747 std::string Keyword;
2748 if (Idx > StartParameter)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002749 Result.AddChunk(CodeCompletionString::CK_HorizontalSpace);
Douglas Gregord3c5d792009-11-17 16:44:22 +00002750 if (IdentifierInfo *II = Sel.getIdentifierInfoForSlot(Idx))
Benjamin Kramer632500c2011-07-26 16:59:25 +00002751 Keyword += II->getName();
Douglas Gregord3c5d792009-11-17 16:44:22 +00002752 Keyword += ":";
Douglas Gregor95887f92010-07-08 23:20:03 +00002753 if (Idx < StartParameter || AllParametersAreInformative)
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002754 Result.AddInformativeChunk(Result.getAllocator().CopyString(Keyword));
Douglas Gregor8e3e8742010-10-18 21:05:04 +00002755 else
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002756 Result.AddTypedTextChunk(Result.getAllocator().CopyString(Keyword));
Douglas Gregord3c5d792009-11-17 16:44:22 +00002757 }
Douglas Gregor1b605f72009-11-19 01:08:35 +00002758
2759 // If we're before the starting parameter, skip the placeholder.
2760 if (Idx < StartParameter)
2761 continue;
Douglas Gregord3c5d792009-11-17 16:44:22 +00002762
2763 std::string Arg;
Douglas Gregore90dd002010-08-24 16:15:59 +00002764
2765 if ((*P)->getType()->isBlockPointerType() && !DeclaringEntity)
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002766 Arg = FormatFunctionParameter(Ctx, Policy, *P, true);
Douglas Gregore90dd002010-08-24 16:15:59 +00002767 else {
John McCall31168b02011-06-15 23:02:42 +00002768 (*P)->getType().getAsStringInternal(Arg, Policy);
Douglas Gregor8f08d742011-07-30 07:55:26 +00002769 Arg = "(" + formatObjCParamQualifiers((*P)->getObjCDeclQualifier())
2770 + Arg + ")";
Douglas Gregore90dd002010-08-24 16:15:59 +00002771 if (IdentifierInfo *II = (*P)->getIdentifier())
Douglas Gregor981a0c42010-08-29 19:47:46 +00002772 if (DeclaringEntity || AllParametersAreInformative)
Benjamin Kramer632500c2011-07-26 16:59:25 +00002773 Arg += II->getName();
Douglas Gregore90dd002010-08-24 16:15:59 +00002774 }
2775
Douglas Gregor400f5972010-08-31 05:13:43 +00002776 if (Method->isVariadic() && (P + 1) == PEnd)
2777 Arg += ", ...";
2778
Douglas Gregor95887f92010-07-08 23:20:03 +00002779 if (DeclaringEntity)
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002780 Result.AddTextChunk(Result.getAllocator().CopyString(Arg));
Douglas Gregor95887f92010-07-08 23:20:03 +00002781 else if (AllParametersAreInformative)
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002782 Result.AddInformativeChunk(Result.getAllocator().CopyString(Arg));
Douglas Gregorc8537c52009-11-19 07:41:15 +00002783 else
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002784 Result.AddPlaceholderChunk(Result.getAllocator().CopyString(Arg));
Douglas Gregord3c5d792009-11-17 16:44:22 +00002785 }
2786
Douglas Gregor04c5f972009-12-23 00:21:46 +00002787 if (Method->isVariadic()) {
Douglas Gregor400f5972010-08-31 05:13:43 +00002788 if (Method->param_size() == 0) {
2789 if (DeclaringEntity)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002790 Result.AddTextChunk(", ...");
Douglas Gregor400f5972010-08-31 05:13:43 +00002791 else if (AllParametersAreInformative)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002792 Result.AddInformativeChunk(", ...");
Douglas Gregor400f5972010-08-31 05:13:43 +00002793 else
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002794 Result.AddPlaceholderChunk(", ...");
Douglas Gregor400f5972010-08-31 05:13:43 +00002795 }
Douglas Gregordbb71db2010-08-23 23:51:41 +00002796
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002797 MaybeAddSentinel(Ctx, Method, Result);
Douglas Gregor04c5f972009-12-23 00:21:46 +00002798 }
2799
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002800 return Result.TakeString();
Douglas Gregord3c5d792009-11-17 16:44:22 +00002801 }
2802
Douglas Gregorf09935f2009-12-01 05:55:20 +00002803 if (Qualifier)
Douglas Gregor5bf52692009-09-22 23:15:58 +00002804 AddQualifierToCompletionString(Result, Qualifier, QualifierIsInformative,
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002805 Ctx, Policy);
Douglas Gregorf09935f2009-12-01 05:55:20 +00002806
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002807 Result.AddTypedTextChunk(
2808 Result.getAllocator().CopyString(ND->getNameAsString()));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002809 return Result.TakeString();
Douglas Gregor3545ff42009-09-21 16:56:56 +00002810}
2811
Douglas Gregorf0f51982009-09-23 00:34:09 +00002812CodeCompletionString *
2813CodeCompleteConsumer::OverloadCandidate::CreateSignatureString(
2814 unsigned CurrentArg,
Douglas Gregor36e3b5c2010-10-11 21:37:58 +00002815 Sema &S,
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00002816 CodeCompletionAllocator &Allocator,
2817 CodeCompletionTUInfo &CCTUInfo) const {
Douglas Gregor75acd922011-09-27 23:30:47 +00002818 PrintingPolicy Policy = getCompletionPrintingPolicy(S);
John McCall31168b02011-06-15 23:02:42 +00002819
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002820 // FIXME: Set priority, availability appropriately.
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00002821 CodeCompletionBuilder Result(Allocator,CCTUInfo, 1, CXAvailability_Available);
Douglas Gregorf0f51982009-09-23 00:34:09 +00002822 FunctionDecl *FDecl = getFunction();
Douglas Gregor75acd922011-09-27 23:30:47 +00002823 AddResultTypeChunk(S.Context, Policy, FDecl, Result);
Douglas Gregorf0f51982009-09-23 00:34:09 +00002824 const FunctionProtoType *Proto
2825 = dyn_cast<FunctionProtoType>(getFunctionType());
2826 if (!FDecl && !Proto) {
2827 // Function without a prototype. Just give the return type and a
2828 // highlighted ellipsis.
2829 const FunctionType *FT = getFunctionType();
Alp Toker314cc812014-01-25 16:55:45 +00002830 Result.AddTextChunk(GetCompletionTypeString(FT->getReturnType(), S.Context,
2831 Policy, Result.getAllocator()));
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002832 Result.AddChunk(CodeCompletionString::CK_LeftParen);
2833 Result.AddChunk(CodeCompletionString::CK_CurrentParameter, "...");
2834 Result.AddChunk(CodeCompletionString::CK_RightParen);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002835 return Result.TakeString();
Douglas Gregorf0f51982009-09-23 00:34:09 +00002836 }
2837
2838 if (FDecl)
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002839 Result.AddTextChunk(
2840 Result.getAllocator().CopyString(FDecl->getNameAsString()));
Douglas Gregorf0f51982009-09-23 00:34:09 +00002841 else
Alp Toker314cc812014-01-25 16:55:45 +00002842 Result.AddTextChunk(Result.getAllocator().CopyString(
2843 Proto->getReturnType().getAsString(Policy)));
2844
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002845 Result.AddChunk(CodeCompletionString::CK_LeftParen);
Alp Toker9cacbab2014-01-20 20:26:09 +00002846 unsigned NumParams = FDecl ? FDecl->getNumParams() : Proto->getNumParams();
Douglas Gregorf0f51982009-09-23 00:34:09 +00002847 for (unsigned I = 0; I != NumParams; ++I) {
2848 if (I)
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002849 Result.AddChunk(CodeCompletionString::CK_Comma);
Douglas Gregorf0f51982009-09-23 00:34:09 +00002850
2851 std::string ArgString;
2852 QualType ArgType;
2853
2854 if (FDecl) {
2855 ArgString = FDecl->getParamDecl(I)->getNameAsString();
2856 ArgType = FDecl->getParamDecl(I)->getOriginalType();
2857 } else {
Alp Toker9cacbab2014-01-20 20:26:09 +00002858 ArgType = Proto->getParamType(I);
Douglas Gregorf0f51982009-09-23 00:34:09 +00002859 }
2860
John McCall31168b02011-06-15 23:02:42 +00002861 ArgType.getAsStringInternal(ArgString, Policy);
Douglas Gregorf0f51982009-09-23 00:34:09 +00002862
2863 if (I == CurrentArg)
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002864 Result.AddChunk(CodeCompletionString::CK_CurrentParameter,
2865 Result.getAllocator().CopyString(ArgString));
Douglas Gregorf0f51982009-09-23 00:34:09 +00002866 else
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002867 Result.AddTextChunk(Result.getAllocator().CopyString(ArgString));
Douglas Gregorf0f51982009-09-23 00:34:09 +00002868 }
2869
2870 if (Proto && Proto->isVariadic()) {
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002871 Result.AddChunk(CodeCompletionString::CK_Comma);
Douglas Gregorf0f51982009-09-23 00:34:09 +00002872 if (CurrentArg < NumParams)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002873 Result.AddTextChunk("...");
Douglas Gregorf0f51982009-09-23 00:34:09 +00002874 else
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002875 Result.AddChunk(CodeCompletionString::CK_CurrentParameter, "...");
Douglas Gregorf0f51982009-09-23 00:34:09 +00002876 }
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002877 Result.AddChunk(CodeCompletionString::CK_RightParen);
Douglas Gregorf0f51982009-09-23 00:34:09 +00002878
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002879 return Result.TakeString();
Douglas Gregorf0f51982009-09-23 00:34:09 +00002880}
2881
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002882unsigned clang::getMacroUsagePriority(StringRef MacroName,
Douglas Gregor9dcf58a2010-09-20 21:11:48 +00002883 const LangOptions &LangOpts,
Douglas Gregor6e240332010-08-16 16:18:59 +00002884 bool PreferredTypeIsPointer) {
2885 unsigned Priority = CCP_Macro;
2886
Douglas Gregor9dcf58a2010-09-20 21:11:48 +00002887 // Treat the "nil", "Nil" and "NULL" macros as null pointer constants.
2888 if (MacroName.equals("nil") || MacroName.equals("NULL") ||
2889 MacroName.equals("Nil")) {
Douglas Gregor6e240332010-08-16 16:18:59 +00002890 Priority = CCP_Constant;
2891 if (PreferredTypeIsPointer)
2892 Priority = Priority / CCF_SimilarTypeMatch;
Douglas Gregor9dcf58a2010-09-20 21:11:48 +00002893 }
2894 // Treat "YES", "NO", "true", and "false" as constants.
2895 else if (MacroName.equals("YES") || MacroName.equals("NO") ||
2896 MacroName.equals("true") || MacroName.equals("false"))
2897 Priority = CCP_Constant;
2898 // Treat "bool" as a type.
2899 else if (MacroName.equals("bool"))
2900 Priority = CCP_Type + (LangOpts.ObjC1? CCD_bool_in_ObjC : 0);
2901
Douglas Gregor6e240332010-08-16 16:18:59 +00002902
2903 return Priority;
2904}
2905
Dmitri Gribenkobdc80de2013-01-11 20:32:41 +00002906CXCursorKind clang::getCursorKindForDecl(const Decl *D) {
Douglas Gregor09c0eb12010-09-03 23:30:36 +00002907 if (!D)
2908 return CXCursor_UnexposedDecl;
2909
2910 switch (D->getKind()) {
2911 case Decl::Enum: return CXCursor_EnumDecl;
2912 case Decl::EnumConstant: return CXCursor_EnumConstantDecl;
2913 case Decl::Field: return CXCursor_FieldDecl;
2914 case Decl::Function:
2915 return CXCursor_FunctionDecl;
2916 case Decl::ObjCCategory: return CXCursor_ObjCCategoryDecl;
2917 case Decl::ObjCCategoryImpl: return CXCursor_ObjCCategoryImplDecl;
Douglas Gregor09c0eb12010-09-03 23:30:36 +00002918 case Decl::ObjCImplementation: return CXCursor_ObjCImplementationDecl;
Douglas Gregordeafd0b2011-12-27 22:43:10 +00002919
Argyrios Kyrtzidis3698cef2012-01-24 21:39:26 +00002920 case Decl::ObjCInterface: return CXCursor_ObjCInterfaceDecl;
Douglas Gregor09c0eb12010-09-03 23:30:36 +00002921 case Decl::ObjCIvar: return CXCursor_ObjCIvarDecl;
2922 case Decl::ObjCMethod:
2923 return cast<ObjCMethodDecl>(D)->isInstanceMethod()
2924 ? CXCursor_ObjCInstanceMethodDecl : CXCursor_ObjCClassMethodDecl;
2925 case Decl::CXXMethod: return CXCursor_CXXMethod;
2926 case Decl::CXXConstructor: return CXCursor_Constructor;
2927 case Decl::CXXDestructor: return CXCursor_Destructor;
2928 case Decl::CXXConversion: return CXCursor_ConversionFunction;
2929 case Decl::ObjCProperty: return CXCursor_ObjCPropertyDecl;
Argyrios Kyrtzidis3698cef2012-01-24 21:39:26 +00002930 case Decl::ObjCProtocol: return CXCursor_ObjCProtocolDecl;
Douglas Gregor09c0eb12010-09-03 23:30:36 +00002931 case Decl::ParmVar: return CXCursor_ParmDecl;
2932 case Decl::Typedef: return CXCursor_TypedefDecl;
Richard Smithdda56e42011-04-15 14:24:37 +00002933 case Decl::TypeAlias: return CXCursor_TypeAliasDecl;
Douglas Gregor09c0eb12010-09-03 23:30:36 +00002934 case Decl::Var: return CXCursor_VarDecl;
2935 case Decl::Namespace: return CXCursor_Namespace;
2936 case Decl::NamespaceAlias: return CXCursor_NamespaceAlias;
2937 case Decl::TemplateTypeParm: return CXCursor_TemplateTypeParameter;
2938 case Decl::NonTypeTemplateParm:return CXCursor_NonTypeTemplateParameter;
2939 case Decl::TemplateTemplateParm:return CXCursor_TemplateTemplateParameter;
2940 case Decl::FunctionTemplate: return CXCursor_FunctionTemplate;
2941 case Decl::ClassTemplate: return CXCursor_ClassTemplate;
Argyrios Kyrtzidis12afd702011-09-30 17:58:23 +00002942 case Decl::AccessSpec: return CXCursor_CXXAccessSpecifier;
Douglas Gregor09c0eb12010-09-03 23:30:36 +00002943 case Decl::ClassTemplatePartialSpecialization:
2944 return CXCursor_ClassTemplatePartialSpecialization;
2945 case Decl::UsingDirective: return CXCursor_UsingDirective;
Douglas Gregor3e653b32012-04-30 23:41:16 +00002946 case Decl::TranslationUnit: return CXCursor_TranslationUnit;
Douglas Gregor09c0eb12010-09-03 23:30:36 +00002947
2948 case Decl::Using:
2949 case Decl::UnresolvedUsingValue:
2950 case Decl::UnresolvedUsingTypename:
2951 return CXCursor_UsingDeclaration;
2952
Douglas Gregor4cd65962011-06-03 23:08:58 +00002953 case Decl::ObjCPropertyImpl:
2954 switch (cast<ObjCPropertyImplDecl>(D)->getPropertyImplementation()) {
2955 case ObjCPropertyImplDecl::Dynamic:
2956 return CXCursor_ObjCDynamicDecl;
2957
2958 case ObjCPropertyImplDecl::Synthesize:
2959 return CXCursor_ObjCSynthesizeDecl;
2960 }
Argyrios Kyrtzidis50e5b1d2012-10-05 00:22:24 +00002961
2962 case Decl::Import:
2963 return CXCursor_ModuleImportDecl;
Douglas Gregor4cd65962011-06-03 23:08:58 +00002964
Douglas Gregor09c0eb12010-09-03 23:30:36 +00002965 default:
Dmitri Gribenkobdc80de2013-01-11 20:32:41 +00002966 if (const TagDecl *TD = dyn_cast<TagDecl>(D)) {
Douglas Gregor09c0eb12010-09-03 23:30:36 +00002967 switch (TD->getTagKind()) {
Joao Matosdc86f942012-08-31 18:45:21 +00002968 case TTK_Interface: // fall through
Douglas Gregor09c0eb12010-09-03 23:30:36 +00002969 case TTK_Struct: return CXCursor_StructDecl;
2970 case TTK_Class: return CXCursor_ClassDecl;
2971 case TTK_Union: return CXCursor_UnionDecl;
2972 case TTK_Enum: return CXCursor_EnumDecl;
2973 }
2974 }
2975 }
2976
2977 return CXCursor_UnexposedDecl;
2978}
2979
Douglas Gregor55b037b2010-07-08 20:55:51 +00002980static void AddMacroResults(Preprocessor &PP, ResultBuilder &Results,
Douglas Gregor8cb17462012-10-09 16:01:50 +00002981 bool IncludeUndefined,
Douglas Gregor55b037b2010-07-08 20:55:51 +00002982 bool TargetTypeIsPointer = false) {
John McCall276321a2010-08-25 06:19:51 +00002983 typedef CodeCompletionResult Result;
Douglas Gregor55b037b2010-07-08 20:55:51 +00002984
Douglas Gregorf329c7c2009-10-30 16:50:04 +00002985 Results.EnterNewScope();
Douglas Gregor8e3e8742010-10-18 21:05:04 +00002986
Douglas Gregor9eb77012009-11-07 00:00:49 +00002987 for (Preprocessor::macro_iterator M = PP.macro_begin(),
2988 MEnd = PP.macro_end();
Douglas Gregor55b037b2010-07-08 20:55:51 +00002989 M != MEnd; ++M) {
Douglas Gregor8cb17462012-10-09 16:01:50 +00002990 if (IncludeUndefined || M->first->hasMacroDefinition())
2991 Results.AddResult(Result(M->first,
Douglas Gregor6e240332010-08-16 16:18:59 +00002992 getMacroUsagePriority(M->first->getName(),
David Blaikiebbafb8a2012-03-11 07:00:24 +00002993 PP.getLangOpts(),
Douglas Gregor6e240332010-08-16 16:18:59 +00002994 TargetTypeIsPointer)));
Douglas Gregor55b037b2010-07-08 20:55:51 +00002995 }
Douglas Gregor8e3e8742010-10-18 21:05:04 +00002996
Douglas Gregorf329c7c2009-10-30 16:50:04 +00002997 Results.ExitScope();
Douglas Gregor8e3e8742010-10-18 21:05:04 +00002998
Douglas Gregorf329c7c2009-10-30 16:50:04 +00002999}
3000
Douglas Gregorce0e8562010-08-23 21:54:33 +00003001static void AddPrettyFunctionResults(const LangOptions &LangOpts,
3002 ResultBuilder &Results) {
John McCall276321a2010-08-25 06:19:51 +00003003 typedef CodeCompletionResult Result;
Douglas Gregorce0e8562010-08-23 21:54:33 +00003004
3005 Results.EnterNewScope();
Douglas Gregor8e3e8742010-10-18 21:05:04 +00003006
Douglas Gregorce0e8562010-08-23 21:54:33 +00003007 Results.AddResult(Result("__PRETTY_FUNCTION__", CCP_Constant));
3008 Results.AddResult(Result("__FUNCTION__", CCP_Constant));
Richard Smith2bf7fdb2013-01-02 11:42:31 +00003009 if (LangOpts.C99 || LangOpts.CPlusPlus11)
Douglas Gregorce0e8562010-08-23 21:54:33 +00003010 Results.AddResult(Result("__func__", CCP_Constant));
3011 Results.ExitScope();
3012}
3013
Daniel Dunbar242ea9a2009-11-13 08:58:20 +00003014static void HandleCodeCompleteResults(Sema *S,
3015 CodeCompleteConsumer *CodeCompleter,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003016 CodeCompletionContext Context,
John McCall276321a2010-08-25 06:19:51 +00003017 CodeCompletionResult *Results,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003018 unsigned NumResults) {
Douglas Gregor3545ff42009-09-21 16:56:56 +00003019 if (CodeCompleter)
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003020 CodeCompleter->ProcessCodeCompleteResults(*S, Context, Results, NumResults);
Douglas Gregor3545ff42009-09-21 16:56:56 +00003021}
3022
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003023static enum CodeCompletionContext::Kind mapCodeCompletionContext(Sema &S,
3024 Sema::ParserCompletionContext PCC) {
3025 switch (PCC) {
John McCallfaf5fb42010-08-26 23:41:50 +00003026 case Sema::PCC_Namespace:
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003027 return CodeCompletionContext::CCC_TopLevel;
3028
John McCallfaf5fb42010-08-26 23:41:50 +00003029 case Sema::PCC_Class:
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003030 return CodeCompletionContext::CCC_ClassStructUnion;
3031
John McCallfaf5fb42010-08-26 23:41:50 +00003032 case Sema::PCC_ObjCInterface:
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003033 return CodeCompletionContext::CCC_ObjCInterface;
3034
John McCallfaf5fb42010-08-26 23:41:50 +00003035 case Sema::PCC_ObjCImplementation:
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003036 return CodeCompletionContext::CCC_ObjCImplementation;
3037
John McCallfaf5fb42010-08-26 23:41:50 +00003038 case Sema::PCC_ObjCInstanceVariableList:
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003039 return CodeCompletionContext::CCC_ObjCIvarList;
3040
John McCallfaf5fb42010-08-26 23:41:50 +00003041 case Sema::PCC_Template:
3042 case Sema::PCC_MemberTemplate:
Douglas Gregor0ac41382010-09-23 23:01:17 +00003043 if (S.CurContext->isFileContext())
3044 return CodeCompletionContext::CCC_TopLevel;
David Blaikie8a40f702012-01-17 06:56:22 +00003045 if (S.CurContext->isRecord())
Douglas Gregor0ac41382010-09-23 23:01:17 +00003046 return CodeCompletionContext::CCC_ClassStructUnion;
David Blaikie8a40f702012-01-17 06:56:22 +00003047 return CodeCompletionContext::CCC_Other;
Douglas Gregor0ac41382010-09-23 23:01:17 +00003048
John McCallfaf5fb42010-08-26 23:41:50 +00003049 case Sema::PCC_RecoveryInFunction:
Douglas Gregor0ac41382010-09-23 23:01:17 +00003050 return CodeCompletionContext::CCC_Recovery;
Douglas Gregorc769d6e2010-10-18 22:01:46 +00003051
John McCallfaf5fb42010-08-26 23:41:50 +00003052 case Sema::PCC_ForInit:
David Blaikiebbafb8a2012-03-11 07:00:24 +00003053 if (S.getLangOpts().CPlusPlus || S.getLangOpts().C99 ||
3054 S.getLangOpts().ObjC1)
Douglas Gregorc769d6e2010-10-18 22:01:46 +00003055 return CodeCompletionContext::CCC_ParenthesizedExpression;
3056 else
3057 return CodeCompletionContext::CCC_Expression;
3058
3059 case Sema::PCC_Expression:
John McCallfaf5fb42010-08-26 23:41:50 +00003060 case Sema::PCC_Condition:
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003061 return CodeCompletionContext::CCC_Expression;
3062
John McCallfaf5fb42010-08-26 23:41:50 +00003063 case Sema::PCC_Statement:
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003064 return CodeCompletionContext::CCC_Statement;
Douglas Gregorf02e5f32010-08-24 01:11:00 +00003065
John McCallfaf5fb42010-08-26 23:41:50 +00003066 case Sema::PCC_Type:
Douglas Gregorf02e5f32010-08-24 01:11:00 +00003067 return CodeCompletionContext::CCC_Type;
Douglas Gregor5e35d592010-09-14 23:59:36 +00003068
3069 case Sema::PCC_ParenthesizedExpression:
3070 return CodeCompletionContext::CCC_ParenthesizedExpression;
Douglas Gregor80039242011-02-15 20:33:25 +00003071
3072 case Sema::PCC_LocalDeclarationSpecifiers:
3073 return CodeCompletionContext::CCC_Type;
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003074 }
David Blaikie8a40f702012-01-17 06:56:22 +00003075
3076 llvm_unreachable("Invalid ParserCompletionContext!");
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003077}
3078
Douglas Gregorac322ec2010-08-27 21:18:54 +00003079/// \brief If we're in a C++ virtual member function, add completion results
3080/// that invoke the functions we override, since it's common to invoke the
3081/// overridden function as well as adding new functionality.
3082///
3083/// \param S The semantic analysis object for which we are generating results.
3084///
3085/// \param InContext This context in which the nested-name-specifier preceding
3086/// the code-completion point
3087static void MaybeAddOverrideCalls(Sema &S, DeclContext *InContext,
3088 ResultBuilder &Results) {
3089 // Look through blocks.
3090 DeclContext *CurContext = S.CurContext;
3091 while (isa<BlockDecl>(CurContext))
3092 CurContext = CurContext->getParent();
3093
3094
3095 CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(CurContext);
3096 if (!Method || !Method->isVirtual())
3097 return;
3098
3099 // We need to have names for all of the parameters, if we're going to
3100 // generate a forwarding call.
Aaron Ballman43b68be2014-03-07 17:50:17 +00003101 for (auto P : Method->params())
3102 if (!P->getDeclName())
Douglas Gregorac322ec2010-08-27 21:18:54 +00003103 return;
Douglas Gregorac322ec2010-08-27 21:18:54 +00003104
Douglas Gregor75acd922011-09-27 23:30:47 +00003105 PrintingPolicy Policy = getCompletionPrintingPolicy(S);
Douglas Gregorac322ec2010-08-27 21:18:54 +00003106 for (CXXMethodDecl::method_iterator M = Method->begin_overridden_methods(),
3107 MEnd = Method->end_overridden_methods();
3108 M != MEnd; ++M) {
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003109 CodeCompletionBuilder Builder(Results.getAllocator(),
3110 Results.getCodeCompletionTUInfo());
Dmitri Gribenko6cfb1532013-02-14 13:53:30 +00003111 const CXXMethodDecl *Overridden = *M;
Douglas Gregorac322ec2010-08-27 21:18:54 +00003112 if (Overridden->getCanonicalDecl() == Method->getCanonicalDecl())
3113 continue;
3114
3115 // If we need a nested-name-specifier, add one now.
3116 if (!InContext) {
3117 NestedNameSpecifier *NNS
3118 = getRequiredQualification(S.Context, CurContext,
3119 Overridden->getDeclContext());
3120 if (NNS) {
3121 std::string Str;
3122 llvm::raw_string_ostream OS(Str);
Douglas Gregor75acd922011-09-27 23:30:47 +00003123 NNS->print(OS, Policy);
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00003124 Builder.AddTextChunk(Results.getAllocator().CopyString(OS.str()));
Douglas Gregorac322ec2010-08-27 21:18:54 +00003125 }
3126 } else if (!InContext->Equals(Overridden->getDeclContext()))
3127 continue;
3128
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00003129 Builder.AddTypedTextChunk(Results.getAllocator().CopyString(
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003130 Overridden->getNameAsString()));
3131 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
Douglas Gregorac322ec2010-08-27 21:18:54 +00003132 bool FirstParam = true;
Aaron Ballman43b68be2014-03-07 17:50:17 +00003133 for (auto P : Method->params()) {
Douglas Gregorac322ec2010-08-27 21:18:54 +00003134 if (FirstParam)
3135 FirstParam = false;
3136 else
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003137 Builder.AddChunk(CodeCompletionString::CK_Comma);
Douglas Gregorac322ec2010-08-27 21:18:54 +00003138
Aaron Ballman43b68be2014-03-07 17:50:17 +00003139 Builder.AddPlaceholderChunk(
3140 Results.getAllocator().CopyString(P->getIdentifier()->getName()));
Douglas Gregorac322ec2010-08-27 21:18:54 +00003141 }
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003142 Builder.AddChunk(CodeCompletionString::CK_RightParen);
3143 Results.AddResult(CodeCompletionResult(Builder.TakeString(),
Douglas Gregorac322ec2010-08-27 21:18:54 +00003144 CCP_SuperCompletion,
Douglas Gregor78254c82012-03-27 23:34:16 +00003145 CXCursor_CXXMethod,
3146 CXAvailability_Available,
3147 Overridden));
Douglas Gregorac322ec2010-08-27 21:18:54 +00003148 Results.Ignore(Overridden);
3149 }
3150}
3151
Douglas Gregor07f43572012-01-29 18:15:03 +00003152void Sema::CodeCompleteModuleImport(SourceLocation ImportLoc,
3153 ModuleIdPath Path) {
3154 typedef CodeCompletionResult Result;
3155 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003156 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor07f43572012-01-29 18:15:03 +00003157 CodeCompletionContext::CCC_Other);
3158 Results.EnterNewScope();
3159
3160 CodeCompletionAllocator &Allocator = Results.getAllocator();
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003161 CodeCompletionBuilder Builder(Allocator, Results.getCodeCompletionTUInfo());
Douglas Gregor07f43572012-01-29 18:15:03 +00003162 typedef CodeCompletionResult Result;
3163 if (Path.empty()) {
3164 // Enumerate all top-level modules.
Dmitri Gribenkof8579502013-01-12 19:30:44 +00003165 SmallVector<Module *, 8> Modules;
Douglas Gregor07f43572012-01-29 18:15:03 +00003166 PP.getHeaderSearchInfo().collectAllModules(Modules);
3167 for (unsigned I = 0, N = Modules.size(); I != N; ++I) {
3168 Builder.AddTypedTextChunk(
3169 Builder.getAllocator().CopyString(Modules[I]->Name));
3170 Results.AddResult(Result(Builder.TakeString(),
3171 CCP_Declaration,
Argyrios Kyrtzidis345d05f2013-05-29 18:50:15 +00003172 CXCursor_ModuleImportDecl,
Douglas Gregor07f43572012-01-29 18:15:03 +00003173 Modules[I]->isAvailable()
3174 ? CXAvailability_Available
3175 : CXAvailability_NotAvailable));
3176 }
Daniel Jasper07e6c402013-08-05 20:26:17 +00003177 } else if (getLangOpts().Modules) {
Douglas Gregor07f43572012-01-29 18:15:03 +00003178 // Load the named module.
3179 Module *Mod = PP.getModuleLoader().loadModule(ImportLoc, Path,
3180 Module::AllVisible,
3181 /*IsInclusionDirective=*/false);
3182 // Enumerate submodules.
3183 if (Mod) {
3184 for (Module::submodule_iterator Sub = Mod->submodule_begin(),
3185 SubEnd = Mod->submodule_end();
3186 Sub != SubEnd; ++Sub) {
3187
3188 Builder.AddTypedTextChunk(
3189 Builder.getAllocator().CopyString((*Sub)->Name));
3190 Results.AddResult(Result(Builder.TakeString(),
3191 CCP_Declaration,
Argyrios Kyrtzidis345d05f2013-05-29 18:50:15 +00003192 CXCursor_ModuleImportDecl,
Douglas Gregor07f43572012-01-29 18:15:03 +00003193 (*Sub)->isAvailable()
3194 ? CXAvailability_Available
3195 : CXAvailability_NotAvailable));
3196 }
3197 }
3198 }
3199 Results.ExitScope();
3200 HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(),
3201 Results.data(),Results.size());
3202}
3203
Douglas Gregor504a6ae2010-01-10 23:08:15 +00003204void Sema::CodeCompleteOrdinaryName(Scope *S,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003205 ParserCompletionContext CompletionContext) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003206 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003207 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor0ac41382010-09-23 23:01:17 +00003208 mapCodeCompletionContext(*this, CompletionContext));
Douglas Gregorac322ec2010-08-27 21:18:54 +00003209 Results.EnterNewScope();
Douglas Gregor50832e02010-09-20 22:39:41 +00003210
Douglas Gregor504a6ae2010-01-10 23:08:15 +00003211 // Determine how to filter results, e.g., so that the names of
3212 // values (functions, enumerators, function templates, etc.) are
3213 // only allowed where we can have an expression.
3214 switch (CompletionContext) {
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003215 case PCC_Namespace:
3216 case PCC_Class:
3217 case PCC_ObjCInterface:
3218 case PCC_ObjCImplementation:
3219 case PCC_ObjCInstanceVariableList:
3220 case PCC_Template:
3221 case PCC_MemberTemplate:
Douglas Gregorf02e5f32010-08-24 01:11:00 +00003222 case PCC_Type:
Douglas Gregor80039242011-02-15 20:33:25 +00003223 case PCC_LocalDeclarationSpecifiers:
Douglas Gregor504a6ae2010-01-10 23:08:15 +00003224 Results.setFilter(&ResultBuilder::IsOrdinaryNonValueName);
3225 break;
3226
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003227 case PCC_Statement:
Douglas Gregor5e35d592010-09-14 23:59:36 +00003228 case PCC_ParenthesizedExpression:
Douglas Gregor4d755e82010-08-24 23:58:17 +00003229 case PCC_Expression:
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003230 case PCC_ForInit:
3231 case PCC_Condition:
David Blaikiebbafb8a2012-03-11 07:00:24 +00003232 if (WantTypesInContext(CompletionContext, getLangOpts()))
Douglas Gregor70febae2010-05-28 00:49:12 +00003233 Results.setFilter(&ResultBuilder::IsOrdinaryName);
3234 else
3235 Results.setFilter(&ResultBuilder::IsOrdinaryNonTypeName);
Douglas Gregorac322ec2010-08-27 21:18:54 +00003236
David Blaikiebbafb8a2012-03-11 07:00:24 +00003237 if (getLangOpts().CPlusPlus)
Douglas Gregorac322ec2010-08-27 21:18:54 +00003238 MaybeAddOverrideCalls(*this, /*InContext=*/0, Results);
Douglas Gregor504a6ae2010-01-10 23:08:15 +00003239 break;
Douglas Gregor6da3db42010-05-25 05:58:43 +00003240
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003241 case PCC_RecoveryInFunction:
Douglas Gregor6da3db42010-05-25 05:58:43 +00003242 // Unfiltered
3243 break;
Douglas Gregor504a6ae2010-01-10 23:08:15 +00003244 }
3245
Douglas Gregor9be0ed42010-08-26 16:36:48 +00003246 // If we are in a C++ non-static member function, check the qualifiers on
3247 // the member function to filter/prioritize the results list.
3248 if (CXXMethodDecl *CurMethod = dyn_cast<CXXMethodDecl>(CurContext))
3249 if (CurMethod->isInstance())
3250 Results.setObjectTypeQualifiers(
3251 Qualifiers::fromCVRMask(CurMethod->getTypeQualifiers()));
3252
Douglas Gregorc580c522010-01-14 01:09:38 +00003253 CodeCompletionDeclConsumer Consumer(Results, CurContext);
Douglas Gregor39982192010-08-15 06:18:01 +00003254 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
3255 CodeCompleter->includeGlobals());
Douglas Gregor92253692009-12-07 09:54:55 +00003256
Douglas Gregorf98e6a22010-01-13 23:51:12 +00003257 AddOrdinaryNameResults(CompletionContext, S, *this, Results);
Douglas Gregor92253692009-12-07 09:54:55 +00003258 Results.ExitScope();
3259
Douglas Gregorce0e8562010-08-23 21:54:33 +00003260 switch (CompletionContext) {
Douglas Gregor5e35d592010-09-14 23:59:36 +00003261 case PCC_ParenthesizedExpression:
Douglas Gregorf02e5f32010-08-24 01:11:00 +00003262 case PCC_Expression:
3263 case PCC_Statement:
3264 case PCC_RecoveryInFunction:
3265 if (S->getFnParent())
David Blaikiebbafb8a2012-03-11 07:00:24 +00003266 AddPrettyFunctionResults(PP.getLangOpts(), Results);
Douglas Gregorf02e5f32010-08-24 01:11:00 +00003267 break;
3268
3269 case PCC_Namespace:
3270 case PCC_Class:
3271 case PCC_ObjCInterface:
3272 case PCC_ObjCImplementation:
3273 case PCC_ObjCInstanceVariableList:
3274 case PCC_Template:
3275 case PCC_MemberTemplate:
3276 case PCC_ForInit:
3277 case PCC_Condition:
3278 case PCC_Type:
Douglas Gregor80039242011-02-15 20:33:25 +00003279 case PCC_LocalDeclarationSpecifiers:
Douglas Gregorf02e5f32010-08-24 01:11:00 +00003280 break;
Douglas Gregorce0e8562010-08-23 21:54:33 +00003281 }
3282
Douglas Gregor9eb77012009-11-07 00:00:49 +00003283 if (CodeCompleter->includeMacros())
Douglas Gregor8cb17462012-10-09 16:01:50 +00003284 AddMacroResults(PP, Results, false);
Douglas Gregorce0e8562010-08-23 21:54:33 +00003285
Douglas Gregor50832e02010-09-20 22:39:41 +00003286 HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003287 Results.data(),Results.size());
Douglas Gregor9d64c5e2009-09-21 20:51:25 +00003288}
3289
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00003290static void AddClassMessageCompletions(Sema &SemaRef, Scope *S,
3291 ParsedType Receiver,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00003292 ArrayRef<IdentifierInfo *> SelIdents,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00003293 bool AtArgumentExpression,
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00003294 bool IsSuper,
3295 ResultBuilder &Results);
3296
3297void Sema::CodeCompleteDeclSpec(Scope *S, DeclSpec &DS,
3298 bool AllowNonIdentifiers,
3299 bool AllowNestedNameSpecifiers) {
John McCall276321a2010-08-25 06:19:51 +00003300 typedef CodeCompletionResult Result;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003301 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003302 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor0ac41382010-09-23 23:01:17 +00003303 AllowNestedNameSpecifiers
3304 ? CodeCompletionContext::CCC_PotentiallyQualifiedName
3305 : CodeCompletionContext::CCC_Name);
Douglas Gregorc49f5b22010-08-23 18:23:48 +00003306 Results.EnterNewScope();
3307
3308 // Type qualifiers can come after names.
3309 Results.AddResult(Result("const"));
3310 Results.AddResult(Result("volatile"));
David Blaikiebbafb8a2012-03-11 07:00:24 +00003311 if (getLangOpts().C99)
Douglas Gregorc49f5b22010-08-23 18:23:48 +00003312 Results.AddResult(Result("restrict"));
3313
David Blaikiebbafb8a2012-03-11 07:00:24 +00003314 if (getLangOpts().CPlusPlus) {
Douglas Gregorc49f5b22010-08-23 18:23:48 +00003315 if (AllowNonIdentifiers) {
3316 Results.AddResult(Result("operator"));
3317 }
3318
3319 // Add nested-name-specifiers.
3320 if (AllowNestedNameSpecifiers) {
3321 Results.allowNestedNameSpecifiers();
Douglas Gregor0ac41382010-09-23 23:01:17 +00003322 Results.setFilter(&ResultBuilder::IsImpossibleToSatisfy);
Douglas Gregorc49f5b22010-08-23 18:23:48 +00003323 CodeCompletionDeclConsumer Consumer(Results, CurContext);
3324 LookupVisibleDecls(S, LookupNestedNameSpecifierName, Consumer,
3325 CodeCompleter->includeGlobals());
Douglas Gregor0ac41382010-09-23 23:01:17 +00003326 Results.setFilter(0);
Douglas Gregorc49f5b22010-08-23 18:23:48 +00003327 }
3328 }
3329 Results.ExitScope();
3330
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00003331 // If we're in a context where we might have an expression (rather than a
3332 // declaration), and what we've seen so far is an Objective-C type that could
3333 // be a receiver of a class message, this may be a class message send with
3334 // the initial opening bracket '[' missing. Add appropriate completions.
3335 if (AllowNonIdentifiers && !AllowNestedNameSpecifiers &&
Richard Smithb4a9e862013-04-12 22:46:28 +00003336 DS.getParsedSpecifiers() == DeclSpec::PQ_TypeSpecifier &&
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00003337 DS.getTypeSpecType() == DeclSpec::TST_typename &&
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00003338 DS.getTypeSpecComplex() == DeclSpec::TSC_unspecified &&
3339 DS.getTypeSpecSign() == DeclSpec::TSS_unspecified &&
Richard Smithb4a9e862013-04-12 22:46:28 +00003340 !DS.isTypeAltiVecVector() &&
3341 S &&
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00003342 (S->getFlags() & Scope::DeclScope) != 0 &&
3343 (S->getFlags() & (Scope::ClassScope | Scope::TemplateParamScope |
3344 Scope::FunctionPrototypeScope |
3345 Scope::AtCatchScope)) == 0) {
3346 ParsedType T = DS.getRepAsType();
3347 if (!T.get().isNull() && T.get()->isObjCObjectOrInterfaceType())
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00003348 AddClassMessageCompletions(*this, S, T, None, false, false, Results);
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00003349 }
3350
Douglas Gregor56ccce02010-08-24 04:59:56 +00003351 // Note that we intentionally suppress macro results here, since we do not
3352 // encourage using macros to produce the names of entities.
3353
Douglas Gregor0ac41382010-09-23 23:01:17 +00003354 HandleCodeCompleteResults(this, CodeCompleter,
3355 Results.getCompletionContext(),
Douglas Gregorc49f5b22010-08-23 18:23:48 +00003356 Results.data(), Results.size());
3357}
3358
Douglas Gregor68762e72010-08-23 21:17:50 +00003359struct Sema::CodeCompleteExpressionData {
3360 CodeCompleteExpressionData(QualType PreferredType = QualType())
3361 : PreferredType(PreferredType), IntegralConstantExpression(false),
3362 ObjCCollection(false) { }
3363
3364 QualType PreferredType;
3365 bool IntegralConstantExpression;
3366 bool ObjCCollection;
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003367 SmallVector<Decl *, 4> IgnoreDecls;
Douglas Gregor68762e72010-08-23 21:17:50 +00003368};
3369
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003370/// \brief Perform code-completion in an expression context when we know what
3371/// type we're looking for.
Douglas Gregor68762e72010-08-23 21:17:50 +00003372void Sema::CodeCompleteExpression(Scope *S,
3373 const CodeCompleteExpressionData &Data) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003374 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003375 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003376 CodeCompletionContext::CCC_Expression);
Douglas Gregor68762e72010-08-23 21:17:50 +00003377 if (Data.ObjCCollection)
3378 Results.setFilter(&ResultBuilder::IsObjCCollection);
3379 else if (Data.IntegralConstantExpression)
Douglas Gregor85b50632010-07-28 21:50:18 +00003380 Results.setFilter(&ResultBuilder::IsIntegralConstantValue);
David Blaikiebbafb8a2012-03-11 07:00:24 +00003381 else if (WantTypesInContext(PCC_Expression, getLangOpts()))
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003382 Results.setFilter(&ResultBuilder::IsOrdinaryName);
3383 else
3384 Results.setFilter(&ResultBuilder::IsOrdinaryNonTypeName);
Douglas Gregor68762e72010-08-23 21:17:50 +00003385
3386 if (!Data.PreferredType.isNull())
3387 Results.setPreferredType(Data.PreferredType.getNonReferenceType());
3388
3389 // Ignore any declarations that we were told that we don't care about.
3390 for (unsigned I = 0, N = Data.IgnoreDecls.size(); I != N; ++I)
3391 Results.Ignore(Data.IgnoreDecls[I]);
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003392
3393 CodeCompletionDeclConsumer Consumer(Results, CurContext);
Douglas Gregor39982192010-08-15 06:18:01 +00003394 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
3395 CodeCompleter->includeGlobals());
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003396
3397 Results.EnterNewScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003398 AddOrdinaryNameResults(PCC_Expression, S, *this, Results);
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003399 Results.ExitScope();
3400
Douglas Gregor55b037b2010-07-08 20:55:51 +00003401 bool PreferredTypeIsPointer = false;
Douglas Gregor68762e72010-08-23 21:17:50 +00003402 if (!Data.PreferredType.isNull())
3403 PreferredTypeIsPointer = Data.PreferredType->isAnyPointerType()
3404 || Data.PreferredType->isMemberPointerType()
3405 || Data.PreferredType->isBlockPointerType();
Douglas Gregor55b037b2010-07-08 20:55:51 +00003406
Douglas Gregorce0e8562010-08-23 21:54:33 +00003407 if (S->getFnParent() &&
3408 !Data.ObjCCollection &&
3409 !Data.IntegralConstantExpression)
David Blaikiebbafb8a2012-03-11 07:00:24 +00003410 AddPrettyFunctionResults(PP.getLangOpts(), Results);
Douglas Gregorce0e8562010-08-23 21:54:33 +00003411
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003412 if (CodeCompleter->includeMacros())
Douglas Gregor8cb17462012-10-09 16:01:50 +00003413 AddMacroResults(PP, Results, false, PreferredTypeIsPointer);
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003414 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor68762e72010-08-23 21:17:50 +00003415 CodeCompletionContext(CodeCompletionContext::CCC_Expression,
3416 Data.PreferredType),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003417 Results.data(),Results.size());
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003418}
3419
Douglas Gregoreda7e542010-09-18 01:28:11 +00003420void Sema::CodeCompletePostfixExpression(Scope *S, ExprResult E) {
3421 if (E.isInvalid())
3422 CodeCompleteOrdinaryName(S, PCC_RecoveryInFunction);
David Blaikiebbafb8a2012-03-11 07:00:24 +00003423 else if (getLangOpts().ObjC1)
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00003424 CodeCompleteObjCInstanceMessage(S, E.take(), None, false);
Douglas Gregored0b69d2010-09-15 16:23:04 +00003425}
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003426
Douglas Gregorb888acf2010-12-09 23:01:55 +00003427/// \brief The set of properties that have already been added, referenced by
3428/// property name.
3429typedef llvm::SmallPtrSet<IdentifierInfo*, 16> AddedPropertiesSet;
3430
Douglas Gregor9b4f3702012-06-12 13:44:08 +00003431/// \brief Retrieve the container definition, if any?
3432static ObjCContainerDecl *getContainerDef(ObjCContainerDecl *Container) {
3433 if (ObjCInterfaceDecl *Interface = dyn_cast<ObjCInterfaceDecl>(Container)) {
3434 if (Interface->hasDefinition())
3435 return Interface->getDefinition();
3436
3437 return Interface;
3438 }
3439
3440 if (ObjCProtocolDecl *Protocol = dyn_cast<ObjCProtocolDecl>(Container)) {
3441 if (Protocol->hasDefinition())
3442 return Protocol->getDefinition();
3443
3444 return Protocol;
3445 }
3446 return Container;
3447}
3448
3449static void AddObjCProperties(ObjCContainerDecl *Container,
Douglas Gregor5d649882009-11-18 22:32:06 +00003450 bool AllowCategories,
Douglas Gregor95147142011-05-05 15:50:42 +00003451 bool AllowNullaryMethods,
Douglas Gregor9291bad2009-11-18 01:29:26 +00003452 DeclContext *CurContext,
Douglas Gregorb888acf2010-12-09 23:01:55 +00003453 AddedPropertiesSet &AddedProperties,
Douglas Gregor9291bad2009-11-18 01:29:26 +00003454 ResultBuilder &Results) {
John McCall276321a2010-08-25 06:19:51 +00003455 typedef CodeCompletionResult Result;
Douglas Gregor9291bad2009-11-18 01:29:26 +00003456
Douglas Gregor9b4f3702012-06-12 13:44:08 +00003457 // Retrieve the definition.
3458 Container = getContainerDef(Container);
3459
Douglas Gregor9291bad2009-11-18 01:29:26 +00003460 // Add properties in this container.
3461 for (ObjCContainerDecl::prop_iterator P = Container->prop_begin(),
3462 PEnd = Container->prop_end();
3463 P != PEnd;
Douglas Gregorb888acf2010-12-09 23:01:55 +00003464 ++P) {
3465 if (AddedProperties.insert(P->getIdentifier()))
Douglas Gregor0a0e2b32013-01-31 04:52:16 +00003466 Results.MaybeAddResult(Result(*P, Results.getBasePriority(*P), 0),
3467 CurContext);
Douglas Gregorb888acf2010-12-09 23:01:55 +00003468 }
Douglas Gregor9291bad2009-11-18 01:29:26 +00003469
Douglas Gregor95147142011-05-05 15:50:42 +00003470 // Add nullary methods
3471 if (AllowNullaryMethods) {
3472 ASTContext &Context = Container->getASTContext();
Douglas Gregor75acd922011-09-27 23:30:47 +00003473 PrintingPolicy Policy = getCompletionPrintingPolicy(Results.getSema());
Douglas Gregor95147142011-05-05 15:50:42 +00003474 for (ObjCContainerDecl::method_iterator M = Container->meth_begin(),
3475 MEnd = Container->meth_end();
3476 M != MEnd; ++M) {
3477 if (M->getSelector().isUnarySelector())
3478 if (IdentifierInfo *Name = M->getSelector().getIdentifierInfoForSlot(0))
3479 if (AddedProperties.insert(Name)) {
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003480 CodeCompletionBuilder Builder(Results.getAllocator(),
3481 Results.getCodeCompletionTUInfo());
David Blaikie40ed2972012-06-06 20:45:41 +00003482 AddResultTypeChunk(Context, Policy, *M, Builder);
Douglas Gregor95147142011-05-05 15:50:42 +00003483 Builder.AddTypedTextChunk(
3484 Results.getAllocator().CopyString(Name->getName()));
3485
David Blaikie40ed2972012-06-06 20:45:41 +00003486 Results.MaybeAddResult(Result(Builder.TakeString(), *M,
Douglas Gregor78254c82012-03-27 23:34:16 +00003487 CCP_MemberDeclaration + CCD_MethodAsProperty),
Douglas Gregor95147142011-05-05 15:50:42 +00003488 CurContext);
3489 }
3490 }
3491 }
3492
3493
Douglas Gregor9291bad2009-11-18 01:29:26 +00003494 // Add properties in referenced protocols.
3495 if (ObjCProtocolDecl *Protocol = dyn_cast<ObjCProtocolDecl>(Container)) {
3496 for (ObjCProtocolDecl::protocol_iterator P = Protocol->protocol_begin(),
3497 PEnd = Protocol->protocol_end();
3498 P != PEnd; ++P)
Douglas Gregor95147142011-05-05 15:50:42 +00003499 AddObjCProperties(*P, AllowCategories, AllowNullaryMethods, CurContext,
3500 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.
Douglas Gregor048fbfa2013-01-16 23:00:23 +00003504 for (ObjCInterfaceDecl::known_categories_iterator
3505 Cat = IFace->known_categories_begin(),
3506 CatEnd = IFace->known_categories_end();
3507 Cat != CatEnd; ++Cat)
3508 AddObjCProperties(*Cat, AllowCategories, AllowNullaryMethods,
Douglas Gregor95147142011-05-05 15:50:42 +00003509 CurContext, AddedProperties, Results);
Douglas Gregor5d649882009-11-18 22:32:06 +00003510 }
Douglas Gregor9291bad2009-11-18 01:29:26 +00003511
3512 // Look through protocols.
Ted Kremenek0ef508d2010-09-01 01:21:15 +00003513 for (ObjCInterfaceDecl::all_protocol_iterator
3514 I = IFace->all_referenced_protocol_begin(),
3515 E = IFace->all_referenced_protocol_end(); I != E; ++I)
Douglas Gregor95147142011-05-05 15:50:42 +00003516 AddObjCProperties(*I, AllowCategories, AllowNullaryMethods, CurContext,
3517 AddedProperties, Results);
Douglas Gregor9291bad2009-11-18 01:29:26 +00003518
3519 // Look in the superclass.
3520 if (IFace->getSuperClass())
Douglas Gregor95147142011-05-05 15:50:42 +00003521 AddObjCProperties(IFace->getSuperClass(), AllowCategories,
3522 AllowNullaryMethods, CurContext,
Douglas Gregorb888acf2010-12-09 23:01:55 +00003523 AddedProperties, Results);
Douglas Gregor9291bad2009-11-18 01:29:26 +00003524 } else if (const ObjCCategoryDecl *Category
3525 = dyn_cast<ObjCCategoryDecl>(Container)) {
3526 // Look through protocols.
Ted Kremenek0ef508d2010-09-01 01:21:15 +00003527 for (ObjCCategoryDecl::protocol_iterator P = Category->protocol_begin(),
3528 PEnd = Category->protocol_end();
Douglas Gregor9291bad2009-11-18 01:29:26 +00003529 P != PEnd; ++P)
Douglas Gregor95147142011-05-05 15:50:42 +00003530 AddObjCProperties(*P, AllowCategories, AllowNullaryMethods, CurContext,
3531 AddedProperties, Results);
Douglas Gregor9291bad2009-11-18 01:29:26 +00003532 }
3533}
3534
Douglas Gregor1cc88a92012-01-23 15:59:30 +00003535void Sema::CodeCompleteMemberReferenceExpr(Scope *S, Expr *Base,
Douglas Gregor2436e712009-09-17 21:32:03 +00003536 SourceLocation OpLoc,
3537 bool IsArrow) {
Douglas Gregor1cc88a92012-01-23 15:59:30 +00003538 if (!Base || !CodeCompleter)
Douglas Gregor2436e712009-09-17 21:32:03 +00003539 return;
3540
Douglas Gregor1cc88a92012-01-23 15:59:30 +00003541 ExprResult ConvertedBase = PerformMemberExprBaseConversion(Base, IsArrow);
3542 if (ConvertedBase.isInvalid())
3543 return;
3544 Base = ConvertedBase.get();
3545
John McCall276321a2010-08-25 06:19:51 +00003546 typedef CodeCompletionResult Result;
Douglas Gregor3545ff42009-09-21 16:56:56 +00003547
Douglas Gregor2436e712009-09-17 21:32:03 +00003548 QualType BaseType = Base->getType();
Douglas Gregor3545ff42009-09-21 16:56:56 +00003549
3550 if (IsArrow) {
3551 if (const PointerType *Ptr = BaseType->getAs<PointerType>())
3552 BaseType = Ptr->getPointeeType();
3553 else if (BaseType->isObjCObjectPointerType())
Douglas Gregor9be0ed42010-08-26 16:36:48 +00003554 /*Do nothing*/ ;
Douglas Gregor3545ff42009-09-21 16:56:56 +00003555 else
3556 return;
3557 }
3558
Douglas Gregor21325842011-07-07 16:03:39 +00003559 enum CodeCompletionContext::Kind contextKind;
3560
3561 if (IsArrow) {
3562 contextKind = CodeCompletionContext::CCC_ArrowMemberAccess;
3563 }
3564 else {
3565 if (BaseType->isObjCObjectPointerType() ||
3566 BaseType->isObjCObjectOrInterfaceType()) {
3567 contextKind = CodeCompletionContext::CCC_ObjCPropertyAccess;
3568 }
3569 else {
3570 contextKind = CodeCompletionContext::CCC_DotMemberAccess;
3571 }
3572 }
3573
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003574 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003575 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor21325842011-07-07 16:03:39 +00003576 CodeCompletionContext(contextKind,
Douglas Gregor0ac41382010-09-23 23:01:17 +00003577 BaseType),
3578 &ResultBuilder::IsMember);
Douglas Gregor9291bad2009-11-18 01:29:26 +00003579 Results.EnterNewScope();
3580 if (const RecordType *Record = BaseType->getAs<RecordType>()) {
Douglas Gregor9be0ed42010-08-26 16:36:48 +00003581 // Indicate that we are performing a member access, and the cv-qualifiers
3582 // for the base object type.
3583 Results.setObjectTypeQualifiers(BaseType.getQualifiers());
3584
Douglas Gregor9291bad2009-11-18 01:29:26 +00003585 // Access to a C/C++ class, struct, or union.
Douglas Gregor6ae4c522010-01-14 03:21:49 +00003586 Results.allowNestedNameSpecifiers();
Douglas Gregor09bbc652010-01-14 15:47:35 +00003587 CodeCompletionDeclConsumer Consumer(Results, CurContext);
Douglas Gregor39982192010-08-15 06:18:01 +00003588 LookupVisibleDecls(Record->getDecl(), LookupMemberName, Consumer,
3589 CodeCompleter->includeGlobals());
Daniel Dunbar242ea9a2009-11-13 08:58:20 +00003590
David Blaikiebbafb8a2012-03-11 07:00:24 +00003591 if (getLangOpts().CPlusPlus) {
Douglas Gregor9291bad2009-11-18 01:29:26 +00003592 if (!Results.empty()) {
3593 // The "template" keyword can follow "->" or "." in the grammar.
3594 // However, we only want to suggest the template keyword if something
3595 // is dependent.
3596 bool IsDependent = BaseType->isDependentType();
3597 if (!IsDependent) {
3598 for (Scope *DepScope = S; DepScope; DepScope = DepScope->getParent())
Ted Kremenekc37877d2013-10-08 17:08:03 +00003599 if (DeclContext *Ctx = DepScope->getEntity()) {
Douglas Gregor9291bad2009-11-18 01:29:26 +00003600 IsDependent = Ctx->isDependentContext();
3601 break;
3602 }
3603 }
Daniel Dunbar242ea9a2009-11-13 08:58:20 +00003604
Douglas Gregor9291bad2009-11-18 01:29:26 +00003605 if (IsDependent)
Douglas Gregor78a21012010-01-14 16:01:26 +00003606 Results.AddResult(Result("template"));
Daniel Dunbar242ea9a2009-11-13 08:58:20 +00003607 }
Daniel Dunbar242ea9a2009-11-13 08:58:20 +00003608 }
Douglas Gregor9291bad2009-11-18 01:29:26 +00003609 } else if (!IsArrow && BaseType->getAsObjCInterfacePointerType()) {
3610 // Objective-C property reference.
Douglas Gregorb888acf2010-12-09 23:01:55 +00003611 AddedPropertiesSet AddedProperties;
Douglas Gregor9291bad2009-11-18 01:29:26 +00003612
3613 // Add property results based on our interface.
3614 const ObjCObjectPointerType *ObjCPtr
3615 = BaseType->getAsObjCInterfacePointerType();
3616 assert(ObjCPtr && "Non-NULL pointer guaranteed above!");
Douglas Gregor95147142011-05-05 15:50:42 +00003617 AddObjCProperties(ObjCPtr->getInterfaceDecl(), true,
3618 /*AllowNullaryMethods=*/true, CurContext,
Douglas Gregorb888acf2010-12-09 23:01:55 +00003619 AddedProperties, Results);
Douglas Gregor9291bad2009-11-18 01:29:26 +00003620
3621 // Add properties from the protocols in a qualified interface.
3622 for (ObjCObjectPointerType::qual_iterator I = ObjCPtr->qual_begin(),
3623 E = ObjCPtr->qual_end();
3624 I != E; ++I)
Douglas Gregor95147142011-05-05 15:50:42 +00003625 AddObjCProperties(*I, true, /*AllowNullaryMethods=*/true, CurContext,
3626 AddedProperties, Results);
Douglas Gregor9291bad2009-11-18 01:29:26 +00003627 } else if ((IsArrow && BaseType->isObjCObjectPointerType()) ||
John McCall8b07ec22010-05-15 11:32:37 +00003628 (!IsArrow && BaseType->isObjCObjectType())) {
Douglas Gregor9291bad2009-11-18 01:29:26 +00003629 // Objective-C instance variable access.
3630 ObjCInterfaceDecl *Class = 0;
3631 if (const ObjCObjectPointerType *ObjCPtr
3632 = BaseType->getAs<ObjCObjectPointerType>())
3633 Class = ObjCPtr->getInterfaceDecl();
3634 else
John McCall8b07ec22010-05-15 11:32:37 +00003635 Class = BaseType->getAs<ObjCObjectType>()->getInterface();
Douglas Gregor9291bad2009-11-18 01:29:26 +00003636
3637 // Add all ivars from this class and its superclasses.
Douglas Gregor2b8162b2010-01-14 16:08:12 +00003638 if (Class) {
3639 CodeCompletionDeclConsumer Consumer(Results, CurContext);
3640 Results.setFilter(&ResultBuilder::IsObjCIvar);
Douglas Gregor39982192010-08-15 06:18:01 +00003641 LookupVisibleDecls(Class, LookupMemberName, Consumer,
3642 CodeCompleter->includeGlobals());
Douglas Gregor9291bad2009-11-18 01:29:26 +00003643 }
Douglas Gregor3545ff42009-09-21 16:56:56 +00003644 }
Douglas Gregor9291bad2009-11-18 01:29:26 +00003645
3646 // FIXME: How do we cope with isa?
3647
3648 Results.ExitScope();
Daniel Dunbar242ea9a2009-11-13 08:58:20 +00003649
Daniel Dunbar242ea9a2009-11-13 08:58:20 +00003650 // Hand off the results found for code completion.
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003651 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor0ac41382010-09-23 23:01:17 +00003652 Results.getCompletionContext(),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003653 Results.data(),Results.size());
Douglas Gregor2436e712009-09-17 21:32:03 +00003654}
3655
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00003656void Sema::CodeCompleteTag(Scope *S, unsigned TagSpec) {
3657 if (!CodeCompleter)
3658 return;
3659
Douglas Gregor3545ff42009-09-21 16:56:56 +00003660 ResultBuilder::LookupFilter Filter = 0;
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003661 enum CodeCompletionContext::Kind ContextKind
3662 = CodeCompletionContext::CCC_Other;
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00003663 switch ((DeclSpec::TST)TagSpec) {
3664 case DeclSpec::TST_enum:
Douglas Gregor3545ff42009-09-21 16:56:56 +00003665 Filter = &ResultBuilder::IsEnum;
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003666 ContextKind = CodeCompletionContext::CCC_EnumTag;
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00003667 break;
3668
3669 case DeclSpec::TST_union:
Douglas Gregor3545ff42009-09-21 16:56:56 +00003670 Filter = &ResultBuilder::IsUnion;
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003671 ContextKind = CodeCompletionContext::CCC_UnionTag;
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00003672 break;
3673
3674 case DeclSpec::TST_struct:
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00003675 case DeclSpec::TST_class:
Joao Matosdc86f942012-08-31 18:45:21 +00003676 case DeclSpec::TST_interface:
Douglas Gregor3545ff42009-09-21 16:56:56 +00003677 Filter = &ResultBuilder::IsClassOrStruct;
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003678 ContextKind = CodeCompletionContext::CCC_ClassOrStructTag;
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00003679 break;
3680
3681 default:
David Blaikie83d382b2011-09-23 05:06:16 +00003682 llvm_unreachable("Unknown type specifier kind in CodeCompleteTag");
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00003683 }
Douglas Gregor3545ff42009-09-21 16:56:56 +00003684
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003685 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
3686 CodeCompleter->getCodeCompletionTUInfo(), ContextKind);
Douglas Gregora6e2edc2010-01-14 03:27:13 +00003687 CodeCompletionDeclConsumer Consumer(Results, CurContext);
John McCalle87beb22010-04-23 18:46:30 +00003688
3689 // First pass: look for tags.
3690 Results.setFilter(Filter);
Douglas Gregor39982192010-08-15 06:18:01 +00003691 LookupVisibleDecls(S, LookupTagName, Consumer,
3692 CodeCompleter->includeGlobals());
John McCalle87beb22010-04-23 18:46:30 +00003693
Douglas Gregor39982192010-08-15 06:18:01 +00003694 if (CodeCompleter->includeGlobals()) {
3695 // Second pass: look for nested name specifiers.
3696 Results.setFilter(&ResultBuilder::IsNestedNameSpecifier);
3697 LookupVisibleDecls(S, LookupNestedNameSpecifierName, Consumer);
3698 }
Douglas Gregor3545ff42009-09-21 16:56:56 +00003699
Douglas Gregor0ac41382010-09-23 23:01:17 +00003700 HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003701 Results.data(),Results.size());
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00003702}
3703
Douglas Gregor28c78432010-08-27 17:35:51 +00003704void Sema::CodeCompleteTypeQualifiers(DeclSpec &DS) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003705 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003706 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003707 CodeCompletionContext::CCC_TypeQualifiers);
Douglas Gregor28c78432010-08-27 17:35:51 +00003708 Results.EnterNewScope();
3709 if (!(DS.getTypeQualifiers() & DeclSpec::TQ_const))
3710 Results.AddResult("const");
3711 if (!(DS.getTypeQualifiers() & DeclSpec::TQ_volatile))
3712 Results.AddResult("volatile");
David Blaikiebbafb8a2012-03-11 07:00:24 +00003713 if (getLangOpts().C99 &&
Douglas Gregor28c78432010-08-27 17:35:51 +00003714 !(DS.getTypeQualifiers() & DeclSpec::TQ_restrict))
3715 Results.AddResult("restrict");
Richard Smith8e1ac332013-03-28 01:55:44 +00003716 if (getLangOpts().C11 &&
3717 !(DS.getTypeQualifiers() & DeclSpec::TQ_atomic))
3718 Results.AddResult("_Atomic");
Douglas Gregor28c78432010-08-27 17:35:51 +00003719 Results.ExitScope();
3720 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor0ac41382010-09-23 23:01:17 +00003721 Results.getCompletionContext(),
Douglas Gregor28c78432010-08-27 17:35:51 +00003722 Results.data(), Results.size());
3723}
3724
Douglas Gregord328d572009-09-21 18:10:23 +00003725void Sema::CodeCompleteCase(Scope *S) {
John McCallaab3e412010-08-25 08:40:02 +00003726 if (getCurFunction()->SwitchStack.empty() || !CodeCompleter)
Douglas Gregord328d572009-09-21 18:10:23 +00003727 return;
John McCall5939b162011-08-06 07:30:58 +00003728
John McCallaab3e412010-08-25 08:40:02 +00003729 SwitchStmt *Switch = getCurFunction()->SwitchStack.back();
John McCall5939b162011-08-06 07:30:58 +00003730 QualType type = Switch->getCond()->IgnoreImplicit()->getType();
3731 if (!type->isEnumeralType()) {
3732 CodeCompleteExpressionData Data(type);
Douglas Gregor68762e72010-08-23 21:17:50 +00003733 Data.IntegralConstantExpression = true;
3734 CodeCompleteExpression(S, Data);
Douglas Gregord328d572009-09-21 18:10:23 +00003735 return;
Douglas Gregor85b50632010-07-28 21:50:18 +00003736 }
Douglas Gregord328d572009-09-21 18:10:23 +00003737
3738 // Code-complete the cases of a switch statement over an enumeration type
3739 // by providing the list of
John McCall5939b162011-08-06 07:30:58 +00003740 EnumDecl *Enum = type->castAs<EnumType>()->getDecl();
Douglas Gregor9b4f3702012-06-12 13:44:08 +00003741 if (EnumDecl *Def = Enum->getDefinition())
3742 Enum = Def;
Douglas Gregord328d572009-09-21 18:10:23 +00003743
3744 // Determine which enumerators we have already seen in the switch statement.
3745 // FIXME: Ideally, we would also be able to look *past* the code-completion
3746 // token, in case we are code-completing in the middle of the switch and not
3747 // at the end. However, we aren't able to do so at the moment.
3748 llvm::SmallPtrSet<EnumConstantDecl *, 8> EnumeratorsSeen;
Douglas Gregorf2510672009-09-21 19:57:38 +00003749 NestedNameSpecifier *Qualifier = 0;
Douglas Gregord328d572009-09-21 18:10:23 +00003750 for (SwitchCase *SC = Switch->getSwitchCaseList(); SC;
3751 SC = SC->getNextSwitchCase()) {
3752 CaseStmt *Case = dyn_cast<CaseStmt>(SC);
3753 if (!Case)
3754 continue;
3755
3756 Expr *CaseVal = Case->getLHS()->IgnoreParenCasts();
3757 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CaseVal))
3758 if (EnumConstantDecl *Enumerator
3759 = dyn_cast<EnumConstantDecl>(DRE->getDecl())) {
3760 // We look into the AST of the case statement to determine which
3761 // enumerator was named. Alternatively, we could compute the value of
3762 // the integral constant expression, then compare it against the
3763 // values of each enumerator. However, value-based approach would not
3764 // work as well with C++ templates where enumerators declared within a
3765 // template are type- and value-dependent.
3766 EnumeratorsSeen.insert(Enumerator);
3767
Douglas Gregorf2510672009-09-21 19:57:38 +00003768 // If this is a qualified-id, keep track of the nested-name-specifier
3769 // so that we can reproduce it as part of code completion, e.g.,
Douglas Gregord328d572009-09-21 18:10:23 +00003770 //
3771 // switch (TagD.getKind()) {
3772 // case TagDecl::TK_enum:
3773 // break;
3774 // case XXX
3775 //
Douglas Gregorf2510672009-09-21 19:57:38 +00003776 // At the XXX, our completions are TagDecl::TK_union,
Douglas Gregord328d572009-09-21 18:10:23 +00003777 // TagDecl::TK_struct, and TagDecl::TK_class, rather than TK_union,
3778 // TK_struct, and TK_class.
Douglas Gregor4bd90e52009-10-23 18:54:35 +00003779 Qualifier = DRE->getQualifier();
Douglas Gregord328d572009-09-21 18:10:23 +00003780 }
3781 }
3782
David Blaikiebbafb8a2012-03-11 07:00:24 +00003783 if (getLangOpts().CPlusPlus && !Qualifier && EnumeratorsSeen.empty()) {
Douglas Gregorf2510672009-09-21 19:57:38 +00003784 // If there are no prior enumerators in C++, check whether we have to
3785 // qualify the names of the enumerators that we suggest, because they
3786 // may not be visible in this scope.
Douglas Gregord3cebdb2012-02-01 05:02:47 +00003787 Qualifier = getRequiredQualification(Context, CurContext, Enum);
Douglas Gregorf2510672009-09-21 19:57:38 +00003788 }
3789
Douglas Gregord328d572009-09-21 18:10:23 +00003790 // Add any enumerators that have not yet been mentioned.
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003791 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003792 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003793 CodeCompletionContext::CCC_Expression);
Douglas Gregord328d572009-09-21 18:10:23 +00003794 Results.EnterNewScope();
Aaron Ballman23a6dcb2014-03-08 18:45:14 +00003795 for (auto *E : Enum->enumerators()) {
3796 if (EnumeratorsSeen.count(E))
Douglas Gregord328d572009-09-21 18:10:23 +00003797 continue;
3798
Aaron Ballman23a6dcb2014-03-08 18:45:14 +00003799 CodeCompletionResult R(E, CCP_EnumInCase, Qualifier);
Douglas Gregor3a69eaf2011-02-18 23:30:37 +00003800 Results.AddResult(R, CurContext, 0, false);
Douglas Gregord328d572009-09-21 18:10:23 +00003801 }
3802 Results.ExitScope();
Douglas Gregor285560922010-04-06 20:02:15 +00003803
Douglas Gregor21325842011-07-07 16:03:39 +00003804 //We need to make sure we're setting the right context,
3805 //so only say we include macros if the code completer says we do
3806 enum CodeCompletionContext::Kind kind = CodeCompletionContext::CCC_Other;
3807 if (CodeCompleter->includeMacros()) {
Douglas Gregor8cb17462012-10-09 16:01:50 +00003808 AddMacroResults(PP, Results, false);
Douglas Gregor21325842011-07-07 16:03:39 +00003809 kind = CodeCompletionContext::CCC_OtherWithMacros;
3810 }
3811
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003812 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor21325842011-07-07 16:03:39 +00003813 kind,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003814 Results.data(),Results.size());
Douglas Gregord328d572009-09-21 18:10:23 +00003815}
3816
Robert Wilhelm16e94b92013-08-09 18:02:13 +00003817static bool anyNullArguments(ArrayRef<Expr *> Args) {
Ahmed Charlesb24b9aa2012-02-25 11:00:22 +00003818 if (Args.size() && !Args.data())
Douglas Gregor6ed3eb82010-05-30 06:10:08 +00003819 return true;
Ahmed Charlesb24b9aa2012-02-25 11:00:22 +00003820
3821 for (unsigned I = 0; I != Args.size(); ++I)
Douglas Gregor6ed3eb82010-05-30 06:10:08 +00003822 if (!Args[I])
3823 return true;
Ahmed Charlesb24b9aa2012-02-25 11:00:22 +00003824
Douglas Gregor6ed3eb82010-05-30 06:10:08 +00003825 return false;
3826}
3827
Robert Wilhelm16e94b92013-08-09 18:02:13 +00003828void Sema::CodeCompleteCall(Scope *S, Expr *FnIn, ArrayRef<Expr *> Args) {
Douglas Gregorcabea402009-09-22 15:41:20 +00003829 if (!CodeCompleter)
3830 return;
Douglas Gregor3ef59522009-12-11 19:06:04 +00003831
3832 // When we're code-completing for a call, we fall back to ordinary
3833 // name code-completion whenever we can't produce specific
3834 // results. We may want to revisit this strategy in the future,
3835 // e.g., by merging the two kinds of results.
3836
Douglas Gregorcabea402009-09-22 15:41:20 +00003837 Expr *Fn = (Expr *)FnIn;
Douglas Gregor3ef59522009-12-11 19:06:04 +00003838
Douglas Gregorcabea402009-09-22 15:41:20 +00003839 // Ignore type-dependent call expressions entirely.
Ahmed Charlesb24b9aa2012-02-25 11:00:22 +00003840 if (!Fn || Fn->isTypeDependent() || anyNullArguments(Args) ||
3841 Expr::hasAnyTypeDependentArguments(Args)) {
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003842 CodeCompleteOrdinaryName(S, PCC_Expression);
Douglas Gregorcabea402009-09-22 15:41:20 +00003843 return;
Douglas Gregor3ef59522009-12-11 19:06:04 +00003844 }
Douglas Gregorcabea402009-09-22 15:41:20 +00003845
John McCall57500772009-12-16 12:17:52 +00003846 // Build an overload candidate set based on the functions we find.
John McCallbc077cf2010-02-08 23:07:23 +00003847 SourceLocation Loc = Fn->getExprLoc();
3848 OverloadCandidateSet CandidateSet(Loc);
John McCall57500772009-12-16 12:17:52 +00003849
Douglas Gregorcabea402009-09-22 15:41:20 +00003850 // FIXME: What if we're calling something that isn't a function declaration?
3851 // FIXME: What if we're calling a pseudo-destructor?
3852 // FIXME: What if we're calling a member function?
3853
Douglas Gregorff59f672010-01-21 15:46:19 +00003854 typedef CodeCompleteConsumer::OverloadCandidate ResultCandidate;
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003855 SmallVector<ResultCandidate, 8> Results;
Douglas Gregorff59f672010-01-21 15:46:19 +00003856
John McCall57500772009-12-16 12:17:52 +00003857 Expr *NakedFn = Fn->IgnoreParenCasts();
3858 if (UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(NakedFn))
Ahmed Charlesb24b9aa2012-02-25 11:00:22 +00003859 AddOverloadedCallCandidates(ULE, Args, CandidateSet,
John McCall57500772009-12-16 12:17:52 +00003860 /*PartialOverloading=*/ true);
3861 else if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(NakedFn)) {
3862 FunctionDecl *FDecl = dyn_cast<FunctionDecl>(DRE->getDecl());
Douglas Gregorff59f672010-01-21 15:46:19 +00003863 if (FDecl) {
David Blaikiebbafb8a2012-03-11 07:00:24 +00003864 if (!getLangOpts().CPlusPlus ||
Douglas Gregor6ed3eb82010-05-30 06:10:08 +00003865 !FDecl->getType()->getAs<FunctionProtoType>())
Douglas Gregorff59f672010-01-21 15:46:19 +00003866 Results.push_back(ResultCandidate(FDecl));
3867 else
John McCallb89836b2010-01-26 01:37:31 +00003868 // FIXME: access?
Ahmed Charlesb24b9aa2012-02-25 11:00:22 +00003869 AddOverloadCandidate(FDecl, DeclAccessPair::make(FDecl, AS_none), Args,
3870 CandidateSet, false, /*PartialOverloading*/true);
Douglas Gregorff59f672010-01-21 15:46:19 +00003871 }
John McCall57500772009-12-16 12:17:52 +00003872 }
Douglas Gregorcabea402009-09-22 15:41:20 +00003873
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003874 QualType ParamType;
3875
Douglas Gregorff59f672010-01-21 15:46:19 +00003876 if (!CandidateSet.empty()) {
3877 // Sort the overload candidate set by placing the best overloads first.
Benjamin Kramerbbdd7642014-03-01 14:48:57 +00003878 std::stable_sort(
3879 CandidateSet.begin(), CandidateSet.end(),
3880 [&](const OverloadCandidate &X, const OverloadCandidate &Y) {
3881 return isBetterOverloadCandidate(*this, X, Y, Loc);
3882 });
3883
Douglas Gregorff59f672010-01-21 15:46:19 +00003884 // Add the remaining viable overload candidates as code-completion reslults.
3885 for (OverloadCandidateSet::iterator Cand = CandidateSet.begin(),
3886 CandEnd = CandidateSet.end();
3887 Cand != CandEnd; ++Cand) {
3888 if (Cand->Viable)
3889 Results.push_back(ResultCandidate(Cand->Function));
3890 }
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003891
3892 // From the viable candidates, try to determine the type of this parameter.
3893 for (unsigned I = 0, N = Results.size(); I != N; ++I) {
3894 if (const FunctionType *FType = Results[I].getFunctionType())
3895 if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FType))
Alp Toker9cacbab2014-01-20 20:26:09 +00003896 if (Args.size() < Proto->getNumParams()) {
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003897 if (ParamType.isNull())
Alp Toker9cacbab2014-01-20 20:26:09 +00003898 ParamType = Proto->getParamType(Args.size());
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003899 else if (!Context.hasSameUnqualifiedType(
Alp Toker9cacbab2014-01-20 20:26:09 +00003900 ParamType.getNonReferenceType(),
3901 Proto->getParamType(Args.size())
3902 .getNonReferenceType())) {
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003903 ParamType = QualType();
3904 break;
3905 }
3906 }
3907 }
3908 } else {
3909 // Try to determine the parameter type from the type of the expression
3910 // being called.
3911 QualType FunctionType = Fn->getType();
3912 if (const PointerType *Ptr = FunctionType->getAs<PointerType>())
3913 FunctionType = Ptr->getPointeeType();
3914 else if (const BlockPointerType *BlockPtr
3915 = FunctionType->getAs<BlockPointerType>())
3916 FunctionType = BlockPtr->getPointeeType();
3917 else if (const MemberPointerType *MemPtr
3918 = FunctionType->getAs<MemberPointerType>())
3919 FunctionType = MemPtr->getPointeeType();
3920
3921 if (const FunctionProtoType *Proto
3922 = FunctionType->getAs<FunctionProtoType>()) {
Alp Toker9cacbab2014-01-20 20:26:09 +00003923 if (Args.size() < Proto->getNumParams())
3924 ParamType = Proto->getParamType(Args.size());
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003925 }
Douglas Gregorcabea402009-09-22 15:41:20 +00003926 }
Douglas Gregor3ef59522009-12-11 19:06:04 +00003927
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003928 if (ParamType.isNull())
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003929 CodeCompleteOrdinaryName(S, PCC_Expression);
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003930 else
3931 CodeCompleteExpression(S, ParamType);
3932
Douglas Gregorc01890e2010-04-06 20:19:47 +00003933 if (!Results.empty())
Ahmed Charlesb24b9aa2012-02-25 11:00:22 +00003934 CodeCompleter->ProcessOverloadCandidates(*this, Args.size(), Results.data(),
Douglas Gregor3ef59522009-12-11 19:06:04 +00003935 Results.size());
Douglas Gregorcabea402009-09-22 15:41:20 +00003936}
3937
John McCall48871652010-08-21 09:40:31 +00003938void Sema::CodeCompleteInitializer(Scope *S, Decl *D) {
3939 ValueDecl *VD = dyn_cast_or_null<ValueDecl>(D);
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003940 if (!VD) {
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003941 CodeCompleteOrdinaryName(S, PCC_Expression);
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003942 return;
3943 }
3944
3945 CodeCompleteExpression(S, VD->getType());
3946}
3947
3948void Sema::CodeCompleteReturn(Scope *S) {
3949 QualType ResultType;
3950 if (isa<BlockDecl>(CurContext)) {
3951 if (BlockScopeInfo *BSI = getCurBlock())
3952 ResultType = BSI->ReturnType;
3953 } else if (FunctionDecl *Function = dyn_cast<FunctionDecl>(CurContext))
Alp Toker314cc812014-01-25 16:55:45 +00003954 ResultType = Function->getReturnType();
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003955 else if (ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(CurContext))
Alp Toker314cc812014-01-25 16:55:45 +00003956 ResultType = Method->getReturnType();
3957
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003958 if (ResultType.isNull())
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003959 CodeCompleteOrdinaryName(S, PCC_Expression);
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003960 else
3961 CodeCompleteExpression(S, ResultType);
3962}
3963
Douglas Gregor4ecb7202011-07-30 08:36:53 +00003964void Sema::CodeCompleteAfterIf(Scope *S) {
Douglas Gregor4ecb7202011-07-30 08:36:53 +00003965 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003966 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor4ecb7202011-07-30 08:36:53 +00003967 mapCodeCompletionContext(*this, PCC_Statement));
3968 Results.setFilter(&ResultBuilder::IsOrdinaryName);
3969 Results.EnterNewScope();
3970
3971 CodeCompletionDeclConsumer Consumer(Results, CurContext);
3972 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
3973 CodeCompleter->includeGlobals());
3974
3975 AddOrdinaryNameResults(PCC_Statement, S, *this, Results);
3976
3977 // "else" block
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003978 CodeCompletionBuilder Builder(Results.getAllocator(),
3979 Results.getCodeCompletionTUInfo());
Douglas Gregor4ecb7202011-07-30 08:36:53 +00003980 Builder.AddTypedTextChunk("else");
Douglas Gregor3a5d6c22012-02-16 17:49:04 +00003981 if (Results.includeCodePatterns()) {
3982 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
3983 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
3984 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
3985 Builder.AddPlaceholderChunk("statements");
3986 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
3987 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
3988 }
Douglas Gregor4ecb7202011-07-30 08:36:53 +00003989 Results.AddResult(Builder.TakeString());
3990
3991 // "else if" block
3992 Builder.AddTypedTextChunk("else");
3993 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
3994 Builder.AddTextChunk("if");
3995 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
3996 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
David Blaikiebbafb8a2012-03-11 07:00:24 +00003997 if (getLangOpts().CPlusPlus)
Douglas Gregor4ecb7202011-07-30 08:36:53 +00003998 Builder.AddPlaceholderChunk("condition");
3999 else
4000 Builder.AddPlaceholderChunk("expression");
4001 Builder.AddChunk(CodeCompletionString::CK_RightParen);
Douglas Gregor3a5d6c22012-02-16 17:49:04 +00004002 if (Results.includeCodePatterns()) {
4003 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4004 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
4005 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
4006 Builder.AddPlaceholderChunk("statements");
4007 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
4008 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
4009 }
Douglas Gregor4ecb7202011-07-30 08:36:53 +00004010 Results.AddResult(Builder.TakeString());
4011
4012 Results.ExitScope();
4013
4014 if (S->getFnParent())
David Blaikiebbafb8a2012-03-11 07:00:24 +00004015 AddPrettyFunctionResults(PP.getLangOpts(), Results);
Douglas Gregor4ecb7202011-07-30 08:36:53 +00004016
4017 if (CodeCompleter->includeMacros())
Douglas Gregor8cb17462012-10-09 16:01:50 +00004018 AddMacroResults(PP, Results, false);
Douglas Gregor4ecb7202011-07-30 08:36:53 +00004019
4020 HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(),
4021 Results.data(),Results.size());
4022}
4023
Richard Trieu2bd04012011-09-09 02:00:50 +00004024void Sema::CodeCompleteAssignmentRHS(Scope *S, Expr *LHS) {
Douglas Gregor7aa6b222010-05-30 01:49:25 +00004025 if (LHS)
4026 CodeCompleteExpression(S, static_cast<Expr *>(LHS)->getType());
4027 else
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004028 CodeCompleteOrdinaryName(S, PCC_Expression);
Douglas Gregor7aa6b222010-05-30 01:49:25 +00004029}
4030
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00004031void Sema::CodeCompleteQualifiedId(Scope *S, CXXScopeSpec &SS,
Douglas Gregor2436e712009-09-17 21:32:03 +00004032 bool EnteringContext) {
4033 if (!SS.getScopeRep() || !CodeCompleter)
4034 return;
4035
Douglas Gregor3545ff42009-09-21 16:56:56 +00004036 DeclContext *Ctx = computeDeclContext(SS, EnteringContext);
4037 if (!Ctx)
4038 return;
Douglas Gregor800f2f02009-12-11 18:28:39 +00004039
4040 // Try to instantiate any non-dependent declaration contexts before
4041 // we look in them.
John McCall0b66eb32010-05-01 00:40:08 +00004042 if (!isDependentScopeSpecifier(SS) && RequireCompleteDeclContext(SS, Ctx))
Douglas Gregor800f2f02009-12-11 18:28:39 +00004043 return;
4044
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004045 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004046 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004047 CodeCompletionContext::CCC_Name);
Douglas Gregorac322ec2010-08-27 21:18:54 +00004048 Results.EnterNewScope();
Douglas Gregor0ac41382010-09-23 23:01:17 +00004049
Douglas Gregor3545ff42009-09-21 16:56:56 +00004050 // The "template" keyword can follow "::" in the grammar, but only
4051 // put it into the grammar if the nested-name-specifier is dependent.
Aaron Ballman4a979672014-01-03 13:56:08 +00004052 NestedNameSpecifier *NNS = SS.getScopeRep();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004053 if (!Results.empty() && NNS->isDependent())
Douglas Gregor78a21012010-01-14 16:01:26 +00004054 Results.AddResult("template");
Douglas Gregorac322ec2010-08-27 21:18:54 +00004055
4056 // Add calls to overridden virtual functions, if there are any.
4057 //
4058 // FIXME: This isn't wonderful, because we don't know whether we're actually
4059 // in a context that permits expressions. This is a general issue with
4060 // qualified-id completions.
4061 if (!EnteringContext)
4062 MaybeAddOverrideCalls(*this, Ctx, Results);
4063 Results.ExitScope();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004064
Douglas Gregorac322ec2010-08-27 21:18:54 +00004065 CodeCompletionDeclConsumer Consumer(Results, CurContext);
4066 LookupVisibleDecls(Ctx, LookupOrdinaryName, Consumer);
4067
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004068 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregorc1679ec2011-07-25 17:48:11 +00004069 Results.getCompletionContext(),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004070 Results.data(),Results.size());
Douglas Gregor2436e712009-09-17 21:32:03 +00004071}
Douglas Gregor7e90c6d2009-09-18 19:03:04 +00004072
4073void Sema::CodeCompleteUsing(Scope *S) {
4074 if (!CodeCompleter)
4075 return;
4076
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004077 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004078 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor0ac41382010-09-23 23:01:17 +00004079 CodeCompletionContext::CCC_PotentiallyQualifiedName,
4080 &ResultBuilder::IsNestedNameSpecifier);
Douglas Gregor64b12b52009-09-22 23:31:26 +00004081 Results.EnterNewScope();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004082
4083 // If we aren't in class scope, we could see the "namespace" keyword.
4084 if (!S->isClassScope())
John McCall276321a2010-08-25 06:19:51 +00004085 Results.AddResult(CodeCompletionResult("namespace"));
Douglas Gregor3545ff42009-09-21 16:56:56 +00004086
4087 // After "using", we can see anything that would start a
4088 // nested-name-specifier.
Douglas Gregora6e2edc2010-01-14 03:27:13 +00004089 CodeCompletionDeclConsumer Consumer(Results, CurContext);
Douglas Gregor39982192010-08-15 06:18:01 +00004090 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
4091 CodeCompleter->includeGlobals());
Douglas Gregor64b12b52009-09-22 23:31:26 +00004092 Results.ExitScope();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004093
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004094 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor0ac41382010-09-23 23:01:17 +00004095 CodeCompletionContext::CCC_PotentiallyQualifiedName,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004096 Results.data(),Results.size());
Douglas Gregor7e90c6d2009-09-18 19:03:04 +00004097}
4098
4099void Sema::CodeCompleteUsingDirective(Scope *S) {
4100 if (!CodeCompleter)
4101 return;
4102
Douglas Gregor3545ff42009-09-21 16:56:56 +00004103 // After "using namespace", we expect to see a namespace name or namespace
4104 // alias.
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004105 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004106 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004107 CodeCompletionContext::CCC_Namespace,
Douglas Gregor0ac41382010-09-23 23:01:17 +00004108 &ResultBuilder::IsNamespaceOrAlias);
Douglas Gregor64b12b52009-09-22 23:31:26 +00004109 Results.EnterNewScope();
Douglas Gregora6e2edc2010-01-14 03:27:13 +00004110 CodeCompletionDeclConsumer Consumer(Results, CurContext);
Douglas Gregor39982192010-08-15 06:18:01 +00004111 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
4112 CodeCompleter->includeGlobals());
Douglas Gregor64b12b52009-09-22 23:31:26 +00004113 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004114 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor39982192010-08-15 06:18:01 +00004115 CodeCompletionContext::CCC_Namespace,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004116 Results.data(),Results.size());
Douglas Gregor7e90c6d2009-09-18 19:03:04 +00004117}
4118
4119void Sema::CodeCompleteNamespaceDecl(Scope *S) {
4120 if (!CodeCompleter)
4121 return;
4122
Ted Kremenekc37877d2013-10-08 17:08:03 +00004123 DeclContext *Ctx = S->getEntity();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004124 if (!S->getParent())
4125 Ctx = Context.getTranslationUnitDecl();
4126
Douglas Gregor0ac41382010-09-23 23:01:17 +00004127 bool SuppressedGlobalResults
4128 = Ctx && !CodeCompleter->includeGlobals() && isa<TranslationUnitDecl>(Ctx);
4129
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004130 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004131 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor0ac41382010-09-23 23:01:17 +00004132 SuppressedGlobalResults
4133 ? CodeCompletionContext::CCC_Namespace
4134 : CodeCompletionContext::CCC_Other,
4135 &ResultBuilder::IsNamespace);
4136
4137 if (Ctx && Ctx->isFileContext() && !SuppressedGlobalResults) {
Douglas Gregor3545ff42009-09-21 16:56:56 +00004138 // We only want to see those namespaces that have already been defined
4139 // within this scope, because its likely that the user is creating an
4140 // extended namespace declaration. Keep track of the most recent
4141 // definition of each namespace.
4142 std::map<NamespaceDecl *, NamespaceDecl *> OrigToLatest;
4143 for (DeclContext::specific_decl_iterator<NamespaceDecl>
4144 NS(Ctx->decls_begin()), NSEnd(Ctx->decls_end());
4145 NS != NSEnd; ++NS)
David Blaikie40ed2972012-06-06 20:45:41 +00004146 OrigToLatest[NS->getOriginalNamespace()] = *NS;
Douglas Gregor3545ff42009-09-21 16:56:56 +00004147
4148 // Add the most recent definition (or extended definition) of each
4149 // namespace to the list of results.
Douglas Gregor64b12b52009-09-22 23:31:26 +00004150 Results.EnterNewScope();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004151 for (std::map<NamespaceDecl *, NamespaceDecl *>::iterator
Douglas Gregor78254c82012-03-27 23:34:16 +00004152 NS = OrigToLatest.begin(),
4153 NSEnd = OrigToLatest.end();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004154 NS != NSEnd; ++NS)
Douglas Gregor0a0e2b32013-01-31 04:52:16 +00004155 Results.AddResult(CodeCompletionResult(
4156 NS->second, Results.getBasePriority(NS->second), 0),
Douglas Gregorfc59ce12010-01-14 16:14:35 +00004157 CurContext, 0, false);
Douglas Gregor64b12b52009-09-22 23:31:26 +00004158 Results.ExitScope();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004159 }
4160
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004161 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor0ac41382010-09-23 23:01:17 +00004162 Results.getCompletionContext(),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004163 Results.data(),Results.size());
Douglas Gregor7e90c6d2009-09-18 19:03:04 +00004164}
4165
4166void Sema::CodeCompleteNamespaceAliasDecl(Scope *S) {
4167 if (!CodeCompleter)
4168 return;
4169
Douglas Gregor3545ff42009-09-21 16:56:56 +00004170 // After "namespace", we expect to see a namespace or alias.
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004171 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004172 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004173 CodeCompletionContext::CCC_Namespace,
Douglas Gregor0ac41382010-09-23 23:01:17 +00004174 &ResultBuilder::IsNamespaceOrAlias);
Douglas Gregora6e2edc2010-01-14 03:27:13 +00004175 CodeCompletionDeclConsumer Consumer(Results, CurContext);
Douglas Gregor39982192010-08-15 06:18:01 +00004176 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
4177 CodeCompleter->includeGlobals());
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004178 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor0ac41382010-09-23 23:01:17 +00004179 Results.getCompletionContext(),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004180 Results.data(),Results.size());
Douglas Gregor7e90c6d2009-09-18 19:03:04 +00004181}
4182
Douglas Gregorc811ede2009-09-18 20:05:18 +00004183void Sema::CodeCompleteOperatorName(Scope *S) {
4184 if (!CodeCompleter)
4185 return;
Douglas Gregor3545ff42009-09-21 16:56:56 +00004186
John McCall276321a2010-08-25 06:19:51 +00004187 typedef CodeCompletionResult Result;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004188 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004189 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004190 CodeCompletionContext::CCC_Type,
Douglas Gregor0ac41382010-09-23 23:01:17 +00004191 &ResultBuilder::IsType);
Douglas Gregor64b12b52009-09-22 23:31:26 +00004192 Results.EnterNewScope();
Douglas Gregorc811ede2009-09-18 20:05:18 +00004193
Douglas Gregor3545ff42009-09-21 16:56:56 +00004194 // Add the names of overloadable operators.
4195#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
4196 if (std::strcmp(Spelling, "?")) \
Douglas Gregor78a21012010-01-14 16:01:26 +00004197 Results.AddResult(Result(Spelling));
Douglas Gregor3545ff42009-09-21 16:56:56 +00004198#include "clang/Basic/OperatorKinds.def"
4199
4200 // Add any type names visible from the current scope
Douglas Gregor6ae4c522010-01-14 03:21:49 +00004201 Results.allowNestedNameSpecifiers();
Douglas Gregora6e2edc2010-01-14 03:27:13 +00004202 CodeCompletionDeclConsumer Consumer(Results, CurContext);
Douglas Gregor39982192010-08-15 06:18:01 +00004203 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
4204 CodeCompleter->includeGlobals());
Douglas Gregor3545ff42009-09-21 16:56:56 +00004205
4206 // Add any type specifiers
David Blaikiebbafb8a2012-03-11 07:00:24 +00004207 AddTypeSpecifierResults(getLangOpts(), Results);
Douglas Gregor64b12b52009-09-22 23:31:26 +00004208 Results.ExitScope();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004209
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004210 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor39982192010-08-15 06:18:01 +00004211 CodeCompletionContext::CCC_Type,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004212 Results.data(),Results.size());
Douglas Gregorc811ede2009-09-18 20:05:18 +00004213}
Douglas Gregor7e90c6d2009-09-18 19:03:04 +00004214
Dmitri Gribenko27cb3dd02013-06-23 22:58:02 +00004215void Sema::CodeCompleteConstructorInitializer(
4216 Decl *ConstructorD,
4217 ArrayRef <CXXCtorInitializer *> Initializers) {
Douglas Gregor75acd922011-09-27 23:30:47 +00004218 PrintingPolicy Policy = getCompletionPrintingPolicy(*this);
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004219 CXXConstructorDecl *Constructor
4220 = static_cast<CXXConstructorDecl *>(ConstructorD);
4221 if (!Constructor)
4222 return;
4223
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004224 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004225 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor0ac41382010-09-23 23:01:17 +00004226 CodeCompletionContext::CCC_PotentiallyQualifiedName);
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004227 Results.EnterNewScope();
4228
4229 // Fill in any already-initialized fields or base classes.
4230 llvm::SmallPtrSet<FieldDecl *, 4> InitializedFields;
4231 llvm::SmallPtrSet<CanQualType, 4> InitializedBases;
Dmitri Gribenko27cb3dd02013-06-23 22:58:02 +00004232 for (unsigned I = 0, E = Initializers.size(); I != E; ++I) {
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004233 if (Initializers[I]->isBaseInitializer())
4234 InitializedBases.insert(
4235 Context.getCanonicalType(QualType(Initializers[I]->getBaseClass(), 0)));
4236 else
Francois Pichetd583da02010-12-04 09:14:42 +00004237 InitializedFields.insert(cast<FieldDecl>(
4238 Initializers[I]->getAnyMember()));
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004239 }
4240
4241 // Add completions for base classes.
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004242 CodeCompletionBuilder Builder(Results.getAllocator(),
4243 Results.getCodeCompletionTUInfo());
Dmitri Gribenko27cb3dd02013-06-23 22:58:02 +00004244 bool SawLastInitializer = Initializers.empty();
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004245 CXXRecordDecl *ClassDecl = Constructor->getParent();
Aaron Ballman574705e2014-03-13 15:41:46 +00004246 for (const auto &Base : ClassDecl->bases()) {
4247 if (!InitializedBases.insert(Context.getCanonicalType(Base.getType()))) {
Douglas Gregor99129ef2010-08-29 19:27:27 +00004248 SawLastInitializer
Dmitri Gribenko27cb3dd02013-06-23 22:58:02 +00004249 = !Initializers.empty() &&
4250 Initializers.back()->isBaseInitializer() &&
Aaron Ballman574705e2014-03-13 15:41:46 +00004251 Context.hasSameUnqualifiedType(Base.getType(),
Dmitri Gribenko27cb3dd02013-06-23 22:58:02 +00004252 QualType(Initializers.back()->getBaseClass(), 0));
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004253 continue;
Douglas Gregor99129ef2010-08-29 19:27:27 +00004254 }
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004255
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004256 Builder.AddTypedTextChunk(
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00004257 Results.getAllocator().CopyString(
Aaron Ballman574705e2014-03-13 15:41:46 +00004258 Base.getType().getAsString(Policy)));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004259 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
4260 Builder.AddPlaceholderChunk("args");
4261 Builder.AddChunk(CodeCompletionString::CK_RightParen);
4262 Results.AddResult(CodeCompletionResult(Builder.TakeString(),
Douglas Gregor99129ef2010-08-29 19:27:27 +00004263 SawLastInitializer? CCP_NextInitializer
4264 : CCP_MemberDeclaration));
4265 SawLastInitializer = false;
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004266 }
4267
4268 // Add completions for virtual base classes.
Aaron Ballman445a9392014-03-13 16:15:17 +00004269 for (const auto &Base : ClassDecl->vbases()) {
4270 if (!InitializedBases.insert(Context.getCanonicalType(Base.getType()))) {
Douglas Gregor99129ef2010-08-29 19:27:27 +00004271 SawLastInitializer
Dmitri Gribenko27cb3dd02013-06-23 22:58:02 +00004272 = !Initializers.empty() &&
4273 Initializers.back()->isBaseInitializer() &&
Aaron Ballman445a9392014-03-13 16:15:17 +00004274 Context.hasSameUnqualifiedType(Base.getType(),
Dmitri Gribenko27cb3dd02013-06-23 22:58:02 +00004275 QualType(Initializers.back()->getBaseClass(), 0));
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004276 continue;
Douglas Gregor99129ef2010-08-29 19:27:27 +00004277 }
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004278
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004279 Builder.AddTypedTextChunk(
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00004280 Builder.getAllocator().CopyString(
Aaron Ballman445a9392014-03-13 16:15:17 +00004281 Base.getType().getAsString(Policy)));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004282 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
4283 Builder.AddPlaceholderChunk("args");
4284 Builder.AddChunk(CodeCompletionString::CK_RightParen);
4285 Results.AddResult(CodeCompletionResult(Builder.TakeString(),
Douglas Gregor99129ef2010-08-29 19:27:27 +00004286 SawLastInitializer? CCP_NextInitializer
4287 : CCP_MemberDeclaration));
4288 SawLastInitializer = false;
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004289 }
4290
4291 // Add completions for members.
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00004292 for (auto *Field : ClassDecl->fields()) {
Douglas Gregor99129ef2010-08-29 19:27:27 +00004293 if (!InitializedFields.insert(cast<FieldDecl>(Field->getCanonicalDecl()))) {
4294 SawLastInitializer
Dmitri Gribenko27cb3dd02013-06-23 22:58:02 +00004295 = !Initializers.empty() &&
4296 Initializers.back()->isAnyMemberInitializer() &&
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00004297 Initializers.back()->getAnyMember() == Field;
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004298 continue;
Douglas Gregor99129ef2010-08-29 19:27:27 +00004299 }
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004300
4301 if (!Field->getDeclName())
4302 continue;
4303
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00004304 Builder.AddTypedTextChunk(Builder.getAllocator().CopyString(
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004305 Field->getIdentifier()->getName()));
4306 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
4307 Builder.AddPlaceholderChunk("args");
4308 Builder.AddChunk(CodeCompletionString::CK_RightParen);
4309 Results.AddResult(CodeCompletionResult(Builder.TakeString(),
Douglas Gregor99129ef2010-08-29 19:27:27 +00004310 SawLastInitializer? CCP_NextInitializer
Douglas Gregorf3af3112010-09-09 21:42:20 +00004311 : CCP_MemberDeclaration,
Douglas Gregor78254c82012-03-27 23:34:16 +00004312 CXCursor_MemberRef,
4313 CXAvailability_Available,
Aaron Ballmane8a8bae2014-03-08 20:12:42 +00004314 Field));
Douglas Gregor99129ef2010-08-29 19:27:27 +00004315 SawLastInitializer = false;
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004316 }
4317 Results.ExitScope();
4318
Douglas Gregor0ac41382010-09-23 23:01:17 +00004319 HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(),
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004320 Results.data(), Results.size());
4321}
4322
Douglas Gregord8c61782012-02-15 15:34:24 +00004323/// \brief Determine whether this scope denotes a namespace.
4324static bool isNamespaceScope(Scope *S) {
Ted Kremenekc37877d2013-10-08 17:08:03 +00004325 DeclContext *DC = S->getEntity();
Douglas Gregord8c61782012-02-15 15:34:24 +00004326 if (!DC)
4327 return false;
4328
4329 return DC->isFileContext();
4330}
4331
4332void Sema::CodeCompleteLambdaIntroducer(Scope *S, LambdaIntroducer &Intro,
4333 bool AfterAmpersand) {
4334 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004335 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregord8c61782012-02-15 15:34:24 +00004336 CodeCompletionContext::CCC_Other);
4337 Results.EnterNewScope();
4338
4339 // Note what has already been captured.
4340 llvm::SmallPtrSet<IdentifierInfo *, 4> Known;
4341 bool IncludedThis = false;
4342 for (SmallVectorImpl<LambdaCapture>::iterator C = Intro.Captures.begin(),
4343 CEnd = Intro.Captures.end();
4344 C != CEnd; ++C) {
4345 if (C->Kind == LCK_This) {
4346 IncludedThis = true;
4347 continue;
4348 }
4349
4350 Known.insert(C->Id);
4351 }
4352
4353 // Look for other capturable variables.
4354 for (; S && !isNamespaceScope(S); S = S->getParent()) {
4355 for (Scope::decl_iterator D = S->decl_begin(), DEnd = S->decl_end();
4356 D != DEnd; ++D) {
4357 VarDecl *Var = dyn_cast<VarDecl>(*D);
4358 if (!Var ||
4359 !Var->hasLocalStorage() ||
4360 Var->hasAttr<BlocksAttr>())
4361 continue;
4362
4363 if (Known.insert(Var->getIdentifier()))
Douglas Gregor0a0e2b32013-01-31 04:52:16 +00004364 Results.AddResult(CodeCompletionResult(Var, CCP_LocalDeclaration),
4365 CurContext, 0, false);
Douglas Gregord8c61782012-02-15 15:34:24 +00004366 }
4367 }
4368
4369 // Add 'this', if it would be valid.
4370 if (!IncludedThis && !AfterAmpersand && Intro.Default != LCD_ByCopy)
4371 addThisCompletion(*this, Results);
4372
4373 Results.ExitScope();
4374
4375 HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(),
4376 Results.data(), Results.size());
4377}
4378
James Dennett596e4752012-06-14 03:11:41 +00004379/// Macro that optionally prepends an "@" to the string literal passed in via
4380/// Keyword, depending on whether NeedAt is true or false.
4381#define OBJC_AT_KEYWORD_NAME(NeedAt,Keyword) ((NeedAt)? "@" Keyword : Keyword)
4382
Douglas Gregorf98e6a22010-01-13 23:51:12 +00004383static void AddObjCImplementationResults(const LangOptions &LangOpts,
Douglas Gregorf1934162010-01-13 21:24:21 +00004384 ResultBuilder &Results,
4385 bool NeedAt) {
John McCall276321a2010-08-25 06:19:51 +00004386 typedef CodeCompletionResult Result;
Douglas Gregorf1934162010-01-13 21:24:21 +00004387 // Since we have an implementation, we can end it.
James Dennett596e4752012-06-14 03:11:41 +00004388 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"end")));
Douglas Gregorf1934162010-01-13 21:24:21 +00004389
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004390 CodeCompletionBuilder Builder(Results.getAllocator(),
4391 Results.getCodeCompletionTUInfo());
Douglas Gregorf1934162010-01-13 21:24:21 +00004392 if (LangOpts.ObjC2) {
4393 // @dynamic
James Dennett596e4752012-06-14 03:11:41 +00004394 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"dynamic"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004395 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4396 Builder.AddPlaceholderChunk("property");
4397 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf1934162010-01-13 21:24:21 +00004398
4399 // @synthesize
James Dennett596e4752012-06-14 03:11:41 +00004400 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"synthesize"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004401 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4402 Builder.AddPlaceholderChunk("property");
4403 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf1934162010-01-13 21:24:21 +00004404 }
4405}
4406
Douglas Gregorf98e6a22010-01-13 23:51:12 +00004407static void AddObjCInterfaceResults(const LangOptions &LangOpts,
Douglas Gregorf1934162010-01-13 21:24:21 +00004408 ResultBuilder &Results,
4409 bool NeedAt) {
John McCall276321a2010-08-25 06:19:51 +00004410 typedef CodeCompletionResult Result;
Douglas Gregorf1934162010-01-13 21:24:21 +00004411
4412 // Since we have an interface or protocol, we can end it.
James Dennett596e4752012-06-14 03:11:41 +00004413 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"end")));
Douglas Gregorf1934162010-01-13 21:24:21 +00004414
4415 if (LangOpts.ObjC2) {
4416 // @property
James Dennett596e4752012-06-14 03:11:41 +00004417 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"property")));
Douglas Gregorf1934162010-01-13 21:24:21 +00004418
4419 // @required
James Dennett596e4752012-06-14 03:11:41 +00004420 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"required")));
Douglas Gregorf1934162010-01-13 21:24:21 +00004421
4422 // @optional
James Dennett596e4752012-06-14 03:11:41 +00004423 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"optional")));
Douglas Gregorf1934162010-01-13 21:24:21 +00004424 }
4425}
4426
Douglas Gregorf98e6a22010-01-13 23:51:12 +00004427static void AddObjCTopLevelResults(ResultBuilder &Results, bool NeedAt) {
John McCall276321a2010-08-25 06:19:51 +00004428 typedef CodeCompletionResult Result;
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004429 CodeCompletionBuilder Builder(Results.getAllocator(),
4430 Results.getCodeCompletionTUInfo());
Douglas Gregorf1934162010-01-13 21:24:21 +00004431
4432 // @class name ;
James Dennett596e4752012-06-14 03:11:41 +00004433 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"class"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004434 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4435 Builder.AddPlaceholderChunk("name");
4436 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf1934162010-01-13 21:24:21 +00004437
Douglas Gregorf4c33342010-05-28 00:22:41 +00004438 if (Results.includeCodePatterns()) {
4439 // @interface name
4440 // FIXME: Could introduce the whole pattern, including superclasses and
4441 // such.
James Dennett596e4752012-06-14 03:11:41 +00004442 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"interface"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004443 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4444 Builder.AddPlaceholderChunk("class");
4445 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf1934162010-01-13 21:24:21 +00004446
Douglas Gregorf4c33342010-05-28 00:22:41 +00004447 // @protocol name
James Dennett596e4752012-06-14 03:11:41 +00004448 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"protocol"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004449 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4450 Builder.AddPlaceholderChunk("protocol");
4451 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf4c33342010-05-28 00:22:41 +00004452
4453 // @implementation name
James Dennett596e4752012-06-14 03:11:41 +00004454 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"implementation"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004455 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4456 Builder.AddPlaceholderChunk("class");
4457 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf4c33342010-05-28 00:22:41 +00004458 }
Douglas Gregorf1934162010-01-13 21:24:21 +00004459
4460 // @compatibility_alias name
James Dennett596e4752012-06-14 03:11:41 +00004461 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"compatibility_alias"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004462 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4463 Builder.AddPlaceholderChunk("alias");
4464 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4465 Builder.AddPlaceholderChunk("class");
4466 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor61e36812013-03-07 23:26:24 +00004467
4468 if (Results.getSema().getLangOpts().Modules) {
4469 // @import name
4470 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt, "import"));
4471 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4472 Builder.AddPlaceholderChunk("module");
4473 Results.AddResult(Result(Builder.TakeString()));
4474 }
Douglas Gregorf1934162010-01-13 21:24:21 +00004475}
4476
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00004477void Sema::CodeCompleteObjCAtDirective(Scope *S) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004478 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004479 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004480 CodeCompletionContext::CCC_Other);
Douglas Gregorf48706c2009-12-07 09:27:33 +00004481 Results.EnterNewScope();
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00004482 if (isa<ObjCImplDecl>(CurContext))
David Blaikiebbafb8a2012-03-11 07:00:24 +00004483 AddObjCImplementationResults(getLangOpts(), Results, false);
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00004484 else if (CurContext->isObjCContainer())
David Blaikiebbafb8a2012-03-11 07:00:24 +00004485 AddObjCInterfaceResults(getLangOpts(), Results, false);
Douglas Gregorf1934162010-01-13 21:24:21 +00004486 else
Douglas Gregorf98e6a22010-01-13 23:51:12 +00004487 AddObjCTopLevelResults(Results, false);
Douglas Gregorf48706c2009-12-07 09:27:33 +00004488 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004489 HandleCodeCompleteResults(this, CodeCompleter,
4490 CodeCompletionContext::CCC_Other,
4491 Results.data(),Results.size());
Douglas Gregorf48706c2009-12-07 09:27:33 +00004492}
4493
Douglas Gregorf98e6a22010-01-13 23:51:12 +00004494static void AddObjCExpressionResults(ResultBuilder &Results, bool NeedAt) {
John McCall276321a2010-08-25 06:19:51 +00004495 typedef CodeCompletionResult Result;
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004496 CodeCompletionBuilder Builder(Results.getAllocator(),
4497 Results.getCodeCompletionTUInfo());
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004498
4499 // @encode ( type-name )
Douglas Gregore5c79d52011-10-18 21:20:17 +00004500 const char *EncodeType = "char[]";
David Blaikiebbafb8a2012-03-11 07:00:24 +00004501 if (Results.getSema().getLangOpts().CPlusPlus ||
4502 Results.getSema().getLangOpts().ConstStrings)
Jordan Rose9da05852012-06-15 18:19:56 +00004503 EncodeType = "const char[]";
Douglas Gregore5c79d52011-10-18 21:20:17 +00004504 Builder.AddResultTypeChunk(EncodeType);
James Dennett596e4752012-06-14 03:11:41 +00004505 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"encode"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004506 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
4507 Builder.AddPlaceholderChunk("type-name");
4508 Builder.AddChunk(CodeCompletionString::CK_RightParen);
4509 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004510
4511 // @protocol ( protocol-name )
Douglas Gregore5c79d52011-10-18 21:20:17 +00004512 Builder.AddResultTypeChunk("Protocol *");
James Dennett596e4752012-06-14 03:11:41 +00004513 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"protocol"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004514 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
4515 Builder.AddPlaceholderChunk("protocol-name");
4516 Builder.AddChunk(CodeCompletionString::CK_RightParen);
4517 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004518
4519 // @selector ( selector )
Douglas Gregore5c79d52011-10-18 21:20:17 +00004520 Builder.AddResultTypeChunk("SEL");
James Dennett596e4752012-06-14 03:11:41 +00004521 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"selector"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004522 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
4523 Builder.AddPlaceholderChunk("selector");
4524 Builder.AddChunk(CodeCompletionString::CK_RightParen);
4525 Results.AddResult(Result(Builder.TakeString()));
Jordan Rose9da05852012-06-15 18:19:56 +00004526
4527 // @"string"
4528 Builder.AddResultTypeChunk("NSString *");
4529 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"\""));
4530 Builder.AddPlaceholderChunk("string");
4531 Builder.AddTextChunk("\"");
4532 Results.AddResult(Result(Builder.TakeString()));
4533
Douglas Gregor951de302012-07-17 23:24:47 +00004534 // @[objects, ...]
Jordan Rose9da05852012-06-15 18:19:56 +00004535 Builder.AddResultTypeChunk("NSArray *");
James Dennett596e4752012-06-14 03:11:41 +00004536 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"["));
Ted Kremeneke65b0862012-03-06 20:05:56 +00004537 Builder.AddPlaceholderChunk("objects, ...");
Ted Kremeneke65b0862012-03-06 20:05:56 +00004538 Builder.AddChunk(CodeCompletionString::CK_RightBracket);
4539 Results.AddResult(Result(Builder.TakeString()));
4540
Douglas Gregor951de302012-07-17 23:24:47 +00004541 // @{key : object, ...}
Jordan Rose9da05852012-06-15 18:19:56 +00004542 Builder.AddResultTypeChunk("NSDictionary *");
James Dennett596e4752012-06-14 03:11:41 +00004543 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"{"));
Ted Kremeneke65b0862012-03-06 20:05:56 +00004544 Builder.AddPlaceholderChunk("key");
Ted Kremeneke65b0862012-03-06 20:05:56 +00004545 Builder.AddChunk(CodeCompletionString::CK_Colon);
4546 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4547 Builder.AddPlaceholderChunk("object, ...");
Ted Kremeneke65b0862012-03-06 20:05:56 +00004548 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
4549 Results.AddResult(Result(Builder.TakeString()));
Jordan Rose9da05852012-06-15 18:19:56 +00004550
Douglas Gregor951de302012-07-17 23:24:47 +00004551 // @(expression)
Jordan Rose9da05852012-06-15 18:19:56 +00004552 Builder.AddResultTypeChunk("id");
4553 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt, "("));
Jordan Rose9da05852012-06-15 18:19:56 +00004554 Builder.AddPlaceholderChunk("expression");
Jordan Rose9da05852012-06-15 18:19:56 +00004555 Builder.AddChunk(CodeCompletionString::CK_RightParen);
4556 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004557}
4558
Douglas Gregorf98e6a22010-01-13 23:51:12 +00004559static void AddObjCStatementResults(ResultBuilder &Results, bool NeedAt) {
John McCall276321a2010-08-25 06:19:51 +00004560 typedef CodeCompletionResult Result;
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004561 CodeCompletionBuilder Builder(Results.getAllocator(),
4562 Results.getCodeCompletionTUInfo());
Douglas Gregorf1934162010-01-13 21:24:21 +00004563
Douglas Gregorf4c33342010-05-28 00:22:41 +00004564 if (Results.includeCodePatterns()) {
4565 // @try { statements } @catch ( declaration ) { statements } @finally
4566 // { statements }
James Dennett596e4752012-06-14 03:11:41 +00004567 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"try"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004568 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
4569 Builder.AddPlaceholderChunk("statements");
4570 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
4571 Builder.AddTextChunk("@catch");
4572 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
4573 Builder.AddPlaceholderChunk("parameter");
4574 Builder.AddChunk(CodeCompletionString::CK_RightParen);
4575 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
4576 Builder.AddPlaceholderChunk("statements");
4577 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
4578 Builder.AddTextChunk("@finally");
4579 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
4580 Builder.AddPlaceholderChunk("statements");
4581 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
4582 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf4c33342010-05-28 00:22:41 +00004583 }
Douglas Gregorf1934162010-01-13 21:24:21 +00004584
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004585 // @throw
James Dennett596e4752012-06-14 03:11:41 +00004586 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"throw"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004587 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4588 Builder.AddPlaceholderChunk("expression");
4589 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf1934162010-01-13 21:24:21 +00004590
Douglas Gregorf4c33342010-05-28 00:22:41 +00004591 if (Results.includeCodePatterns()) {
4592 // @synchronized ( expression ) { statements }
James Dennett596e4752012-06-14 03:11:41 +00004593 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"synchronized"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004594 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4595 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
4596 Builder.AddPlaceholderChunk("expression");
4597 Builder.AddChunk(CodeCompletionString::CK_RightParen);
4598 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
4599 Builder.AddPlaceholderChunk("statements");
4600 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
4601 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf4c33342010-05-28 00:22:41 +00004602 }
Douglas Gregorf1934162010-01-13 21:24:21 +00004603}
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004604
Douglas Gregorf98e6a22010-01-13 23:51:12 +00004605static void AddObjCVisibilityResults(const LangOptions &LangOpts,
Douglas Gregor48d46252010-01-13 21:54:15 +00004606 ResultBuilder &Results,
4607 bool NeedAt) {
John McCall276321a2010-08-25 06:19:51 +00004608 typedef CodeCompletionResult Result;
James Dennett596e4752012-06-14 03:11:41 +00004609 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"private")));
4610 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"protected")));
4611 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"public")));
Douglas Gregor48d46252010-01-13 21:54:15 +00004612 if (LangOpts.ObjC2)
James Dennett596e4752012-06-14 03:11:41 +00004613 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"package")));
Douglas Gregor48d46252010-01-13 21:54:15 +00004614}
4615
4616void Sema::CodeCompleteObjCAtVisibility(Scope *S) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004617 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004618 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004619 CodeCompletionContext::CCC_Other);
Douglas Gregor48d46252010-01-13 21:54:15 +00004620 Results.EnterNewScope();
David Blaikiebbafb8a2012-03-11 07:00:24 +00004621 AddObjCVisibilityResults(getLangOpts(), Results, false);
Douglas Gregor48d46252010-01-13 21:54:15 +00004622 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004623 HandleCodeCompleteResults(this, CodeCompleter,
4624 CodeCompletionContext::CCC_Other,
4625 Results.data(),Results.size());
Douglas Gregor48d46252010-01-13 21:54:15 +00004626}
4627
4628void Sema::CodeCompleteObjCAtStatement(Scope *S) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004629 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004630 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004631 CodeCompletionContext::CCC_Other);
Douglas Gregorf1934162010-01-13 21:24:21 +00004632 Results.EnterNewScope();
Douglas Gregorf98e6a22010-01-13 23:51:12 +00004633 AddObjCStatementResults(Results, false);
4634 AddObjCExpressionResults(Results, false);
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004635 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004636 HandleCodeCompleteResults(this, CodeCompleter,
4637 CodeCompletionContext::CCC_Other,
4638 Results.data(),Results.size());
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004639}
4640
4641void Sema::CodeCompleteObjCAtExpression(Scope *S) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004642 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004643 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004644 CodeCompletionContext::CCC_Other);
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004645 Results.EnterNewScope();
Douglas Gregorf98e6a22010-01-13 23:51:12 +00004646 AddObjCExpressionResults(Results, false);
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004647 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004648 HandleCodeCompleteResults(this, CodeCompleter,
4649 CodeCompletionContext::CCC_Other,
4650 Results.data(),Results.size());
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004651}
4652
Douglas Gregore6078da2009-11-19 00:14:45 +00004653/// \brief Determine whether the addition of the given flag to an Objective-C
4654/// property's attributes will cause a conflict.
Bill Wendling44426052012-12-20 19:22:21 +00004655static bool ObjCPropertyFlagConflicts(unsigned Attributes, unsigned NewFlag) {
Douglas Gregore6078da2009-11-19 00:14:45 +00004656 // Check if we've already added this flag.
Bill Wendling44426052012-12-20 19:22:21 +00004657 if (Attributes & NewFlag)
Douglas Gregore6078da2009-11-19 00:14:45 +00004658 return true;
4659
Bill Wendling44426052012-12-20 19:22:21 +00004660 Attributes |= NewFlag;
Douglas Gregore6078da2009-11-19 00:14:45 +00004661
4662 // Check for collisions with "readonly".
Bill Wendling44426052012-12-20 19:22:21 +00004663 if ((Attributes & ObjCDeclSpec::DQ_PR_readonly) &&
4664 (Attributes & ObjCDeclSpec::DQ_PR_readwrite))
Douglas Gregore6078da2009-11-19 00:14:45 +00004665 return true;
4666
Jordan Rose53cb2f32012-08-20 20:01:13 +00004667 // Check for more than one of { assign, copy, retain, strong, weak }.
Bill Wendling44426052012-12-20 19:22:21 +00004668 unsigned AssignCopyRetMask = Attributes & (ObjCDeclSpec::DQ_PR_assign |
John McCall31168b02011-06-15 23:02:42 +00004669 ObjCDeclSpec::DQ_PR_unsafe_unretained |
Douglas Gregore6078da2009-11-19 00:14:45 +00004670 ObjCDeclSpec::DQ_PR_copy |
Jordan Rose53cb2f32012-08-20 20:01:13 +00004671 ObjCDeclSpec::DQ_PR_retain |
4672 ObjCDeclSpec::DQ_PR_strong |
4673 ObjCDeclSpec::DQ_PR_weak);
Douglas Gregore6078da2009-11-19 00:14:45 +00004674 if (AssignCopyRetMask &&
4675 AssignCopyRetMask != ObjCDeclSpec::DQ_PR_assign &&
John McCall31168b02011-06-15 23:02:42 +00004676 AssignCopyRetMask != ObjCDeclSpec::DQ_PR_unsafe_unretained &&
Douglas Gregore6078da2009-11-19 00:14:45 +00004677 AssignCopyRetMask != ObjCDeclSpec::DQ_PR_copy &&
John McCall31168b02011-06-15 23:02:42 +00004678 AssignCopyRetMask != ObjCDeclSpec::DQ_PR_retain &&
Jordan Rose53cb2f32012-08-20 20:01:13 +00004679 AssignCopyRetMask != ObjCDeclSpec::DQ_PR_strong &&
4680 AssignCopyRetMask != ObjCDeclSpec::DQ_PR_weak)
Douglas Gregore6078da2009-11-19 00:14:45 +00004681 return true;
4682
4683 return false;
4684}
4685
Douglas Gregor36029f42009-11-18 23:08:07 +00004686void Sema::CodeCompleteObjCPropertyFlags(Scope *S, ObjCDeclSpec &ODS) {
Steve Naroff936354c2009-10-08 21:55:05 +00004687 if (!CodeCompleter)
4688 return;
Douglas Gregor1b605f72009-11-19 01:08:35 +00004689
Bill Wendling44426052012-12-20 19:22:21 +00004690 unsigned Attributes = ODS.getPropertyAttributes();
Steve Naroff936354c2009-10-08 21:55:05 +00004691
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004692 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004693 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004694 CodeCompletionContext::CCC_Other);
Steve Naroff936354c2009-10-08 21:55:05 +00004695 Results.EnterNewScope();
Bill Wendling44426052012-12-20 19:22:21 +00004696 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_readonly))
John McCall276321a2010-08-25 06:19:51 +00004697 Results.AddResult(CodeCompletionResult("readonly"));
Bill Wendling44426052012-12-20 19:22:21 +00004698 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_assign))
John McCall276321a2010-08-25 06:19:51 +00004699 Results.AddResult(CodeCompletionResult("assign"));
Bill Wendling44426052012-12-20 19:22:21 +00004700 if (!ObjCPropertyFlagConflicts(Attributes,
John McCall31168b02011-06-15 23:02:42 +00004701 ObjCDeclSpec::DQ_PR_unsafe_unretained))
4702 Results.AddResult(CodeCompletionResult("unsafe_unretained"));
Bill Wendling44426052012-12-20 19:22:21 +00004703 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_readwrite))
John McCall276321a2010-08-25 06:19:51 +00004704 Results.AddResult(CodeCompletionResult("readwrite"));
Bill Wendling44426052012-12-20 19:22:21 +00004705 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_retain))
John McCall276321a2010-08-25 06:19:51 +00004706 Results.AddResult(CodeCompletionResult("retain"));
Bill Wendling44426052012-12-20 19:22:21 +00004707 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_strong))
John McCall31168b02011-06-15 23:02:42 +00004708 Results.AddResult(CodeCompletionResult("strong"));
Bill Wendling44426052012-12-20 19:22:21 +00004709 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_copy))
John McCall276321a2010-08-25 06:19:51 +00004710 Results.AddResult(CodeCompletionResult("copy"));
Bill Wendling44426052012-12-20 19:22:21 +00004711 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_nonatomic))
John McCall276321a2010-08-25 06:19:51 +00004712 Results.AddResult(CodeCompletionResult("nonatomic"));
Bill Wendling44426052012-12-20 19:22:21 +00004713 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_atomic))
Fariborz Jahanian1c2d29e2011-06-11 17:14:27 +00004714 Results.AddResult(CodeCompletionResult("atomic"));
Jordan Rose53cb2f32012-08-20 20:01:13 +00004715
4716 // Only suggest "weak" if we're compiling for ARC-with-weak-references or GC.
John McCall3deb1ad2012-08-21 02:47:43 +00004717 if (getLangOpts().ObjCARCWeak || getLangOpts().getGC() != LangOptions::NonGC)
Bill Wendling44426052012-12-20 19:22:21 +00004718 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_weak))
Jordan Rose53cb2f32012-08-20 20:01:13 +00004719 Results.AddResult(CodeCompletionResult("weak"));
4720
Bill Wendling44426052012-12-20 19:22:21 +00004721 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_setter)) {
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004722 CodeCompletionBuilder Setter(Results.getAllocator(),
4723 Results.getCodeCompletionTUInfo());
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004724 Setter.AddTypedTextChunk("setter");
Argyrios Kyrtzidis7bbb8812014-02-20 07:55:15 +00004725 Setter.AddTextChunk("=");
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004726 Setter.AddPlaceholderChunk("method");
4727 Results.AddResult(CodeCompletionResult(Setter.TakeString()));
Douglas Gregor45f83ee2009-11-19 00:01:57 +00004728 }
Bill Wendling44426052012-12-20 19:22:21 +00004729 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_getter)) {
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004730 CodeCompletionBuilder Getter(Results.getAllocator(),
4731 Results.getCodeCompletionTUInfo());
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004732 Getter.AddTypedTextChunk("getter");
Argyrios Kyrtzidis7bbb8812014-02-20 07:55:15 +00004733 Getter.AddTextChunk("=");
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004734 Getter.AddPlaceholderChunk("method");
4735 Results.AddResult(CodeCompletionResult(Getter.TakeString()));
Douglas Gregor45f83ee2009-11-19 00:01:57 +00004736 }
Steve Naroff936354c2009-10-08 21:55:05 +00004737 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004738 HandleCodeCompleteResults(this, CodeCompleter,
4739 CodeCompletionContext::CCC_Other,
4740 Results.data(),Results.size());
Steve Naroff936354c2009-10-08 21:55:05 +00004741}
Steve Naroffeae65032009-11-07 02:08:14 +00004742
James Dennettf1243872012-06-17 05:33:25 +00004743/// \brief Describes the kind of Objective-C method that we want to find
Douglas Gregorc8537c52009-11-19 07:41:15 +00004744/// via code completion.
4745enum ObjCMethodKind {
Dmitri Gribenko4280e5c2012-06-08 23:13:42 +00004746 MK_Any, ///< Any kind of method, provided it means other specified criteria.
4747 MK_ZeroArgSelector, ///< Zero-argument (unary) selector.
4748 MK_OneArgSelector ///< One-argument selector.
Douglas Gregorc8537c52009-11-19 07:41:15 +00004749};
4750
Douglas Gregor67c692c2010-08-26 15:07:07 +00004751static bool isAcceptableObjCSelector(Selector Sel,
4752 ObjCMethodKind WantKind,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004753 ArrayRef<IdentifierInfo *> SelIdents,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00004754 bool AllowSameLength = true) {
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004755 unsigned NumSelIdents = SelIdents.size();
Douglas Gregor67c692c2010-08-26 15:07:07 +00004756 if (NumSelIdents > Sel.getNumArgs())
4757 return false;
4758
4759 switch (WantKind) {
4760 case MK_Any: break;
4761 case MK_ZeroArgSelector: return Sel.isUnarySelector();
4762 case MK_OneArgSelector: return Sel.getNumArgs() == 1;
4763 }
4764
Douglas Gregorb4a7c032010-11-17 21:36:08 +00004765 if (!AllowSameLength && NumSelIdents && NumSelIdents == Sel.getNumArgs())
4766 return false;
4767
Douglas Gregor67c692c2010-08-26 15:07:07 +00004768 for (unsigned I = 0; I != NumSelIdents; ++I)
4769 if (SelIdents[I] != Sel.getIdentifierInfoForSlot(I))
4770 return false;
4771
4772 return true;
4773}
4774
Douglas Gregorc8537c52009-11-19 07:41:15 +00004775static bool isAcceptableObjCMethod(ObjCMethodDecl *Method,
4776 ObjCMethodKind WantKind,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004777 ArrayRef<IdentifierInfo *> SelIdents,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00004778 bool AllowSameLength = true) {
Douglas Gregor67c692c2010-08-26 15:07:07 +00004779 return isAcceptableObjCSelector(Method->getSelector(), WantKind, SelIdents,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004780 AllowSameLength);
Douglas Gregorc8537c52009-11-19 07:41:15 +00004781}
Douglas Gregor1154e272010-09-16 16:06:31 +00004782
4783namespace {
4784 /// \brief A set of selectors, which is used to avoid introducing multiple
4785 /// completions with the same selector into the result set.
4786 typedef llvm::SmallPtrSet<Selector, 16> VisitedSelectorSet;
4787}
4788
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00004789/// \brief Add all of the Objective-C methods in the given Objective-C
4790/// container to the set of results.
4791///
4792/// The container will be a class, protocol, category, or implementation of
4793/// any of the above. This mether will recurse to include methods from
4794/// the superclasses of classes along with their categories, protocols, and
4795/// implementations.
4796///
4797/// \param Container the container in which we'll look to find methods.
4798///
James Dennett596e4752012-06-14 03:11:41 +00004799/// \param WantInstanceMethods Whether to add instance methods (only); if
4800/// false, this routine will add factory methods (only).
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00004801///
4802/// \param CurContext the context in which we're performing the lookup that
4803/// finds methods.
4804///
Douglas Gregorb4a7c032010-11-17 21:36:08 +00004805/// \param AllowSameLength Whether we allow a method to be added to the list
4806/// when it has the same number of parameters as we have selector identifiers.
4807///
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00004808/// \param Results the structure into which we'll add results.
4809static void AddObjCMethods(ObjCContainerDecl *Container,
4810 bool WantInstanceMethods,
Douglas Gregorc8537c52009-11-19 07:41:15 +00004811 ObjCMethodKind WantKind,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004812 ArrayRef<IdentifierInfo *> SelIdents,
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00004813 DeclContext *CurContext,
Douglas Gregor1154e272010-09-16 16:06:31 +00004814 VisitedSelectorSet &Selectors,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00004815 bool AllowSameLength,
Douglas Gregor416b5752010-08-25 01:08:01 +00004816 ResultBuilder &Results,
4817 bool InOriginalClass = true) {
John McCall276321a2010-08-25 06:19:51 +00004818 typedef CodeCompletionResult Result;
Douglas Gregor9b4f3702012-06-12 13:44:08 +00004819 Container = getContainerDef(Container);
Douglas Gregor41778c32013-01-30 06:58:39 +00004820 ObjCInterfaceDecl *IFace = dyn_cast<ObjCInterfaceDecl>(Container);
4821 bool isRootClass = IFace && !IFace->getSuperClass();
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00004822 for (ObjCContainerDecl::method_iterator M = Container->meth_begin(),
4823 MEnd = Container->meth_end();
4824 M != MEnd; ++M) {
Douglas Gregor41778c32013-01-30 06:58:39 +00004825 // The instance methods on the root class can be messaged via the
4826 // metaclass.
4827 if (M->isInstanceMethod() == WantInstanceMethods ||
4828 (isRootClass && !WantInstanceMethods)) {
Douglas Gregor1b605f72009-11-19 01:08:35 +00004829 // Check whether the selector identifiers we've been given are a
4830 // subset of the identifiers for this particular method.
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004831 if (!isAcceptableObjCMethod(*M, WantKind, SelIdents, AllowSameLength))
Douglas Gregor1b605f72009-11-19 01:08:35 +00004832 continue;
Douglas Gregorc8537c52009-11-19 07:41:15 +00004833
David Blaikie2d7c57e2012-04-30 02:36:29 +00004834 if (!Selectors.insert(M->getSelector()))
Douglas Gregor1154e272010-09-16 16:06:31 +00004835 continue;
4836
Douglas Gregor0a0e2b32013-01-31 04:52:16 +00004837 Result R = Result(*M, Results.getBasePriority(*M), 0);
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004838 R.StartParameter = SelIdents.size();
Douglas Gregorc8537c52009-11-19 07:41:15 +00004839 R.AllParametersAreInformative = (WantKind != MK_Any);
Douglas Gregor416b5752010-08-25 01:08:01 +00004840 if (!InOriginalClass)
4841 R.Priority += CCD_InBaseClass;
Douglas Gregor1b605f72009-11-19 01:08:35 +00004842 Results.MaybeAddResult(R, CurContext);
4843 }
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00004844 }
4845
Douglas Gregorf37c9492010-09-16 15:34:59 +00004846 // Visit the protocols of protocols.
4847 if (ObjCProtocolDecl *Protocol = dyn_cast<ObjCProtocolDecl>(Container)) {
Douglas Gregore6e48b12012-01-01 19:29:29 +00004848 if (Protocol->hasDefinition()) {
4849 const ObjCList<ObjCProtocolDecl> &Protocols
4850 = Protocol->getReferencedProtocols();
4851 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
4852 E = Protocols.end();
4853 I != E; ++I)
4854 AddObjCMethods(*I, WantInstanceMethods, WantKind, SelIdents,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004855 CurContext, Selectors, AllowSameLength, Results, false);
Douglas Gregore6e48b12012-01-01 19:29:29 +00004856 }
Douglas Gregorf37c9492010-09-16 15:34:59 +00004857 }
4858
Douglas Gregorc0ac7d62011-12-15 05:27:12 +00004859 if (!IFace || !IFace->hasDefinition())
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00004860 return;
4861
4862 // Add methods in protocols.
Argyrios Kyrtzidise7f3ef32012-03-13 01:09:41 +00004863 for (ObjCInterfaceDecl::protocol_iterator I = IFace->protocol_begin(),
4864 E = IFace->protocol_end();
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00004865 I != E; ++I)
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004866 AddObjCMethods(*I, WantInstanceMethods, WantKind, SelIdents,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00004867 CurContext, Selectors, AllowSameLength, Results, false);
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00004868
4869 // Add methods in categories.
Douglas Gregor048fbfa2013-01-16 23:00:23 +00004870 for (ObjCInterfaceDecl::known_categories_iterator
4871 Cat = IFace->known_categories_begin(),
4872 CatEnd = IFace->known_categories_end();
4873 Cat != CatEnd; ++Cat) {
4874 ObjCCategoryDecl *CatDecl = *Cat;
4875
4876 AddObjCMethods(CatDecl, WantInstanceMethods, WantKind, SelIdents,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004877 CurContext, Selectors, AllowSameLength,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00004878 Results, InOriginalClass);
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00004879
4880 // Add a categories protocol methods.
4881 const ObjCList<ObjCProtocolDecl> &Protocols
4882 = CatDecl->getReferencedProtocols();
4883 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
4884 E = Protocols.end();
4885 I != E; ++I)
Douglas Gregorc8537c52009-11-19 07:41:15 +00004886 AddObjCMethods(*I, WantInstanceMethods, WantKind, SelIdents,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004887 CurContext, Selectors, AllowSameLength,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00004888 Results, false);
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00004889
4890 // Add methods in category implementations.
4891 if (ObjCCategoryImplDecl *Impl = CatDecl->getImplementation())
Douglas Gregorc8537c52009-11-19 07:41:15 +00004892 AddObjCMethods(Impl, WantInstanceMethods, WantKind, SelIdents,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004893 CurContext, Selectors, AllowSameLength,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00004894 Results, InOriginalClass);
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00004895 }
4896
4897 // Add methods in superclass.
4898 if (IFace->getSuperClass())
Douglas Gregorc8537c52009-11-19 07:41:15 +00004899 AddObjCMethods(IFace->getSuperClass(), WantInstanceMethods, WantKind,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004900 SelIdents, CurContext, Selectors,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00004901 AllowSameLength, Results, false);
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00004902
4903 // Add methods in our implementation, if any.
4904 if (ObjCImplementationDecl *Impl = IFace->getImplementation())
Douglas Gregorc8537c52009-11-19 07:41:15 +00004905 AddObjCMethods(Impl, WantInstanceMethods, WantKind, SelIdents,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004906 CurContext, Selectors, AllowSameLength,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00004907 Results, InOriginalClass);
Douglas Gregorc8537c52009-11-19 07:41:15 +00004908}
4909
4910
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00004911void Sema::CodeCompleteObjCPropertyGetter(Scope *S) {
Douglas Gregorc8537c52009-11-19 07:41:15 +00004912 // Try to find the interface where getters might live.
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00004913 ObjCInterfaceDecl *Class = dyn_cast_or_null<ObjCInterfaceDecl>(CurContext);
Douglas Gregorc8537c52009-11-19 07:41:15 +00004914 if (!Class) {
4915 if (ObjCCategoryDecl *Category
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00004916 = dyn_cast_or_null<ObjCCategoryDecl>(CurContext))
Douglas Gregorc8537c52009-11-19 07:41:15 +00004917 Class = Category->getClassInterface();
4918
4919 if (!Class)
4920 return;
4921 }
4922
4923 // Find all of the potential getters.
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004924 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004925 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004926 CodeCompletionContext::CCC_Other);
Douglas Gregorc8537c52009-11-19 07:41:15 +00004927 Results.EnterNewScope();
4928
Douglas Gregor1154e272010-09-16 16:06:31 +00004929 VisitedSelectorSet Selectors;
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004930 AddObjCMethods(Class, true, MK_ZeroArgSelector, None, CurContext, Selectors,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00004931 /*AllowSameLength=*/true, Results);
Douglas Gregorc8537c52009-11-19 07:41:15 +00004932 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004933 HandleCodeCompleteResults(this, CodeCompleter,
4934 CodeCompletionContext::CCC_Other,
4935 Results.data(),Results.size());
Douglas Gregorc8537c52009-11-19 07:41:15 +00004936}
4937
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00004938void Sema::CodeCompleteObjCPropertySetter(Scope *S) {
Douglas Gregorc8537c52009-11-19 07:41:15 +00004939 // Try to find the interface where setters might live.
4940 ObjCInterfaceDecl *Class
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00004941 = dyn_cast_or_null<ObjCInterfaceDecl>(CurContext);
Douglas Gregorc8537c52009-11-19 07:41:15 +00004942 if (!Class) {
4943 if (ObjCCategoryDecl *Category
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00004944 = dyn_cast_or_null<ObjCCategoryDecl>(CurContext))
Douglas Gregorc8537c52009-11-19 07:41:15 +00004945 Class = Category->getClassInterface();
4946
4947 if (!Class)
4948 return;
4949 }
4950
4951 // Find all of the potential getters.
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_Other);
Douglas Gregorc8537c52009-11-19 07:41:15 +00004955 Results.EnterNewScope();
4956
Douglas Gregor1154e272010-09-16 16:06:31 +00004957 VisitedSelectorSet Selectors;
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004958 AddObjCMethods(Class, true, MK_OneArgSelector, None, CurContext,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00004959 Selectors, /*AllowSameLength=*/true, Results);
Douglas Gregorc8537c52009-11-19 07:41:15 +00004960
4961 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004962 HandleCodeCompleteResults(this, CodeCompleter,
4963 CodeCompletionContext::CCC_Other,
4964 Results.data(),Results.size());
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00004965}
4966
Douglas Gregorf34a6f02011-02-15 22:19:42 +00004967void Sema::CodeCompleteObjCPassingType(Scope *S, ObjCDeclSpec &DS,
4968 bool IsParameter) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004969 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004970 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004971 CodeCompletionContext::CCC_Type);
Douglas Gregor99fa2642010-08-24 01:06:58 +00004972 Results.EnterNewScope();
4973
4974 // Add context-sensitive, Objective-C parameter-passing keywords.
4975 bool AddedInOut = false;
4976 if ((DS.getObjCDeclQualifier() &
4977 (ObjCDeclSpec::DQ_In | ObjCDeclSpec::DQ_Inout)) == 0) {
4978 Results.AddResult("in");
4979 Results.AddResult("inout");
4980 AddedInOut = true;
4981 }
4982 if ((DS.getObjCDeclQualifier() &
4983 (ObjCDeclSpec::DQ_Out | ObjCDeclSpec::DQ_Inout)) == 0) {
4984 Results.AddResult("out");
4985 if (!AddedInOut)
4986 Results.AddResult("inout");
4987 }
4988 if ((DS.getObjCDeclQualifier() &
4989 (ObjCDeclSpec::DQ_Bycopy | ObjCDeclSpec::DQ_Byref |
4990 ObjCDeclSpec::DQ_Oneway)) == 0) {
4991 Results.AddResult("bycopy");
4992 Results.AddResult("byref");
4993 Results.AddResult("oneway");
4994 }
4995
Douglas Gregorf34a6f02011-02-15 22:19:42 +00004996 // If we're completing the return type of an Objective-C method and the
4997 // identifier IBAction refers to a macro, provide a completion item for
4998 // an action, e.g.,
4999 // IBAction)<#selector#>:(id)sender
5000 if (DS.getObjCDeclQualifier() == 0 && !IsParameter &&
5001 Context.Idents.get("IBAction").hasMacroDefinition()) {
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005002 CodeCompletionBuilder Builder(Results.getAllocator(),
5003 Results.getCodeCompletionTUInfo(),
5004 CCP_CodePattern, CXAvailability_Available);
Douglas Gregorf34a6f02011-02-15 22:19:42 +00005005 Builder.AddTypedTextChunk("IBAction");
Benjamin Kramerdb534a42012-03-26 16:57:36 +00005006 Builder.AddChunk(CodeCompletionString::CK_RightParen);
Douglas Gregorf34a6f02011-02-15 22:19:42 +00005007 Builder.AddPlaceholderChunk("selector");
Benjamin Kramerdb534a42012-03-26 16:57:36 +00005008 Builder.AddChunk(CodeCompletionString::CK_Colon);
5009 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
Douglas Gregorf34a6f02011-02-15 22:19:42 +00005010 Builder.AddTextChunk("id");
Benjamin Kramerdb534a42012-03-26 16:57:36 +00005011 Builder.AddChunk(CodeCompletionString::CK_RightParen);
Douglas Gregorf34a6f02011-02-15 22:19:42 +00005012 Builder.AddTextChunk("sender");
5013 Results.AddResult(CodeCompletionResult(Builder.TakeString()));
5014 }
Douglas Gregored1f5972013-01-30 07:11:43 +00005015
5016 // If we're completing the return type, provide 'instancetype'.
5017 if (!IsParameter) {
5018 Results.AddResult(CodeCompletionResult("instancetype"));
5019 }
Douglas Gregorf34a6f02011-02-15 22:19:42 +00005020
Douglas Gregor99fa2642010-08-24 01:06:58 +00005021 // Add various builtin type names and specifiers.
5022 AddOrdinaryNameResults(PCC_Type, S, *this, Results);
5023 Results.ExitScope();
5024
5025 // Add the various type names
5026 Results.setFilter(&ResultBuilder::IsOrdinaryNonValueName);
5027 CodeCompletionDeclConsumer Consumer(Results, CurContext);
5028 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
5029 CodeCompleter->includeGlobals());
5030
5031 if (CodeCompleter->includeMacros())
Douglas Gregor8cb17462012-10-09 16:01:50 +00005032 AddMacroResults(PP, Results, false);
Douglas Gregor99fa2642010-08-24 01:06:58 +00005033
5034 HandleCodeCompleteResults(this, CodeCompleter,
5035 CodeCompletionContext::CCC_Type,
5036 Results.data(), Results.size());
5037}
5038
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005039/// \brief When we have an expression with type "id", we may assume
5040/// that it has some more-specific class type based on knowledge of
5041/// common uses of Objective-C. This routine returns that class type,
5042/// or NULL if no better result could be determined.
5043static ObjCInterfaceDecl *GetAssumedMessageSendExprType(Expr *E) {
Douglas Gregored0b69d2010-09-15 16:23:04 +00005044 ObjCMessageExpr *Msg = dyn_cast_or_null<ObjCMessageExpr>(E);
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005045 if (!Msg)
5046 return 0;
5047
5048 Selector Sel = Msg->getSelector();
5049 if (Sel.isNull())
5050 return 0;
5051
5052 IdentifierInfo *Id = Sel.getIdentifierInfoForSlot(0);
5053 if (!Id)
5054 return 0;
5055
5056 ObjCMethodDecl *Method = Msg->getMethodDecl();
5057 if (!Method)
5058 return 0;
5059
5060 // Determine the class that we're sending the message to.
Douglas Gregor9a129192010-04-21 00:45:42 +00005061 ObjCInterfaceDecl *IFace = 0;
5062 switch (Msg->getReceiverKind()) {
5063 case ObjCMessageExpr::Class:
John McCall8b07ec22010-05-15 11:32:37 +00005064 if (const ObjCObjectType *ObjType
5065 = Msg->getClassReceiver()->getAs<ObjCObjectType>())
5066 IFace = ObjType->getInterface();
Douglas Gregor9a129192010-04-21 00:45:42 +00005067 break;
5068
5069 case ObjCMessageExpr::Instance: {
5070 QualType T = Msg->getInstanceReceiver()->getType();
5071 if (const ObjCObjectPointerType *Ptr = T->getAs<ObjCObjectPointerType>())
5072 IFace = Ptr->getInterfaceDecl();
5073 break;
5074 }
5075
5076 case ObjCMessageExpr::SuperInstance:
5077 case ObjCMessageExpr::SuperClass:
5078 break;
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005079 }
5080
5081 if (!IFace)
5082 return 0;
5083
5084 ObjCInterfaceDecl *Super = IFace->getSuperClass();
5085 if (Method->isInstanceMethod())
5086 return llvm::StringSwitch<ObjCInterfaceDecl *>(Id->getName())
5087 .Case("retain", IFace)
John McCall31168b02011-06-15 23:02:42 +00005088 .Case("strong", IFace)
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005089 .Case("autorelease", IFace)
5090 .Case("copy", IFace)
5091 .Case("copyWithZone", IFace)
5092 .Case("mutableCopy", IFace)
5093 .Case("mutableCopyWithZone", IFace)
5094 .Case("awakeFromCoder", IFace)
5095 .Case("replacementObjectFromCoder", IFace)
5096 .Case("class", IFace)
5097 .Case("classForCoder", IFace)
5098 .Case("superclass", Super)
5099 .Default(0);
5100
5101 return llvm::StringSwitch<ObjCInterfaceDecl *>(Id->getName())
5102 .Case("new", IFace)
5103 .Case("alloc", IFace)
5104 .Case("allocWithZone", IFace)
5105 .Case("class", IFace)
5106 .Case("superclass", Super)
5107 .Default(0);
5108}
5109
Douglas Gregor6fc04132010-08-27 15:10:57 +00005110// Add a special completion for a message send to "super", which fills in the
5111// most likely case of forwarding all of our arguments to the superclass
5112// function.
5113///
5114/// \param S The semantic analysis object.
5115///
Dmitri Gribenkoadba9be2012-08-23 17:58:28 +00005116/// \param NeedSuperKeyword Whether we need to prefix this completion with
Douglas Gregor6fc04132010-08-27 15:10:57 +00005117/// the "super" keyword. Otherwise, we just need to provide the arguments.
5118///
5119/// \param SelIdents The identifiers in the selector that have already been
5120/// provided as arguments for a send to "super".
5121///
Douglas Gregor6fc04132010-08-27 15:10:57 +00005122/// \param Results The set of results to augment.
5123///
5124/// \returns the Objective-C method declaration that would be invoked by
5125/// this "super" completion. If NULL, no completion was added.
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005126static ObjCMethodDecl *AddSuperSendCompletion(
5127 Sema &S, bool NeedSuperKeyword,
5128 ArrayRef<IdentifierInfo *> SelIdents,
5129 ResultBuilder &Results) {
Douglas Gregor6fc04132010-08-27 15:10:57 +00005130 ObjCMethodDecl *CurMethod = S.getCurMethodDecl();
5131 if (!CurMethod)
5132 return 0;
5133
5134 ObjCInterfaceDecl *Class = CurMethod->getClassInterface();
5135 if (!Class)
5136 return 0;
5137
5138 // Try to find a superclass method with the same selector.
5139 ObjCMethodDecl *SuperMethod = 0;
Douglas Gregorb5f1e462011-02-16 00:51:18 +00005140 while ((Class = Class->getSuperClass()) && !SuperMethod) {
5141 // Check in the class
Douglas Gregor6fc04132010-08-27 15:10:57 +00005142 SuperMethod = Class->getMethod(CurMethod->getSelector(),
5143 CurMethod->isInstanceMethod());
5144
Douglas Gregorb5f1e462011-02-16 00:51:18 +00005145 // Check in categories or class extensions.
5146 if (!SuperMethod) {
Douglas Gregor048fbfa2013-01-16 23:00:23 +00005147 for (ObjCInterfaceDecl::known_categories_iterator
5148 Cat = Class->known_categories_begin(),
5149 CatEnd = Class->known_categories_end();
5150 Cat != CatEnd; ++Cat) {
5151 if ((SuperMethod = Cat->getMethod(CurMethod->getSelector(),
Douglas Gregorb5f1e462011-02-16 00:51:18 +00005152 CurMethod->isInstanceMethod())))
5153 break;
Douglas Gregor048fbfa2013-01-16 23:00:23 +00005154 }
Douglas Gregorb5f1e462011-02-16 00:51:18 +00005155 }
5156 }
5157
Douglas Gregor6fc04132010-08-27 15:10:57 +00005158 if (!SuperMethod)
5159 return 0;
5160
5161 // Check whether the superclass method has the same signature.
5162 if (CurMethod->param_size() != SuperMethod->param_size() ||
5163 CurMethod->isVariadic() != SuperMethod->isVariadic())
5164 return 0;
5165
5166 for (ObjCMethodDecl::param_iterator CurP = CurMethod->param_begin(),
5167 CurPEnd = CurMethod->param_end(),
5168 SuperP = SuperMethod->param_begin();
5169 CurP != CurPEnd; ++CurP, ++SuperP) {
5170 // Make sure the parameter types are compatible.
5171 if (!S.Context.hasSameUnqualifiedType((*CurP)->getType(),
5172 (*SuperP)->getType()))
5173 return 0;
5174
5175 // Make sure we have a parameter name to forward!
5176 if (!(*CurP)->getIdentifier())
5177 return 0;
5178 }
5179
5180 // We have a superclass method. Now, form the send-to-super completion.
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005181 CodeCompletionBuilder Builder(Results.getAllocator(),
5182 Results.getCodeCompletionTUInfo());
Douglas Gregor6fc04132010-08-27 15:10:57 +00005183
5184 // Give this completion a return type.
Douglas Gregor75acd922011-09-27 23:30:47 +00005185 AddResultTypeChunk(S.Context, getCompletionPrintingPolicy(S), SuperMethod,
5186 Builder);
Douglas Gregor6fc04132010-08-27 15:10:57 +00005187
5188 // If we need the "super" keyword, add it (plus some spacing).
5189 if (NeedSuperKeyword) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005190 Builder.AddTypedTextChunk("super");
5191 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
Douglas Gregor6fc04132010-08-27 15:10:57 +00005192 }
5193
5194 Selector Sel = CurMethod->getSelector();
5195 if (Sel.isUnarySelector()) {
5196 if (NeedSuperKeyword)
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005197 Builder.AddTextChunk(Builder.getAllocator().CopyString(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00005198 Sel.getNameForSlot(0)));
Douglas Gregor6fc04132010-08-27 15:10:57 +00005199 else
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005200 Builder.AddTypedTextChunk(Builder.getAllocator().CopyString(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00005201 Sel.getNameForSlot(0)));
Douglas Gregor6fc04132010-08-27 15:10:57 +00005202 } else {
5203 ObjCMethodDecl::param_iterator CurP = CurMethod->param_begin();
5204 for (unsigned I = 0, N = Sel.getNumArgs(); I != N; ++I, ++CurP) {
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005205 if (I > SelIdents.size())
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005206 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
Douglas Gregor6fc04132010-08-27 15:10:57 +00005207
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005208 if (I < SelIdents.size())
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005209 Builder.AddInformativeChunk(
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005210 Builder.getAllocator().CopyString(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00005211 Sel.getNameForSlot(I) + ":"));
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005212 else if (NeedSuperKeyword || I > SelIdents.size()) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005213 Builder.AddTextChunk(
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005214 Builder.getAllocator().CopyString(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00005215 Sel.getNameForSlot(I) + ":"));
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005216 Builder.AddPlaceholderChunk(Builder.getAllocator().CopyString(
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005217 (*CurP)->getIdentifier()->getName()));
Douglas Gregor6fc04132010-08-27 15:10:57 +00005218 } else {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005219 Builder.AddTypedTextChunk(
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005220 Builder.getAllocator().CopyString(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00005221 Sel.getNameForSlot(I) + ":"));
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005222 Builder.AddPlaceholderChunk(Builder.getAllocator().CopyString(
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005223 (*CurP)->getIdentifier()->getName()));
Douglas Gregor6fc04132010-08-27 15:10:57 +00005224 }
5225 }
5226 }
5227
Douglas Gregor78254c82012-03-27 23:34:16 +00005228 Results.AddResult(CodeCompletionResult(Builder.TakeString(), SuperMethod,
5229 CCP_SuperCompletion));
Douglas Gregor6fc04132010-08-27 15:10:57 +00005230 return SuperMethod;
5231}
5232
Douglas Gregora817a192010-05-27 23:06:34 +00005233void Sema::CodeCompleteObjCMessageReceiver(Scope *S) {
John McCall276321a2010-08-25 06:19:51 +00005234 typedef CodeCompletionResult Result;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005235 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005236 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005237 CodeCompletionContext::CCC_ObjCMessageReceiver,
Richard Smith2bf7fdb2013-01-02 11:42:31 +00005238 getLangOpts().CPlusPlus11
Douglas Gregord8c61782012-02-15 15:34:24 +00005239 ? &ResultBuilder::IsObjCMessageReceiverOrLambdaCapture
5240 : &ResultBuilder::IsObjCMessageReceiver);
Douglas Gregora817a192010-05-27 23:06:34 +00005241
Douglas Gregora817a192010-05-27 23:06:34 +00005242 CodeCompletionDeclConsumer Consumer(Results, CurContext);
5243 Results.EnterNewScope();
Douglas Gregor39982192010-08-15 06:18:01 +00005244 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
5245 CodeCompleter->includeGlobals());
Douglas Gregora817a192010-05-27 23:06:34 +00005246
5247 // If we are in an Objective-C method inside a class that has a superclass,
5248 // add "super" as an option.
5249 if (ObjCMethodDecl *Method = getCurMethodDecl())
5250 if (ObjCInterfaceDecl *Iface = Method->getClassInterface())
Douglas Gregor6fc04132010-08-27 15:10:57 +00005251 if (Iface->getSuperClass()) {
Douglas Gregora817a192010-05-27 23:06:34 +00005252 Results.AddResult(Result("super"));
Douglas Gregor6fc04132010-08-27 15:10:57 +00005253
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005254 AddSuperSendCompletion(*this, /*NeedSuperKeyword=*/true, None, Results);
Douglas Gregor6fc04132010-08-27 15:10:57 +00005255 }
Douglas Gregora817a192010-05-27 23:06:34 +00005256
Richard Smith2bf7fdb2013-01-02 11:42:31 +00005257 if (getLangOpts().CPlusPlus11)
Douglas Gregord8c61782012-02-15 15:34:24 +00005258 addThisCompletion(*this, Results);
5259
Douglas Gregora817a192010-05-27 23:06:34 +00005260 Results.ExitScope();
5261
5262 if (CodeCompleter->includeMacros())
Douglas Gregor8cb17462012-10-09 16:01:50 +00005263 AddMacroResults(PP, Results, false);
Douglas Gregor50832e02010-09-20 22:39:41 +00005264 HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005265 Results.data(), Results.size());
Douglas Gregora817a192010-05-27 23:06:34 +00005266
5267}
5268
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005269void Sema::CodeCompleteObjCSuperMessage(Scope *S, SourceLocation SuperLoc,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005270 ArrayRef<IdentifierInfo *> SelIdents,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00005271 bool AtArgumentExpression) {
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005272 ObjCInterfaceDecl *CDecl = 0;
5273 if (ObjCMethodDecl *CurMethod = getCurMethodDecl()) {
5274 // Figure out which interface we're in.
5275 CDecl = CurMethod->getClassInterface();
5276 if (!CDecl)
5277 return;
5278
5279 // Find the superclass of this class.
5280 CDecl = CDecl->getSuperClass();
5281 if (!CDecl)
5282 return;
5283
5284 if (CurMethod->isInstanceMethod()) {
5285 // We are inside an instance method, which means that the message
5286 // send [super ...] is actually calling an instance method on the
Douglas Gregor392a84b2010-10-13 21:24:53 +00005287 // current object.
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005288 return CodeCompleteObjCInstanceMessage(S, 0, SelIdents,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00005289 AtArgumentExpression,
Douglas Gregor392a84b2010-10-13 21:24:53 +00005290 CDecl);
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005291 }
5292
5293 // Fall through to send to the superclass in CDecl.
5294 } else {
5295 // "super" may be the name of a type or variable. Figure out which
5296 // it is.
Argyrios Kyrtzidis3e56dd42013-03-14 22:56:43 +00005297 IdentifierInfo *Super = getSuperIdentifier();
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005298 NamedDecl *ND = LookupSingleName(S, Super, SuperLoc,
5299 LookupOrdinaryName);
5300 if ((CDecl = dyn_cast_or_null<ObjCInterfaceDecl>(ND))) {
5301 // "super" names an interface. Use it.
5302 } else if (TypeDecl *TD = dyn_cast_or_null<TypeDecl>(ND)) {
John McCall8b07ec22010-05-15 11:32:37 +00005303 if (const ObjCObjectType *Iface
5304 = Context.getTypeDeclType(TD)->getAs<ObjCObjectType>())
5305 CDecl = Iface->getInterface();
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005306 } else if (ND && isa<UnresolvedUsingTypenameDecl>(ND)) {
5307 // "super" names an unresolved type; we can't be more specific.
5308 } else {
5309 // Assume that "super" names some kind of value and parse that way.
5310 CXXScopeSpec SS;
Abramo Bagnara7945c982012-01-27 09:46:47 +00005311 SourceLocation TemplateKWLoc;
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005312 UnqualifiedId id;
5313 id.setIdentifier(Super, SuperLoc);
Abramo Bagnara7945c982012-01-27 09:46:47 +00005314 ExprResult SuperExpr = ActOnIdExpression(S, SS, TemplateKWLoc, id,
5315 false, false);
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005316 return CodeCompleteObjCInstanceMessage(S, (Expr *)SuperExpr.get(),
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005317 SelIdents,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00005318 AtArgumentExpression);
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005319 }
5320
5321 // Fall through
5322 }
5323
John McCallba7bf592010-08-24 05:47:05 +00005324 ParsedType Receiver;
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005325 if (CDecl)
John McCallba7bf592010-08-24 05:47:05 +00005326 Receiver = ParsedType::make(Context.getObjCInterfaceType(CDecl));
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005327 return CodeCompleteObjCClassMessage(S, Receiver, SelIdents,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005328 AtArgumentExpression,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00005329 /*IsSuper=*/true);
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005330}
5331
Douglas Gregor74661272010-09-21 00:03:25 +00005332/// \brief Given a set of code-completion results for the argument of a message
5333/// send, determine the preferred type (if any) for that argument expression.
5334static QualType getPreferredArgumentTypeForMessageSend(ResultBuilder &Results,
5335 unsigned NumSelIdents) {
5336 typedef CodeCompletionResult Result;
5337 ASTContext &Context = Results.getSema().Context;
5338
5339 QualType PreferredType;
5340 unsigned BestPriority = CCP_Unlikely * 2;
5341 Result *ResultsData = Results.data();
5342 for (unsigned I = 0, N = Results.size(); I != N; ++I) {
5343 Result &R = ResultsData[I];
5344 if (R.Kind == Result::RK_Declaration &&
5345 isa<ObjCMethodDecl>(R.Declaration)) {
5346 if (R.Priority <= BestPriority) {
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00005347 const ObjCMethodDecl *Method = cast<ObjCMethodDecl>(R.Declaration);
Douglas Gregor74661272010-09-21 00:03:25 +00005348 if (NumSelIdents <= Method->param_size()) {
5349 QualType MyPreferredType = Method->param_begin()[NumSelIdents - 1]
5350 ->getType();
5351 if (R.Priority < BestPriority || PreferredType.isNull()) {
5352 BestPriority = R.Priority;
5353 PreferredType = MyPreferredType;
5354 } else if (!Context.hasSameUnqualifiedType(PreferredType,
5355 MyPreferredType)) {
5356 PreferredType = QualType();
5357 }
5358 }
5359 }
5360 }
5361 }
5362
5363 return PreferredType;
5364}
5365
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005366static void AddClassMessageCompletions(Sema &SemaRef, Scope *S,
5367 ParsedType Receiver,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005368 ArrayRef<IdentifierInfo *> SelIdents,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00005369 bool AtArgumentExpression,
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005370 bool IsSuper,
5371 ResultBuilder &Results) {
John McCall276321a2010-08-25 06:19:51 +00005372 typedef CodeCompletionResult Result;
Douglas Gregor8ce33212009-11-17 17:59:40 +00005373 ObjCInterfaceDecl *CDecl = 0;
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005374
Douglas Gregor8ce33212009-11-17 17:59:40 +00005375 // If the given name refers to an interface type, retrieve the
5376 // corresponding declaration.
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005377 if (Receiver) {
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005378 QualType T = SemaRef.GetTypeFromParser(Receiver, 0);
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005379 if (!T.isNull())
John McCall8b07ec22010-05-15 11:32:37 +00005380 if (const ObjCObjectType *Interface = T->getAs<ObjCObjectType>())
5381 CDecl = Interface->getInterface();
Douglas Gregor8ce33212009-11-17 17:59:40 +00005382 }
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005383
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005384 // Add all of the factory methods in this Objective-C class, its protocols,
5385 // superclasses, categories, implementation, etc.
Steve Naroffeae65032009-11-07 02:08:14 +00005386 Results.EnterNewScope();
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005387
Douglas Gregor6fc04132010-08-27 15:10:57 +00005388 // If this is a send-to-super, try to add the special "super" send
5389 // completion.
5390 if (IsSuper) {
5391 if (ObjCMethodDecl *SuperMethod
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005392 = AddSuperSendCompletion(SemaRef, false, SelIdents, Results))
Douglas Gregor6fc04132010-08-27 15:10:57 +00005393 Results.Ignore(SuperMethod);
5394 }
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005395
Douglas Gregorc2cb2e22010-08-27 15:29:55 +00005396 // If we're inside an Objective-C method definition, prefer its selector to
5397 // others.
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005398 if (ObjCMethodDecl *CurMethod = SemaRef.getCurMethodDecl())
Douglas Gregorc2cb2e22010-08-27 15:29:55 +00005399 Results.setPreferredSelector(CurMethod->getSelector());
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005400
Douglas Gregor1154e272010-09-16 16:06:31 +00005401 VisitedSelectorSet Selectors;
Douglas Gregor6285f752010-04-06 16:40:00 +00005402 if (CDecl)
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005403 AddObjCMethods(CDecl, false, MK_Any, SelIdents,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005404 SemaRef.CurContext, Selectors, AtArgumentExpression,
5405 Results);
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005406 else {
Douglas Gregor6285f752010-04-06 16:40:00 +00005407 // We're messaging "id" as a type; provide all class/factory methods.
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005408
Douglas Gregord720daf2010-04-06 17:30:22 +00005409 // If we have an external source, load the entire class method
Sebastian Redld44cd6a2010-08-18 23:57:06 +00005410 // pool from the AST file.
Axel Naumanndd433f02012-10-18 19:05:02 +00005411 if (SemaRef.getExternalSource()) {
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005412 for (uint32_t I = 0,
Axel Naumanndd433f02012-10-18 19:05:02 +00005413 N = SemaRef.getExternalSource()->GetNumExternalSelectors();
John McCall75b960e2010-06-01 09:23:16 +00005414 I != N; ++I) {
Axel Naumanndd433f02012-10-18 19:05:02 +00005415 Selector Sel = SemaRef.getExternalSource()->GetExternalSelector(I);
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005416 if (Sel.isNull() || SemaRef.MethodPool.count(Sel))
Douglas Gregord720daf2010-04-06 17:30:22 +00005417 continue;
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005418
5419 SemaRef.ReadMethodPool(Sel);
Douglas Gregord720daf2010-04-06 17:30:22 +00005420 }
5421 }
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005422
5423 for (Sema::GlobalMethodPool::iterator M = SemaRef.MethodPool.begin(),
5424 MEnd = SemaRef.MethodPool.end();
Sebastian Redl75d8a322010-08-02 23:18:59 +00005425 M != MEnd; ++M) {
5426 for (ObjCMethodList *MethList = &M->second.second;
5427 MethList && MethList->Method;
Argyrios Kyrtzidisd3da6e02013-04-17 00:08:58 +00005428 MethList = MethList->getNext()) {
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005429 if (!isAcceptableObjCMethod(MethList->Method, MK_Any, SelIdents))
Douglas Gregor6285f752010-04-06 16:40:00 +00005430 continue;
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005431
Douglas Gregor0a0e2b32013-01-31 04:52:16 +00005432 Result R(MethList->Method, Results.getBasePriority(MethList->Method),0);
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005433 R.StartParameter = SelIdents.size();
Douglas Gregor6285f752010-04-06 16:40:00 +00005434 R.AllParametersAreInformative = false;
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005435 Results.MaybeAddResult(R, SemaRef.CurContext);
Douglas Gregor6285f752010-04-06 16:40:00 +00005436 }
5437 }
5438 }
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005439
5440 Results.ExitScope();
5441}
Douglas Gregor6285f752010-04-06 16:40:00 +00005442
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005443void Sema::CodeCompleteObjCClassMessage(Scope *S, ParsedType Receiver,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005444 ArrayRef<IdentifierInfo *> SelIdents,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00005445 bool AtArgumentExpression,
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005446 bool IsSuper) {
Douglas Gregor63745d52011-07-21 01:05:26 +00005447
5448 QualType T = this->GetTypeFromParser(Receiver);
5449
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005450 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005451 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor63745d52011-07-21 01:05:26 +00005452 CodeCompletionContext(CodeCompletionContext::CCC_ObjCClassMessage,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005453 T, SelIdents));
Douglas Gregor63745d52011-07-21 01:05:26 +00005454
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005455 AddClassMessageCompletions(*this, S, Receiver, SelIdents,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00005456 AtArgumentExpression, IsSuper, Results);
Douglas Gregor74661272010-09-21 00:03:25 +00005457
5458 // If we're actually at the argument expression (rather than prior to the
5459 // selector), we're actually performing code completion for an expression.
5460 // Determine whether we have a single, best method. If so, we can
5461 // code-complete the expression using the corresponding parameter type as
5462 // our preferred type, improving completion results.
5463 if (AtArgumentExpression) {
5464 QualType PreferredType = getPreferredArgumentTypeForMessageSend(Results,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005465 SelIdents.size());
Douglas Gregor74661272010-09-21 00:03:25 +00005466 if (PreferredType.isNull())
5467 CodeCompleteOrdinaryName(S, PCC_Expression);
5468 else
5469 CodeCompleteExpression(S, PreferredType);
5470 return;
5471 }
5472
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005473 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor63745d52011-07-21 01:05:26 +00005474 Results.getCompletionContext(),
Douglas Gregor6fc04132010-08-27 15:10:57 +00005475 Results.data(), Results.size());
Steve Naroffeae65032009-11-07 02:08:14 +00005476}
5477
Richard Trieu2bd04012011-09-09 02:00:50 +00005478void Sema::CodeCompleteObjCInstanceMessage(Scope *S, Expr *Receiver,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005479 ArrayRef<IdentifierInfo *> SelIdents,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00005480 bool AtArgumentExpression,
Douglas Gregor392a84b2010-10-13 21:24:53 +00005481 ObjCInterfaceDecl *Super) {
John McCall276321a2010-08-25 06:19:51 +00005482 typedef CodeCompletionResult Result;
Steve Naroffeae65032009-11-07 02:08:14 +00005483
5484 Expr *RecExpr = static_cast<Expr *>(Receiver);
Steve Naroffeae65032009-11-07 02:08:14 +00005485
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005486 // If necessary, apply function/array conversion to the receiver.
5487 // C99 6.7.5.3p[7,8].
John Wiegley01296292011-04-08 18:41:53 +00005488 if (RecExpr) {
5489 ExprResult Conv = DefaultFunctionArrayLvalueConversion(RecExpr);
5490 if (Conv.isInvalid()) // conversion failed. bail.
5491 return;
5492 RecExpr = Conv.take();
5493 }
Douglas Gregor392a84b2010-10-13 21:24:53 +00005494 QualType ReceiverType = RecExpr? RecExpr->getType()
5495 : Super? Context.getObjCObjectPointerType(
5496 Context.getObjCInterfaceType(Super))
5497 : Context.getObjCIdType();
Steve Naroffeae65032009-11-07 02:08:14 +00005498
Douglas Gregordc520b02010-11-08 21:12:30 +00005499 // If we're messaging an expression with type "id" or "Class", check
5500 // whether we know something special about the receiver that allows
5501 // us to assume a more-specific receiver type.
Anders Carlsson382ba412014-02-28 19:07:22 +00005502 if (ReceiverType->isObjCIdType() || ReceiverType->isObjCClassType()) {
Douglas Gregordc520b02010-11-08 21:12:30 +00005503 if (ObjCInterfaceDecl *IFace = GetAssumedMessageSendExprType(RecExpr)) {
5504 if (ReceiverType->isObjCClassType())
5505 return CodeCompleteObjCClassMessage(S,
5506 ParsedType::make(Context.getObjCInterfaceType(IFace)),
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005507 SelIdents,
Douglas Gregordc520b02010-11-08 21:12:30 +00005508 AtArgumentExpression, Super);
5509
5510 ReceiverType = Context.getObjCObjectPointerType(
5511 Context.getObjCInterfaceType(IFace));
5512 }
Anders Carlsson382ba412014-02-28 19:07:22 +00005513 } else if (RecExpr && getLangOpts().CPlusPlus) {
5514 ExprResult Conv = PerformContextuallyConvertToObjCPointer(RecExpr);
5515 if (Conv.isUsable()) {
5516 RecExpr = Conv.take();
5517 ReceiverType = RecExpr->getType();
5518 }
5519 }
Douglas Gregordc520b02010-11-08 21:12:30 +00005520
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005521 // Build the set of methods we can see.
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005522 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005523 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor63745d52011-07-21 01:05:26 +00005524 CodeCompletionContext(CodeCompletionContext::CCC_ObjCInstanceMessage,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005525 ReceiverType, SelIdents));
Douglas Gregor63745d52011-07-21 01:05:26 +00005526
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005527 Results.EnterNewScope();
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005528
Douglas Gregor6fc04132010-08-27 15:10:57 +00005529 // If this is a send-to-super, try to add the special "super" send
5530 // completion.
Douglas Gregor392a84b2010-10-13 21:24:53 +00005531 if (Super) {
Douglas Gregor6fc04132010-08-27 15:10:57 +00005532 if (ObjCMethodDecl *SuperMethod
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005533 = AddSuperSendCompletion(*this, false, SelIdents, Results))
Douglas Gregor6fc04132010-08-27 15:10:57 +00005534 Results.Ignore(SuperMethod);
5535 }
5536
Douglas Gregorc2cb2e22010-08-27 15:29:55 +00005537 // If we're inside an Objective-C method definition, prefer its selector to
5538 // others.
5539 if (ObjCMethodDecl *CurMethod = getCurMethodDecl())
5540 Results.setPreferredSelector(CurMethod->getSelector());
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005541
Douglas Gregor1154e272010-09-16 16:06:31 +00005542 // Keep track of the selectors we've already added.
5543 VisitedSelectorSet Selectors;
5544
Douglas Gregora3329fa2009-11-18 00:06:18 +00005545 // Handle messages to Class. This really isn't a message to an instance
5546 // method, so we treat it the same way we would treat a message send to a
5547 // class method.
5548 if (ReceiverType->isObjCClassType() ||
5549 ReceiverType->isObjCQualifiedClassType()) {
5550 if (ObjCMethodDecl *CurMethod = getCurMethodDecl()) {
5551 if (ObjCInterfaceDecl *ClassDecl = CurMethod->getClassInterface())
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005552 AddObjCMethods(ClassDecl, false, MK_Any, SelIdents,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005553 CurContext, Selectors, AtArgumentExpression, Results);
Douglas Gregora3329fa2009-11-18 00:06:18 +00005554 }
5555 }
5556 // Handle messages to a qualified ID ("id<foo>").
5557 else if (const ObjCObjectPointerType *QualID
5558 = ReceiverType->getAsObjCQualifiedIdType()) {
5559 // Search protocols for instance methods.
5560 for (ObjCObjectPointerType::qual_iterator I = QualID->qual_begin(),
5561 E = QualID->qual_end();
5562 I != E; ++I)
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005563 AddObjCMethods(*I, true, MK_Any, SelIdents, CurContext,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005564 Selectors, AtArgumentExpression, Results);
Douglas Gregora3329fa2009-11-18 00:06:18 +00005565 }
5566 // Handle messages to a pointer to interface type.
5567 else if (const ObjCObjectPointerType *IFacePtr
5568 = ReceiverType->getAsObjCInterfacePointerType()) {
5569 // Search the class, its superclasses, etc., for instance methods.
Douglas Gregorc8537c52009-11-19 07:41:15 +00005570 AddObjCMethods(IFacePtr->getInterfaceDecl(), true, MK_Any, SelIdents,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005571 CurContext, Selectors, AtArgumentExpression,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005572 Results);
Douglas Gregora3329fa2009-11-18 00:06:18 +00005573
5574 // Search protocols for instance methods.
5575 for (ObjCObjectPointerType::qual_iterator I = IFacePtr->qual_begin(),
5576 E = IFacePtr->qual_end();
5577 I != E; ++I)
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005578 AddObjCMethods(*I, true, MK_Any, SelIdents, CurContext,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005579 Selectors, AtArgumentExpression, Results);
Douglas Gregora3329fa2009-11-18 00:06:18 +00005580 }
Douglas Gregor6285f752010-04-06 16:40:00 +00005581 // Handle messages to "id".
5582 else if (ReceiverType->isObjCIdType()) {
Douglas Gregord720daf2010-04-06 17:30:22 +00005583 // We're messaging "id", so provide all instance methods we know
5584 // about as code-completion results.
5585
5586 // If we have an external source, load the entire class method
Sebastian Redld44cd6a2010-08-18 23:57:06 +00005587 // pool from the AST file.
Douglas Gregord720daf2010-04-06 17:30:22 +00005588 if (ExternalSource) {
John McCall75b960e2010-06-01 09:23:16 +00005589 for (uint32_t I = 0, N = ExternalSource->GetNumExternalSelectors();
5590 I != N; ++I) {
5591 Selector Sel = ExternalSource->GetExternalSelector(I);
Sebastian Redl75d8a322010-08-02 23:18:59 +00005592 if (Sel.isNull() || MethodPool.count(Sel))
Douglas Gregord720daf2010-04-06 17:30:22 +00005593 continue;
5594
Sebastian Redl75d8a322010-08-02 23:18:59 +00005595 ReadMethodPool(Sel);
Douglas Gregord720daf2010-04-06 17:30:22 +00005596 }
5597 }
5598
Sebastian Redl75d8a322010-08-02 23:18:59 +00005599 for (GlobalMethodPool::iterator M = MethodPool.begin(),
5600 MEnd = MethodPool.end();
5601 M != MEnd; ++M) {
5602 for (ObjCMethodList *MethList = &M->second.first;
5603 MethList && MethList->Method;
Argyrios Kyrtzidisd3da6e02013-04-17 00:08:58 +00005604 MethList = MethList->getNext()) {
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005605 if (!isAcceptableObjCMethod(MethList->Method, MK_Any, SelIdents))
Douglas Gregor6285f752010-04-06 16:40:00 +00005606 continue;
Douglas Gregor1154e272010-09-16 16:06:31 +00005607
5608 if (!Selectors.insert(MethList->Method->getSelector()))
5609 continue;
5610
Douglas Gregor0a0e2b32013-01-31 04:52:16 +00005611 Result R(MethList->Method, Results.getBasePriority(MethList->Method),0);
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005612 R.StartParameter = SelIdents.size();
Douglas Gregor6285f752010-04-06 16:40:00 +00005613 R.AllParametersAreInformative = false;
5614 Results.MaybeAddResult(R, CurContext);
5615 }
5616 }
5617 }
Steve Naroffeae65032009-11-07 02:08:14 +00005618 Results.ExitScope();
Douglas Gregor74661272010-09-21 00:03:25 +00005619
5620
5621 // If we're actually at the argument expression (rather than prior to the
5622 // selector), we're actually performing code completion for an expression.
5623 // Determine whether we have a single, best method. If so, we can
5624 // code-complete the expression using the corresponding parameter type as
5625 // our preferred type, improving completion results.
5626 if (AtArgumentExpression) {
5627 QualType PreferredType = getPreferredArgumentTypeForMessageSend(Results,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005628 SelIdents.size());
Douglas Gregor74661272010-09-21 00:03:25 +00005629 if (PreferredType.isNull())
5630 CodeCompleteOrdinaryName(S, PCC_Expression);
5631 else
5632 CodeCompleteExpression(S, PreferredType);
5633 return;
5634 }
5635
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005636 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor63745d52011-07-21 01:05:26 +00005637 Results.getCompletionContext(),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005638 Results.data(),Results.size());
Steve Naroffeae65032009-11-07 02:08:14 +00005639}
Douglas Gregorbaf69612009-11-18 04:19:12 +00005640
Douglas Gregor68762e72010-08-23 21:17:50 +00005641void Sema::CodeCompleteObjCForCollection(Scope *S,
5642 DeclGroupPtrTy IterationVar) {
5643 CodeCompleteExpressionData Data;
5644 Data.ObjCCollection = true;
5645
5646 if (IterationVar.getAsOpaquePtr()) {
Serge Pavlov9ddb76e2013-08-27 13:15:56 +00005647 DeclGroupRef DG = IterationVar.get();
Douglas Gregor68762e72010-08-23 21:17:50 +00005648 for (DeclGroupRef::iterator I = DG.begin(), End = DG.end(); I != End; ++I) {
5649 if (*I)
5650 Data.IgnoreDecls.push_back(*I);
5651 }
5652 }
5653
5654 CodeCompleteExpression(S, Data);
5655}
5656
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005657void Sema::CodeCompleteObjCSelector(Scope *S,
5658 ArrayRef<IdentifierInfo *> SelIdents) {
Douglas Gregor67c692c2010-08-26 15:07:07 +00005659 // If we have an external source, load the entire class method
5660 // pool from the AST file.
5661 if (ExternalSource) {
5662 for (uint32_t I = 0, N = ExternalSource->GetNumExternalSelectors();
5663 I != N; ++I) {
5664 Selector Sel = ExternalSource->GetExternalSelector(I);
5665 if (Sel.isNull() || MethodPool.count(Sel))
5666 continue;
5667
5668 ReadMethodPool(Sel);
5669 }
5670 }
5671
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005672 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005673 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005674 CodeCompletionContext::CCC_SelectorName);
Douglas Gregor67c692c2010-08-26 15:07:07 +00005675 Results.EnterNewScope();
5676 for (GlobalMethodPool::iterator M = MethodPool.begin(),
5677 MEnd = MethodPool.end();
5678 M != MEnd; ++M) {
5679
5680 Selector Sel = M->first;
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005681 if (!isAcceptableObjCSelector(Sel, MK_Any, SelIdents))
Douglas Gregor67c692c2010-08-26 15:07:07 +00005682 continue;
5683
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005684 CodeCompletionBuilder Builder(Results.getAllocator(),
5685 Results.getCodeCompletionTUInfo());
Douglas Gregor67c692c2010-08-26 15:07:07 +00005686 if (Sel.isUnarySelector()) {
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005687 Builder.AddTypedTextChunk(Builder.getAllocator().CopyString(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00005688 Sel.getNameForSlot(0)));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005689 Results.AddResult(Builder.TakeString());
Douglas Gregor67c692c2010-08-26 15:07:07 +00005690 continue;
5691 }
5692
Douglas Gregor9ac1ad12010-08-26 16:46:39 +00005693 std::string Accumulator;
Douglas Gregor67c692c2010-08-26 15:07:07 +00005694 for (unsigned I = 0, N = Sel.getNumArgs(); I != N; ++I) {
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005695 if (I == SelIdents.size()) {
Douglas Gregor9ac1ad12010-08-26 16:46:39 +00005696 if (!Accumulator.empty()) {
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005697 Builder.AddInformativeChunk(Builder.getAllocator().CopyString(
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005698 Accumulator));
Douglas Gregor9ac1ad12010-08-26 16:46:39 +00005699 Accumulator.clear();
5700 }
5701 }
5702
Benjamin Kramer632500c2011-07-26 16:59:25 +00005703 Accumulator += Sel.getNameForSlot(I);
Douglas Gregor9ac1ad12010-08-26 16:46:39 +00005704 Accumulator += ':';
Douglas Gregor67c692c2010-08-26 15:07:07 +00005705 }
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005706 Builder.AddTypedTextChunk(Builder.getAllocator().CopyString( Accumulator));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005707 Results.AddResult(Builder.TakeString());
Douglas Gregor67c692c2010-08-26 15:07:07 +00005708 }
5709 Results.ExitScope();
5710
5711 HandleCodeCompleteResults(this, CodeCompleter,
5712 CodeCompletionContext::CCC_SelectorName,
5713 Results.data(), Results.size());
5714}
5715
Douglas Gregorbaf69612009-11-18 04:19:12 +00005716/// \brief Add all of the protocol declarations that we find in the given
5717/// (translation unit) context.
5718static void AddProtocolResults(DeclContext *Ctx, DeclContext *CurContext,
Douglas Gregor5b4671c2009-11-18 04:49:41 +00005719 bool OnlyForwardDeclarations,
Douglas Gregorbaf69612009-11-18 04:19:12 +00005720 ResultBuilder &Results) {
John McCall276321a2010-08-25 06:19:51 +00005721 typedef CodeCompletionResult Result;
Douglas Gregorbaf69612009-11-18 04:19:12 +00005722
Aaron Ballman629afae2014-03-07 19:56:05 +00005723 for (const auto *D : Ctx->decls()) {
Douglas Gregorbaf69612009-11-18 04:19:12 +00005724 // Record any protocols we find.
Aaron Ballman629afae2014-03-07 19:56:05 +00005725 if (const auto *Proto = dyn_cast<ObjCProtocolDecl>(D))
Douglas Gregore6e48b12012-01-01 19:29:29 +00005726 if (!OnlyForwardDeclarations || !Proto->hasDefinition())
Douglas Gregor0a0e2b32013-01-31 04:52:16 +00005727 Results.AddResult(Result(Proto, Results.getBasePriority(Proto), 0),
5728 CurContext, 0, false);
Douglas Gregorbaf69612009-11-18 04:19:12 +00005729 }
5730}
5731
5732void Sema::CodeCompleteObjCProtocolReferences(IdentifierLocPair *Protocols,
5733 unsigned NumProtocols) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005734 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005735 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005736 CodeCompletionContext::CCC_ObjCProtocolName);
Douglas Gregorbaf69612009-11-18 04:19:12 +00005737
Douglas Gregora3b23b02010-12-09 21:44:02 +00005738 if (CodeCompleter && CodeCompleter->includeGlobals()) {
5739 Results.EnterNewScope();
5740
5741 // Tell the result set to ignore all of the protocols we have
5742 // already seen.
5743 // FIXME: This doesn't work when caching code-completion results.
5744 for (unsigned I = 0; I != NumProtocols; ++I)
5745 if (ObjCProtocolDecl *Protocol = LookupProtocol(Protocols[I].first,
5746 Protocols[I].second))
5747 Results.Ignore(Protocol);
Douglas Gregorbaf69612009-11-18 04:19:12 +00005748
Douglas Gregora3b23b02010-12-09 21:44:02 +00005749 // Add all protocols.
5750 AddProtocolResults(Context.getTranslationUnitDecl(), CurContext, false,
5751 Results);
Douglas Gregor5b4671c2009-11-18 04:49:41 +00005752
Douglas Gregora3b23b02010-12-09 21:44:02 +00005753 Results.ExitScope();
5754 }
5755
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005756 HandleCodeCompleteResults(this, CodeCompleter,
5757 CodeCompletionContext::CCC_ObjCProtocolName,
5758 Results.data(),Results.size());
Douglas Gregor5b4671c2009-11-18 04:49:41 +00005759}
5760
5761void Sema::CodeCompleteObjCProtocolDecl(Scope *) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005762 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005763 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005764 CodeCompletionContext::CCC_ObjCProtocolName);
Douglas Gregor5b4671c2009-11-18 04:49:41 +00005765
Douglas Gregora3b23b02010-12-09 21:44:02 +00005766 if (CodeCompleter && CodeCompleter->includeGlobals()) {
5767 Results.EnterNewScope();
5768
5769 // Add all protocols.
5770 AddProtocolResults(Context.getTranslationUnitDecl(), CurContext, true,
5771 Results);
Douglas Gregorbaf69612009-11-18 04:19:12 +00005772
Douglas Gregora3b23b02010-12-09 21:44:02 +00005773 Results.ExitScope();
5774 }
5775
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005776 HandleCodeCompleteResults(this, CodeCompleter,
5777 CodeCompletionContext::CCC_ObjCProtocolName,
5778 Results.data(),Results.size());
Douglas Gregorbaf69612009-11-18 04:19:12 +00005779}
Douglas Gregor49c22a72009-11-18 16:26:39 +00005780
5781/// \brief Add all of the Objective-C interface declarations that we find in
5782/// the given (translation unit) context.
5783static void AddInterfaceResults(DeclContext *Ctx, DeclContext *CurContext,
5784 bool OnlyForwardDeclarations,
5785 bool OnlyUnimplemented,
5786 ResultBuilder &Results) {
John McCall276321a2010-08-25 06:19:51 +00005787 typedef CodeCompletionResult Result;
Douglas Gregor49c22a72009-11-18 16:26:39 +00005788
Aaron Ballman629afae2014-03-07 19:56:05 +00005789 for (const auto *D : Ctx->decls()) {
Douglas Gregor1c283312010-08-11 12:19:30 +00005790 // Record any interfaces we find.
Aaron Ballman629afae2014-03-07 19:56:05 +00005791 if (const auto *Class = dyn_cast<ObjCInterfaceDecl>(D))
Douglas Gregordc9166c2011-12-15 20:29:51 +00005792 if ((!OnlyForwardDeclarations || !Class->hasDefinition()) &&
Douglas Gregor1c283312010-08-11 12:19:30 +00005793 (!OnlyUnimplemented || !Class->getImplementation()))
Douglas Gregor0a0e2b32013-01-31 04:52:16 +00005794 Results.AddResult(Result(Class, Results.getBasePriority(Class), 0),
5795 CurContext, 0, false);
Douglas Gregor49c22a72009-11-18 16:26:39 +00005796 }
5797}
5798
5799void Sema::CodeCompleteObjCInterfaceDecl(Scope *S) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005800 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005801 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005802 CodeCompletionContext::CCC_Other);
Douglas Gregor49c22a72009-11-18 16:26:39 +00005803 Results.EnterNewScope();
5804
Douglas Gregor2c595ad2011-07-30 06:55:39 +00005805 if (CodeCompleter->includeGlobals()) {
5806 // Add all classes.
5807 AddInterfaceResults(Context.getTranslationUnitDecl(), CurContext, false,
5808 false, Results);
5809 }
5810
Douglas Gregor49c22a72009-11-18 16:26:39 +00005811 Results.ExitScope();
Douglas Gregor2c595ad2011-07-30 06:55:39 +00005812
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005813 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor2c595ad2011-07-30 06:55:39 +00005814 CodeCompletionContext::CCC_ObjCInterfaceName,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005815 Results.data(),Results.size());
Douglas Gregor49c22a72009-11-18 16:26:39 +00005816}
5817
Douglas Gregorb2ccf012010-04-15 22:33:43 +00005818void Sema::CodeCompleteObjCSuperclass(Scope *S, IdentifierInfo *ClassName,
5819 SourceLocation ClassNameLoc) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005820 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005821 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor2c595ad2011-07-30 06:55:39 +00005822 CodeCompletionContext::CCC_ObjCInterfaceName);
Douglas Gregor49c22a72009-11-18 16:26:39 +00005823 Results.EnterNewScope();
5824
5825 // Make sure that we ignore the class we're currently defining.
5826 NamedDecl *CurClass
Douglas Gregorb2ccf012010-04-15 22:33:43 +00005827 = LookupSingleName(TUScope, ClassName, ClassNameLoc, LookupOrdinaryName);
Douglas Gregor5d34fd32009-11-18 19:08:43 +00005828 if (CurClass && isa<ObjCInterfaceDecl>(CurClass))
Douglas Gregor49c22a72009-11-18 16:26:39 +00005829 Results.Ignore(CurClass);
5830
Douglas Gregor2c595ad2011-07-30 06:55:39 +00005831 if (CodeCompleter->includeGlobals()) {
5832 // Add all classes.
5833 AddInterfaceResults(Context.getTranslationUnitDecl(), CurContext, false,
5834 false, Results);
5835 }
5836
Douglas Gregor49c22a72009-11-18 16:26:39 +00005837 Results.ExitScope();
Douglas Gregor2c595ad2011-07-30 06:55:39 +00005838
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005839 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor2c595ad2011-07-30 06:55:39 +00005840 CodeCompletionContext::CCC_ObjCInterfaceName,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005841 Results.data(),Results.size());
Douglas Gregor49c22a72009-11-18 16:26:39 +00005842}
5843
5844void Sema::CodeCompleteObjCImplementationDecl(Scope *S) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005845 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005846 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005847 CodeCompletionContext::CCC_Other);
Douglas Gregor49c22a72009-11-18 16:26:39 +00005848 Results.EnterNewScope();
5849
Douglas Gregor2c595ad2011-07-30 06:55:39 +00005850 if (CodeCompleter->includeGlobals()) {
5851 // Add all unimplemented classes.
5852 AddInterfaceResults(Context.getTranslationUnitDecl(), CurContext, false,
5853 true, Results);
5854 }
5855
Douglas Gregor49c22a72009-11-18 16:26:39 +00005856 Results.ExitScope();
Douglas Gregor2c595ad2011-07-30 06:55:39 +00005857
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005858 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor2c595ad2011-07-30 06:55:39 +00005859 CodeCompletionContext::CCC_ObjCInterfaceName,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005860 Results.data(),Results.size());
Douglas Gregor49c22a72009-11-18 16:26:39 +00005861}
Douglas Gregor5d34fd32009-11-18 19:08:43 +00005862
5863void Sema::CodeCompleteObjCInterfaceCategory(Scope *S,
Douglas Gregorb2ccf012010-04-15 22:33:43 +00005864 IdentifierInfo *ClassName,
5865 SourceLocation ClassNameLoc) {
John McCall276321a2010-08-25 06:19:51 +00005866 typedef CodeCompletionResult Result;
Douglas Gregor5d34fd32009-11-18 19:08:43 +00005867
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005868 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005869 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor21325842011-07-07 16:03:39 +00005870 CodeCompletionContext::CCC_ObjCCategoryName);
Douglas Gregor5d34fd32009-11-18 19:08:43 +00005871
5872 // Ignore any categories we find that have already been implemented by this
5873 // interface.
5874 llvm::SmallPtrSet<IdentifierInfo *, 16> CategoryNames;
5875 NamedDecl *CurClass
Douglas Gregorb2ccf012010-04-15 22:33:43 +00005876 = LookupSingleName(TUScope, ClassName, ClassNameLoc, LookupOrdinaryName);
Douglas Gregor048fbfa2013-01-16 23:00:23 +00005877 if (ObjCInterfaceDecl *Class = dyn_cast_or_null<ObjCInterfaceDecl>(CurClass)){
5878 for (ObjCInterfaceDecl::visible_categories_iterator
5879 Cat = Class->visible_categories_begin(),
5880 CatEnd = Class->visible_categories_end();
5881 Cat != CatEnd; ++Cat) {
5882 CategoryNames.insert(Cat->getIdentifier());
5883 }
5884 }
5885
Douglas Gregor5d34fd32009-11-18 19:08:43 +00005886 // Add all of the categories we know about.
5887 Results.EnterNewScope();
5888 TranslationUnitDecl *TU = Context.getTranslationUnitDecl();
Aaron Ballman629afae2014-03-07 19:56:05 +00005889 for (const auto *D : TU->decls())
5890 if (const auto *Category = dyn_cast<ObjCCategoryDecl>(D))
Douglas Gregor5d34fd32009-11-18 19:08:43 +00005891 if (CategoryNames.insert(Category->getIdentifier()))
Douglas Gregor0a0e2b32013-01-31 04:52:16 +00005892 Results.AddResult(Result(Category, Results.getBasePriority(Category),0),
5893 CurContext, 0, false);
Douglas Gregor5d34fd32009-11-18 19:08:43 +00005894 Results.ExitScope();
5895
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005896 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor21325842011-07-07 16:03:39 +00005897 CodeCompletionContext::CCC_ObjCCategoryName,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005898 Results.data(),Results.size());
Douglas Gregor5d34fd32009-11-18 19:08:43 +00005899}
5900
5901void Sema::CodeCompleteObjCImplementationCategory(Scope *S,
Douglas Gregorb2ccf012010-04-15 22:33:43 +00005902 IdentifierInfo *ClassName,
5903 SourceLocation ClassNameLoc) {
John McCall276321a2010-08-25 06:19:51 +00005904 typedef CodeCompletionResult Result;
Douglas Gregor5d34fd32009-11-18 19:08:43 +00005905
5906 // Find the corresponding interface. If we couldn't find the interface, the
5907 // program itself is ill-formed. However, we'll try to be helpful still by
5908 // providing the list of all of the categories we know about.
5909 NamedDecl *CurClass
Douglas Gregorb2ccf012010-04-15 22:33:43 +00005910 = LookupSingleName(TUScope, ClassName, ClassNameLoc, LookupOrdinaryName);
Douglas Gregor5d34fd32009-11-18 19:08:43 +00005911 ObjCInterfaceDecl *Class = dyn_cast_or_null<ObjCInterfaceDecl>(CurClass);
5912 if (!Class)
Douglas Gregorb2ccf012010-04-15 22:33:43 +00005913 return CodeCompleteObjCInterfaceCategory(S, ClassName, ClassNameLoc);
Douglas Gregor5d34fd32009-11-18 19:08:43 +00005914
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005915 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005916 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor21325842011-07-07 16:03:39 +00005917 CodeCompletionContext::CCC_ObjCCategoryName);
Douglas Gregor5d34fd32009-11-18 19:08:43 +00005918
5919 // Add all of the categories that have have corresponding interface
5920 // declarations in this class and any of its superclasses, except for
5921 // already-implemented categories in the class itself.
5922 llvm::SmallPtrSet<IdentifierInfo *, 16> CategoryNames;
5923 Results.EnterNewScope();
5924 bool IgnoreImplemented = true;
5925 while (Class) {
Douglas Gregor048fbfa2013-01-16 23:00:23 +00005926 for (ObjCInterfaceDecl::visible_categories_iterator
5927 Cat = Class->visible_categories_begin(),
5928 CatEnd = Class->visible_categories_end();
5929 Cat != CatEnd; ++Cat) {
5930 if ((!IgnoreImplemented || !Cat->getImplementation()) &&
5931 CategoryNames.insert(Cat->getIdentifier()))
Douglas Gregor0a0e2b32013-01-31 04:52:16 +00005932 Results.AddResult(Result(*Cat, Results.getBasePriority(*Cat), 0),
5933 CurContext, 0, false);
Douglas Gregor048fbfa2013-01-16 23:00:23 +00005934 }
Douglas Gregor5d34fd32009-11-18 19:08:43 +00005935
5936 Class = Class->getSuperClass();
5937 IgnoreImplemented = false;
5938 }
5939 Results.ExitScope();
5940
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005941 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor21325842011-07-07 16:03:39 +00005942 CodeCompletionContext::CCC_ObjCCategoryName,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005943 Results.data(),Results.size());
Douglas Gregor5d34fd32009-11-18 19:08:43 +00005944}
Douglas Gregor5d649882009-11-18 22:32:06 +00005945
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00005946void Sema::CodeCompleteObjCPropertyDefinition(Scope *S) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005947 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005948 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005949 CodeCompletionContext::CCC_Other);
Douglas Gregor5d649882009-11-18 22:32:06 +00005950
5951 // Figure out where this @synthesize lives.
5952 ObjCContainerDecl *Container
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00005953 = dyn_cast_or_null<ObjCContainerDecl>(CurContext);
Douglas Gregor5d649882009-11-18 22:32:06 +00005954 if (!Container ||
5955 (!isa<ObjCImplementationDecl>(Container) &&
5956 !isa<ObjCCategoryImplDecl>(Container)))
5957 return;
5958
5959 // Ignore any properties that have already been implemented.
Douglas Gregor9b4f3702012-06-12 13:44:08 +00005960 Container = getContainerDef(Container);
Aaron Ballman629afae2014-03-07 19:56:05 +00005961 for (const auto *D : Container->decls())
5962 if (const auto *PropertyImpl = dyn_cast<ObjCPropertyImplDecl>(D))
Douglas Gregor5d649882009-11-18 22:32:06 +00005963 Results.Ignore(PropertyImpl->getPropertyDecl());
5964
5965 // Add any properties that we find.
Douglas Gregorb888acf2010-12-09 23:01:55 +00005966 AddedPropertiesSet AddedProperties;
Douglas Gregor5d649882009-11-18 22:32:06 +00005967 Results.EnterNewScope();
5968 if (ObjCImplementationDecl *ClassImpl
5969 = dyn_cast<ObjCImplementationDecl>(Container))
Douglas Gregor95147142011-05-05 15:50:42 +00005970 AddObjCProperties(ClassImpl->getClassInterface(), false,
5971 /*AllowNullaryMethods=*/false, CurContext,
Douglas Gregorb888acf2010-12-09 23:01:55 +00005972 AddedProperties, Results);
Douglas Gregor5d649882009-11-18 22:32:06 +00005973 else
5974 AddObjCProperties(cast<ObjCCategoryImplDecl>(Container)->getCategoryDecl(),
Douglas Gregor95147142011-05-05 15:50:42 +00005975 false, /*AllowNullaryMethods=*/false, CurContext,
5976 AddedProperties, Results);
Douglas Gregor5d649882009-11-18 22:32:06 +00005977 Results.ExitScope();
5978
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005979 HandleCodeCompleteResults(this, CodeCompleter,
5980 CodeCompletionContext::CCC_Other,
5981 Results.data(),Results.size());
Douglas Gregor5d649882009-11-18 22:32:06 +00005982}
5983
5984void Sema::CodeCompleteObjCPropertySynthesizeIvar(Scope *S,
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00005985 IdentifierInfo *PropertyName) {
John McCall276321a2010-08-25 06:19:51 +00005986 typedef CodeCompletionResult Result;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005987 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005988 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005989 CodeCompletionContext::CCC_Other);
Douglas Gregor5d649882009-11-18 22:32:06 +00005990
5991 // Figure out where this @synthesize lives.
5992 ObjCContainerDecl *Container
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00005993 = dyn_cast_or_null<ObjCContainerDecl>(CurContext);
Douglas Gregor5d649882009-11-18 22:32:06 +00005994 if (!Container ||
5995 (!isa<ObjCImplementationDecl>(Container) &&
5996 !isa<ObjCCategoryImplDecl>(Container)))
5997 return;
5998
5999 // Figure out which interface we're looking into.
6000 ObjCInterfaceDecl *Class = 0;
6001 if (ObjCImplementationDecl *ClassImpl
6002 = dyn_cast<ObjCImplementationDecl>(Container))
6003 Class = ClassImpl->getClassInterface();
6004 else
6005 Class = cast<ObjCCategoryImplDecl>(Container)->getCategoryDecl()
6006 ->getClassInterface();
6007
Douglas Gregor6c7a9ee2011-04-18 14:40:46 +00006008 // Determine the type of the property we're synthesizing.
6009 QualType PropertyType = Context.getObjCIdType();
6010 if (Class) {
6011 if (ObjCPropertyDecl *Property
6012 = Class->FindPropertyDeclaration(PropertyName)) {
6013 PropertyType
6014 = Property->getType().getNonReferenceType().getUnqualifiedType();
6015
6016 // Give preference to ivars
6017 Results.setPreferredType(PropertyType);
6018 }
6019 }
6020
Douglas Gregor5d649882009-11-18 22:32:06 +00006021 // Add all of the instance variables in this class and its superclasses.
6022 Results.EnterNewScope();
Douglas Gregor331faa02011-04-18 14:13:53 +00006023 bool SawSimilarlyNamedIvar = false;
6024 std::string NameWithPrefix;
6025 NameWithPrefix += '_';
Benjamin Kramer632500c2011-07-26 16:59:25 +00006026 NameWithPrefix += PropertyName->getName();
Douglas Gregor331faa02011-04-18 14:13:53 +00006027 std::string NameWithSuffix = PropertyName->getName().str();
6028 NameWithSuffix += '_';
Douglas Gregor5d649882009-11-18 22:32:06 +00006029 for(; Class; Class = Class->getSuperClass()) {
Douglas Gregor331faa02011-04-18 14:13:53 +00006030 for (ObjCIvarDecl *Ivar = Class->all_declared_ivar_begin(); Ivar;
6031 Ivar = Ivar->getNextIvar()) {
Douglas Gregor0a0e2b32013-01-31 04:52:16 +00006032 Results.AddResult(Result(Ivar, Results.getBasePriority(Ivar), 0),
6033 CurContext, 0, false);
Douglas Gregor6c7a9ee2011-04-18 14:40:46 +00006034
Douglas Gregor331faa02011-04-18 14:13:53 +00006035 // Determine whether we've seen an ivar with a name similar to the
6036 // property.
Douglas Gregor6c7a9ee2011-04-18 14:40:46 +00006037 if ((PropertyName == Ivar->getIdentifier() ||
Douglas Gregor331faa02011-04-18 14:13:53 +00006038 NameWithPrefix == Ivar->getName() ||
Douglas Gregor6c7a9ee2011-04-18 14:40:46 +00006039 NameWithSuffix == Ivar->getName())) {
Douglas Gregor331faa02011-04-18 14:13:53 +00006040 SawSimilarlyNamedIvar = true;
Douglas Gregor6c7a9ee2011-04-18 14:40:46 +00006041
6042 // Reduce the priority of this result by one, to give it a slight
6043 // advantage over other results whose names don't match so closely.
6044 if (Results.size() &&
6045 Results.data()[Results.size() - 1].Kind
6046 == CodeCompletionResult::RK_Declaration &&
6047 Results.data()[Results.size() - 1].Declaration == Ivar)
6048 Results.data()[Results.size() - 1].Priority--;
6049 }
Douglas Gregor331faa02011-04-18 14:13:53 +00006050 }
Douglas Gregor5d649882009-11-18 22:32:06 +00006051 }
Douglas Gregor331faa02011-04-18 14:13:53 +00006052
6053 if (!SawSimilarlyNamedIvar) {
6054 // Create ivar result _propName, that the user can use to synthesize
Douglas Gregor6c7a9ee2011-04-18 14:40:46 +00006055 // an ivar of the appropriate type.
6056 unsigned Priority = CCP_MemberDeclaration + 1;
Douglas Gregor331faa02011-04-18 14:13:53 +00006057 typedef CodeCompletionResult Result;
6058 CodeCompletionAllocator &Allocator = Results.getAllocator();
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00006059 CodeCompletionBuilder Builder(Allocator, Results.getCodeCompletionTUInfo(),
6060 Priority,CXAvailability_Available);
Douglas Gregor331faa02011-04-18 14:13:53 +00006061
Douglas Gregor75acd922011-09-27 23:30:47 +00006062 PrintingPolicy Policy = getCompletionPrintingPolicy(*this);
Douglas Gregor6c7a9ee2011-04-18 14:40:46 +00006063 Builder.AddResultTypeChunk(GetCompletionTypeString(PropertyType, Context,
Douglas Gregor75acd922011-09-27 23:30:47 +00006064 Policy, Allocator));
Douglas Gregor331faa02011-04-18 14:13:53 +00006065 Builder.AddTypedTextChunk(Allocator.CopyString(NameWithPrefix));
6066 Results.AddResult(Result(Builder.TakeString(), Priority,
6067 CXCursor_ObjCIvarDecl));
6068 }
6069
Douglas Gregor5d649882009-11-18 22:32:06 +00006070 Results.ExitScope();
6071
Douglas Gregor00c37ef2010-08-11 21:23:17 +00006072 HandleCodeCompleteResults(this, CodeCompleter,
6073 CodeCompletionContext::CCC_Other,
6074 Results.data(),Results.size());
Douglas Gregor5d649882009-11-18 22:32:06 +00006075}
Douglas Gregor636a61e2010-04-07 00:21:17 +00006076
Douglas Gregor416b5752010-08-25 01:08:01 +00006077// Mapping from selectors to the methods that implement that selector, along
6078// with the "in original class" flag.
Benjamin Kramereb8c4462013-06-29 17:52:13 +00006079typedef llvm::DenseMap<
6080 Selector, llvm::PointerIntPair<ObjCMethodDecl *, 1, bool> > KnownMethodsMap;
Douglas Gregor636a61e2010-04-07 00:21:17 +00006081
6082/// \brief Find all of the methods that reside in the given container
6083/// (and its superclasses, protocols, etc.) that meet the given
6084/// criteria. Insert those methods into the map of known methods,
6085/// indexed by selector so they can be easily found.
6086static void FindImplementableMethods(ASTContext &Context,
6087 ObjCContainerDecl *Container,
6088 bool WantInstanceMethods,
6089 QualType ReturnType,
Douglas Gregor416b5752010-08-25 01:08:01 +00006090 KnownMethodsMap &KnownMethods,
6091 bool InOriginalClass = true) {
Douglas Gregor636a61e2010-04-07 00:21:17 +00006092 if (ObjCInterfaceDecl *IFace = dyn_cast<ObjCInterfaceDecl>(Container)) {
Douglas Gregor9b4f3702012-06-12 13:44:08 +00006093 // Make sure we have a definition; that's what we'll walk.
Douglas Gregorc0ac7d62011-12-15 05:27:12 +00006094 if (!IFace->hasDefinition())
6095 return;
Douglas Gregor9b4f3702012-06-12 13:44:08 +00006096
6097 IFace = IFace->getDefinition();
6098 Container = IFace;
Douglas Gregorc0ac7d62011-12-15 05:27:12 +00006099
Douglas Gregor636a61e2010-04-07 00:21:17 +00006100 const ObjCList<ObjCProtocolDecl> &Protocols
6101 = IFace->getReferencedProtocols();
6102 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006103 E = Protocols.end();
Douglas Gregor636a61e2010-04-07 00:21:17 +00006104 I != E; ++I)
6105 FindImplementableMethods(Context, *I, WantInstanceMethods, ReturnType,
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006106 KnownMethods, InOriginalClass);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006107
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006108 // Add methods from any class extensions and categories.
Douglas Gregor048fbfa2013-01-16 23:00:23 +00006109 for (ObjCInterfaceDecl::visible_categories_iterator
6110 Cat = IFace->visible_categories_begin(),
6111 CatEnd = IFace->visible_categories_end();
6112 Cat != CatEnd; ++Cat) {
6113 FindImplementableMethods(Context, *Cat, WantInstanceMethods, ReturnType,
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006114 KnownMethods, false);
Douglas Gregor048fbfa2013-01-16 23:00:23 +00006115 }
6116
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006117 // Visit the superclass.
6118 if (IFace->getSuperClass())
6119 FindImplementableMethods(Context, IFace->getSuperClass(),
6120 WantInstanceMethods, ReturnType,
6121 KnownMethods, false);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006122 }
6123
6124 if (ObjCCategoryDecl *Category = dyn_cast<ObjCCategoryDecl>(Container)) {
6125 // Recurse into protocols.
6126 const ObjCList<ObjCProtocolDecl> &Protocols
6127 = Category->getReferencedProtocols();
6128 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006129 E = Protocols.end();
Douglas Gregor636a61e2010-04-07 00:21:17 +00006130 I != E; ++I)
6131 FindImplementableMethods(Context, *I, WantInstanceMethods, ReturnType,
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006132 KnownMethods, InOriginalClass);
6133
6134 // If this category is the original class, jump to the interface.
6135 if (InOriginalClass && Category->getClassInterface())
6136 FindImplementableMethods(Context, Category->getClassInterface(),
6137 WantInstanceMethods, ReturnType, KnownMethods,
6138 false);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006139 }
6140
6141 if (ObjCProtocolDecl *Protocol = dyn_cast<ObjCProtocolDecl>(Container)) {
Douglas Gregor9b4f3702012-06-12 13:44:08 +00006142 // Make sure we have a definition; that's what we'll walk.
6143 if (!Protocol->hasDefinition())
6144 return;
6145 Protocol = Protocol->getDefinition();
6146 Container = Protocol;
6147
6148 // Recurse into protocols.
6149 const ObjCList<ObjCProtocolDecl> &Protocols
6150 = Protocol->getReferencedProtocols();
6151 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
6152 E = Protocols.end();
6153 I != E; ++I)
6154 FindImplementableMethods(Context, *I, WantInstanceMethods, ReturnType,
6155 KnownMethods, false);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006156 }
6157
6158 // Add methods in this container. This operation occurs last because
6159 // we want the methods from this container to override any methods
6160 // we've previously seen with the same selector.
6161 for (ObjCContainerDecl::method_iterator M = Container->meth_begin(),
6162 MEnd = Container->meth_end();
6163 M != MEnd; ++M) {
David Blaikie2d7c57e2012-04-30 02:36:29 +00006164 if (M->isInstanceMethod() == WantInstanceMethods) {
Douglas Gregor636a61e2010-04-07 00:21:17 +00006165 if (!ReturnType.isNull() &&
Alp Toker314cc812014-01-25 16:55:45 +00006166 !Context.hasSameUnqualifiedType(ReturnType, M->getReturnType()))
Douglas Gregor636a61e2010-04-07 00:21:17 +00006167 continue;
6168
Benjamin Kramereb8c4462013-06-29 17:52:13 +00006169 KnownMethods[M->getSelector()] =
6170 KnownMethodsMap::mapped_type(*M, InOriginalClass);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006171 }
6172 }
6173}
6174
Douglas Gregor669a25a2011-02-17 00:22:45 +00006175/// \brief Add the parenthesized return or parameter type chunk to a code
6176/// completion string.
6177static void AddObjCPassingTypeChunk(QualType Type,
Douglas Gregor29979142012-04-10 18:35:07 +00006178 unsigned ObjCDeclQuals,
Douglas Gregor669a25a2011-02-17 00:22:45 +00006179 ASTContext &Context,
Douglas Gregor75acd922011-09-27 23:30:47 +00006180 const PrintingPolicy &Policy,
Douglas Gregor669a25a2011-02-17 00:22:45 +00006181 CodeCompletionBuilder &Builder) {
6182 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
Douglas Gregor29979142012-04-10 18:35:07 +00006183 std::string Quals = formatObjCParamQualifiers(ObjCDeclQuals);
6184 if (!Quals.empty())
6185 Builder.AddTextChunk(Builder.getAllocator().CopyString(Quals));
Douglas Gregor75acd922011-09-27 23:30:47 +00006186 Builder.AddTextChunk(GetCompletionTypeString(Type, Context, Policy,
Douglas Gregor669a25a2011-02-17 00:22:45 +00006187 Builder.getAllocator()));
6188 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6189}
6190
6191/// \brief Determine whether the given class is or inherits from a class by
6192/// the given name.
6193static bool InheritsFromClassNamed(ObjCInterfaceDecl *Class,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006194 StringRef Name) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006195 if (!Class)
6196 return false;
6197
6198 if (Class->getIdentifier() && Class->getIdentifier()->getName() == Name)
6199 return true;
6200
6201 return InheritsFromClassNamed(Class->getSuperClass(), Name);
6202}
6203
6204/// \brief Add code completions for Objective-C Key-Value Coding (KVC) and
6205/// Key-Value Observing (KVO).
6206static void AddObjCKeyValueCompletions(ObjCPropertyDecl *Property,
6207 bool IsInstanceMethod,
6208 QualType ReturnType,
6209 ASTContext &Context,
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006210 VisitedSelectorSet &KnownSelectors,
Douglas Gregor669a25a2011-02-17 00:22:45 +00006211 ResultBuilder &Results) {
6212 IdentifierInfo *PropName = Property->getIdentifier();
6213 if (!PropName || PropName->getLength() == 0)
6214 return;
6215
Douglas Gregor75acd922011-09-27 23:30:47 +00006216 PrintingPolicy Policy = getCompletionPrintingPolicy(Results.getSema());
6217
Douglas Gregor669a25a2011-02-17 00:22:45 +00006218 // Builder that will create each code completion.
6219 typedef CodeCompletionResult Result;
6220 CodeCompletionAllocator &Allocator = Results.getAllocator();
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00006221 CodeCompletionBuilder Builder(Allocator, Results.getCodeCompletionTUInfo());
Douglas Gregor669a25a2011-02-17 00:22:45 +00006222
6223 // The selector table.
6224 SelectorTable &Selectors = Context.Selectors;
6225
6226 // The property name, copied into the code completion allocation region
6227 // on demand.
6228 struct KeyHolder {
6229 CodeCompletionAllocator &Allocator;
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006230 StringRef Key;
Douglas Gregor669a25a2011-02-17 00:22:45 +00006231 const char *CopiedKey;
6232
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006233 KeyHolder(CodeCompletionAllocator &Allocator, StringRef Key)
Douglas Gregor669a25a2011-02-17 00:22:45 +00006234 : Allocator(Allocator), Key(Key), CopiedKey(0) { }
6235
6236 operator const char *() {
6237 if (CopiedKey)
6238 return CopiedKey;
6239
6240 return CopiedKey = Allocator.CopyString(Key);
6241 }
6242 } Key(Allocator, PropName->getName());
6243
6244 // The uppercased name of the property name.
6245 std::string UpperKey = PropName->getName();
6246 if (!UpperKey.empty())
Jordan Rose4938f272013-02-09 10:09:43 +00006247 UpperKey[0] = toUppercase(UpperKey[0]);
Douglas Gregor669a25a2011-02-17 00:22:45 +00006248
6249 bool ReturnTypeMatchesProperty = ReturnType.isNull() ||
6250 Context.hasSameUnqualifiedType(ReturnType.getNonReferenceType(),
6251 Property->getType());
6252 bool ReturnTypeMatchesVoid
6253 = ReturnType.isNull() || ReturnType->isVoidType();
6254
6255 // Add the normal accessor -(type)key.
6256 if (IsInstanceMethod &&
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006257 KnownSelectors.insert(Selectors.getNullarySelector(PropName)) &&
Douglas Gregor669a25a2011-02-17 00:22:45 +00006258 ReturnTypeMatchesProperty && !Property->getGetterMethodDecl()) {
6259 if (ReturnType.isNull())
Douglas Gregor29979142012-04-10 18:35:07 +00006260 AddObjCPassingTypeChunk(Property->getType(), /*Quals=*/0,
6261 Context, Policy, Builder);
Douglas Gregor669a25a2011-02-17 00:22:45 +00006262
6263 Builder.AddTypedTextChunk(Key);
6264 Results.AddResult(Result(Builder.TakeString(), CCP_CodePattern,
6265 CXCursor_ObjCInstanceMethodDecl));
6266 }
6267
6268 // If we have an integral or boolean property (or the user has provided
6269 // an integral or boolean return type), add the accessor -(type)isKey.
6270 if (IsInstanceMethod &&
6271 ((!ReturnType.isNull() &&
6272 (ReturnType->isIntegerType() || ReturnType->isBooleanType())) ||
6273 (ReturnType.isNull() &&
6274 (Property->getType()->isIntegerType() ||
6275 Property->getType()->isBooleanType())))) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006276 std::string SelectorName = (Twine("is") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006277 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006278 if (KnownSelectors.insert(Selectors.getNullarySelector(SelectorId))) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006279 if (ReturnType.isNull()) {
6280 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6281 Builder.AddTextChunk("BOOL");
6282 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6283 }
6284
6285 Builder.AddTypedTextChunk(
6286 Allocator.CopyString(SelectorId->getName()));
6287 Results.AddResult(Result(Builder.TakeString(), CCP_CodePattern,
6288 CXCursor_ObjCInstanceMethodDecl));
6289 }
6290 }
6291
6292 // Add the normal mutator.
6293 if (IsInstanceMethod && ReturnTypeMatchesVoid &&
6294 !Property->getSetterMethodDecl()) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006295 std::string SelectorName = (Twine("set") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006296 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006297 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId))) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006298 if (ReturnType.isNull()) {
6299 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6300 Builder.AddTextChunk("void");
6301 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6302 }
6303
6304 Builder.AddTypedTextChunk(
6305 Allocator.CopyString(SelectorId->getName()));
6306 Builder.AddTypedTextChunk(":");
Douglas Gregor29979142012-04-10 18:35:07 +00006307 AddObjCPassingTypeChunk(Property->getType(), /*Quals=*/0,
6308 Context, Policy, Builder);
Douglas Gregor669a25a2011-02-17 00:22:45 +00006309 Builder.AddTextChunk(Key);
6310 Results.AddResult(Result(Builder.TakeString(), CCP_CodePattern,
6311 CXCursor_ObjCInstanceMethodDecl));
6312 }
6313 }
6314
6315 // Indexed and unordered accessors
6316 unsigned IndexedGetterPriority = CCP_CodePattern;
6317 unsigned IndexedSetterPriority = CCP_CodePattern;
6318 unsigned UnorderedGetterPriority = CCP_CodePattern;
6319 unsigned UnorderedSetterPriority = CCP_CodePattern;
6320 if (const ObjCObjectPointerType *ObjCPointer
6321 = Property->getType()->getAs<ObjCObjectPointerType>()) {
6322 if (ObjCInterfaceDecl *IFace = ObjCPointer->getInterfaceDecl()) {
6323 // If this interface type is not provably derived from a known
6324 // collection, penalize the corresponding completions.
6325 if (!InheritsFromClassNamed(IFace, "NSMutableArray")) {
6326 IndexedSetterPriority += CCD_ProbablyNotObjCCollection;
6327 if (!InheritsFromClassNamed(IFace, "NSArray"))
6328 IndexedGetterPriority += CCD_ProbablyNotObjCCollection;
6329 }
6330
6331 if (!InheritsFromClassNamed(IFace, "NSMutableSet")) {
6332 UnorderedSetterPriority += CCD_ProbablyNotObjCCollection;
6333 if (!InheritsFromClassNamed(IFace, "NSSet"))
6334 UnorderedGetterPriority += CCD_ProbablyNotObjCCollection;
6335 }
6336 }
6337 } else {
6338 IndexedGetterPriority += CCD_ProbablyNotObjCCollection;
6339 IndexedSetterPriority += CCD_ProbablyNotObjCCollection;
6340 UnorderedGetterPriority += CCD_ProbablyNotObjCCollection;
6341 UnorderedSetterPriority += CCD_ProbablyNotObjCCollection;
6342 }
6343
6344 // Add -(NSUInteger)countOf<key>
6345 if (IsInstanceMethod &&
6346 (ReturnType.isNull() || ReturnType->isIntegerType())) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006347 std::string SelectorName = (Twine("countOf") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006348 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006349 if (KnownSelectors.insert(Selectors.getNullarySelector(SelectorId))) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006350 if (ReturnType.isNull()) {
6351 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6352 Builder.AddTextChunk("NSUInteger");
6353 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6354 }
6355
6356 Builder.AddTypedTextChunk(
6357 Allocator.CopyString(SelectorId->getName()));
6358 Results.AddResult(Result(Builder.TakeString(),
6359 std::min(IndexedGetterPriority,
6360 UnorderedGetterPriority),
6361 CXCursor_ObjCInstanceMethodDecl));
6362 }
6363 }
6364
6365 // Indexed getters
6366 // Add -(id)objectInKeyAtIndex:(NSUInteger)index
6367 if (IsInstanceMethod &&
6368 (ReturnType.isNull() || ReturnType->isObjCObjectPointerType())) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006369 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006370 = (Twine("objectIn") + UpperKey + "AtIndex").str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006371 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006372 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId))) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006373 if (ReturnType.isNull()) {
6374 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6375 Builder.AddTextChunk("id");
6376 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6377 }
6378
6379 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6380 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6381 Builder.AddTextChunk("NSUInteger");
6382 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6383 Builder.AddTextChunk("index");
6384 Results.AddResult(Result(Builder.TakeString(), IndexedGetterPriority,
6385 CXCursor_ObjCInstanceMethodDecl));
6386 }
6387 }
6388
6389 // Add -(NSArray *)keyAtIndexes:(NSIndexSet *)indexes
6390 if (IsInstanceMethod &&
6391 (ReturnType.isNull() ||
6392 (ReturnType->isObjCObjectPointerType() &&
6393 ReturnType->getAs<ObjCObjectPointerType>()->getInterfaceDecl() &&
6394 ReturnType->getAs<ObjCObjectPointerType>()->getInterfaceDecl()
6395 ->getName() == "NSArray"))) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006396 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006397 = (Twine(Property->getName()) + "AtIndexes").str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006398 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006399 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId))) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006400 if (ReturnType.isNull()) {
6401 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6402 Builder.AddTextChunk("NSArray *");
6403 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6404 }
6405
6406 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6407 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6408 Builder.AddTextChunk("NSIndexSet *");
6409 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6410 Builder.AddTextChunk("indexes");
6411 Results.AddResult(Result(Builder.TakeString(), IndexedGetterPriority,
6412 CXCursor_ObjCInstanceMethodDecl));
6413 }
6414 }
6415
6416 // Add -(void)getKey:(type **)buffer range:(NSRange)inRange
6417 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006418 std::string SelectorName = (Twine("get") + UpperKey).str();
Douglas Gregor669a25a2011-02-17 00:22:45 +00006419 IdentifierInfo *SelectorIds[2] = {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006420 &Context.Idents.get(SelectorName),
Douglas Gregor669a25a2011-02-17 00:22:45 +00006421 &Context.Idents.get("range")
6422 };
6423
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006424 if (KnownSelectors.insert(Selectors.getSelector(2, SelectorIds))) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006425 if (ReturnType.isNull()) {
6426 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6427 Builder.AddTextChunk("void");
6428 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6429 }
6430
6431 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6432 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6433 Builder.AddPlaceholderChunk("object-type");
6434 Builder.AddTextChunk(" **");
6435 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6436 Builder.AddTextChunk("buffer");
6437 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
6438 Builder.AddTypedTextChunk("range:");
6439 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6440 Builder.AddTextChunk("NSRange");
6441 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6442 Builder.AddTextChunk("inRange");
6443 Results.AddResult(Result(Builder.TakeString(), IndexedGetterPriority,
6444 CXCursor_ObjCInstanceMethodDecl));
6445 }
6446 }
6447
6448 // Mutable indexed accessors
6449
6450 // - (void)insertObject:(type *)object inKeyAtIndex:(NSUInteger)index
6451 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006452 std::string SelectorName = (Twine("in") + UpperKey + "AtIndex").str();
Douglas Gregor669a25a2011-02-17 00:22:45 +00006453 IdentifierInfo *SelectorIds[2] = {
6454 &Context.Idents.get("insertObject"),
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006455 &Context.Idents.get(SelectorName)
Douglas Gregor669a25a2011-02-17 00:22:45 +00006456 };
6457
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006458 if (KnownSelectors.insert(Selectors.getSelector(2, SelectorIds))) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006459 if (ReturnType.isNull()) {
6460 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6461 Builder.AddTextChunk("void");
6462 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6463 }
6464
6465 Builder.AddTypedTextChunk("insertObject:");
6466 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6467 Builder.AddPlaceholderChunk("object-type");
6468 Builder.AddTextChunk(" *");
6469 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6470 Builder.AddTextChunk("object");
6471 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
6472 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6473 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6474 Builder.AddPlaceholderChunk("NSUInteger");
6475 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6476 Builder.AddTextChunk("index");
6477 Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority,
6478 CXCursor_ObjCInstanceMethodDecl));
6479 }
6480 }
6481
6482 // - (void)insertKey:(NSArray *)array atIndexes:(NSIndexSet *)indexes
6483 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006484 std::string SelectorName = (Twine("insert") + UpperKey).str();
Douglas Gregor669a25a2011-02-17 00:22:45 +00006485 IdentifierInfo *SelectorIds[2] = {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006486 &Context.Idents.get(SelectorName),
Douglas Gregor669a25a2011-02-17 00:22:45 +00006487 &Context.Idents.get("atIndexes")
6488 };
6489
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006490 if (KnownSelectors.insert(Selectors.getSelector(2, SelectorIds))) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006491 if (ReturnType.isNull()) {
6492 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6493 Builder.AddTextChunk("void");
6494 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6495 }
6496
6497 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6498 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6499 Builder.AddTextChunk("NSArray *");
6500 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6501 Builder.AddTextChunk("array");
6502 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
6503 Builder.AddTypedTextChunk("atIndexes:");
6504 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6505 Builder.AddPlaceholderChunk("NSIndexSet *");
6506 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6507 Builder.AddTextChunk("indexes");
6508 Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority,
6509 CXCursor_ObjCInstanceMethodDecl));
6510 }
6511 }
6512
6513 // -(void)removeObjectFromKeyAtIndex:(NSUInteger)index
6514 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006515 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006516 = (Twine("removeObjectFrom") + UpperKey + "AtIndex").str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006517 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006518 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId))) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006519 if (ReturnType.isNull()) {
6520 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6521 Builder.AddTextChunk("void");
6522 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6523 }
6524
6525 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6526 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6527 Builder.AddTextChunk("NSUInteger");
6528 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6529 Builder.AddTextChunk("index");
6530 Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority,
6531 CXCursor_ObjCInstanceMethodDecl));
6532 }
6533 }
6534
6535 // -(void)removeKeyAtIndexes:(NSIndexSet *)indexes
6536 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006537 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006538 = (Twine("remove") + UpperKey + "AtIndexes").str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006539 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006540 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId))) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006541 if (ReturnType.isNull()) {
6542 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6543 Builder.AddTextChunk("void");
6544 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6545 }
6546
6547 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6548 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6549 Builder.AddTextChunk("NSIndexSet *");
6550 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6551 Builder.AddTextChunk("indexes");
6552 Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority,
6553 CXCursor_ObjCInstanceMethodDecl));
6554 }
6555 }
6556
6557 // - (void)replaceObjectInKeyAtIndex:(NSUInteger)index withObject:(id)object
6558 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006559 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006560 = (Twine("replaceObjectIn") + UpperKey + "AtIndex").str();
Douglas Gregor669a25a2011-02-17 00:22:45 +00006561 IdentifierInfo *SelectorIds[2] = {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006562 &Context.Idents.get(SelectorName),
Douglas Gregor669a25a2011-02-17 00:22:45 +00006563 &Context.Idents.get("withObject")
6564 };
6565
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006566 if (KnownSelectors.insert(Selectors.getSelector(2, SelectorIds))) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006567 if (ReturnType.isNull()) {
6568 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6569 Builder.AddTextChunk("void");
6570 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6571 }
6572
6573 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6574 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6575 Builder.AddPlaceholderChunk("NSUInteger");
6576 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6577 Builder.AddTextChunk("index");
6578 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
6579 Builder.AddTypedTextChunk("withObject:");
6580 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6581 Builder.AddTextChunk("id");
6582 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6583 Builder.AddTextChunk("object");
6584 Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority,
6585 CXCursor_ObjCInstanceMethodDecl));
6586 }
6587 }
6588
6589 // - (void)replaceKeyAtIndexes:(NSIndexSet *)indexes withKey:(NSArray *)array
6590 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006591 std::string SelectorName1
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006592 = (Twine("replace") + UpperKey + "AtIndexes").str();
6593 std::string SelectorName2 = (Twine("with") + UpperKey).str();
Douglas Gregor669a25a2011-02-17 00:22:45 +00006594 IdentifierInfo *SelectorIds[2] = {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006595 &Context.Idents.get(SelectorName1),
6596 &Context.Idents.get(SelectorName2)
Douglas Gregor669a25a2011-02-17 00:22:45 +00006597 };
6598
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006599 if (KnownSelectors.insert(Selectors.getSelector(2, SelectorIds))) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006600 if (ReturnType.isNull()) {
6601 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6602 Builder.AddTextChunk("void");
6603 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6604 }
6605
6606 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName1 + ":"));
6607 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6608 Builder.AddPlaceholderChunk("NSIndexSet *");
6609 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6610 Builder.AddTextChunk("indexes");
6611 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
6612 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName2 + ":"));
6613 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6614 Builder.AddTextChunk("NSArray *");
6615 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6616 Builder.AddTextChunk("array");
6617 Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority,
6618 CXCursor_ObjCInstanceMethodDecl));
6619 }
6620 }
6621
6622 // Unordered getters
6623 // - (NSEnumerator *)enumeratorOfKey
6624 if (IsInstanceMethod &&
6625 (ReturnType.isNull() ||
6626 (ReturnType->isObjCObjectPointerType() &&
6627 ReturnType->getAs<ObjCObjectPointerType>()->getInterfaceDecl() &&
6628 ReturnType->getAs<ObjCObjectPointerType>()->getInterfaceDecl()
6629 ->getName() == "NSEnumerator"))) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006630 std::string SelectorName = (Twine("enumeratorOf") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006631 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006632 if (KnownSelectors.insert(Selectors.getNullarySelector(SelectorId))) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006633 if (ReturnType.isNull()) {
6634 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6635 Builder.AddTextChunk("NSEnumerator *");
6636 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6637 }
6638
6639 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName));
6640 Results.AddResult(Result(Builder.TakeString(), UnorderedGetterPriority,
6641 CXCursor_ObjCInstanceMethodDecl));
6642 }
6643 }
6644
6645 // - (type *)memberOfKey:(type *)object
6646 if (IsInstanceMethod &&
6647 (ReturnType.isNull() || ReturnType->isObjCObjectPointerType())) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006648 std::string SelectorName = (Twine("memberOf") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006649 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006650 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId))) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006651 if (ReturnType.isNull()) {
6652 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6653 Builder.AddPlaceholderChunk("object-type");
6654 Builder.AddTextChunk(" *");
6655 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6656 }
6657
6658 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6659 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6660 if (ReturnType.isNull()) {
6661 Builder.AddPlaceholderChunk("object-type");
6662 Builder.AddTextChunk(" *");
6663 } else {
6664 Builder.AddTextChunk(GetCompletionTypeString(ReturnType, Context,
Douglas Gregor75acd922011-09-27 23:30:47 +00006665 Policy,
Douglas Gregor669a25a2011-02-17 00:22:45 +00006666 Builder.getAllocator()));
6667 }
6668 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6669 Builder.AddTextChunk("object");
6670 Results.AddResult(Result(Builder.TakeString(), UnorderedGetterPriority,
6671 CXCursor_ObjCInstanceMethodDecl));
6672 }
6673 }
6674
6675 // Mutable unordered accessors
6676 // - (void)addKeyObject:(type *)object
6677 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006678 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006679 = (Twine("add") + UpperKey + Twine("Object")).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006680 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006681 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId))) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006682 if (ReturnType.isNull()) {
6683 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6684 Builder.AddTextChunk("void");
6685 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6686 }
6687
6688 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6689 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6690 Builder.AddPlaceholderChunk("object-type");
6691 Builder.AddTextChunk(" *");
6692 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6693 Builder.AddTextChunk("object");
6694 Results.AddResult(Result(Builder.TakeString(), UnorderedSetterPriority,
6695 CXCursor_ObjCInstanceMethodDecl));
6696 }
6697 }
6698
6699 // - (void)addKey:(NSSet *)objects
6700 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006701 std::string SelectorName = (Twine("add") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006702 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006703 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId))) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006704 if (ReturnType.isNull()) {
6705 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6706 Builder.AddTextChunk("void");
6707 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6708 }
6709
6710 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6711 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6712 Builder.AddTextChunk("NSSet *");
6713 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6714 Builder.AddTextChunk("objects");
6715 Results.AddResult(Result(Builder.TakeString(), UnorderedSetterPriority,
6716 CXCursor_ObjCInstanceMethodDecl));
6717 }
6718 }
6719
6720 // - (void)removeKeyObject:(type *)object
6721 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006722 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006723 = (Twine("remove") + UpperKey + Twine("Object")).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006724 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006725 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId))) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006726 if (ReturnType.isNull()) {
6727 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6728 Builder.AddTextChunk("void");
6729 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6730 }
6731
6732 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6733 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6734 Builder.AddPlaceholderChunk("object-type");
6735 Builder.AddTextChunk(" *");
6736 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6737 Builder.AddTextChunk("object");
6738 Results.AddResult(Result(Builder.TakeString(), UnorderedSetterPriority,
6739 CXCursor_ObjCInstanceMethodDecl));
6740 }
6741 }
6742
6743 // - (void)removeKey:(NSSet *)objects
6744 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006745 std::string SelectorName = (Twine("remove") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006746 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006747 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId))) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006748 if (ReturnType.isNull()) {
6749 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6750 Builder.AddTextChunk("void");
6751 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6752 }
6753
6754 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6755 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6756 Builder.AddTextChunk("NSSet *");
6757 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6758 Builder.AddTextChunk("objects");
6759 Results.AddResult(Result(Builder.TakeString(), UnorderedSetterPriority,
6760 CXCursor_ObjCInstanceMethodDecl));
6761 }
6762 }
6763
6764 // - (void)intersectKey:(NSSet *)objects
6765 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006766 std::string SelectorName = (Twine("intersect") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006767 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006768 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId))) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006769 if (ReturnType.isNull()) {
6770 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6771 Builder.AddTextChunk("void");
6772 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6773 }
6774
6775 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6776 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6777 Builder.AddTextChunk("NSSet *");
6778 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6779 Builder.AddTextChunk("objects");
6780 Results.AddResult(Result(Builder.TakeString(), UnorderedSetterPriority,
6781 CXCursor_ObjCInstanceMethodDecl));
6782 }
6783 }
6784
6785 // Key-Value Observing
6786 // + (NSSet *)keyPathsForValuesAffectingKey
6787 if (!IsInstanceMethod &&
6788 (ReturnType.isNull() ||
6789 (ReturnType->isObjCObjectPointerType() &&
6790 ReturnType->getAs<ObjCObjectPointerType>()->getInterfaceDecl() &&
6791 ReturnType->getAs<ObjCObjectPointerType>()->getInterfaceDecl()
6792 ->getName() == "NSSet"))) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006793 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006794 = (Twine("keyPathsForValuesAffecting") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006795 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006796 if (KnownSelectors.insert(Selectors.getNullarySelector(SelectorId))) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006797 if (ReturnType.isNull()) {
6798 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6799 Builder.AddTextChunk("NSSet *");
6800 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6801 }
6802
6803 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName));
6804 Results.AddResult(Result(Builder.TakeString(), CCP_CodePattern,
Douglas Gregor857bcda2011-06-02 04:02:27 +00006805 CXCursor_ObjCClassMethodDecl));
6806 }
6807 }
6808
6809 // + (BOOL)automaticallyNotifiesObserversForKey
6810 if (!IsInstanceMethod &&
6811 (ReturnType.isNull() ||
6812 ReturnType->isIntegerType() ||
6813 ReturnType->isBooleanType())) {
6814 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006815 = (Twine("automaticallyNotifiesObserversOf") + UpperKey).str();
Douglas Gregor857bcda2011-06-02 04:02:27 +00006816 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
6817 if (KnownSelectors.insert(Selectors.getNullarySelector(SelectorId))) {
6818 if (ReturnType.isNull()) {
6819 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6820 Builder.AddTextChunk("BOOL");
6821 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6822 }
6823
6824 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName));
6825 Results.AddResult(Result(Builder.TakeString(), CCP_CodePattern,
6826 CXCursor_ObjCClassMethodDecl));
Douglas Gregor669a25a2011-02-17 00:22:45 +00006827 }
6828 }
6829}
6830
Douglas Gregor636a61e2010-04-07 00:21:17 +00006831void Sema::CodeCompleteObjCMethodDecl(Scope *S,
6832 bool IsInstanceMethod,
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00006833 ParsedType ReturnTy) {
Douglas Gregor636a61e2010-04-07 00:21:17 +00006834 // Determine the return type of the method we're declaring, if
6835 // provided.
6836 QualType ReturnType = GetTypeFromParser(ReturnTy);
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00006837 Decl *IDecl = 0;
6838 if (CurContext->isObjCContainer()) {
6839 ObjCContainerDecl *OCD = dyn_cast<ObjCContainerDecl>(CurContext);
6840 IDecl = cast<Decl>(OCD);
6841 }
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006842 // Determine where we should start searching for methods.
6843 ObjCContainerDecl *SearchDecl = 0;
Douglas Gregor636a61e2010-04-07 00:21:17 +00006844 bool IsInImplementation = false;
John McCall48871652010-08-21 09:40:31 +00006845 if (Decl *D = IDecl) {
Douglas Gregor636a61e2010-04-07 00:21:17 +00006846 if (ObjCImplementationDecl *Impl = dyn_cast<ObjCImplementationDecl>(D)) {
6847 SearchDecl = Impl->getClassInterface();
Douglas Gregor636a61e2010-04-07 00:21:17 +00006848 IsInImplementation = true;
6849 } else if (ObjCCategoryImplDecl *CatImpl
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006850 = dyn_cast<ObjCCategoryImplDecl>(D)) {
Douglas Gregor636a61e2010-04-07 00:21:17 +00006851 SearchDecl = CatImpl->getCategoryDecl();
Douglas Gregor636a61e2010-04-07 00:21:17 +00006852 IsInImplementation = true;
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006853 } else
Douglas Gregor636a61e2010-04-07 00:21:17 +00006854 SearchDecl = dyn_cast<ObjCContainerDecl>(D);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006855 }
6856
6857 if (!SearchDecl && S) {
Ted Kremenekc37877d2013-10-08 17:08:03 +00006858 if (DeclContext *DC = S->getEntity())
Douglas Gregor636a61e2010-04-07 00:21:17 +00006859 SearchDecl = dyn_cast<ObjCContainerDecl>(DC);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006860 }
6861
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006862 if (!SearchDecl) {
Douglas Gregor00c37ef2010-08-11 21:23:17 +00006863 HandleCodeCompleteResults(this, CodeCompleter,
6864 CodeCompletionContext::CCC_Other,
6865 0, 0);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006866 return;
6867 }
6868
6869 // Find all of the methods that we could declare/implement here.
6870 KnownMethodsMap KnownMethods;
6871 FindImplementableMethods(Context, SearchDecl, IsInstanceMethod,
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006872 ReturnType, KnownMethods);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006873
Douglas Gregor636a61e2010-04-07 00:21:17 +00006874 // Add declarations or definitions for each of the known methods.
John McCall276321a2010-08-25 06:19:51 +00006875 typedef CodeCompletionResult Result;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006876 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00006877 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006878 CodeCompletionContext::CCC_Other);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006879 Results.EnterNewScope();
Douglas Gregor75acd922011-09-27 23:30:47 +00006880 PrintingPolicy Policy = getCompletionPrintingPolicy(*this);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006881 for (KnownMethodsMap::iterator M = KnownMethods.begin(),
6882 MEnd = KnownMethods.end();
6883 M != MEnd; ++M) {
Benjamin Kramereb8c4462013-06-29 17:52:13 +00006884 ObjCMethodDecl *Method = M->second.getPointer();
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00006885 CodeCompletionBuilder Builder(Results.getAllocator(),
6886 Results.getCodeCompletionTUInfo());
Douglas Gregor636a61e2010-04-07 00:21:17 +00006887
6888 // If the result type was not already provided, add it to the
6889 // pattern as (type).
Douglas Gregor669a25a2011-02-17 00:22:45 +00006890 if (ReturnType.isNull())
Alp Toker314cc812014-01-25 16:55:45 +00006891 AddObjCPassingTypeChunk(Method->getReturnType(),
6892 Method->getObjCDeclQualifier(), Context, Policy,
6893 Builder);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006894
6895 Selector Sel = Method->getSelector();
6896
6897 // Add the first part of the selector to the pattern.
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00006898 Builder.AddTypedTextChunk(Builder.getAllocator().CopyString(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00006899 Sel.getNameForSlot(0)));
Douglas Gregor636a61e2010-04-07 00:21:17 +00006900
6901 // Add parameters to the pattern.
6902 unsigned I = 0;
6903 for (ObjCMethodDecl::param_iterator P = Method->param_begin(),
6904 PEnd = Method->param_end();
6905 P != PEnd; (void)++P, ++I) {
6906 // Add the part of the selector name.
6907 if (I == 0)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006908 Builder.AddTypedTextChunk(":");
Douglas Gregor636a61e2010-04-07 00:21:17 +00006909 else if (I < Sel.getNumArgs()) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006910 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
6911 Builder.AddTypedTextChunk(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00006912 Builder.getAllocator().CopyString(Sel.getNameForSlot(I) + ":"));
Douglas Gregor636a61e2010-04-07 00:21:17 +00006913 } else
6914 break;
6915
6916 // Add the parameter type.
Douglas Gregor29979142012-04-10 18:35:07 +00006917 AddObjCPassingTypeChunk((*P)->getOriginalType(),
6918 (*P)->getObjCDeclQualifier(),
6919 Context, Policy,
Douglas Gregor75acd922011-09-27 23:30:47 +00006920 Builder);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006921
6922 if (IdentifierInfo *Id = (*P)->getIdentifier())
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00006923 Builder.AddTextChunk(Builder.getAllocator().CopyString( Id->getName()));
Douglas Gregor636a61e2010-04-07 00:21:17 +00006924 }
6925
6926 if (Method->isVariadic()) {
6927 if (Method->param_size() > 0)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006928 Builder.AddChunk(CodeCompletionString::CK_Comma);
6929 Builder.AddTextChunk("...");
Douglas Gregor400f5972010-08-31 05:13:43 +00006930 }
Douglas Gregor636a61e2010-04-07 00:21:17 +00006931
Douglas Gregord37c59d2010-05-28 00:57:46 +00006932 if (IsInImplementation && Results.includeCodePatterns()) {
Douglas Gregor636a61e2010-04-07 00:21:17 +00006933 // We will be defining the method here, so add a compound statement.
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006934 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
6935 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
6936 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
Alp Toker314cc812014-01-25 16:55:45 +00006937 if (!Method->getReturnType()->isVoidType()) {
Douglas Gregor636a61e2010-04-07 00:21:17 +00006938 // If the result type is not void, add a return clause.
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006939 Builder.AddTextChunk("return");
6940 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
6941 Builder.AddPlaceholderChunk("expression");
6942 Builder.AddChunk(CodeCompletionString::CK_SemiColon);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006943 } else
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006944 Builder.AddPlaceholderChunk("statements");
Douglas Gregor636a61e2010-04-07 00:21:17 +00006945
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006946 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
6947 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006948 }
6949
Douglas Gregor416b5752010-08-25 01:08:01 +00006950 unsigned Priority = CCP_CodePattern;
Benjamin Kramereb8c4462013-06-29 17:52:13 +00006951 if (!M->second.getInt())
Douglas Gregor416b5752010-08-25 01:08:01 +00006952 Priority += CCD_InBaseClass;
6953
Douglas Gregor78254c82012-03-27 23:34:16 +00006954 Results.AddResult(Result(Builder.TakeString(), Method, Priority));
Douglas Gregor636a61e2010-04-07 00:21:17 +00006955 }
6956
Douglas Gregor669a25a2011-02-17 00:22:45 +00006957 // Add Key-Value-Coding and Key-Value-Observing accessor methods for all of
6958 // the properties in this class and its categories.
David Blaikiebbafb8a2012-03-11 07:00:24 +00006959 if (Context.getLangOpts().ObjC2) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006960 SmallVector<ObjCContainerDecl *, 4> Containers;
Douglas Gregor669a25a2011-02-17 00:22:45 +00006961 Containers.push_back(SearchDecl);
6962
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006963 VisitedSelectorSet KnownSelectors;
6964 for (KnownMethodsMap::iterator M = KnownMethods.begin(),
6965 MEnd = KnownMethods.end();
6966 M != MEnd; ++M)
6967 KnownSelectors.insert(M->first);
6968
6969
Douglas Gregor669a25a2011-02-17 00:22:45 +00006970 ObjCInterfaceDecl *IFace = dyn_cast<ObjCInterfaceDecl>(SearchDecl);
6971 if (!IFace)
6972 if (ObjCCategoryDecl *Category = dyn_cast<ObjCCategoryDecl>(SearchDecl))
6973 IFace = Category->getClassInterface();
6974
6975 if (IFace) {
Douglas Gregor048fbfa2013-01-16 23:00:23 +00006976 for (ObjCInterfaceDecl::visible_categories_iterator
6977 Cat = IFace->visible_categories_begin(),
6978 CatEnd = IFace->visible_categories_end();
6979 Cat != CatEnd; ++Cat) {
6980 Containers.push_back(*Cat);
6981 }
Douglas Gregor669a25a2011-02-17 00:22:45 +00006982 }
6983
6984 for (unsigned I = 0, N = Containers.size(); I != N; ++I) {
6985 for (ObjCContainerDecl::prop_iterator P = Containers[I]->prop_begin(),
6986 PEnd = Containers[I]->prop_end();
6987 P != PEnd; ++P) {
David Blaikie40ed2972012-06-06 20:45:41 +00006988 AddObjCKeyValueCompletions(*P, IsInstanceMethod, ReturnType, Context,
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006989 KnownSelectors, Results);
Douglas Gregor669a25a2011-02-17 00:22:45 +00006990 }
6991 }
6992 }
6993
Douglas Gregor636a61e2010-04-07 00:21:17 +00006994 Results.ExitScope();
6995
Douglas Gregor00c37ef2010-08-11 21:23:17 +00006996 HandleCodeCompleteResults(this, CodeCompleter,
6997 CodeCompletionContext::CCC_Other,
6998 Results.data(),Results.size());
Douglas Gregor636a61e2010-04-07 00:21:17 +00006999}
Douglas Gregor95887f92010-07-08 23:20:03 +00007000
7001void Sema::CodeCompleteObjCMethodDeclSelector(Scope *S,
7002 bool IsInstanceMethod,
Douglas Gregor45879692010-07-08 23:37:41 +00007003 bool AtParameterName,
John McCallba7bf592010-08-24 05:47:05 +00007004 ParsedType ReturnTy,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00007005 ArrayRef<IdentifierInfo *> SelIdents) {
Douglas Gregor95887f92010-07-08 23:20:03 +00007006 // If we have an external source, load the entire class method
Sebastian Redld44cd6a2010-08-18 23:57:06 +00007007 // pool from the AST file.
Douglas Gregor95887f92010-07-08 23:20:03 +00007008 if (ExternalSource) {
7009 for (uint32_t I = 0, N = ExternalSource->GetNumExternalSelectors();
7010 I != N; ++I) {
7011 Selector Sel = ExternalSource->GetExternalSelector(I);
Sebastian Redl75d8a322010-08-02 23:18:59 +00007012 if (Sel.isNull() || MethodPool.count(Sel))
Douglas Gregor95887f92010-07-08 23:20:03 +00007013 continue;
Sebastian Redl75d8a322010-08-02 23:18:59 +00007014
7015 ReadMethodPool(Sel);
Douglas Gregor95887f92010-07-08 23:20:03 +00007016 }
7017 }
7018
7019 // Build the set of methods we can see.
John McCall276321a2010-08-25 06:19:51 +00007020 typedef CodeCompletionResult Result;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007021 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007022 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007023 CodeCompletionContext::CCC_Other);
Douglas Gregor95887f92010-07-08 23:20:03 +00007024
7025 if (ReturnTy)
7026 Results.setPreferredType(GetTypeFromParser(ReturnTy).getNonReferenceType());
Sebastian Redl75d8a322010-08-02 23:18:59 +00007027
Douglas Gregor95887f92010-07-08 23:20:03 +00007028 Results.EnterNewScope();
Sebastian Redl75d8a322010-08-02 23:18:59 +00007029 for (GlobalMethodPool::iterator M = MethodPool.begin(),
7030 MEnd = MethodPool.end();
7031 M != MEnd; ++M) {
7032 for (ObjCMethodList *MethList = IsInstanceMethod ? &M->second.first :
7033 &M->second.second;
7034 MethList && MethList->Method;
Argyrios Kyrtzidisd3da6e02013-04-17 00:08:58 +00007035 MethList = MethList->getNext()) {
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00007036 if (!isAcceptableObjCMethod(MethList->Method, MK_Any, SelIdents))
Douglas Gregor95887f92010-07-08 23:20:03 +00007037 continue;
7038
Douglas Gregor45879692010-07-08 23:37:41 +00007039 if (AtParameterName) {
7040 // Suggest parameter names we've seen before.
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00007041 unsigned NumSelIdents = SelIdents.size();
Douglas Gregor45879692010-07-08 23:37:41 +00007042 if (NumSelIdents && NumSelIdents <= MethList->Method->param_size()) {
7043 ParmVarDecl *Param = MethList->Method->param_begin()[NumSelIdents-1];
7044 if (Param->getIdentifier()) {
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007045 CodeCompletionBuilder Builder(Results.getAllocator(),
7046 Results.getCodeCompletionTUInfo());
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00007047 Builder.AddTypedTextChunk(Builder.getAllocator().CopyString(
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007048 Param->getIdentifier()->getName()));
7049 Results.AddResult(Builder.TakeString());
Douglas Gregor45879692010-07-08 23:37:41 +00007050 }
7051 }
7052
7053 continue;
7054 }
7055
Douglas Gregor0a0e2b32013-01-31 04:52:16 +00007056 Result R(MethList->Method, Results.getBasePriority(MethList->Method), 0);
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00007057 R.StartParameter = SelIdents.size();
Douglas Gregor95887f92010-07-08 23:20:03 +00007058 R.AllParametersAreInformative = false;
7059 R.DeclaringEntity = true;
7060 Results.MaybeAddResult(R, CurContext);
7061 }
7062 }
7063
7064 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00007065 HandleCodeCompleteResults(this, CodeCompleter,
7066 CodeCompletionContext::CCC_Other,
7067 Results.data(),Results.size());
Douglas Gregor95887f92010-07-08 23:20:03 +00007068}
Douglas Gregorb14904c2010-08-13 22:48:40 +00007069
Douglas Gregorec00a262010-08-24 22:20:20 +00007070void Sema::CodeCompletePreprocessorDirective(bool InConditional) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007071 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007072 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor0ac41382010-09-23 23:01:17 +00007073 CodeCompletionContext::CCC_PreprocessorDirective);
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007074 Results.EnterNewScope();
7075
7076 // #if <condition>
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007077 CodeCompletionBuilder Builder(Results.getAllocator(),
7078 Results.getCodeCompletionTUInfo());
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007079 Builder.AddTypedTextChunk("if");
7080 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7081 Builder.AddPlaceholderChunk("condition");
7082 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007083
7084 // #ifdef <macro>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007085 Builder.AddTypedTextChunk("ifdef");
7086 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7087 Builder.AddPlaceholderChunk("macro");
7088 Results.AddResult(Builder.TakeString());
7089
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007090 // #ifndef <macro>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007091 Builder.AddTypedTextChunk("ifndef");
7092 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7093 Builder.AddPlaceholderChunk("macro");
7094 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007095
7096 if (InConditional) {
7097 // #elif <condition>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007098 Builder.AddTypedTextChunk("elif");
7099 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7100 Builder.AddPlaceholderChunk("condition");
7101 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007102
7103 // #else
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007104 Builder.AddTypedTextChunk("else");
7105 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007106
7107 // #endif
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007108 Builder.AddTypedTextChunk("endif");
7109 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007110 }
7111
7112 // #include "header"
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007113 Builder.AddTypedTextChunk("include");
7114 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7115 Builder.AddTextChunk("\"");
7116 Builder.AddPlaceholderChunk("header");
7117 Builder.AddTextChunk("\"");
7118 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007119
7120 // #include <header>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007121 Builder.AddTypedTextChunk("include");
7122 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7123 Builder.AddTextChunk("<");
7124 Builder.AddPlaceholderChunk("header");
7125 Builder.AddTextChunk(">");
7126 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007127
7128 // #define <macro>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007129 Builder.AddTypedTextChunk("define");
7130 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7131 Builder.AddPlaceholderChunk("macro");
7132 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007133
7134 // #define <macro>(<args>)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007135 Builder.AddTypedTextChunk("define");
7136 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7137 Builder.AddPlaceholderChunk("macro");
7138 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
7139 Builder.AddPlaceholderChunk("args");
7140 Builder.AddChunk(CodeCompletionString::CK_RightParen);
7141 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007142
7143 // #undef <macro>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007144 Builder.AddTypedTextChunk("undef");
7145 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7146 Builder.AddPlaceholderChunk("macro");
7147 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007148
7149 // #line <number>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007150 Builder.AddTypedTextChunk("line");
7151 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7152 Builder.AddPlaceholderChunk("number");
7153 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007154
7155 // #line <number> "filename"
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007156 Builder.AddTypedTextChunk("line");
7157 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7158 Builder.AddPlaceholderChunk("number");
7159 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7160 Builder.AddTextChunk("\"");
7161 Builder.AddPlaceholderChunk("filename");
7162 Builder.AddTextChunk("\"");
7163 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007164
7165 // #error <message>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007166 Builder.AddTypedTextChunk("error");
7167 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7168 Builder.AddPlaceholderChunk("message");
7169 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007170
7171 // #pragma <arguments>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007172 Builder.AddTypedTextChunk("pragma");
7173 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7174 Builder.AddPlaceholderChunk("arguments");
7175 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007176
David Blaikiebbafb8a2012-03-11 07:00:24 +00007177 if (getLangOpts().ObjC1) {
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007178 // #import "header"
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007179 Builder.AddTypedTextChunk("import");
7180 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7181 Builder.AddTextChunk("\"");
7182 Builder.AddPlaceholderChunk("header");
7183 Builder.AddTextChunk("\"");
7184 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007185
7186 // #import <header>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007187 Builder.AddTypedTextChunk("import");
7188 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7189 Builder.AddTextChunk("<");
7190 Builder.AddPlaceholderChunk("header");
7191 Builder.AddTextChunk(">");
7192 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007193 }
7194
7195 // #include_next "header"
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007196 Builder.AddTypedTextChunk("include_next");
7197 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7198 Builder.AddTextChunk("\"");
7199 Builder.AddPlaceholderChunk("header");
7200 Builder.AddTextChunk("\"");
7201 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007202
7203 // #include_next <header>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007204 Builder.AddTypedTextChunk("include_next");
7205 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7206 Builder.AddTextChunk("<");
7207 Builder.AddPlaceholderChunk("header");
7208 Builder.AddTextChunk(">");
7209 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007210
7211 // #warning <message>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007212 Builder.AddTypedTextChunk("warning");
7213 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7214 Builder.AddPlaceholderChunk("message");
7215 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007216
7217 // Note: #ident and #sccs are such crazy anachronisms that we don't provide
7218 // completions for them. And __include_macros is a Clang-internal extension
7219 // that we don't want to encourage anyone to use.
7220
7221 // FIXME: we don't support #assert or #unassert, so don't suggest them.
7222 Results.ExitScope();
7223
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007224 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor0de55ce2010-08-25 18:41:16 +00007225 CodeCompletionContext::CCC_PreprocessorDirective,
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007226 Results.data(), Results.size());
7227}
7228
7229void Sema::CodeCompleteInPreprocessorConditionalExclusion(Scope *S) {
Douglas Gregorec00a262010-08-24 22:20:20 +00007230 CodeCompleteOrdinaryName(S,
John McCallfaf5fb42010-08-26 23:41:50 +00007231 S->getFnParent()? Sema::PCC_RecoveryInFunction
7232 : Sema::PCC_Namespace);
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007233}
7234
Douglas Gregorec00a262010-08-24 22:20:20 +00007235void Sema::CodeCompletePreprocessorMacroName(bool IsDefinition) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007236 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007237 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor0ac41382010-09-23 23:01:17 +00007238 IsDefinition? CodeCompletionContext::CCC_MacroName
7239 : CodeCompletionContext::CCC_MacroNameUse);
Douglas Gregor12785102010-08-24 20:21:13 +00007240 if (!IsDefinition && (!CodeCompleter || CodeCompleter->includeMacros())) {
7241 // Add just the names of macros, not their arguments.
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007242 CodeCompletionBuilder Builder(Results.getAllocator(),
7243 Results.getCodeCompletionTUInfo());
Douglas Gregor12785102010-08-24 20:21:13 +00007244 Results.EnterNewScope();
7245 for (Preprocessor::macro_iterator M = PP.macro_begin(),
7246 MEnd = PP.macro_end();
7247 M != MEnd; ++M) {
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00007248 Builder.AddTypedTextChunk(Builder.getAllocator().CopyString(
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007249 M->first->getName()));
Argyrios Kyrtzidis5c8b1cd2012-09-27 00:24:09 +00007250 Results.AddResult(CodeCompletionResult(Builder.TakeString(),
7251 CCP_CodePattern,
7252 CXCursor_MacroDefinition));
Douglas Gregor12785102010-08-24 20:21:13 +00007253 }
7254 Results.ExitScope();
7255 } else if (IsDefinition) {
7256 // FIXME: Can we detect when the user just wrote an include guard above?
7257 }
7258
Douglas Gregor0ac41382010-09-23 23:01:17 +00007259 HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(),
Douglas Gregor12785102010-08-24 20:21:13 +00007260 Results.data(), Results.size());
7261}
7262
Douglas Gregorec00a262010-08-24 22:20:20 +00007263void Sema::CodeCompletePreprocessorExpression() {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007264 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007265 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor0ac41382010-09-23 23:01:17 +00007266 CodeCompletionContext::CCC_PreprocessorExpression);
Douglas Gregorec00a262010-08-24 22:20:20 +00007267
7268 if (!CodeCompleter || CodeCompleter->includeMacros())
Douglas Gregor8cb17462012-10-09 16:01:50 +00007269 AddMacroResults(PP, Results, true);
Douglas Gregorec00a262010-08-24 22:20:20 +00007270
7271 // defined (<macro>)
7272 Results.EnterNewScope();
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007273 CodeCompletionBuilder Builder(Results.getAllocator(),
7274 Results.getCodeCompletionTUInfo());
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007275 Builder.AddTypedTextChunk("defined");
7276 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7277 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
7278 Builder.AddPlaceholderChunk("macro");
7279 Builder.AddChunk(CodeCompletionString::CK_RightParen);
7280 Results.AddResult(Builder.TakeString());
Douglas Gregorec00a262010-08-24 22:20:20 +00007281 Results.ExitScope();
7282
7283 HandleCodeCompleteResults(this, CodeCompleter,
7284 CodeCompletionContext::CCC_PreprocessorExpression,
7285 Results.data(), Results.size());
7286}
7287
7288void Sema::CodeCompletePreprocessorMacroArgument(Scope *S,
7289 IdentifierInfo *Macro,
7290 MacroInfo *MacroInfo,
7291 unsigned Argument) {
7292 // FIXME: In the future, we could provide "overload" results, much like we
7293 // do for function calls.
7294
Argyrios Kyrtzidis75f6cd22011-08-18 19:41:28 +00007295 // Now just ignore this. There will be another code-completion callback
7296 // for the expanded tokens.
Douglas Gregorec00a262010-08-24 22:20:20 +00007297}
7298
Douglas Gregor11583702010-08-25 17:04:25 +00007299void Sema::CodeCompleteNaturalLanguage() {
Douglas Gregor11583702010-08-25 17:04:25 +00007300 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregorea736372010-08-25 17:10:00 +00007301 CodeCompletionContext::CCC_NaturalLanguage,
Douglas Gregor11583702010-08-25 17:04:25 +00007302 0, 0);
7303}
7304
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00007305void Sema::GatherGlobalCodeCompletions(CodeCompletionAllocator &Allocator,
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007306 CodeCompletionTUInfo &CCTUInfo,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00007307 SmallVectorImpl<CodeCompletionResult> &Results) {
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007308 ResultBuilder Builder(*this, Allocator, CCTUInfo,
7309 CodeCompletionContext::CCC_Recovery);
Douglas Gregor39982192010-08-15 06:18:01 +00007310 if (!CodeCompleter || CodeCompleter->includeGlobals()) {
7311 CodeCompletionDeclConsumer Consumer(Builder,
7312 Context.getTranslationUnitDecl());
7313 LookupVisibleDecls(Context.getTranslationUnitDecl(), LookupAnyName,
7314 Consumer);
7315 }
Douglas Gregorb14904c2010-08-13 22:48:40 +00007316
7317 if (!CodeCompleter || CodeCompleter->includeMacros())
Douglas Gregor8cb17462012-10-09 16:01:50 +00007318 AddMacroResults(PP, Builder, true);
Douglas Gregorb14904c2010-08-13 22:48:40 +00007319
7320 Results.clear();
7321 Results.insert(Results.end(),
7322 Builder.data(), Builder.data() + Builder.size());
7323}