blob: 28f85d7a9f12abe4c10a3b69f60b13843b77901b [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) { }
1256
Erik Verbruggen2e657ff2011-10-06 07:27:49 +00001257 virtual void FoundDecl(NamedDecl *ND, NamedDecl *Hiding, DeclContext *Ctx,
1258 bool InBaseClass) {
1259 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 Ballman7dce1a82014-03-07 13:13:38 +00002641 for (Decl::attr_iterator i = ND->attr_begin(); i != ND->attr_end(); ++i) {
2642 if (AnnotateAttr *Attr = dyn_cast_or_null<AnnotateAttr>(*i)) {
2643 Result.AddAnnotation(Result.getAllocator().CopyString(Attr->getAnnotation()));
2644 }
2645 }
2646
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002647 AddResultTypeChunk(Ctx, Policy, ND, Result);
Douglas Gregorb3fa9192009-12-18 18:53:37 +00002648
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002649 if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(ND)) {
Douglas Gregor5bf52692009-09-22 23:15:58 +00002650 AddQualifierToCompletionString(Result, Qualifier, QualifierIsInformative,
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002651 Ctx, Policy);
2652 AddTypedNameChunk(Ctx, Policy, ND, Result);
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002653 Result.AddChunk(CodeCompletionString::CK_LeftParen);
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002654 AddFunctionParameterChunks(Ctx, Policy, Function, Result);
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002655 Result.AddChunk(CodeCompletionString::CK_RightParen);
Douglas Gregor0f622362009-12-11 18:44:16 +00002656 AddFunctionTypeQualsToCompletionString(Result, Function);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002657 return Result.TakeString();
Douglas Gregor3545ff42009-09-21 16:56:56 +00002658 }
2659
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002660 if (const FunctionTemplateDecl *FunTmpl = dyn_cast<FunctionTemplateDecl>(ND)) {
Douglas Gregor5bf52692009-09-22 23:15:58 +00002661 AddQualifierToCompletionString(Result, Qualifier, QualifierIsInformative,
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002662 Ctx, Policy);
Douglas Gregor3545ff42009-09-21 16:56:56 +00002663 FunctionDecl *Function = FunTmpl->getTemplatedDecl();
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002664 AddTypedNameChunk(Ctx, Policy, Function, Result);
Douglas Gregor0212fd72010-09-21 16:06:22 +00002665
Douglas Gregor3545ff42009-09-21 16:56:56 +00002666 // Figure out which template parameters are deduced (or have default
2667 // arguments).
Benjamin Kramere0513cb2012-01-30 16:17:39 +00002668 llvm::SmallBitVector Deduced;
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002669 Sema::MarkDeducedTemplateParameters(Ctx, FunTmpl, Deduced);
Douglas Gregor3545ff42009-09-21 16:56:56 +00002670 unsigned LastDeducibleArgument;
2671 for (LastDeducibleArgument = Deduced.size(); LastDeducibleArgument > 0;
2672 --LastDeducibleArgument) {
2673 if (!Deduced[LastDeducibleArgument - 1]) {
2674 // C++0x: Figure out if the template argument has a default. If so,
2675 // the user doesn't need to type this argument.
2676 // FIXME: We need to abstract template parameters better!
2677 bool HasDefaultArg = false;
2678 NamedDecl *Param = FunTmpl->getTemplateParameters()->getParam(
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002679 LastDeducibleArgument - 1);
Douglas Gregor3545ff42009-09-21 16:56:56 +00002680 if (TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(Param))
2681 HasDefaultArg = TTP->hasDefaultArgument();
2682 else if (NonTypeTemplateParmDecl *NTTP
2683 = dyn_cast<NonTypeTemplateParmDecl>(Param))
2684 HasDefaultArg = NTTP->hasDefaultArgument();
2685 else {
2686 assert(isa<TemplateTemplateParmDecl>(Param));
2687 HasDefaultArg
Douglas Gregor9eb77012009-11-07 00:00:49 +00002688 = cast<TemplateTemplateParmDecl>(Param)->hasDefaultArgument();
Douglas Gregor3545ff42009-09-21 16:56:56 +00002689 }
2690
2691 if (!HasDefaultArg)
2692 break;
2693 }
2694 }
2695
2696 if (LastDeducibleArgument) {
2697 // Some of the function template arguments cannot be deduced from a
2698 // function call, so we introduce an explicit template argument list
2699 // containing all of the arguments up to the first deducible argument.
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002700 Result.AddChunk(CodeCompletionString::CK_LeftAngle);
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002701 AddTemplateParameterChunks(Ctx, Policy, FunTmpl, Result,
Douglas Gregor3545ff42009-09-21 16:56:56 +00002702 LastDeducibleArgument);
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002703 Result.AddChunk(CodeCompletionString::CK_RightAngle);
Douglas Gregor3545ff42009-09-21 16:56:56 +00002704 }
2705
2706 // Add the function parameters
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002707 Result.AddChunk(CodeCompletionString::CK_LeftParen);
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002708 AddFunctionParameterChunks(Ctx, Policy, Function, Result);
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002709 Result.AddChunk(CodeCompletionString::CK_RightParen);
Douglas Gregor0f622362009-12-11 18:44:16 +00002710 AddFunctionTypeQualsToCompletionString(Result, Function);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002711 return Result.TakeString();
Douglas Gregor3545ff42009-09-21 16:56:56 +00002712 }
2713
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002714 if (const TemplateDecl *Template = dyn_cast<TemplateDecl>(ND)) {
Douglas Gregor5bf52692009-09-22 23:15:58 +00002715 AddQualifierToCompletionString(Result, Qualifier, QualifierIsInformative,
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002716 Ctx, Policy);
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002717 Result.AddTypedTextChunk(
2718 Result.getAllocator().CopyString(Template->getNameAsString()));
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002719 Result.AddChunk(CodeCompletionString::CK_LeftAngle);
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002720 AddTemplateParameterChunks(Ctx, Policy, Template, Result);
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002721 Result.AddChunk(CodeCompletionString::CK_RightAngle);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002722 return Result.TakeString();
Douglas Gregor3545ff42009-09-21 16:56:56 +00002723 }
2724
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002725 if (const ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(ND)) {
Douglas Gregord3c5d792009-11-17 16:44:22 +00002726 Selector Sel = Method->getSelector();
2727 if (Sel.isUnarySelector()) {
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002728 Result.AddTypedTextChunk(Result.getAllocator().CopyString(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00002729 Sel.getNameForSlot(0)));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002730 return Result.TakeString();
Douglas Gregord3c5d792009-11-17 16:44:22 +00002731 }
2732
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00002733 std::string SelName = Sel.getNameForSlot(0).str();
Douglas Gregor1b605f72009-11-19 01:08:35 +00002734 SelName += ':';
2735 if (StartParameter == 0)
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002736 Result.AddTypedTextChunk(Result.getAllocator().CopyString(SelName));
Douglas Gregor1b605f72009-11-19 01:08:35 +00002737 else {
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002738 Result.AddInformativeChunk(Result.getAllocator().CopyString(SelName));
Douglas Gregor1b605f72009-11-19 01:08:35 +00002739
2740 // If there is only one parameter, and we're past it, add an empty
2741 // typed-text chunk since there is nothing to type.
2742 if (Method->param_size() == 1)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002743 Result.AddTypedTextChunk("");
Douglas Gregor1b605f72009-11-19 01:08:35 +00002744 }
Douglas Gregord3c5d792009-11-17 16:44:22 +00002745 unsigned Idx = 0;
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00002746 for (ObjCMethodDecl::param_const_iterator P = Method->param_begin(),
2747 PEnd = Method->param_end();
Douglas Gregord3c5d792009-11-17 16:44:22 +00002748 P != PEnd; (void)++P, ++Idx) {
2749 if (Idx > 0) {
Douglas Gregor1b605f72009-11-19 01:08:35 +00002750 std::string Keyword;
2751 if (Idx > StartParameter)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002752 Result.AddChunk(CodeCompletionString::CK_HorizontalSpace);
Douglas Gregord3c5d792009-11-17 16:44:22 +00002753 if (IdentifierInfo *II = Sel.getIdentifierInfoForSlot(Idx))
Benjamin Kramer632500c2011-07-26 16:59:25 +00002754 Keyword += II->getName();
Douglas Gregord3c5d792009-11-17 16:44:22 +00002755 Keyword += ":";
Douglas Gregor95887f92010-07-08 23:20:03 +00002756 if (Idx < StartParameter || AllParametersAreInformative)
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002757 Result.AddInformativeChunk(Result.getAllocator().CopyString(Keyword));
Douglas Gregor8e3e8742010-10-18 21:05:04 +00002758 else
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002759 Result.AddTypedTextChunk(Result.getAllocator().CopyString(Keyword));
Douglas Gregord3c5d792009-11-17 16:44:22 +00002760 }
Douglas Gregor1b605f72009-11-19 01:08:35 +00002761
2762 // If we're before the starting parameter, skip the placeholder.
2763 if (Idx < StartParameter)
2764 continue;
Douglas Gregord3c5d792009-11-17 16:44:22 +00002765
2766 std::string Arg;
Douglas Gregore90dd002010-08-24 16:15:59 +00002767
2768 if ((*P)->getType()->isBlockPointerType() && !DeclaringEntity)
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002769 Arg = FormatFunctionParameter(Ctx, Policy, *P, true);
Douglas Gregore90dd002010-08-24 16:15:59 +00002770 else {
John McCall31168b02011-06-15 23:02:42 +00002771 (*P)->getType().getAsStringInternal(Arg, Policy);
Douglas Gregor8f08d742011-07-30 07:55:26 +00002772 Arg = "(" + formatObjCParamQualifiers((*P)->getObjCDeclQualifier())
2773 + Arg + ")";
Douglas Gregore90dd002010-08-24 16:15:59 +00002774 if (IdentifierInfo *II = (*P)->getIdentifier())
Douglas Gregor981a0c42010-08-29 19:47:46 +00002775 if (DeclaringEntity || AllParametersAreInformative)
Benjamin Kramer632500c2011-07-26 16:59:25 +00002776 Arg += II->getName();
Douglas Gregore90dd002010-08-24 16:15:59 +00002777 }
2778
Douglas Gregor400f5972010-08-31 05:13:43 +00002779 if (Method->isVariadic() && (P + 1) == PEnd)
2780 Arg += ", ...";
2781
Douglas Gregor95887f92010-07-08 23:20:03 +00002782 if (DeclaringEntity)
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002783 Result.AddTextChunk(Result.getAllocator().CopyString(Arg));
Douglas Gregor95887f92010-07-08 23:20:03 +00002784 else if (AllParametersAreInformative)
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002785 Result.AddInformativeChunk(Result.getAllocator().CopyString(Arg));
Douglas Gregorc8537c52009-11-19 07:41:15 +00002786 else
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002787 Result.AddPlaceholderChunk(Result.getAllocator().CopyString(Arg));
Douglas Gregord3c5d792009-11-17 16:44:22 +00002788 }
2789
Douglas Gregor04c5f972009-12-23 00:21:46 +00002790 if (Method->isVariadic()) {
Douglas Gregor400f5972010-08-31 05:13:43 +00002791 if (Method->param_size() == 0) {
2792 if (DeclaringEntity)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002793 Result.AddTextChunk(", ...");
Douglas Gregor400f5972010-08-31 05:13:43 +00002794 else if (AllParametersAreInformative)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002795 Result.AddInformativeChunk(", ...");
Douglas Gregor400f5972010-08-31 05:13:43 +00002796 else
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002797 Result.AddPlaceholderChunk(", ...");
Douglas Gregor400f5972010-08-31 05:13:43 +00002798 }
Douglas Gregordbb71db2010-08-23 23:51:41 +00002799
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002800 MaybeAddSentinel(Ctx, Method, Result);
Douglas Gregor04c5f972009-12-23 00:21:46 +00002801 }
2802
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002803 return Result.TakeString();
Douglas Gregord3c5d792009-11-17 16:44:22 +00002804 }
2805
Douglas Gregorf09935f2009-12-01 05:55:20 +00002806 if (Qualifier)
Douglas Gregor5bf52692009-09-22 23:15:58 +00002807 AddQualifierToCompletionString(Result, Qualifier, QualifierIsInformative,
Argyrios Kyrtzidis8d05ca72012-01-17 02:15:51 +00002808 Ctx, Policy);
Douglas Gregorf09935f2009-12-01 05:55:20 +00002809
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002810 Result.AddTypedTextChunk(
2811 Result.getAllocator().CopyString(ND->getNameAsString()));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002812 return Result.TakeString();
Douglas Gregor3545ff42009-09-21 16:56:56 +00002813}
2814
Douglas Gregorf0f51982009-09-23 00:34:09 +00002815CodeCompletionString *
2816CodeCompleteConsumer::OverloadCandidate::CreateSignatureString(
2817 unsigned CurrentArg,
Douglas Gregor36e3b5c2010-10-11 21:37:58 +00002818 Sema &S,
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00002819 CodeCompletionAllocator &Allocator,
2820 CodeCompletionTUInfo &CCTUInfo) const {
Douglas Gregor75acd922011-09-27 23:30:47 +00002821 PrintingPolicy Policy = getCompletionPrintingPolicy(S);
John McCall31168b02011-06-15 23:02:42 +00002822
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002823 // FIXME: Set priority, availability appropriately.
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00002824 CodeCompletionBuilder Result(Allocator,CCTUInfo, 1, CXAvailability_Available);
Douglas Gregorf0f51982009-09-23 00:34:09 +00002825 FunctionDecl *FDecl = getFunction();
Douglas Gregor75acd922011-09-27 23:30:47 +00002826 AddResultTypeChunk(S.Context, Policy, FDecl, Result);
Douglas Gregorf0f51982009-09-23 00:34:09 +00002827 const FunctionProtoType *Proto
2828 = dyn_cast<FunctionProtoType>(getFunctionType());
2829 if (!FDecl && !Proto) {
2830 // Function without a prototype. Just give the return type and a
2831 // highlighted ellipsis.
2832 const FunctionType *FT = getFunctionType();
Alp Toker314cc812014-01-25 16:55:45 +00002833 Result.AddTextChunk(GetCompletionTypeString(FT->getReturnType(), S.Context,
2834 Policy, Result.getAllocator()));
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002835 Result.AddChunk(CodeCompletionString::CK_LeftParen);
2836 Result.AddChunk(CodeCompletionString::CK_CurrentParameter, "...");
2837 Result.AddChunk(CodeCompletionString::CK_RightParen);
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002838 return Result.TakeString();
Douglas Gregorf0f51982009-09-23 00:34:09 +00002839 }
2840
2841 if (FDecl)
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002842 Result.AddTextChunk(
2843 Result.getAllocator().CopyString(FDecl->getNameAsString()));
Douglas Gregorf0f51982009-09-23 00:34:09 +00002844 else
Alp Toker314cc812014-01-25 16:55:45 +00002845 Result.AddTextChunk(Result.getAllocator().CopyString(
2846 Proto->getReturnType().getAsString(Policy)));
2847
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002848 Result.AddChunk(CodeCompletionString::CK_LeftParen);
Alp Toker9cacbab2014-01-20 20:26:09 +00002849 unsigned NumParams = FDecl ? FDecl->getNumParams() : Proto->getNumParams();
Douglas Gregorf0f51982009-09-23 00:34:09 +00002850 for (unsigned I = 0; I != NumParams; ++I) {
2851 if (I)
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002852 Result.AddChunk(CodeCompletionString::CK_Comma);
Douglas Gregorf0f51982009-09-23 00:34:09 +00002853
2854 std::string ArgString;
2855 QualType ArgType;
2856
2857 if (FDecl) {
2858 ArgString = FDecl->getParamDecl(I)->getNameAsString();
2859 ArgType = FDecl->getParamDecl(I)->getOriginalType();
2860 } else {
Alp Toker9cacbab2014-01-20 20:26:09 +00002861 ArgType = Proto->getParamType(I);
Douglas Gregorf0f51982009-09-23 00:34:09 +00002862 }
2863
John McCall31168b02011-06-15 23:02:42 +00002864 ArgType.getAsStringInternal(ArgString, Policy);
Douglas Gregorf0f51982009-09-23 00:34:09 +00002865
2866 if (I == CurrentArg)
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002867 Result.AddChunk(CodeCompletionString::CK_CurrentParameter,
2868 Result.getAllocator().CopyString(ArgString));
Douglas Gregorf0f51982009-09-23 00:34:09 +00002869 else
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00002870 Result.AddTextChunk(Result.getAllocator().CopyString(ArgString));
Douglas Gregorf0f51982009-09-23 00:34:09 +00002871 }
2872
2873 if (Proto && Proto->isVariadic()) {
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002874 Result.AddChunk(CodeCompletionString::CK_Comma);
Douglas Gregorf0f51982009-09-23 00:34:09 +00002875 if (CurrentArg < NumParams)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002876 Result.AddTextChunk("...");
Douglas Gregorf0f51982009-09-23 00:34:09 +00002877 else
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002878 Result.AddChunk(CodeCompletionString::CK_CurrentParameter, "...");
Douglas Gregorf0f51982009-09-23 00:34:09 +00002879 }
Benjamin Kramerdb534a42012-03-26 16:57:36 +00002880 Result.AddChunk(CodeCompletionString::CK_RightParen);
Douglas Gregorf0f51982009-09-23 00:34:09 +00002881
Douglas Gregorb278aaf2011-02-01 19:23:04 +00002882 return Result.TakeString();
Douglas Gregorf0f51982009-09-23 00:34:09 +00002883}
2884
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002885unsigned clang::getMacroUsagePriority(StringRef MacroName,
Douglas Gregor9dcf58a2010-09-20 21:11:48 +00002886 const LangOptions &LangOpts,
Douglas Gregor6e240332010-08-16 16:18:59 +00002887 bool PreferredTypeIsPointer) {
2888 unsigned Priority = CCP_Macro;
2889
Douglas Gregor9dcf58a2010-09-20 21:11:48 +00002890 // Treat the "nil", "Nil" and "NULL" macros as null pointer constants.
2891 if (MacroName.equals("nil") || MacroName.equals("NULL") ||
2892 MacroName.equals("Nil")) {
Douglas Gregor6e240332010-08-16 16:18:59 +00002893 Priority = CCP_Constant;
2894 if (PreferredTypeIsPointer)
2895 Priority = Priority / CCF_SimilarTypeMatch;
Douglas Gregor9dcf58a2010-09-20 21:11:48 +00002896 }
2897 // Treat "YES", "NO", "true", and "false" as constants.
2898 else if (MacroName.equals("YES") || MacroName.equals("NO") ||
2899 MacroName.equals("true") || MacroName.equals("false"))
2900 Priority = CCP_Constant;
2901 // Treat "bool" as a type.
2902 else if (MacroName.equals("bool"))
2903 Priority = CCP_Type + (LangOpts.ObjC1? CCD_bool_in_ObjC : 0);
2904
Douglas Gregor6e240332010-08-16 16:18:59 +00002905
2906 return Priority;
2907}
2908
Dmitri Gribenkobdc80de2013-01-11 20:32:41 +00002909CXCursorKind clang::getCursorKindForDecl(const Decl *D) {
Douglas Gregor09c0eb12010-09-03 23:30:36 +00002910 if (!D)
2911 return CXCursor_UnexposedDecl;
2912
2913 switch (D->getKind()) {
2914 case Decl::Enum: return CXCursor_EnumDecl;
2915 case Decl::EnumConstant: return CXCursor_EnumConstantDecl;
2916 case Decl::Field: return CXCursor_FieldDecl;
2917 case Decl::Function:
2918 return CXCursor_FunctionDecl;
2919 case Decl::ObjCCategory: return CXCursor_ObjCCategoryDecl;
2920 case Decl::ObjCCategoryImpl: return CXCursor_ObjCCategoryImplDecl;
Douglas Gregor09c0eb12010-09-03 23:30:36 +00002921 case Decl::ObjCImplementation: return CXCursor_ObjCImplementationDecl;
Douglas Gregordeafd0b2011-12-27 22:43:10 +00002922
Argyrios Kyrtzidis3698cef2012-01-24 21:39:26 +00002923 case Decl::ObjCInterface: return CXCursor_ObjCInterfaceDecl;
Douglas Gregor09c0eb12010-09-03 23:30:36 +00002924 case Decl::ObjCIvar: return CXCursor_ObjCIvarDecl;
2925 case Decl::ObjCMethod:
2926 return cast<ObjCMethodDecl>(D)->isInstanceMethod()
2927 ? CXCursor_ObjCInstanceMethodDecl : CXCursor_ObjCClassMethodDecl;
2928 case Decl::CXXMethod: return CXCursor_CXXMethod;
2929 case Decl::CXXConstructor: return CXCursor_Constructor;
2930 case Decl::CXXDestructor: return CXCursor_Destructor;
2931 case Decl::CXXConversion: return CXCursor_ConversionFunction;
2932 case Decl::ObjCProperty: return CXCursor_ObjCPropertyDecl;
Argyrios Kyrtzidis3698cef2012-01-24 21:39:26 +00002933 case Decl::ObjCProtocol: return CXCursor_ObjCProtocolDecl;
Douglas Gregor09c0eb12010-09-03 23:30:36 +00002934 case Decl::ParmVar: return CXCursor_ParmDecl;
2935 case Decl::Typedef: return CXCursor_TypedefDecl;
Richard Smithdda56e42011-04-15 14:24:37 +00002936 case Decl::TypeAlias: return CXCursor_TypeAliasDecl;
Douglas Gregor09c0eb12010-09-03 23:30:36 +00002937 case Decl::Var: return CXCursor_VarDecl;
2938 case Decl::Namespace: return CXCursor_Namespace;
2939 case Decl::NamespaceAlias: return CXCursor_NamespaceAlias;
2940 case Decl::TemplateTypeParm: return CXCursor_TemplateTypeParameter;
2941 case Decl::NonTypeTemplateParm:return CXCursor_NonTypeTemplateParameter;
2942 case Decl::TemplateTemplateParm:return CXCursor_TemplateTemplateParameter;
2943 case Decl::FunctionTemplate: return CXCursor_FunctionTemplate;
2944 case Decl::ClassTemplate: return CXCursor_ClassTemplate;
Argyrios Kyrtzidis12afd702011-09-30 17:58:23 +00002945 case Decl::AccessSpec: return CXCursor_CXXAccessSpecifier;
Douglas Gregor09c0eb12010-09-03 23:30:36 +00002946 case Decl::ClassTemplatePartialSpecialization:
2947 return CXCursor_ClassTemplatePartialSpecialization;
2948 case Decl::UsingDirective: return CXCursor_UsingDirective;
Douglas Gregor3e653b32012-04-30 23:41:16 +00002949 case Decl::TranslationUnit: return CXCursor_TranslationUnit;
Douglas Gregor09c0eb12010-09-03 23:30:36 +00002950
2951 case Decl::Using:
2952 case Decl::UnresolvedUsingValue:
2953 case Decl::UnresolvedUsingTypename:
2954 return CXCursor_UsingDeclaration;
2955
Douglas Gregor4cd65962011-06-03 23:08:58 +00002956 case Decl::ObjCPropertyImpl:
2957 switch (cast<ObjCPropertyImplDecl>(D)->getPropertyImplementation()) {
2958 case ObjCPropertyImplDecl::Dynamic:
2959 return CXCursor_ObjCDynamicDecl;
2960
2961 case ObjCPropertyImplDecl::Synthesize:
2962 return CXCursor_ObjCSynthesizeDecl;
2963 }
Argyrios Kyrtzidis50e5b1d2012-10-05 00:22:24 +00002964
2965 case Decl::Import:
2966 return CXCursor_ModuleImportDecl;
Douglas Gregor4cd65962011-06-03 23:08:58 +00002967
Douglas Gregor09c0eb12010-09-03 23:30:36 +00002968 default:
Dmitri Gribenkobdc80de2013-01-11 20:32:41 +00002969 if (const TagDecl *TD = dyn_cast<TagDecl>(D)) {
Douglas Gregor09c0eb12010-09-03 23:30:36 +00002970 switch (TD->getTagKind()) {
Joao Matosdc86f942012-08-31 18:45:21 +00002971 case TTK_Interface: // fall through
Douglas Gregor09c0eb12010-09-03 23:30:36 +00002972 case TTK_Struct: return CXCursor_StructDecl;
2973 case TTK_Class: return CXCursor_ClassDecl;
2974 case TTK_Union: return CXCursor_UnionDecl;
2975 case TTK_Enum: return CXCursor_EnumDecl;
2976 }
2977 }
2978 }
2979
2980 return CXCursor_UnexposedDecl;
2981}
2982
Douglas Gregor55b037b2010-07-08 20:55:51 +00002983static void AddMacroResults(Preprocessor &PP, ResultBuilder &Results,
Douglas Gregor8cb17462012-10-09 16:01:50 +00002984 bool IncludeUndefined,
Douglas Gregor55b037b2010-07-08 20:55:51 +00002985 bool TargetTypeIsPointer = false) {
John McCall276321a2010-08-25 06:19:51 +00002986 typedef CodeCompletionResult Result;
Douglas Gregor55b037b2010-07-08 20:55:51 +00002987
Douglas Gregorf329c7c2009-10-30 16:50:04 +00002988 Results.EnterNewScope();
Douglas Gregor8e3e8742010-10-18 21:05:04 +00002989
Douglas Gregor9eb77012009-11-07 00:00:49 +00002990 for (Preprocessor::macro_iterator M = PP.macro_begin(),
2991 MEnd = PP.macro_end();
Douglas Gregor55b037b2010-07-08 20:55:51 +00002992 M != MEnd; ++M) {
Douglas Gregor8cb17462012-10-09 16:01:50 +00002993 if (IncludeUndefined || M->first->hasMacroDefinition())
2994 Results.AddResult(Result(M->first,
Douglas Gregor6e240332010-08-16 16:18:59 +00002995 getMacroUsagePriority(M->first->getName(),
David Blaikiebbafb8a2012-03-11 07:00:24 +00002996 PP.getLangOpts(),
Douglas Gregor6e240332010-08-16 16:18:59 +00002997 TargetTypeIsPointer)));
Douglas Gregor55b037b2010-07-08 20:55:51 +00002998 }
Douglas Gregor8e3e8742010-10-18 21:05:04 +00002999
Douglas Gregorf329c7c2009-10-30 16:50:04 +00003000 Results.ExitScope();
Douglas Gregor8e3e8742010-10-18 21:05:04 +00003001
Douglas Gregorf329c7c2009-10-30 16:50:04 +00003002}
3003
Douglas Gregorce0e8562010-08-23 21:54:33 +00003004static void AddPrettyFunctionResults(const LangOptions &LangOpts,
3005 ResultBuilder &Results) {
John McCall276321a2010-08-25 06:19:51 +00003006 typedef CodeCompletionResult Result;
Douglas Gregorce0e8562010-08-23 21:54:33 +00003007
3008 Results.EnterNewScope();
Douglas Gregor8e3e8742010-10-18 21:05:04 +00003009
Douglas Gregorce0e8562010-08-23 21:54:33 +00003010 Results.AddResult(Result("__PRETTY_FUNCTION__", CCP_Constant));
3011 Results.AddResult(Result("__FUNCTION__", CCP_Constant));
Richard Smith2bf7fdb2013-01-02 11:42:31 +00003012 if (LangOpts.C99 || LangOpts.CPlusPlus11)
Douglas Gregorce0e8562010-08-23 21:54:33 +00003013 Results.AddResult(Result("__func__", CCP_Constant));
3014 Results.ExitScope();
3015}
3016
Daniel Dunbar242ea9a2009-11-13 08:58:20 +00003017static void HandleCodeCompleteResults(Sema *S,
3018 CodeCompleteConsumer *CodeCompleter,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003019 CodeCompletionContext Context,
John McCall276321a2010-08-25 06:19:51 +00003020 CodeCompletionResult *Results,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003021 unsigned NumResults) {
Douglas Gregor3545ff42009-09-21 16:56:56 +00003022 if (CodeCompleter)
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003023 CodeCompleter->ProcessCodeCompleteResults(*S, Context, Results, NumResults);
Douglas Gregor3545ff42009-09-21 16:56:56 +00003024}
3025
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003026static enum CodeCompletionContext::Kind mapCodeCompletionContext(Sema &S,
3027 Sema::ParserCompletionContext PCC) {
3028 switch (PCC) {
John McCallfaf5fb42010-08-26 23:41:50 +00003029 case Sema::PCC_Namespace:
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003030 return CodeCompletionContext::CCC_TopLevel;
3031
John McCallfaf5fb42010-08-26 23:41:50 +00003032 case Sema::PCC_Class:
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003033 return CodeCompletionContext::CCC_ClassStructUnion;
3034
John McCallfaf5fb42010-08-26 23:41:50 +00003035 case Sema::PCC_ObjCInterface:
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003036 return CodeCompletionContext::CCC_ObjCInterface;
3037
John McCallfaf5fb42010-08-26 23:41:50 +00003038 case Sema::PCC_ObjCImplementation:
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003039 return CodeCompletionContext::CCC_ObjCImplementation;
3040
John McCallfaf5fb42010-08-26 23:41:50 +00003041 case Sema::PCC_ObjCInstanceVariableList:
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003042 return CodeCompletionContext::CCC_ObjCIvarList;
3043
John McCallfaf5fb42010-08-26 23:41:50 +00003044 case Sema::PCC_Template:
3045 case Sema::PCC_MemberTemplate:
Douglas Gregor0ac41382010-09-23 23:01:17 +00003046 if (S.CurContext->isFileContext())
3047 return CodeCompletionContext::CCC_TopLevel;
David Blaikie8a40f702012-01-17 06:56:22 +00003048 if (S.CurContext->isRecord())
Douglas Gregor0ac41382010-09-23 23:01:17 +00003049 return CodeCompletionContext::CCC_ClassStructUnion;
David Blaikie8a40f702012-01-17 06:56:22 +00003050 return CodeCompletionContext::CCC_Other;
Douglas Gregor0ac41382010-09-23 23:01:17 +00003051
John McCallfaf5fb42010-08-26 23:41:50 +00003052 case Sema::PCC_RecoveryInFunction:
Douglas Gregor0ac41382010-09-23 23:01:17 +00003053 return CodeCompletionContext::CCC_Recovery;
Douglas Gregorc769d6e2010-10-18 22:01:46 +00003054
John McCallfaf5fb42010-08-26 23:41:50 +00003055 case Sema::PCC_ForInit:
David Blaikiebbafb8a2012-03-11 07:00:24 +00003056 if (S.getLangOpts().CPlusPlus || S.getLangOpts().C99 ||
3057 S.getLangOpts().ObjC1)
Douglas Gregorc769d6e2010-10-18 22:01:46 +00003058 return CodeCompletionContext::CCC_ParenthesizedExpression;
3059 else
3060 return CodeCompletionContext::CCC_Expression;
3061
3062 case Sema::PCC_Expression:
John McCallfaf5fb42010-08-26 23:41:50 +00003063 case Sema::PCC_Condition:
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003064 return CodeCompletionContext::CCC_Expression;
3065
John McCallfaf5fb42010-08-26 23:41:50 +00003066 case Sema::PCC_Statement:
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003067 return CodeCompletionContext::CCC_Statement;
Douglas Gregorf02e5f32010-08-24 01:11:00 +00003068
John McCallfaf5fb42010-08-26 23:41:50 +00003069 case Sema::PCC_Type:
Douglas Gregorf02e5f32010-08-24 01:11:00 +00003070 return CodeCompletionContext::CCC_Type;
Douglas Gregor5e35d592010-09-14 23:59:36 +00003071
3072 case Sema::PCC_ParenthesizedExpression:
3073 return CodeCompletionContext::CCC_ParenthesizedExpression;
Douglas Gregor80039242011-02-15 20:33:25 +00003074
3075 case Sema::PCC_LocalDeclarationSpecifiers:
3076 return CodeCompletionContext::CCC_Type;
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003077 }
David Blaikie8a40f702012-01-17 06:56:22 +00003078
3079 llvm_unreachable("Invalid ParserCompletionContext!");
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003080}
3081
Douglas Gregorac322ec2010-08-27 21:18:54 +00003082/// \brief If we're in a C++ virtual member function, add completion results
3083/// that invoke the functions we override, since it's common to invoke the
3084/// overridden function as well as adding new functionality.
3085///
3086/// \param S The semantic analysis object for which we are generating results.
3087///
3088/// \param InContext This context in which the nested-name-specifier preceding
3089/// the code-completion point
3090static void MaybeAddOverrideCalls(Sema &S, DeclContext *InContext,
3091 ResultBuilder &Results) {
3092 // Look through blocks.
3093 DeclContext *CurContext = S.CurContext;
3094 while (isa<BlockDecl>(CurContext))
3095 CurContext = CurContext->getParent();
3096
3097
3098 CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(CurContext);
3099 if (!Method || !Method->isVirtual())
3100 return;
3101
3102 // We need to have names for all of the parameters, if we're going to
3103 // generate a forwarding call.
3104 for (CXXMethodDecl::param_iterator P = Method->param_begin(),
3105 PEnd = Method->param_end();
3106 P != PEnd;
3107 ++P) {
3108 if (!(*P)->getDeclName())
3109 return;
3110 }
3111
Douglas Gregor75acd922011-09-27 23:30:47 +00003112 PrintingPolicy Policy = getCompletionPrintingPolicy(S);
Douglas Gregorac322ec2010-08-27 21:18:54 +00003113 for (CXXMethodDecl::method_iterator M = Method->begin_overridden_methods(),
3114 MEnd = Method->end_overridden_methods();
3115 M != MEnd; ++M) {
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003116 CodeCompletionBuilder Builder(Results.getAllocator(),
3117 Results.getCodeCompletionTUInfo());
Dmitri Gribenko6cfb1532013-02-14 13:53:30 +00003118 const CXXMethodDecl *Overridden = *M;
Douglas Gregorac322ec2010-08-27 21:18:54 +00003119 if (Overridden->getCanonicalDecl() == Method->getCanonicalDecl())
3120 continue;
3121
3122 // If we need a nested-name-specifier, add one now.
3123 if (!InContext) {
3124 NestedNameSpecifier *NNS
3125 = getRequiredQualification(S.Context, CurContext,
3126 Overridden->getDeclContext());
3127 if (NNS) {
3128 std::string Str;
3129 llvm::raw_string_ostream OS(Str);
Douglas Gregor75acd922011-09-27 23:30:47 +00003130 NNS->print(OS, Policy);
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00003131 Builder.AddTextChunk(Results.getAllocator().CopyString(OS.str()));
Douglas Gregorac322ec2010-08-27 21:18:54 +00003132 }
3133 } else if (!InContext->Equals(Overridden->getDeclContext()))
3134 continue;
3135
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00003136 Builder.AddTypedTextChunk(Results.getAllocator().CopyString(
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003137 Overridden->getNameAsString()));
3138 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
Douglas Gregorac322ec2010-08-27 21:18:54 +00003139 bool FirstParam = true;
3140 for (CXXMethodDecl::param_iterator P = Method->param_begin(),
3141 PEnd = Method->param_end();
3142 P != PEnd; ++P) {
3143 if (FirstParam)
3144 FirstParam = false;
3145 else
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003146 Builder.AddChunk(CodeCompletionString::CK_Comma);
Douglas Gregorac322ec2010-08-27 21:18:54 +00003147
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00003148 Builder.AddPlaceholderChunk(Results.getAllocator().CopyString(
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003149 (*P)->getIdentifier()->getName()));
Douglas Gregorac322ec2010-08-27 21:18:54 +00003150 }
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003151 Builder.AddChunk(CodeCompletionString::CK_RightParen);
3152 Results.AddResult(CodeCompletionResult(Builder.TakeString(),
Douglas Gregorac322ec2010-08-27 21:18:54 +00003153 CCP_SuperCompletion,
Douglas Gregor78254c82012-03-27 23:34:16 +00003154 CXCursor_CXXMethod,
3155 CXAvailability_Available,
3156 Overridden));
Douglas Gregorac322ec2010-08-27 21:18:54 +00003157 Results.Ignore(Overridden);
3158 }
3159}
3160
Douglas Gregor07f43572012-01-29 18:15:03 +00003161void Sema::CodeCompleteModuleImport(SourceLocation ImportLoc,
3162 ModuleIdPath Path) {
3163 typedef CodeCompletionResult Result;
3164 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003165 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor07f43572012-01-29 18:15:03 +00003166 CodeCompletionContext::CCC_Other);
3167 Results.EnterNewScope();
3168
3169 CodeCompletionAllocator &Allocator = Results.getAllocator();
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003170 CodeCompletionBuilder Builder(Allocator, Results.getCodeCompletionTUInfo());
Douglas Gregor07f43572012-01-29 18:15:03 +00003171 typedef CodeCompletionResult Result;
3172 if (Path.empty()) {
3173 // Enumerate all top-level modules.
Dmitri Gribenkof8579502013-01-12 19:30:44 +00003174 SmallVector<Module *, 8> Modules;
Douglas Gregor07f43572012-01-29 18:15:03 +00003175 PP.getHeaderSearchInfo().collectAllModules(Modules);
3176 for (unsigned I = 0, N = Modules.size(); I != N; ++I) {
3177 Builder.AddTypedTextChunk(
3178 Builder.getAllocator().CopyString(Modules[I]->Name));
3179 Results.AddResult(Result(Builder.TakeString(),
3180 CCP_Declaration,
Argyrios Kyrtzidis345d05f2013-05-29 18:50:15 +00003181 CXCursor_ModuleImportDecl,
Douglas Gregor07f43572012-01-29 18:15:03 +00003182 Modules[I]->isAvailable()
3183 ? CXAvailability_Available
3184 : CXAvailability_NotAvailable));
3185 }
Daniel Jasper07e6c402013-08-05 20:26:17 +00003186 } else if (getLangOpts().Modules) {
Douglas Gregor07f43572012-01-29 18:15:03 +00003187 // Load the named module.
3188 Module *Mod = PP.getModuleLoader().loadModule(ImportLoc, Path,
3189 Module::AllVisible,
3190 /*IsInclusionDirective=*/false);
3191 // Enumerate submodules.
3192 if (Mod) {
3193 for (Module::submodule_iterator Sub = Mod->submodule_begin(),
3194 SubEnd = Mod->submodule_end();
3195 Sub != SubEnd; ++Sub) {
3196
3197 Builder.AddTypedTextChunk(
3198 Builder.getAllocator().CopyString((*Sub)->Name));
3199 Results.AddResult(Result(Builder.TakeString(),
3200 CCP_Declaration,
Argyrios Kyrtzidis345d05f2013-05-29 18:50:15 +00003201 CXCursor_ModuleImportDecl,
Douglas Gregor07f43572012-01-29 18:15:03 +00003202 (*Sub)->isAvailable()
3203 ? CXAvailability_Available
3204 : CXAvailability_NotAvailable));
3205 }
3206 }
3207 }
3208 Results.ExitScope();
3209 HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(),
3210 Results.data(),Results.size());
3211}
3212
Douglas Gregor504a6ae2010-01-10 23:08:15 +00003213void Sema::CodeCompleteOrdinaryName(Scope *S,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003214 ParserCompletionContext CompletionContext) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003215 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003216 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor0ac41382010-09-23 23:01:17 +00003217 mapCodeCompletionContext(*this, CompletionContext));
Douglas Gregorac322ec2010-08-27 21:18:54 +00003218 Results.EnterNewScope();
Douglas Gregor50832e02010-09-20 22:39:41 +00003219
Douglas Gregor504a6ae2010-01-10 23:08:15 +00003220 // Determine how to filter results, e.g., so that the names of
3221 // values (functions, enumerators, function templates, etc.) are
3222 // only allowed where we can have an expression.
3223 switch (CompletionContext) {
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003224 case PCC_Namespace:
3225 case PCC_Class:
3226 case PCC_ObjCInterface:
3227 case PCC_ObjCImplementation:
3228 case PCC_ObjCInstanceVariableList:
3229 case PCC_Template:
3230 case PCC_MemberTemplate:
Douglas Gregorf02e5f32010-08-24 01:11:00 +00003231 case PCC_Type:
Douglas Gregor80039242011-02-15 20:33:25 +00003232 case PCC_LocalDeclarationSpecifiers:
Douglas Gregor504a6ae2010-01-10 23:08:15 +00003233 Results.setFilter(&ResultBuilder::IsOrdinaryNonValueName);
3234 break;
3235
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003236 case PCC_Statement:
Douglas Gregor5e35d592010-09-14 23:59:36 +00003237 case PCC_ParenthesizedExpression:
Douglas Gregor4d755e82010-08-24 23:58:17 +00003238 case PCC_Expression:
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003239 case PCC_ForInit:
3240 case PCC_Condition:
David Blaikiebbafb8a2012-03-11 07:00:24 +00003241 if (WantTypesInContext(CompletionContext, getLangOpts()))
Douglas Gregor70febae2010-05-28 00:49:12 +00003242 Results.setFilter(&ResultBuilder::IsOrdinaryName);
3243 else
3244 Results.setFilter(&ResultBuilder::IsOrdinaryNonTypeName);
Douglas Gregorac322ec2010-08-27 21:18:54 +00003245
David Blaikiebbafb8a2012-03-11 07:00:24 +00003246 if (getLangOpts().CPlusPlus)
Douglas Gregorac322ec2010-08-27 21:18:54 +00003247 MaybeAddOverrideCalls(*this, /*InContext=*/0, Results);
Douglas Gregor504a6ae2010-01-10 23:08:15 +00003248 break;
Douglas Gregor6da3db42010-05-25 05:58:43 +00003249
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003250 case PCC_RecoveryInFunction:
Douglas Gregor6da3db42010-05-25 05:58:43 +00003251 // Unfiltered
3252 break;
Douglas Gregor504a6ae2010-01-10 23:08:15 +00003253 }
3254
Douglas Gregor9be0ed42010-08-26 16:36:48 +00003255 // If we are in a C++ non-static member function, check the qualifiers on
3256 // the member function to filter/prioritize the results list.
3257 if (CXXMethodDecl *CurMethod = dyn_cast<CXXMethodDecl>(CurContext))
3258 if (CurMethod->isInstance())
3259 Results.setObjectTypeQualifiers(
3260 Qualifiers::fromCVRMask(CurMethod->getTypeQualifiers()));
3261
Douglas Gregorc580c522010-01-14 01:09:38 +00003262 CodeCompletionDeclConsumer Consumer(Results, CurContext);
Douglas Gregor39982192010-08-15 06:18:01 +00003263 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
3264 CodeCompleter->includeGlobals());
Douglas Gregor92253692009-12-07 09:54:55 +00003265
Douglas Gregorf98e6a22010-01-13 23:51:12 +00003266 AddOrdinaryNameResults(CompletionContext, S, *this, Results);
Douglas Gregor92253692009-12-07 09:54:55 +00003267 Results.ExitScope();
3268
Douglas Gregorce0e8562010-08-23 21:54:33 +00003269 switch (CompletionContext) {
Douglas Gregor5e35d592010-09-14 23:59:36 +00003270 case PCC_ParenthesizedExpression:
Douglas Gregorf02e5f32010-08-24 01:11:00 +00003271 case PCC_Expression:
3272 case PCC_Statement:
3273 case PCC_RecoveryInFunction:
3274 if (S->getFnParent())
David Blaikiebbafb8a2012-03-11 07:00:24 +00003275 AddPrettyFunctionResults(PP.getLangOpts(), Results);
Douglas Gregorf02e5f32010-08-24 01:11:00 +00003276 break;
3277
3278 case PCC_Namespace:
3279 case PCC_Class:
3280 case PCC_ObjCInterface:
3281 case PCC_ObjCImplementation:
3282 case PCC_ObjCInstanceVariableList:
3283 case PCC_Template:
3284 case PCC_MemberTemplate:
3285 case PCC_ForInit:
3286 case PCC_Condition:
3287 case PCC_Type:
Douglas Gregor80039242011-02-15 20:33:25 +00003288 case PCC_LocalDeclarationSpecifiers:
Douglas Gregorf02e5f32010-08-24 01:11:00 +00003289 break;
Douglas Gregorce0e8562010-08-23 21:54:33 +00003290 }
3291
Douglas Gregor9eb77012009-11-07 00:00:49 +00003292 if (CodeCompleter->includeMacros())
Douglas Gregor8cb17462012-10-09 16:01:50 +00003293 AddMacroResults(PP, Results, false);
Douglas Gregorce0e8562010-08-23 21:54:33 +00003294
Douglas Gregor50832e02010-09-20 22:39:41 +00003295 HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003296 Results.data(),Results.size());
Douglas Gregor9d64c5e2009-09-21 20:51:25 +00003297}
3298
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00003299static void AddClassMessageCompletions(Sema &SemaRef, Scope *S,
3300 ParsedType Receiver,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00003301 ArrayRef<IdentifierInfo *> SelIdents,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00003302 bool AtArgumentExpression,
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00003303 bool IsSuper,
3304 ResultBuilder &Results);
3305
3306void Sema::CodeCompleteDeclSpec(Scope *S, DeclSpec &DS,
3307 bool AllowNonIdentifiers,
3308 bool AllowNestedNameSpecifiers) {
John McCall276321a2010-08-25 06:19:51 +00003309 typedef CodeCompletionResult Result;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003310 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003311 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor0ac41382010-09-23 23:01:17 +00003312 AllowNestedNameSpecifiers
3313 ? CodeCompletionContext::CCC_PotentiallyQualifiedName
3314 : CodeCompletionContext::CCC_Name);
Douglas Gregorc49f5b22010-08-23 18:23:48 +00003315 Results.EnterNewScope();
3316
3317 // Type qualifiers can come after names.
3318 Results.AddResult(Result("const"));
3319 Results.AddResult(Result("volatile"));
David Blaikiebbafb8a2012-03-11 07:00:24 +00003320 if (getLangOpts().C99)
Douglas Gregorc49f5b22010-08-23 18:23:48 +00003321 Results.AddResult(Result("restrict"));
3322
David Blaikiebbafb8a2012-03-11 07:00:24 +00003323 if (getLangOpts().CPlusPlus) {
Douglas Gregorc49f5b22010-08-23 18:23:48 +00003324 if (AllowNonIdentifiers) {
3325 Results.AddResult(Result("operator"));
3326 }
3327
3328 // Add nested-name-specifiers.
3329 if (AllowNestedNameSpecifiers) {
3330 Results.allowNestedNameSpecifiers();
Douglas Gregor0ac41382010-09-23 23:01:17 +00003331 Results.setFilter(&ResultBuilder::IsImpossibleToSatisfy);
Douglas Gregorc49f5b22010-08-23 18:23:48 +00003332 CodeCompletionDeclConsumer Consumer(Results, CurContext);
3333 LookupVisibleDecls(S, LookupNestedNameSpecifierName, Consumer,
3334 CodeCompleter->includeGlobals());
Douglas Gregor0ac41382010-09-23 23:01:17 +00003335 Results.setFilter(0);
Douglas Gregorc49f5b22010-08-23 18:23:48 +00003336 }
3337 }
3338 Results.ExitScope();
3339
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00003340 // If we're in a context where we might have an expression (rather than a
3341 // declaration), and what we've seen so far is an Objective-C type that could
3342 // be a receiver of a class message, this may be a class message send with
3343 // the initial opening bracket '[' missing. Add appropriate completions.
3344 if (AllowNonIdentifiers && !AllowNestedNameSpecifiers &&
Richard Smithb4a9e862013-04-12 22:46:28 +00003345 DS.getParsedSpecifiers() == DeclSpec::PQ_TypeSpecifier &&
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00003346 DS.getTypeSpecType() == DeclSpec::TST_typename &&
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00003347 DS.getTypeSpecComplex() == DeclSpec::TSC_unspecified &&
3348 DS.getTypeSpecSign() == DeclSpec::TSS_unspecified &&
Richard Smithb4a9e862013-04-12 22:46:28 +00003349 !DS.isTypeAltiVecVector() &&
3350 S &&
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00003351 (S->getFlags() & Scope::DeclScope) != 0 &&
3352 (S->getFlags() & (Scope::ClassScope | Scope::TemplateParamScope |
3353 Scope::FunctionPrototypeScope |
3354 Scope::AtCatchScope)) == 0) {
3355 ParsedType T = DS.getRepAsType();
3356 if (!T.get().isNull() && T.get()->isObjCObjectOrInterfaceType())
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00003357 AddClassMessageCompletions(*this, S, T, None, false, false, Results);
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00003358 }
3359
Douglas Gregor56ccce02010-08-24 04:59:56 +00003360 // Note that we intentionally suppress macro results here, since we do not
3361 // encourage using macros to produce the names of entities.
3362
Douglas Gregor0ac41382010-09-23 23:01:17 +00003363 HandleCodeCompleteResults(this, CodeCompleter,
3364 Results.getCompletionContext(),
Douglas Gregorc49f5b22010-08-23 18:23:48 +00003365 Results.data(), Results.size());
3366}
3367
Douglas Gregor68762e72010-08-23 21:17:50 +00003368struct Sema::CodeCompleteExpressionData {
3369 CodeCompleteExpressionData(QualType PreferredType = QualType())
3370 : PreferredType(PreferredType), IntegralConstantExpression(false),
3371 ObjCCollection(false) { }
3372
3373 QualType PreferredType;
3374 bool IntegralConstantExpression;
3375 bool ObjCCollection;
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003376 SmallVector<Decl *, 4> IgnoreDecls;
Douglas Gregor68762e72010-08-23 21:17:50 +00003377};
3378
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003379/// \brief Perform code-completion in an expression context when we know what
3380/// type we're looking for.
Douglas Gregor68762e72010-08-23 21:17:50 +00003381void Sema::CodeCompleteExpression(Scope *S,
3382 const CodeCompleteExpressionData &Data) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003383 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003384 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003385 CodeCompletionContext::CCC_Expression);
Douglas Gregor68762e72010-08-23 21:17:50 +00003386 if (Data.ObjCCollection)
3387 Results.setFilter(&ResultBuilder::IsObjCCollection);
3388 else if (Data.IntegralConstantExpression)
Douglas Gregor85b50632010-07-28 21:50:18 +00003389 Results.setFilter(&ResultBuilder::IsIntegralConstantValue);
David Blaikiebbafb8a2012-03-11 07:00:24 +00003390 else if (WantTypesInContext(PCC_Expression, getLangOpts()))
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003391 Results.setFilter(&ResultBuilder::IsOrdinaryName);
3392 else
3393 Results.setFilter(&ResultBuilder::IsOrdinaryNonTypeName);
Douglas Gregor68762e72010-08-23 21:17:50 +00003394
3395 if (!Data.PreferredType.isNull())
3396 Results.setPreferredType(Data.PreferredType.getNonReferenceType());
3397
3398 // Ignore any declarations that we were told that we don't care about.
3399 for (unsigned I = 0, N = Data.IgnoreDecls.size(); I != N; ++I)
3400 Results.Ignore(Data.IgnoreDecls[I]);
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003401
3402 CodeCompletionDeclConsumer Consumer(Results, CurContext);
Douglas Gregor39982192010-08-15 06:18:01 +00003403 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
3404 CodeCompleter->includeGlobals());
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003405
3406 Results.EnterNewScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003407 AddOrdinaryNameResults(PCC_Expression, S, *this, Results);
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003408 Results.ExitScope();
3409
Douglas Gregor55b037b2010-07-08 20:55:51 +00003410 bool PreferredTypeIsPointer = false;
Douglas Gregor68762e72010-08-23 21:17:50 +00003411 if (!Data.PreferredType.isNull())
3412 PreferredTypeIsPointer = Data.PreferredType->isAnyPointerType()
3413 || Data.PreferredType->isMemberPointerType()
3414 || Data.PreferredType->isBlockPointerType();
Douglas Gregor55b037b2010-07-08 20:55:51 +00003415
Douglas Gregorce0e8562010-08-23 21:54:33 +00003416 if (S->getFnParent() &&
3417 !Data.ObjCCollection &&
3418 !Data.IntegralConstantExpression)
David Blaikiebbafb8a2012-03-11 07:00:24 +00003419 AddPrettyFunctionResults(PP.getLangOpts(), Results);
Douglas Gregorce0e8562010-08-23 21:54:33 +00003420
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003421 if (CodeCompleter->includeMacros())
Douglas Gregor8cb17462012-10-09 16:01:50 +00003422 AddMacroResults(PP, Results, false, PreferredTypeIsPointer);
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003423 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor68762e72010-08-23 21:17:50 +00003424 CodeCompletionContext(CodeCompletionContext::CCC_Expression,
3425 Data.PreferredType),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003426 Results.data(),Results.size());
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003427}
3428
Douglas Gregoreda7e542010-09-18 01:28:11 +00003429void Sema::CodeCompletePostfixExpression(Scope *S, ExprResult E) {
3430 if (E.isInvalid())
3431 CodeCompleteOrdinaryName(S, PCC_RecoveryInFunction);
David Blaikiebbafb8a2012-03-11 07:00:24 +00003432 else if (getLangOpts().ObjC1)
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00003433 CodeCompleteObjCInstanceMessage(S, E.take(), None, false);
Douglas Gregored0b69d2010-09-15 16:23:04 +00003434}
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003435
Douglas Gregorb888acf2010-12-09 23:01:55 +00003436/// \brief The set of properties that have already been added, referenced by
3437/// property name.
3438typedef llvm::SmallPtrSet<IdentifierInfo*, 16> AddedPropertiesSet;
3439
Douglas Gregor9b4f3702012-06-12 13:44:08 +00003440/// \brief Retrieve the container definition, if any?
3441static ObjCContainerDecl *getContainerDef(ObjCContainerDecl *Container) {
3442 if (ObjCInterfaceDecl *Interface = dyn_cast<ObjCInterfaceDecl>(Container)) {
3443 if (Interface->hasDefinition())
3444 return Interface->getDefinition();
3445
3446 return Interface;
3447 }
3448
3449 if (ObjCProtocolDecl *Protocol = dyn_cast<ObjCProtocolDecl>(Container)) {
3450 if (Protocol->hasDefinition())
3451 return Protocol->getDefinition();
3452
3453 return Protocol;
3454 }
3455 return Container;
3456}
3457
3458static void AddObjCProperties(ObjCContainerDecl *Container,
Douglas Gregor5d649882009-11-18 22:32:06 +00003459 bool AllowCategories,
Douglas Gregor95147142011-05-05 15:50:42 +00003460 bool AllowNullaryMethods,
Douglas Gregor9291bad2009-11-18 01:29:26 +00003461 DeclContext *CurContext,
Douglas Gregorb888acf2010-12-09 23:01:55 +00003462 AddedPropertiesSet &AddedProperties,
Douglas Gregor9291bad2009-11-18 01:29:26 +00003463 ResultBuilder &Results) {
John McCall276321a2010-08-25 06:19:51 +00003464 typedef CodeCompletionResult Result;
Douglas Gregor9291bad2009-11-18 01:29:26 +00003465
Douglas Gregor9b4f3702012-06-12 13:44:08 +00003466 // Retrieve the definition.
3467 Container = getContainerDef(Container);
3468
Douglas Gregor9291bad2009-11-18 01:29:26 +00003469 // Add properties in this container.
3470 for (ObjCContainerDecl::prop_iterator P = Container->prop_begin(),
3471 PEnd = Container->prop_end();
3472 P != PEnd;
Douglas Gregorb888acf2010-12-09 23:01:55 +00003473 ++P) {
3474 if (AddedProperties.insert(P->getIdentifier()))
Douglas Gregor0a0e2b32013-01-31 04:52:16 +00003475 Results.MaybeAddResult(Result(*P, Results.getBasePriority(*P), 0),
3476 CurContext);
Douglas Gregorb888acf2010-12-09 23:01:55 +00003477 }
Douglas Gregor9291bad2009-11-18 01:29:26 +00003478
Douglas Gregor95147142011-05-05 15:50:42 +00003479 // Add nullary methods
3480 if (AllowNullaryMethods) {
3481 ASTContext &Context = Container->getASTContext();
Douglas Gregor75acd922011-09-27 23:30:47 +00003482 PrintingPolicy Policy = getCompletionPrintingPolicy(Results.getSema());
Douglas Gregor95147142011-05-05 15:50:42 +00003483 for (ObjCContainerDecl::method_iterator M = Container->meth_begin(),
3484 MEnd = Container->meth_end();
3485 M != MEnd; ++M) {
3486 if (M->getSelector().isUnarySelector())
3487 if (IdentifierInfo *Name = M->getSelector().getIdentifierInfoForSlot(0))
3488 if (AddedProperties.insert(Name)) {
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003489 CodeCompletionBuilder Builder(Results.getAllocator(),
3490 Results.getCodeCompletionTUInfo());
David Blaikie40ed2972012-06-06 20:45:41 +00003491 AddResultTypeChunk(Context, Policy, *M, Builder);
Douglas Gregor95147142011-05-05 15:50:42 +00003492 Builder.AddTypedTextChunk(
3493 Results.getAllocator().CopyString(Name->getName()));
3494
David Blaikie40ed2972012-06-06 20:45:41 +00003495 Results.MaybeAddResult(Result(Builder.TakeString(), *M,
Douglas Gregor78254c82012-03-27 23:34:16 +00003496 CCP_MemberDeclaration + CCD_MethodAsProperty),
Douglas Gregor95147142011-05-05 15:50:42 +00003497 CurContext);
3498 }
3499 }
3500 }
3501
3502
Douglas Gregor9291bad2009-11-18 01:29:26 +00003503 // Add properties in referenced protocols.
3504 if (ObjCProtocolDecl *Protocol = dyn_cast<ObjCProtocolDecl>(Container)) {
3505 for (ObjCProtocolDecl::protocol_iterator P = Protocol->protocol_begin(),
3506 PEnd = Protocol->protocol_end();
3507 P != PEnd; ++P)
Douglas Gregor95147142011-05-05 15:50:42 +00003508 AddObjCProperties(*P, AllowCategories, AllowNullaryMethods, CurContext,
3509 AddedProperties, Results);
Douglas Gregor9291bad2009-11-18 01:29:26 +00003510 } else if (ObjCInterfaceDecl *IFace = dyn_cast<ObjCInterfaceDecl>(Container)){
Douglas Gregor5d649882009-11-18 22:32:06 +00003511 if (AllowCategories) {
3512 // Look through categories.
Douglas Gregor048fbfa2013-01-16 23:00:23 +00003513 for (ObjCInterfaceDecl::known_categories_iterator
3514 Cat = IFace->known_categories_begin(),
3515 CatEnd = IFace->known_categories_end();
3516 Cat != CatEnd; ++Cat)
3517 AddObjCProperties(*Cat, AllowCategories, AllowNullaryMethods,
Douglas Gregor95147142011-05-05 15:50:42 +00003518 CurContext, AddedProperties, Results);
Douglas Gregor5d649882009-11-18 22:32:06 +00003519 }
Douglas Gregor9291bad2009-11-18 01:29:26 +00003520
3521 // Look through protocols.
Ted Kremenek0ef508d2010-09-01 01:21:15 +00003522 for (ObjCInterfaceDecl::all_protocol_iterator
3523 I = IFace->all_referenced_protocol_begin(),
3524 E = IFace->all_referenced_protocol_end(); I != E; ++I)
Douglas Gregor95147142011-05-05 15:50:42 +00003525 AddObjCProperties(*I, AllowCategories, AllowNullaryMethods, CurContext,
3526 AddedProperties, Results);
Douglas Gregor9291bad2009-11-18 01:29:26 +00003527
3528 // Look in the superclass.
3529 if (IFace->getSuperClass())
Douglas Gregor95147142011-05-05 15:50:42 +00003530 AddObjCProperties(IFace->getSuperClass(), AllowCategories,
3531 AllowNullaryMethods, CurContext,
Douglas Gregorb888acf2010-12-09 23:01:55 +00003532 AddedProperties, Results);
Douglas Gregor9291bad2009-11-18 01:29:26 +00003533 } else if (const ObjCCategoryDecl *Category
3534 = dyn_cast<ObjCCategoryDecl>(Container)) {
3535 // Look through protocols.
Ted Kremenek0ef508d2010-09-01 01:21:15 +00003536 for (ObjCCategoryDecl::protocol_iterator P = Category->protocol_begin(),
3537 PEnd = Category->protocol_end();
Douglas Gregor9291bad2009-11-18 01:29:26 +00003538 P != PEnd; ++P)
Douglas Gregor95147142011-05-05 15:50:42 +00003539 AddObjCProperties(*P, AllowCategories, AllowNullaryMethods, CurContext,
3540 AddedProperties, Results);
Douglas Gregor9291bad2009-11-18 01:29:26 +00003541 }
3542}
3543
Douglas Gregor1cc88a92012-01-23 15:59:30 +00003544void Sema::CodeCompleteMemberReferenceExpr(Scope *S, Expr *Base,
Douglas Gregor2436e712009-09-17 21:32:03 +00003545 SourceLocation OpLoc,
3546 bool IsArrow) {
Douglas Gregor1cc88a92012-01-23 15:59:30 +00003547 if (!Base || !CodeCompleter)
Douglas Gregor2436e712009-09-17 21:32:03 +00003548 return;
3549
Douglas Gregor1cc88a92012-01-23 15:59:30 +00003550 ExprResult ConvertedBase = PerformMemberExprBaseConversion(Base, IsArrow);
3551 if (ConvertedBase.isInvalid())
3552 return;
3553 Base = ConvertedBase.get();
3554
John McCall276321a2010-08-25 06:19:51 +00003555 typedef CodeCompletionResult Result;
Douglas Gregor3545ff42009-09-21 16:56:56 +00003556
Douglas Gregor2436e712009-09-17 21:32:03 +00003557 QualType BaseType = Base->getType();
Douglas Gregor3545ff42009-09-21 16:56:56 +00003558
3559 if (IsArrow) {
3560 if (const PointerType *Ptr = BaseType->getAs<PointerType>())
3561 BaseType = Ptr->getPointeeType();
3562 else if (BaseType->isObjCObjectPointerType())
Douglas Gregor9be0ed42010-08-26 16:36:48 +00003563 /*Do nothing*/ ;
Douglas Gregor3545ff42009-09-21 16:56:56 +00003564 else
3565 return;
3566 }
3567
Douglas Gregor21325842011-07-07 16:03:39 +00003568 enum CodeCompletionContext::Kind contextKind;
3569
3570 if (IsArrow) {
3571 contextKind = CodeCompletionContext::CCC_ArrowMemberAccess;
3572 }
3573 else {
3574 if (BaseType->isObjCObjectPointerType() ||
3575 BaseType->isObjCObjectOrInterfaceType()) {
3576 contextKind = CodeCompletionContext::CCC_ObjCPropertyAccess;
3577 }
3578 else {
3579 contextKind = CodeCompletionContext::CCC_DotMemberAccess;
3580 }
3581 }
3582
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003583 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003584 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor21325842011-07-07 16:03:39 +00003585 CodeCompletionContext(contextKind,
Douglas Gregor0ac41382010-09-23 23:01:17 +00003586 BaseType),
3587 &ResultBuilder::IsMember);
Douglas Gregor9291bad2009-11-18 01:29:26 +00003588 Results.EnterNewScope();
3589 if (const RecordType *Record = BaseType->getAs<RecordType>()) {
Douglas Gregor9be0ed42010-08-26 16:36:48 +00003590 // Indicate that we are performing a member access, and the cv-qualifiers
3591 // for the base object type.
3592 Results.setObjectTypeQualifiers(BaseType.getQualifiers());
3593
Douglas Gregor9291bad2009-11-18 01:29:26 +00003594 // Access to a C/C++ class, struct, or union.
Douglas Gregor6ae4c522010-01-14 03:21:49 +00003595 Results.allowNestedNameSpecifiers();
Douglas Gregor09bbc652010-01-14 15:47:35 +00003596 CodeCompletionDeclConsumer Consumer(Results, CurContext);
Douglas Gregor39982192010-08-15 06:18:01 +00003597 LookupVisibleDecls(Record->getDecl(), LookupMemberName, Consumer,
3598 CodeCompleter->includeGlobals());
Daniel Dunbar242ea9a2009-11-13 08:58:20 +00003599
David Blaikiebbafb8a2012-03-11 07:00:24 +00003600 if (getLangOpts().CPlusPlus) {
Douglas Gregor9291bad2009-11-18 01:29:26 +00003601 if (!Results.empty()) {
3602 // The "template" keyword can follow "->" or "." in the grammar.
3603 // However, we only want to suggest the template keyword if something
3604 // is dependent.
3605 bool IsDependent = BaseType->isDependentType();
3606 if (!IsDependent) {
3607 for (Scope *DepScope = S; DepScope; DepScope = DepScope->getParent())
Ted Kremenekc37877d2013-10-08 17:08:03 +00003608 if (DeclContext *Ctx = DepScope->getEntity()) {
Douglas Gregor9291bad2009-11-18 01:29:26 +00003609 IsDependent = Ctx->isDependentContext();
3610 break;
3611 }
3612 }
Daniel Dunbar242ea9a2009-11-13 08:58:20 +00003613
Douglas Gregor9291bad2009-11-18 01:29:26 +00003614 if (IsDependent)
Douglas Gregor78a21012010-01-14 16:01:26 +00003615 Results.AddResult(Result("template"));
Daniel Dunbar242ea9a2009-11-13 08:58:20 +00003616 }
Daniel Dunbar242ea9a2009-11-13 08:58:20 +00003617 }
Douglas Gregor9291bad2009-11-18 01:29:26 +00003618 } else if (!IsArrow && BaseType->getAsObjCInterfacePointerType()) {
3619 // Objective-C property reference.
Douglas Gregorb888acf2010-12-09 23:01:55 +00003620 AddedPropertiesSet AddedProperties;
Douglas Gregor9291bad2009-11-18 01:29:26 +00003621
3622 // Add property results based on our interface.
3623 const ObjCObjectPointerType *ObjCPtr
3624 = BaseType->getAsObjCInterfacePointerType();
3625 assert(ObjCPtr && "Non-NULL pointer guaranteed above!");
Douglas Gregor95147142011-05-05 15:50:42 +00003626 AddObjCProperties(ObjCPtr->getInterfaceDecl(), true,
3627 /*AllowNullaryMethods=*/true, CurContext,
Douglas Gregorb888acf2010-12-09 23:01:55 +00003628 AddedProperties, Results);
Douglas Gregor9291bad2009-11-18 01:29:26 +00003629
3630 // Add properties from the protocols in a qualified interface.
3631 for (ObjCObjectPointerType::qual_iterator I = ObjCPtr->qual_begin(),
3632 E = ObjCPtr->qual_end();
3633 I != E; ++I)
Douglas Gregor95147142011-05-05 15:50:42 +00003634 AddObjCProperties(*I, true, /*AllowNullaryMethods=*/true, CurContext,
3635 AddedProperties, Results);
Douglas Gregor9291bad2009-11-18 01:29:26 +00003636 } else if ((IsArrow && BaseType->isObjCObjectPointerType()) ||
John McCall8b07ec22010-05-15 11:32:37 +00003637 (!IsArrow && BaseType->isObjCObjectType())) {
Douglas Gregor9291bad2009-11-18 01:29:26 +00003638 // Objective-C instance variable access.
3639 ObjCInterfaceDecl *Class = 0;
3640 if (const ObjCObjectPointerType *ObjCPtr
3641 = BaseType->getAs<ObjCObjectPointerType>())
3642 Class = ObjCPtr->getInterfaceDecl();
3643 else
John McCall8b07ec22010-05-15 11:32:37 +00003644 Class = BaseType->getAs<ObjCObjectType>()->getInterface();
Douglas Gregor9291bad2009-11-18 01:29:26 +00003645
3646 // Add all ivars from this class and its superclasses.
Douglas Gregor2b8162b2010-01-14 16:08:12 +00003647 if (Class) {
3648 CodeCompletionDeclConsumer Consumer(Results, CurContext);
3649 Results.setFilter(&ResultBuilder::IsObjCIvar);
Douglas Gregor39982192010-08-15 06:18:01 +00003650 LookupVisibleDecls(Class, LookupMemberName, Consumer,
3651 CodeCompleter->includeGlobals());
Douglas Gregor9291bad2009-11-18 01:29:26 +00003652 }
Douglas Gregor3545ff42009-09-21 16:56:56 +00003653 }
Douglas Gregor9291bad2009-11-18 01:29:26 +00003654
3655 // FIXME: How do we cope with isa?
3656
3657 Results.ExitScope();
Daniel Dunbar242ea9a2009-11-13 08:58:20 +00003658
Daniel Dunbar242ea9a2009-11-13 08:58:20 +00003659 // Hand off the results found for code completion.
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003660 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor0ac41382010-09-23 23:01:17 +00003661 Results.getCompletionContext(),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003662 Results.data(),Results.size());
Douglas Gregor2436e712009-09-17 21:32:03 +00003663}
3664
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00003665void Sema::CodeCompleteTag(Scope *S, unsigned TagSpec) {
3666 if (!CodeCompleter)
3667 return;
3668
Douglas Gregor3545ff42009-09-21 16:56:56 +00003669 ResultBuilder::LookupFilter Filter = 0;
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003670 enum CodeCompletionContext::Kind ContextKind
3671 = CodeCompletionContext::CCC_Other;
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00003672 switch ((DeclSpec::TST)TagSpec) {
3673 case DeclSpec::TST_enum:
Douglas Gregor3545ff42009-09-21 16:56:56 +00003674 Filter = &ResultBuilder::IsEnum;
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003675 ContextKind = CodeCompletionContext::CCC_EnumTag;
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00003676 break;
3677
3678 case DeclSpec::TST_union:
Douglas Gregor3545ff42009-09-21 16:56:56 +00003679 Filter = &ResultBuilder::IsUnion;
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003680 ContextKind = CodeCompletionContext::CCC_UnionTag;
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00003681 break;
3682
3683 case DeclSpec::TST_struct:
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00003684 case DeclSpec::TST_class:
Joao Matosdc86f942012-08-31 18:45:21 +00003685 case DeclSpec::TST_interface:
Douglas Gregor3545ff42009-09-21 16:56:56 +00003686 Filter = &ResultBuilder::IsClassOrStruct;
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003687 ContextKind = CodeCompletionContext::CCC_ClassOrStructTag;
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00003688 break;
3689
3690 default:
David Blaikie83d382b2011-09-23 05:06:16 +00003691 llvm_unreachable("Unknown type specifier kind in CodeCompleteTag");
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00003692 }
Douglas Gregor3545ff42009-09-21 16:56:56 +00003693
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003694 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
3695 CodeCompleter->getCodeCompletionTUInfo(), ContextKind);
Douglas Gregora6e2edc2010-01-14 03:27:13 +00003696 CodeCompletionDeclConsumer Consumer(Results, CurContext);
John McCalle87beb22010-04-23 18:46:30 +00003697
3698 // First pass: look for tags.
3699 Results.setFilter(Filter);
Douglas Gregor39982192010-08-15 06:18:01 +00003700 LookupVisibleDecls(S, LookupTagName, Consumer,
3701 CodeCompleter->includeGlobals());
John McCalle87beb22010-04-23 18:46:30 +00003702
Douglas Gregor39982192010-08-15 06:18:01 +00003703 if (CodeCompleter->includeGlobals()) {
3704 // Second pass: look for nested name specifiers.
3705 Results.setFilter(&ResultBuilder::IsNestedNameSpecifier);
3706 LookupVisibleDecls(S, LookupNestedNameSpecifierName, Consumer);
3707 }
Douglas Gregor3545ff42009-09-21 16:56:56 +00003708
Douglas Gregor0ac41382010-09-23 23:01:17 +00003709 HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003710 Results.data(),Results.size());
Douglas Gregorf45b0cf2009-09-18 15:37:17 +00003711}
3712
Douglas Gregor28c78432010-08-27 17:35:51 +00003713void Sema::CodeCompleteTypeQualifiers(DeclSpec &DS) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003714 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003715 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003716 CodeCompletionContext::CCC_TypeQualifiers);
Douglas Gregor28c78432010-08-27 17:35:51 +00003717 Results.EnterNewScope();
3718 if (!(DS.getTypeQualifiers() & DeclSpec::TQ_const))
3719 Results.AddResult("const");
3720 if (!(DS.getTypeQualifiers() & DeclSpec::TQ_volatile))
3721 Results.AddResult("volatile");
David Blaikiebbafb8a2012-03-11 07:00:24 +00003722 if (getLangOpts().C99 &&
Douglas Gregor28c78432010-08-27 17:35:51 +00003723 !(DS.getTypeQualifiers() & DeclSpec::TQ_restrict))
3724 Results.AddResult("restrict");
Richard Smith8e1ac332013-03-28 01:55:44 +00003725 if (getLangOpts().C11 &&
3726 !(DS.getTypeQualifiers() & DeclSpec::TQ_atomic))
3727 Results.AddResult("_Atomic");
Douglas Gregor28c78432010-08-27 17:35:51 +00003728 Results.ExitScope();
3729 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor0ac41382010-09-23 23:01:17 +00003730 Results.getCompletionContext(),
Douglas Gregor28c78432010-08-27 17:35:51 +00003731 Results.data(), Results.size());
3732}
3733
Douglas Gregord328d572009-09-21 18:10:23 +00003734void Sema::CodeCompleteCase(Scope *S) {
John McCallaab3e412010-08-25 08:40:02 +00003735 if (getCurFunction()->SwitchStack.empty() || !CodeCompleter)
Douglas Gregord328d572009-09-21 18:10:23 +00003736 return;
John McCall5939b162011-08-06 07:30:58 +00003737
John McCallaab3e412010-08-25 08:40:02 +00003738 SwitchStmt *Switch = getCurFunction()->SwitchStack.back();
John McCall5939b162011-08-06 07:30:58 +00003739 QualType type = Switch->getCond()->IgnoreImplicit()->getType();
3740 if (!type->isEnumeralType()) {
3741 CodeCompleteExpressionData Data(type);
Douglas Gregor68762e72010-08-23 21:17:50 +00003742 Data.IntegralConstantExpression = true;
3743 CodeCompleteExpression(S, Data);
Douglas Gregord328d572009-09-21 18:10:23 +00003744 return;
Douglas Gregor85b50632010-07-28 21:50:18 +00003745 }
Douglas Gregord328d572009-09-21 18:10:23 +00003746
3747 // Code-complete the cases of a switch statement over an enumeration type
3748 // by providing the list of
John McCall5939b162011-08-06 07:30:58 +00003749 EnumDecl *Enum = type->castAs<EnumType>()->getDecl();
Douglas Gregor9b4f3702012-06-12 13:44:08 +00003750 if (EnumDecl *Def = Enum->getDefinition())
3751 Enum = Def;
Douglas Gregord328d572009-09-21 18:10:23 +00003752
3753 // Determine which enumerators we have already seen in the switch statement.
3754 // FIXME: Ideally, we would also be able to look *past* the code-completion
3755 // token, in case we are code-completing in the middle of the switch and not
3756 // at the end. However, we aren't able to do so at the moment.
3757 llvm::SmallPtrSet<EnumConstantDecl *, 8> EnumeratorsSeen;
Douglas Gregorf2510672009-09-21 19:57:38 +00003758 NestedNameSpecifier *Qualifier = 0;
Douglas Gregord328d572009-09-21 18:10:23 +00003759 for (SwitchCase *SC = Switch->getSwitchCaseList(); SC;
3760 SC = SC->getNextSwitchCase()) {
3761 CaseStmt *Case = dyn_cast<CaseStmt>(SC);
3762 if (!Case)
3763 continue;
3764
3765 Expr *CaseVal = Case->getLHS()->IgnoreParenCasts();
3766 if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(CaseVal))
3767 if (EnumConstantDecl *Enumerator
3768 = dyn_cast<EnumConstantDecl>(DRE->getDecl())) {
3769 // We look into the AST of the case statement to determine which
3770 // enumerator was named. Alternatively, we could compute the value of
3771 // the integral constant expression, then compare it against the
3772 // values of each enumerator. However, value-based approach would not
3773 // work as well with C++ templates where enumerators declared within a
3774 // template are type- and value-dependent.
3775 EnumeratorsSeen.insert(Enumerator);
3776
Douglas Gregorf2510672009-09-21 19:57:38 +00003777 // If this is a qualified-id, keep track of the nested-name-specifier
3778 // so that we can reproduce it as part of code completion, e.g.,
Douglas Gregord328d572009-09-21 18:10:23 +00003779 //
3780 // switch (TagD.getKind()) {
3781 // case TagDecl::TK_enum:
3782 // break;
3783 // case XXX
3784 //
Douglas Gregorf2510672009-09-21 19:57:38 +00003785 // At the XXX, our completions are TagDecl::TK_union,
Douglas Gregord328d572009-09-21 18:10:23 +00003786 // TagDecl::TK_struct, and TagDecl::TK_class, rather than TK_union,
3787 // TK_struct, and TK_class.
Douglas Gregor4bd90e52009-10-23 18:54:35 +00003788 Qualifier = DRE->getQualifier();
Douglas Gregord328d572009-09-21 18:10:23 +00003789 }
3790 }
3791
David Blaikiebbafb8a2012-03-11 07:00:24 +00003792 if (getLangOpts().CPlusPlus && !Qualifier && EnumeratorsSeen.empty()) {
Douglas Gregorf2510672009-09-21 19:57:38 +00003793 // If there are no prior enumerators in C++, check whether we have to
3794 // qualify the names of the enumerators that we suggest, because they
3795 // may not be visible in this scope.
Douglas Gregord3cebdb2012-02-01 05:02:47 +00003796 Qualifier = getRequiredQualification(Context, CurContext, Enum);
Douglas Gregorf2510672009-09-21 19:57:38 +00003797 }
3798
Douglas Gregord328d572009-09-21 18:10:23 +00003799 // Add any enumerators that have not yet been mentioned.
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003800 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003801 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00003802 CodeCompletionContext::CCC_Expression);
Douglas Gregord328d572009-09-21 18:10:23 +00003803 Results.EnterNewScope();
3804 for (EnumDecl::enumerator_iterator E = Enum->enumerator_begin(),
3805 EEnd = Enum->enumerator_end();
3806 E != EEnd; ++E) {
David Blaikie40ed2972012-06-06 20:45:41 +00003807 if (EnumeratorsSeen.count(*E))
Douglas Gregord328d572009-09-21 18:10:23 +00003808 continue;
3809
Douglas Gregor0a0e2b32013-01-31 04:52:16 +00003810 CodeCompletionResult R(*E, CCP_EnumInCase, Qualifier);
Douglas Gregor3a69eaf2011-02-18 23:30:37 +00003811 Results.AddResult(R, CurContext, 0, false);
Douglas Gregord328d572009-09-21 18:10:23 +00003812 }
3813 Results.ExitScope();
Douglas Gregor285560922010-04-06 20:02:15 +00003814
Douglas Gregor21325842011-07-07 16:03:39 +00003815 //We need to make sure we're setting the right context,
3816 //so only say we include macros if the code completer says we do
3817 enum CodeCompletionContext::Kind kind = CodeCompletionContext::CCC_Other;
3818 if (CodeCompleter->includeMacros()) {
Douglas Gregor8cb17462012-10-09 16:01:50 +00003819 AddMacroResults(PP, Results, false);
Douglas Gregor21325842011-07-07 16:03:39 +00003820 kind = CodeCompletionContext::CCC_OtherWithMacros;
3821 }
3822
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003823 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor21325842011-07-07 16:03:39 +00003824 kind,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003825 Results.data(),Results.size());
Douglas Gregord328d572009-09-21 18:10:23 +00003826}
3827
Robert Wilhelm16e94b92013-08-09 18:02:13 +00003828static bool anyNullArguments(ArrayRef<Expr *> Args) {
Ahmed Charlesb24b9aa2012-02-25 11:00:22 +00003829 if (Args.size() && !Args.data())
Douglas Gregor6ed3eb82010-05-30 06:10:08 +00003830 return true;
Ahmed Charlesb24b9aa2012-02-25 11:00:22 +00003831
3832 for (unsigned I = 0; I != Args.size(); ++I)
Douglas Gregor6ed3eb82010-05-30 06:10:08 +00003833 if (!Args[I])
3834 return true;
Ahmed Charlesb24b9aa2012-02-25 11:00:22 +00003835
Douglas Gregor6ed3eb82010-05-30 06:10:08 +00003836 return false;
3837}
3838
Robert Wilhelm16e94b92013-08-09 18:02:13 +00003839void Sema::CodeCompleteCall(Scope *S, Expr *FnIn, ArrayRef<Expr *> Args) {
Douglas Gregorcabea402009-09-22 15:41:20 +00003840 if (!CodeCompleter)
3841 return;
Douglas Gregor3ef59522009-12-11 19:06:04 +00003842
3843 // When we're code-completing for a call, we fall back to ordinary
3844 // name code-completion whenever we can't produce specific
3845 // results. We may want to revisit this strategy in the future,
3846 // e.g., by merging the two kinds of results.
3847
Douglas Gregorcabea402009-09-22 15:41:20 +00003848 Expr *Fn = (Expr *)FnIn;
Douglas Gregor3ef59522009-12-11 19:06:04 +00003849
Douglas Gregorcabea402009-09-22 15:41:20 +00003850 // Ignore type-dependent call expressions entirely.
Ahmed Charlesb24b9aa2012-02-25 11:00:22 +00003851 if (!Fn || Fn->isTypeDependent() || anyNullArguments(Args) ||
3852 Expr::hasAnyTypeDependentArguments(Args)) {
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003853 CodeCompleteOrdinaryName(S, PCC_Expression);
Douglas Gregorcabea402009-09-22 15:41:20 +00003854 return;
Douglas Gregor3ef59522009-12-11 19:06:04 +00003855 }
Douglas Gregorcabea402009-09-22 15:41:20 +00003856
John McCall57500772009-12-16 12:17:52 +00003857 // Build an overload candidate set based on the functions we find.
John McCallbc077cf2010-02-08 23:07:23 +00003858 SourceLocation Loc = Fn->getExprLoc();
3859 OverloadCandidateSet CandidateSet(Loc);
John McCall57500772009-12-16 12:17:52 +00003860
Douglas Gregorcabea402009-09-22 15:41:20 +00003861 // FIXME: What if we're calling something that isn't a function declaration?
3862 // FIXME: What if we're calling a pseudo-destructor?
3863 // FIXME: What if we're calling a member function?
3864
Douglas Gregorff59f672010-01-21 15:46:19 +00003865 typedef CodeCompleteConsumer::OverloadCandidate ResultCandidate;
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003866 SmallVector<ResultCandidate, 8> Results;
Douglas Gregorff59f672010-01-21 15:46:19 +00003867
John McCall57500772009-12-16 12:17:52 +00003868 Expr *NakedFn = Fn->IgnoreParenCasts();
3869 if (UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(NakedFn))
Ahmed Charlesb24b9aa2012-02-25 11:00:22 +00003870 AddOverloadedCallCandidates(ULE, Args, CandidateSet,
John McCall57500772009-12-16 12:17:52 +00003871 /*PartialOverloading=*/ true);
3872 else if (DeclRefExpr *DRE = dyn_cast<DeclRefExpr>(NakedFn)) {
3873 FunctionDecl *FDecl = dyn_cast<FunctionDecl>(DRE->getDecl());
Douglas Gregorff59f672010-01-21 15:46:19 +00003874 if (FDecl) {
David Blaikiebbafb8a2012-03-11 07:00:24 +00003875 if (!getLangOpts().CPlusPlus ||
Douglas Gregor6ed3eb82010-05-30 06:10:08 +00003876 !FDecl->getType()->getAs<FunctionProtoType>())
Douglas Gregorff59f672010-01-21 15:46:19 +00003877 Results.push_back(ResultCandidate(FDecl));
3878 else
John McCallb89836b2010-01-26 01:37:31 +00003879 // FIXME: access?
Ahmed Charlesb24b9aa2012-02-25 11:00:22 +00003880 AddOverloadCandidate(FDecl, DeclAccessPair::make(FDecl, AS_none), Args,
3881 CandidateSet, false, /*PartialOverloading*/true);
Douglas Gregorff59f672010-01-21 15:46:19 +00003882 }
John McCall57500772009-12-16 12:17:52 +00003883 }
Douglas Gregorcabea402009-09-22 15:41:20 +00003884
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003885 QualType ParamType;
3886
Douglas Gregorff59f672010-01-21 15:46:19 +00003887 if (!CandidateSet.empty()) {
3888 // Sort the overload candidate set by placing the best overloads first.
Benjamin Kramerbbdd7642014-03-01 14:48:57 +00003889 std::stable_sort(
3890 CandidateSet.begin(), CandidateSet.end(),
3891 [&](const OverloadCandidate &X, const OverloadCandidate &Y) {
3892 return isBetterOverloadCandidate(*this, X, Y, Loc);
3893 });
3894
Douglas Gregorff59f672010-01-21 15:46:19 +00003895 // Add the remaining viable overload candidates as code-completion reslults.
3896 for (OverloadCandidateSet::iterator Cand = CandidateSet.begin(),
3897 CandEnd = CandidateSet.end();
3898 Cand != CandEnd; ++Cand) {
3899 if (Cand->Viable)
3900 Results.push_back(ResultCandidate(Cand->Function));
3901 }
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003902
3903 // From the viable candidates, try to determine the type of this parameter.
3904 for (unsigned I = 0, N = Results.size(); I != N; ++I) {
3905 if (const FunctionType *FType = Results[I].getFunctionType())
3906 if (const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FType))
Alp Toker9cacbab2014-01-20 20:26:09 +00003907 if (Args.size() < Proto->getNumParams()) {
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003908 if (ParamType.isNull())
Alp Toker9cacbab2014-01-20 20:26:09 +00003909 ParamType = Proto->getParamType(Args.size());
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003910 else if (!Context.hasSameUnqualifiedType(
Alp Toker9cacbab2014-01-20 20:26:09 +00003911 ParamType.getNonReferenceType(),
3912 Proto->getParamType(Args.size())
3913 .getNonReferenceType())) {
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003914 ParamType = QualType();
3915 break;
3916 }
3917 }
3918 }
3919 } else {
3920 // Try to determine the parameter type from the type of the expression
3921 // being called.
3922 QualType FunctionType = Fn->getType();
3923 if (const PointerType *Ptr = FunctionType->getAs<PointerType>())
3924 FunctionType = Ptr->getPointeeType();
3925 else if (const BlockPointerType *BlockPtr
3926 = FunctionType->getAs<BlockPointerType>())
3927 FunctionType = BlockPtr->getPointeeType();
3928 else if (const MemberPointerType *MemPtr
3929 = FunctionType->getAs<MemberPointerType>())
3930 FunctionType = MemPtr->getPointeeType();
3931
3932 if (const FunctionProtoType *Proto
3933 = FunctionType->getAs<FunctionProtoType>()) {
Alp Toker9cacbab2014-01-20 20:26:09 +00003934 if (Args.size() < Proto->getNumParams())
3935 ParamType = Proto->getParamType(Args.size());
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003936 }
Douglas Gregorcabea402009-09-22 15:41:20 +00003937 }
Douglas Gregor3ef59522009-12-11 19:06:04 +00003938
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003939 if (ParamType.isNull())
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003940 CodeCompleteOrdinaryName(S, PCC_Expression);
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003941 else
3942 CodeCompleteExpression(S, ParamType);
3943
Douglas Gregorc01890e2010-04-06 20:19:47 +00003944 if (!Results.empty())
Ahmed Charlesb24b9aa2012-02-25 11:00:22 +00003945 CodeCompleter->ProcessOverloadCandidates(*this, Args.size(), Results.data(),
Douglas Gregor3ef59522009-12-11 19:06:04 +00003946 Results.size());
Douglas Gregorcabea402009-09-22 15:41:20 +00003947}
3948
John McCall48871652010-08-21 09:40:31 +00003949void Sema::CodeCompleteInitializer(Scope *S, Decl *D) {
3950 ValueDecl *VD = dyn_cast_or_null<ValueDecl>(D);
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003951 if (!VD) {
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003952 CodeCompleteOrdinaryName(S, PCC_Expression);
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003953 return;
3954 }
3955
3956 CodeCompleteExpression(S, VD->getType());
3957}
3958
3959void Sema::CodeCompleteReturn(Scope *S) {
3960 QualType ResultType;
3961 if (isa<BlockDecl>(CurContext)) {
3962 if (BlockScopeInfo *BSI = getCurBlock())
3963 ResultType = BSI->ReturnType;
3964 } else if (FunctionDecl *Function = dyn_cast<FunctionDecl>(CurContext))
Alp Toker314cc812014-01-25 16:55:45 +00003965 ResultType = Function->getReturnType();
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003966 else if (ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(CurContext))
Alp Toker314cc812014-01-25 16:55:45 +00003967 ResultType = Method->getReturnType();
3968
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003969 if (ResultType.isNull())
Douglas Gregor00c37ef2010-08-11 21:23:17 +00003970 CodeCompleteOrdinaryName(S, PCC_Expression);
Douglas Gregor7aa6b222010-05-30 01:49:25 +00003971 else
3972 CodeCompleteExpression(S, ResultType);
3973}
3974
Douglas Gregor4ecb7202011-07-30 08:36:53 +00003975void Sema::CodeCompleteAfterIf(Scope *S) {
Douglas Gregor4ecb7202011-07-30 08:36:53 +00003976 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003977 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor4ecb7202011-07-30 08:36:53 +00003978 mapCodeCompletionContext(*this, PCC_Statement));
3979 Results.setFilter(&ResultBuilder::IsOrdinaryName);
3980 Results.EnterNewScope();
3981
3982 CodeCompletionDeclConsumer Consumer(Results, CurContext);
3983 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
3984 CodeCompleter->includeGlobals());
3985
3986 AddOrdinaryNameResults(PCC_Statement, S, *this, Results);
3987
3988 // "else" block
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00003989 CodeCompletionBuilder Builder(Results.getAllocator(),
3990 Results.getCodeCompletionTUInfo());
Douglas Gregor4ecb7202011-07-30 08:36:53 +00003991 Builder.AddTypedTextChunk("else");
Douglas Gregor3a5d6c22012-02-16 17:49:04 +00003992 if (Results.includeCodePatterns()) {
3993 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
3994 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
3995 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
3996 Builder.AddPlaceholderChunk("statements");
3997 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
3998 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
3999 }
Douglas Gregor4ecb7202011-07-30 08:36:53 +00004000 Results.AddResult(Builder.TakeString());
4001
4002 // "else if" block
4003 Builder.AddTypedTextChunk("else");
4004 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4005 Builder.AddTextChunk("if");
4006 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4007 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
David Blaikiebbafb8a2012-03-11 07:00:24 +00004008 if (getLangOpts().CPlusPlus)
Douglas Gregor4ecb7202011-07-30 08:36:53 +00004009 Builder.AddPlaceholderChunk("condition");
4010 else
4011 Builder.AddPlaceholderChunk("expression");
4012 Builder.AddChunk(CodeCompletionString::CK_RightParen);
Douglas Gregor3a5d6c22012-02-16 17:49:04 +00004013 if (Results.includeCodePatterns()) {
4014 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4015 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
4016 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
4017 Builder.AddPlaceholderChunk("statements");
4018 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
4019 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
4020 }
Douglas Gregor4ecb7202011-07-30 08:36:53 +00004021 Results.AddResult(Builder.TakeString());
4022
4023 Results.ExitScope();
4024
4025 if (S->getFnParent())
David Blaikiebbafb8a2012-03-11 07:00:24 +00004026 AddPrettyFunctionResults(PP.getLangOpts(), Results);
Douglas Gregor4ecb7202011-07-30 08:36:53 +00004027
4028 if (CodeCompleter->includeMacros())
Douglas Gregor8cb17462012-10-09 16:01:50 +00004029 AddMacroResults(PP, Results, false);
Douglas Gregor4ecb7202011-07-30 08:36:53 +00004030
4031 HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(),
4032 Results.data(),Results.size());
4033}
4034
Richard Trieu2bd04012011-09-09 02:00:50 +00004035void Sema::CodeCompleteAssignmentRHS(Scope *S, Expr *LHS) {
Douglas Gregor7aa6b222010-05-30 01:49:25 +00004036 if (LHS)
4037 CodeCompleteExpression(S, static_cast<Expr *>(LHS)->getType());
4038 else
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004039 CodeCompleteOrdinaryName(S, PCC_Expression);
Douglas Gregor7aa6b222010-05-30 01:49:25 +00004040}
4041
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00004042void Sema::CodeCompleteQualifiedId(Scope *S, CXXScopeSpec &SS,
Douglas Gregor2436e712009-09-17 21:32:03 +00004043 bool EnteringContext) {
4044 if (!SS.getScopeRep() || !CodeCompleter)
4045 return;
4046
Douglas Gregor3545ff42009-09-21 16:56:56 +00004047 DeclContext *Ctx = computeDeclContext(SS, EnteringContext);
4048 if (!Ctx)
4049 return;
Douglas Gregor800f2f02009-12-11 18:28:39 +00004050
4051 // Try to instantiate any non-dependent declaration contexts before
4052 // we look in them.
John McCall0b66eb32010-05-01 00:40:08 +00004053 if (!isDependentScopeSpecifier(SS) && RequireCompleteDeclContext(SS, Ctx))
Douglas Gregor800f2f02009-12-11 18:28:39 +00004054 return;
4055
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004056 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004057 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004058 CodeCompletionContext::CCC_Name);
Douglas Gregorac322ec2010-08-27 21:18:54 +00004059 Results.EnterNewScope();
Douglas Gregor0ac41382010-09-23 23:01:17 +00004060
Douglas Gregor3545ff42009-09-21 16:56:56 +00004061 // The "template" keyword can follow "::" in the grammar, but only
4062 // put it into the grammar if the nested-name-specifier is dependent.
Aaron Ballman4a979672014-01-03 13:56:08 +00004063 NestedNameSpecifier *NNS = SS.getScopeRep();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004064 if (!Results.empty() && NNS->isDependent())
Douglas Gregor78a21012010-01-14 16:01:26 +00004065 Results.AddResult("template");
Douglas Gregorac322ec2010-08-27 21:18:54 +00004066
4067 // Add calls to overridden virtual functions, if there are any.
4068 //
4069 // FIXME: This isn't wonderful, because we don't know whether we're actually
4070 // in a context that permits expressions. This is a general issue with
4071 // qualified-id completions.
4072 if (!EnteringContext)
4073 MaybeAddOverrideCalls(*this, Ctx, Results);
4074 Results.ExitScope();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004075
Douglas Gregorac322ec2010-08-27 21:18:54 +00004076 CodeCompletionDeclConsumer Consumer(Results, CurContext);
4077 LookupVisibleDecls(Ctx, LookupOrdinaryName, Consumer);
4078
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004079 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregorc1679ec2011-07-25 17:48:11 +00004080 Results.getCompletionContext(),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004081 Results.data(),Results.size());
Douglas Gregor2436e712009-09-17 21:32:03 +00004082}
Douglas Gregor7e90c6d2009-09-18 19:03:04 +00004083
4084void Sema::CodeCompleteUsing(Scope *S) {
4085 if (!CodeCompleter)
4086 return;
4087
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004088 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004089 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor0ac41382010-09-23 23:01:17 +00004090 CodeCompletionContext::CCC_PotentiallyQualifiedName,
4091 &ResultBuilder::IsNestedNameSpecifier);
Douglas Gregor64b12b52009-09-22 23:31:26 +00004092 Results.EnterNewScope();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004093
4094 // If we aren't in class scope, we could see the "namespace" keyword.
4095 if (!S->isClassScope())
John McCall276321a2010-08-25 06:19:51 +00004096 Results.AddResult(CodeCompletionResult("namespace"));
Douglas Gregor3545ff42009-09-21 16:56:56 +00004097
4098 // After "using", we can see anything that would start a
4099 // nested-name-specifier.
Douglas Gregora6e2edc2010-01-14 03:27:13 +00004100 CodeCompletionDeclConsumer Consumer(Results, CurContext);
Douglas Gregor39982192010-08-15 06:18:01 +00004101 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
4102 CodeCompleter->includeGlobals());
Douglas Gregor64b12b52009-09-22 23:31:26 +00004103 Results.ExitScope();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004104
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004105 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor0ac41382010-09-23 23:01:17 +00004106 CodeCompletionContext::CCC_PotentiallyQualifiedName,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004107 Results.data(),Results.size());
Douglas Gregor7e90c6d2009-09-18 19:03:04 +00004108}
4109
4110void Sema::CodeCompleteUsingDirective(Scope *S) {
4111 if (!CodeCompleter)
4112 return;
4113
Douglas Gregor3545ff42009-09-21 16:56:56 +00004114 // After "using namespace", we expect to see a namespace name or namespace
4115 // alias.
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004116 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004117 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004118 CodeCompletionContext::CCC_Namespace,
Douglas Gregor0ac41382010-09-23 23:01:17 +00004119 &ResultBuilder::IsNamespaceOrAlias);
Douglas Gregor64b12b52009-09-22 23:31:26 +00004120 Results.EnterNewScope();
Douglas Gregora6e2edc2010-01-14 03:27:13 +00004121 CodeCompletionDeclConsumer Consumer(Results, CurContext);
Douglas Gregor39982192010-08-15 06:18:01 +00004122 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
4123 CodeCompleter->includeGlobals());
Douglas Gregor64b12b52009-09-22 23:31:26 +00004124 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004125 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor39982192010-08-15 06:18:01 +00004126 CodeCompletionContext::CCC_Namespace,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004127 Results.data(),Results.size());
Douglas Gregor7e90c6d2009-09-18 19:03:04 +00004128}
4129
4130void Sema::CodeCompleteNamespaceDecl(Scope *S) {
4131 if (!CodeCompleter)
4132 return;
4133
Ted Kremenekc37877d2013-10-08 17:08:03 +00004134 DeclContext *Ctx = S->getEntity();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004135 if (!S->getParent())
4136 Ctx = Context.getTranslationUnitDecl();
4137
Douglas Gregor0ac41382010-09-23 23:01:17 +00004138 bool SuppressedGlobalResults
4139 = Ctx && !CodeCompleter->includeGlobals() && isa<TranslationUnitDecl>(Ctx);
4140
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004141 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004142 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor0ac41382010-09-23 23:01:17 +00004143 SuppressedGlobalResults
4144 ? CodeCompletionContext::CCC_Namespace
4145 : CodeCompletionContext::CCC_Other,
4146 &ResultBuilder::IsNamespace);
4147
4148 if (Ctx && Ctx->isFileContext() && !SuppressedGlobalResults) {
Douglas Gregor3545ff42009-09-21 16:56:56 +00004149 // We only want to see those namespaces that have already been defined
4150 // within this scope, because its likely that the user is creating an
4151 // extended namespace declaration. Keep track of the most recent
4152 // definition of each namespace.
4153 std::map<NamespaceDecl *, NamespaceDecl *> OrigToLatest;
4154 for (DeclContext::specific_decl_iterator<NamespaceDecl>
4155 NS(Ctx->decls_begin()), NSEnd(Ctx->decls_end());
4156 NS != NSEnd; ++NS)
David Blaikie40ed2972012-06-06 20:45:41 +00004157 OrigToLatest[NS->getOriginalNamespace()] = *NS;
Douglas Gregor3545ff42009-09-21 16:56:56 +00004158
4159 // Add the most recent definition (or extended definition) of each
4160 // namespace to the list of results.
Douglas Gregor64b12b52009-09-22 23:31:26 +00004161 Results.EnterNewScope();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004162 for (std::map<NamespaceDecl *, NamespaceDecl *>::iterator
Douglas Gregor78254c82012-03-27 23:34:16 +00004163 NS = OrigToLatest.begin(),
4164 NSEnd = OrigToLatest.end();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004165 NS != NSEnd; ++NS)
Douglas Gregor0a0e2b32013-01-31 04:52:16 +00004166 Results.AddResult(CodeCompletionResult(
4167 NS->second, Results.getBasePriority(NS->second), 0),
Douglas Gregorfc59ce12010-01-14 16:14:35 +00004168 CurContext, 0, false);
Douglas Gregor64b12b52009-09-22 23:31:26 +00004169 Results.ExitScope();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004170 }
4171
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004172 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor0ac41382010-09-23 23:01:17 +00004173 Results.getCompletionContext(),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004174 Results.data(),Results.size());
Douglas Gregor7e90c6d2009-09-18 19:03:04 +00004175}
4176
4177void Sema::CodeCompleteNamespaceAliasDecl(Scope *S) {
4178 if (!CodeCompleter)
4179 return;
4180
Douglas Gregor3545ff42009-09-21 16:56:56 +00004181 // After "namespace", we expect to see a namespace or alias.
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004182 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004183 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004184 CodeCompletionContext::CCC_Namespace,
Douglas Gregor0ac41382010-09-23 23:01:17 +00004185 &ResultBuilder::IsNamespaceOrAlias);
Douglas Gregora6e2edc2010-01-14 03:27:13 +00004186 CodeCompletionDeclConsumer Consumer(Results, CurContext);
Douglas Gregor39982192010-08-15 06:18:01 +00004187 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
4188 CodeCompleter->includeGlobals());
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004189 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor0ac41382010-09-23 23:01:17 +00004190 Results.getCompletionContext(),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004191 Results.data(),Results.size());
Douglas Gregor7e90c6d2009-09-18 19:03:04 +00004192}
4193
Douglas Gregorc811ede2009-09-18 20:05:18 +00004194void Sema::CodeCompleteOperatorName(Scope *S) {
4195 if (!CodeCompleter)
4196 return;
Douglas Gregor3545ff42009-09-21 16:56:56 +00004197
John McCall276321a2010-08-25 06:19:51 +00004198 typedef CodeCompletionResult Result;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004199 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004200 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004201 CodeCompletionContext::CCC_Type,
Douglas Gregor0ac41382010-09-23 23:01:17 +00004202 &ResultBuilder::IsType);
Douglas Gregor64b12b52009-09-22 23:31:26 +00004203 Results.EnterNewScope();
Douglas Gregorc811ede2009-09-18 20:05:18 +00004204
Douglas Gregor3545ff42009-09-21 16:56:56 +00004205 // Add the names of overloadable operators.
4206#define OVERLOADED_OPERATOR(Name,Spelling,Token,Unary,Binary,MemberOnly) \
4207 if (std::strcmp(Spelling, "?")) \
Douglas Gregor78a21012010-01-14 16:01:26 +00004208 Results.AddResult(Result(Spelling));
Douglas Gregor3545ff42009-09-21 16:56:56 +00004209#include "clang/Basic/OperatorKinds.def"
4210
4211 // Add any type names visible from the current scope
Douglas Gregor6ae4c522010-01-14 03:21:49 +00004212 Results.allowNestedNameSpecifiers();
Douglas Gregora6e2edc2010-01-14 03:27:13 +00004213 CodeCompletionDeclConsumer Consumer(Results, CurContext);
Douglas Gregor39982192010-08-15 06:18:01 +00004214 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
4215 CodeCompleter->includeGlobals());
Douglas Gregor3545ff42009-09-21 16:56:56 +00004216
4217 // Add any type specifiers
David Blaikiebbafb8a2012-03-11 07:00:24 +00004218 AddTypeSpecifierResults(getLangOpts(), Results);
Douglas Gregor64b12b52009-09-22 23:31:26 +00004219 Results.ExitScope();
Douglas Gregor3545ff42009-09-21 16:56:56 +00004220
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004221 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor39982192010-08-15 06:18:01 +00004222 CodeCompletionContext::CCC_Type,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004223 Results.data(),Results.size());
Douglas Gregorc811ede2009-09-18 20:05:18 +00004224}
Douglas Gregor7e90c6d2009-09-18 19:03:04 +00004225
Dmitri Gribenko27cb3dd02013-06-23 22:58:02 +00004226void Sema::CodeCompleteConstructorInitializer(
4227 Decl *ConstructorD,
4228 ArrayRef <CXXCtorInitializer *> Initializers) {
Douglas Gregor75acd922011-09-27 23:30:47 +00004229 PrintingPolicy Policy = getCompletionPrintingPolicy(*this);
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004230 CXXConstructorDecl *Constructor
4231 = static_cast<CXXConstructorDecl *>(ConstructorD);
4232 if (!Constructor)
4233 return;
4234
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004235 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004236 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor0ac41382010-09-23 23:01:17 +00004237 CodeCompletionContext::CCC_PotentiallyQualifiedName);
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004238 Results.EnterNewScope();
4239
4240 // Fill in any already-initialized fields or base classes.
4241 llvm::SmallPtrSet<FieldDecl *, 4> InitializedFields;
4242 llvm::SmallPtrSet<CanQualType, 4> InitializedBases;
Dmitri Gribenko27cb3dd02013-06-23 22:58:02 +00004243 for (unsigned I = 0, E = Initializers.size(); I != E; ++I) {
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004244 if (Initializers[I]->isBaseInitializer())
4245 InitializedBases.insert(
4246 Context.getCanonicalType(QualType(Initializers[I]->getBaseClass(), 0)));
4247 else
Francois Pichetd583da02010-12-04 09:14:42 +00004248 InitializedFields.insert(cast<FieldDecl>(
4249 Initializers[I]->getAnyMember()));
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004250 }
4251
4252 // Add completions for base classes.
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004253 CodeCompletionBuilder Builder(Results.getAllocator(),
4254 Results.getCodeCompletionTUInfo());
Dmitri Gribenko27cb3dd02013-06-23 22:58:02 +00004255 bool SawLastInitializer = Initializers.empty();
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004256 CXXRecordDecl *ClassDecl = Constructor->getParent();
4257 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->bases_begin(),
4258 BaseEnd = ClassDecl->bases_end();
4259 Base != BaseEnd; ++Base) {
Douglas Gregor99129ef2010-08-29 19:27:27 +00004260 if (!InitializedBases.insert(Context.getCanonicalType(Base->getType()))) {
4261 SawLastInitializer
Dmitri Gribenko27cb3dd02013-06-23 22:58:02 +00004262 = !Initializers.empty() &&
4263 Initializers.back()->isBaseInitializer() &&
Douglas Gregor99129ef2010-08-29 19:27:27 +00004264 Context.hasSameUnqualifiedType(Base->getType(),
Dmitri Gribenko27cb3dd02013-06-23 22:58:02 +00004265 QualType(Initializers.back()->getBaseClass(), 0));
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004266 continue;
Douglas Gregor99129ef2010-08-29 19:27:27 +00004267 }
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004268
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004269 Builder.AddTypedTextChunk(
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00004270 Results.getAllocator().CopyString(
John McCall31168b02011-06-15 23:02:42 +00004271 Base->getType().getAsString(Policy)));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004272 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
4273 Builder.AddPlaceholderChunk("args");
4274 Builder.AddChunk(CodeCompletionString::CK_RightParen);
4275 Results.AddResult(CodeCompletionResult(Builder.TakeString(),
Douglas Gregor99129ef2010-08-29 19:27:27 +00004276 SawLastInitializer? CCP_NextInitializer
4277 : CCP_MemberDeclaration));
4278 SawLastInitializer = false;
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004279 }
4280
4281 // Add completions for virtual base classes.
4282 for (CXXRecordDecl::base_class_iterator Base = ClassDecl->vbases_begin(),
4283 BaseEnd = ClassDecl->vbases_end();
4284 Base != BaseEnd; ++Base) {
Douglas Gregor99129ef2010-08-29 19:27:27 +00004285 if (!InitializedBases.insert(Context.getCanonicalType(Base->getType()))) {
4286 SawLastInitializer
Dmitri Gribenko27cb3dd02013-06-23 22:58:02 +00004287 = !Initializers.empty() &&
4288 Initializers.back()->isBaseInitializer() &&
Douglas Gregor99129ef2010-08-29 19:27:27 +00004289 Context.hasSameUnqualifiedType(Base->getType(),
Dmitri Gribenko27cb3dd02013-06-23 22:58:02 +00004290 QualType(Initializers.back()->getBaseClass(), 0));
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004291 continue;
Douglas Gregor99129ef2010-08-29 19:27:27 +00004292 }
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004293
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004294 Builder.AddTypedTextChunk(
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00004295 Builder.getAllocator().CopyString(
John McCall31168b02011-06-15 23:02:42 +00004296 Base->getType().getAsString(Policy)));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004297 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
4298 Builder.AddPlaceholderChunk("args");
4299 Builder.AddChunk(CodeCompletionString::CK_RightParen);
4300 Results.AddResult(CodeCompletionResult(Builder.TakeString(),
Douglas Gregor99129ef2010-08-29 19:27:27 +00004301 SawLastInitializer? CCP_NextInitializer
4302 : CCP_MemberDeclaration));
4303 SawLastInitializer = false;
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004304 }
4305
4306 // Add completions for members.
4307 for (CXXRecordDecl::field_iterator Field = ClassDecl->field_begin(),
4308 FieldEnd = ClassDecl->field_end();
4309 Field != FieldEnd; ++Field) {
Douglas Gregor99129ef2010-08-29 19:27:27 +00004310 if (!InitializedFields.insert(cast<FieldDecl>(Field->getCanonicalDecl()))) {
4311 SawLastInitializer
Dmitri Gribenko27cb3dd02013-06-23 22:58:02 +00004312 = !Initializers.empty() &&
4313 Initializers.back()->isAnyMemberInitializer() &&
4314 Initializers.back()->getAnyMember() == *Field;
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004315 continue;
Douglas Gregor99129ef2010-08-29 19:27:27 +00004316 }
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004317
4318 if (!Field->getDeclName())
4319 continue;
4320
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00004321 Builder.AddTypedTextChunk(Builder.getAllocator().CopyString(
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004322 Field->getIdentifier()->getName()));
4323 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
4324 Builder.AddPlaceholderChunk("args");
4325 Builder.AddChunk(CodeCompletionString::CK_RightParen);
4326 Results.AddResult(CodeCompletionResult(Builder.TakeString(),
Douglas Gregor99129ef2010-08-29 19:27:27 +00004327 SawLastInitializer? CCP_NextInitializer
Douglas Gregorf3af3112010-09-09 21:42:20 +00004328 : CCP_MemberDeclaration,
Douglas Gregor78254c82012-03-27 23:34:16 +00004329 CXCursor_MemberRef,
4330 CXAvailability_Available,
David Blaikie40ed2972012-06-06 20:45:41 +00004331 *Field));
Douglas Gregor99129ef2010-08-29 19:27:27 +00004332 SawLastInitializer = false;
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004333 }
4334 Results.ExitScope();
4335
Douglas Gregor0ac41382010-09-23 23:01:17 +00004336 HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(),
Douglas Gregoreaeeca92010-08-28 00:00:50 +00004337 Results.data(), Results.size());
4338}
4339
Douglas Gregord8c61782012-02-15 15:34:24 +00004340/// \brief Determine whether this scope denotes a namespace.
4341static bool isNamespaceScope(Scope *S) {
Ted Kremenekc37877d2013-10-08 17:08:03 +00004342 DeclContext *DC = S->getEntity();
Douglas Gregord8c61782012-02-15 15:34:24 +00004343 if (!DC)
4344 return false;
4345
4346 return DC->isFileContext();
4347}
4348
4349void Sema::CodeCompleteLambdaIntroducer(Scope *S, LambdaIntroducer &Intro,
4350 bool AfterAmpersand) {
4351 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004352 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregord8c61782012-02-15 15:34:24 +00004353 CodeCompletionContext::CCC_Other);
4354 Results.EnterNewScope();
4355
4356 // Note what has already been captured.
4357 llvm::SmallPtrSet<IdentifierInfo *, 4> Known;
4358 bool IncludedThis = false;
4359 for (SmallVectorImpl<LambdaCapture>::iterator C = Intro.Captures.begin(),
4360 CEnd = Intro.Captures.end();
4361 C != CEnd; ++C) {
4362 if (C->Kind == LCK_This) {
4363 IncludedThis = true;
4364 continue;
4365 }
4366
4367 Known.insert(C->Id);
4368 }
4369
4370 // Look for other capturable variables.
4371 for (; S && !isNamespaceScope(S); S = S->getParent()) {
4372 for (Scope::decl_iterator D = S->decl_begin(), DEnd = S->decl_end();
4373 D != DEnd; ++D) {
4374 VarDecl *Var = dyn_cast<VarDecl>(*D);
4375 if (!Var ||
4376 !Var->hasLocalStorage() ||
4377 Var->hasAttr<BlocksAttr>())
4378 continue;
4379
4380 if (Known.insert(Var->getIdentifier()))
Douglas Gregor0a0e2b32013-01-31 04:52:16 +00004381 Results.AddResult(CodeCompletionResult(Var, CCP_LocalDeclaration),
4382 CurContext, 0, false);
Douglas Gregord8c61782012-02-15 15:34:24 +00004383 }
4384 }
4385
4386 // Add 'this', if it would be valid.
4387 if (!IncludedThis && !AfterAmpersand && Intro.Default != LCD_ByCopy)
4388 addThisCompletion(*this, Results);
4389
4390 Results.ExitScope();
4391
4392 HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(),
4393 Results.data(), Results.size());
4394}
4395
James Dennett596e4752012-06-14 03:11:41 +00004396/// Macro that optionally prepends an "@" to the string literal passed in via
4397/// Keyword, depending on whether NeedAt is true or false.
4398#define OBJC_AT_KEYWORD_NAME(NeedAt,Keyword) ((NeedAt)? "@" Keyword : Keyword)
4399
Douglas Gregorf98e6a22010-01-13 23:51:12 +00004400static void AddObjCImplementationResults(const LangOptions &LangOpts,
Douglas Gregorf1934162010-01-13 21:24:21 +00004401 ResultBuilder &Results,
4402 bool NeedAt) {
John McCall276321a2010-08-25 06:19:51 +00004403 typedef CodeCompletionResult Result;
Douglas Gregorf1934162010-01-13 21:24:21 +00004404 // Since we have an implementation, we can end it.
James Dennett596e4752012-06-14 03:11:41 +00004405 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"end")));
Douglas Gregorf1934162010-01-13 21:24:21 +00004406
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004407 CodeCompletionBuilder Builder(Results.getAllocator(),
4408 Results.getCodeCompletionTUInfo());
Douglas Gregorf1934162010-01-13 21:24:21 +00004409 if (LangOpts.ObjC2) {
4410 // @dynamic
James Dennett596e4752012-06-14 03:11:41 +00004411 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"dynamic"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004412 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4413 Builder.AddPlaceholderChunk("property");
4414 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf1934162010-01-13 21:24:21 +00004415
4416 // @synthesize
James Dennett596e4752012-06-14 03:11:41 +00004417 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"synthesize"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004418 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4419 Builder.AddPlaceholderChunk("property");
4420 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf1934162010-01-13 21:24:21 +00004421 }
4422}
4423
Douglas Gregorf98e6a22010-01-13 23:51:12 +00004424static void AddObjCInterfaceResults(const LangOptions &LangOpts,
Douglas Gregorf1934162010-01-13 21:24:21 +00004425 ResultBuilder &Results,
4426 bool NeedAt) {
John McCall276321a2010-08-25 06:19:51 +00004427 typedef CodeCompletionResult Result;
Douglas Gregorf1934162010-01-13 21:24:21 +00004428
4429 // Since we have an interface or protocol, we can end it.
James Dennett596e4752012-06-14 03:11:41 +00004430 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"end")));
Douglas Gregorf1934162010-01-13 21:24:21 +00004431
4432 if (LangOpts.ObjC2) {
4433 // @property
James Dennett596e4752012-06-14 03:11:41 +00004434 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"property")));
Douglas Gregorf1934162010-01-13 21:24:21 +00004435
4436 // @required
James Dennett596e4752012-06-14 03:11:41 +00004437 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"required")));
Douglas Gregorf1934162010-01-13 21:24:21 +00004438
4439 // @optional
James Dennett596e4752012-06-14 03:11:41 +00004440 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"optional")));
Douglas Gregorf1934162010-01-13 21:24:21 +00004441 }
4442}
4443
Douglas Gregorf98e6a22010-01-13 23:51:12 +00004444static void AddObjCTopLevelResults(ResultBuilder &Results, bool NeedAt) {
John McCall276321a2010-08-25 06:19:51 +00004445 typedef CodeCompletionResult Result;
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004446 CodeCompletionBuilder Builder(Results.getAllocator(),
4447 Results.getCodeCompletionTUInfo());
Douglas Gregorf1934162010-01-13 21:24:21 +00004448
4449 // @class name ;
James Dennett596e4752012-06-14 03:11:41 +00004450 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"class"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004451 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4452 Builder.AddPlaceholderChunk("name");
4453 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf1934162010-01-13 21:24:21 +00004454
Douglas Gregorf4c33342010-05-28 00:22:41 +00004455 if (Results.includeCodePatterns()) {
4456 // @interface name
4457 // FIXME: Could introduce the whole pattern, including superclasses and
4458 // such.
James Dennett596e4752012-06-14 03:11:41 +00004459 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"interface"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004460 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4461 Builder.AddPlaceholderChunk("class");
4462 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf1934162010-01-13 21:24:21 +00004463
Douglas Gregorf4c33342010-05-28 00:22:41 +00004464 // @protocol name
James Dennett596e4752012-06-14 03:11:41 +00004465 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"protocol"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004466 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4467 Builder.AddPlaceholderChunk("protocol");
4468 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf4c33342010-05-28 00:22:41 +00004469
4470 // @implementation name
James Dennett596e4752012-06-14 03:11:41 +00004471 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"implementation"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004472 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4473 Builder.AddPlaceholderChunk("class");
4474 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf4c33342010-05-28 00:22:41 +00004475 }
Douglas Gregorf1934162010-01-13 21:24:21 +00004476
4477 // @compatibility_alias name
James Dennett596e4752012-06-14 03:11:41 +00004478 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"compatibility_alias"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004479 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4480 Builder.AddPlaceholderChunk("alias");
4481 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4482 Builder.AddPlaceholderChunk("class");
4483 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregor61e36812013-03-07 23:26:24 +00004484
4485 if (Results.getSema().getLangOpts().Modules) {
4486 // @import name
4487 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt, "import"));
4488 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4489 Builder.AddPlaceholderChunk("module");
4490 Results.AddResult(Result(Builder.TakeString()));
4491 }
Douglas Gregorf1934162010-01-13 21:24:21 +00004492}
4493
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00004494void Sema::CodeCompleteObjCAtDirective(Scope *S) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004495 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004496 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004497 CodeCompletionContext::CCC_Other);
Douglas Gregorf48706c2009-12-07 09:27:33 +00004498 Results.EnterNewScope();
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00004499 if (isa<ObjCImplDecl>(CurContext))
David Blaikiebbafb8a2012-03-11 07:00:24 +00004500 AddObjCImplementationResults(getLangOpts(), Results, false);
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00004501 else if (CurContext->isObjCContainer())
David Blaikiebbafb8a2012-03-11 07:00:24 +00004502 AddObjCInterfaceResults(getLangOpts(), Results, false);
Douglas Gregorf1934162010-01-13 21:24:21 +00004503 else
Douglas Gregorf98e6a22010-01-13 23:51:12 +00004504 AddObjCTopLevelResults(Results, false);
Douglas Gregorf48706c2009-12-07 09:27:33 +00004505 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004506 HandleCodeCompleteResults(this, CodeCompleter,
4507 CodeCompletionContext::CCC_Other,
4508 Results.data(),Results.size());
Douglas Gregorf48706c2009-12-07 09:27:33 +00004509}
4510
Douglas Gregorf98e6a22010-01-13 23:51:12 +00004511static void AddObjCExpressionResults(ResultBuilder &Results, bool NeedAt) {
John McCall276321a2010-08-25 06:19:51 +00004512 typedef CodeCompletionResult Result;
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004513 CodeCompletionBuilder Builder(Results.getAllocator(),
4514 Results.getCodeCompletionTUInfo());
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004515
4516 // @encode ( type-name )
Douglas Gregore5c79d52011-10-18 21:20:17 +00004517 const char *EncodeType = "char[]";
David Blaikiebbafb8a2012-03-11 07:00:24 +00004518 if (Results.getSema().getLangOpts().CPlusPlus ||
4519 Results.getSema().getLangOpts().ConstStrings)
Jordan Rose9da05852012-06-15 18:19:56 +00004520 EncodeType = "const char[]";
Douglas Gregore5c79d52011-10-18 21:20:17 +00004521 Builder.AddResultTypeChunk(EncodeType);
James Dennett596e4752012-06-14 03:11:41 +00004522 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"encode"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004523 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
4524 Builder.AddPlaceholderChunk("type-name");
4525 Builder.AddChunk(CodeCompletionString::CK_RightParen);
4526 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004527
4528 // @protocol ( protocol-name )
Douglas Gregore5c79d52011-10-18 21:20:17 +00004529 Builder.AddResultTypeChunk("Protocol *");
James Dennett596e4752012-06-14 03:11:41 +00004530 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"protocol"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004531 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
4532 Builder.AddPlaceholderChunk("protocol-name");
4533 Builder.AddChunk(CodeCompletionString::CK_RightParen);
4534 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004535
4536 // @selector ( selector )
Douglas Gregore5c79d52011-10-18 21:20:17 +00004537 Builder.AddResultTypeChunk("SEL");
James Dennett596e4752012-06-14 03:11:41 +00004538 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"selector"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004539 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
4540 Builder.AddPlaceholderChunk("selector");
4541 Builder.AddChunk(CodeCompletionString::CK_RightParen);
4542 Results.AddResult(Result(Builder.TakeString()));
Jordan Rose9da05852012-06-15 18:19:56 +00004543
4544 // @"string"
4545 Builder.AddResultTypeChunk("NSString *");
4546 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"\""));
4547 Builder.AddPlaceholderChunk("string");
4548 Builder.AddTextChunk("\"");
4549 Results.AddResult(Result(Builder.TakeString()));
4550
Douglas Gregor951de302012-07-17 23:24:47 +00004551 // @[objects, ...]
Jordan Rose9da05852012-06-15 18:19:56 +00004552 Builder.AddResultTypeChunk("NSArray *");
James Dennett596e4752012-06-14 03:11:41 +00004553 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"["));
Ted Kremeneke65b0862012-03-06 20:05:56 +00004554 Builder.AddPlaceholderChunk("objects, ...");
Ted Kremeneke65b0862012-03-06 20:05:56 +00004555 Builder.AddChunk(CodeCompletionString::CK_RightBracket);
4556 Results.AddResult(Result(Builder.TakeString()));
4557
Douglas Gregor951de302012-07-17 23:24:47 +00004558 // @{key : object, ...}
Jordan Rose9da05852012-06-15 18:19:56 +00004559 Builder.AddResultTypeChunk("NSDictionary *");
James Dennett596e4752012-06-14 03:11:41 +00004560 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"{"));
Ted Kremeneke65b0862012-03-06 20:05:56 +00004561 Builder.AddPlaceholderChunk("key");
Ted Kremeneke65b0862012-03-06 20:05:56 +00004562 Builder.AddChunk(CodeCompletionString::CK_Colon);
4563 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4564 Builder.AddPlaceholderChunk("object, ...");
Ted Kremeneke65b0862012-03-06 20:05:56 +00004565 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
4566 Results.AddResult(Result(Builder.TakeString()));
Jordan Rose9da05852012-06-15 18:19:56 +00004567
Douglas Gregor951de302012-07-17 23:24:47 +00004568 // @(expression)
Jordan Rose9da05852012-06-15 18:19:56 +00004569 Builder.AddResultTypeChunk("id");
4570 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt, "("));
Jordan Rose9da05852012-06-15 18:19:56 +00004571 Builder.AddPlaceholderChunk("expression");
Jordan Rose9da05852012-06-15 18:19:56 +00004572 Builder.AddChunk(CodeCompletionString::CK_RightParen);
4573 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004574}
4575
Douglas Gregorf98e6a22010-01-13 23:51:12 +00004576static void AddObjCStatementResults(ResultBuilder &Results, bool NeedAt) {
John McCall276321a2010-08-25 06:19:51 +00004577 typedef CodeCompletionResult Result;
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004578 CodeCompletionBuilder Builder(Results.getAllocator(),
4579 Results.getCodeCompletionTUInfo());
Douglas Gregorf1934162010-01-13 21:24:21 +00004580
Douglas Gregorf4c33342010-05-28 00:22:41 +00004581 if (Results.includeCodePatterns()) {
4582 // @try { statements } @catch ( declaration ) { statements } @finally
4583 // { statements }
James Dennett596e4752012-06-14 03:11:41 +00004584 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"try"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004585 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
4586 Builder.AddPlaceholderChunk("statements");
4587 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
4588 Builder.AddTextChunk("@catch");
4589 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
4590 Builder.AddPlaceholderChunk("parameter");
4591 Builder.AddChunk(CodeCompletionString::CK_RightParen);
4592 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
4593 Builder.AddPlaceholderChunk("statements");
4594 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
4595 Builder.AddTextChunk("@finally");
4596 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
4597 Builder.AddPlaceholderChunk("statements");
4598 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
4599 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf4c33342010-05-28 00:22:41 +00004600 }
Douglas Gregorf1934162010-01-13 21:24:21 +00004601
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004602 // @throw
James Dennett596e4752012-06-14 03:11:41 +00004603 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"throw"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004604 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4605 Builder.AddPlaceholderChunk("expression");
4606 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf1934162010-01-13 21:24:21 +00004607
Douglas Gregorf4c33342010-05-28 00:22:41 +00004608 if (Results.includeCodePatterns()) {
4609 // @synchronized ( expression ) { statements }
James Dennett596e4752012-06-14 03:11:41 +00004610 Builder.AddTypedTextChunk(OBJC_AT_KEYWORD_NAME(NeedAt,"synchronized"));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004611 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
4612 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
4613 Builder.AddPlaceholderChunk("expression");
4614 Builder.AddChunk(CodeCompletionString::CK_RightParen);
4615 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
4616 Builder.AddPlaceholderChunk("statements");
4617 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
4618 Results.AddResult(Result(Builder.TakeString()));
Douglas Gregorf4c33342010-05-28 00:22:41 +00004619 }
Douglas Gregorf1934162010-01-13 21:24:21 +00004620}
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004621
Douglas Gregorf98e6a22010-01-13 23:51:12 +00004622static void AddObjCVisibilityResults(const LangOptions &LangOpts,
Douglas Gregor48d46252010-01-13 21:54:15 +00004623 ResultBuilder &Results,
4624 bool NeedAt) {
John McCall276321a2010-08-25 06:19:51 +00004625 typedef CodeCompletionResult Result;
James Dennett596e4752012-06-14 03:11:41 +00004626 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"private")));
4627 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"protected")));
4628 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"public")));
Douglas Gregor48d46252010-01-13 21:54:15 +00004629 if (LangOpts.ObjC2)
James Dennett596e4752012-06-14 03:11:41 +00004630 Results.AddResult(Result(OBJC_AT_KEYWORD_NAME(NeedAt,"package")));
Douglas Gregor48d46252010-01-13 21:54:15 +00004631}
4632
4633void Sema::CodeCompleteObjCAtVisibility(Scope *S) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004634 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004635 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004636 CodeCompletionContext::CCC_Other);
Douglas Gregor48d46252010-01-13 21:54:15 +00004637 Results.EnterNewScope();
David Blaikiebbafb8a2012-03-11 07:00:24 +00004638 AddObjCVisibilityResults(getLangOpts(), Results, false);
Douglas Gregor48d46252010-01-13 21:54:15 +00004639 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004640 HandleCodeCompleteResults(this, CodeCompleter,
4641 CodeCompletionContext::CCC_Other,
4642 Results.data(),Results.size());
Douglas Gregor48d46252010-01-13 21:54:15 +00004643}
4644
4645void Sema::CodeCompleteObjCAtStatement(Scope *S) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004646 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004647 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004648 CodeCompletionContext::CCC_Other);
Douglas Gregorf1934162010-01-13 21:24:21 +00004649 Results.EnterNewScope();
Douglas Gregorf98e6a22010-01-13 23:51:12 +00004650 AddObjCStatementResults(Results, false);
4651 AddObjCExpressionResults(Results, false);
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004652 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004653 HandleCodeCompleteResults(this, CodeCompleter,
4654 CodeCompletionContext::CCC_Other,
4655 Results.data(),Results.size());
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004656}
4657
4658void Sema::CodeCompleteObjCAtExpression(Scope *S) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004659 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004660 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004661 CodeCompletionContext::CCC_Other);
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004662 Results.EnterNewScope();
Douglas Gregorf98e6a22010-01-13 23:51:12 +00004663 AddObjCExpressionResults(Results, false);
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004664 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004665 HandleCodeCompleteResults(this, CodeCompleter,
4666 CodeCompletionContext::CCC_Other,
4667 Results.data(),Results.size());
Douglas Gregorbc7c5e42009-12-07 09:51:25 +00004668}
4669
Douglas Gregore6078da2009-11-19 00:14:45 +00004670/// \brief Determine whether the addition of the given flag to an Objective-C
4671/// property's attributes will cause a conflict.
Bill Wendling44426052012-12-20 19:22:21 +00004672static bool ObjCPropertyFlagConflicts(unsigned Attributes, unsigned NewFlag) {
Douglas Gregore6078da2009-11-19 00:14:45 +00004673 // Check if we've already added this flag.
Bill Wendling44426052012-12-20 19:22:21 +00004674 if (Attributes & NewFlag)
Douglas Gregore6078da2009-11-19 00:14:45 +00004675 return true;
4676
Bill Wendling44426052012-12-20 19:22:21 +00004677 Attributes |= NewFlag;
Douglas Gregore6078da2009-11-19 00:14:45 +00004678
4679 // Check for collisions with "readonly".
Bill Wendling44426052012-12-20 19:22:21 +00004680 if ((Attributes & ObjCDeclSpec::DQ_PR_readonly) &&
4681 (Attributes & ObjCDeclSpec::DQ_PR_readwrite))
Douglas Gregore6078da2009-11-19 00:14:45 +00004682 return true;
4683
Jordan Rose53cb2f32012-08-20 20:01:13 +00004684 // Check for more than one of { assign, copy, retain, strong, weak }.
Bill Wendling44426052012-12-20 19:22:21 +00004685 unsigned AssignCopyRetMask = Attributes & (ObjCDeclSpec::DQ_PR_assign |
John McCall31168b02011-06-15 23:02:42 +00004686 ObjCDeclSpec::DQ_PR_unsafe_unretained |
Douglas Gregore6078da2009-11-19 00:14:45 +00004687 ObjCDeclSpec::DQ_PR_copy |
Jordan Rose53cb2f32012-08-20 20:01:13 +00004688 ObjCDeclSpec::DQ_PR_retain |
4689 ObjCDeclSpec::DQ_PR_strong |
4690 ObjCDeclSpec::DQ_PR_weak);
Douglas Gregore6078da2009-11-19 00:14:45 +00004691 if (AssignCopyRetMask &&
4692 AssignCopyRetMask != ObjCDeclSpec::DQ_PR_assign &&
John McCall31168b02011-06-15 23:02:42 +00004693 AssignCopyRetMask != ObjCDeclSpec::DQ_PR_unsafe_unretained &&
Douglas Gregore6078da2009-11-19 00:14:45 +00004694 AssignCopyRetMask != ObjCDeclSpec::DQ_PR_copy &&
John McCall31168b02011-06-15 23:02:42 +00004695 AssignCopyRetMask != ObjCDeclSpec::DQ_PR_retain &&
Jordan Rose53cb2f32012-08-20 20:01:13 +00004696 AssignCopyRetMask != ObjCDeclSpec::DQ_PR_strong &&
4697 AssignCopyRetMask != ObjCDeclSpec::DQ_PR_weak)
Douglas Gregore6078da2009-11-19 00:14:45 +00004698 return true;
4699
4700 return false;
4701}
4702
Douglas Gregor36029f42009-11-18 23:08:07 +00004703void Sema::CodeCompleteObjCPropertyFlags(Scope *S, ObjCDeclSpec &ODS) {
Steve Naroff936354c2009-10-08 21:55:05 +00004704 if (!CodeCompleter)
4705 return;
Douglas Gregor1b605f72009-11-19 01:08:35 +00004706
Bill Wendling44426052012-12-20 19:22:21 +00004707 unsigned Attributes = ODS.getPropertyAttributes();
Steve Naroff936354c2009-10-08 21:55:05 +00004708
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004709 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004710 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004711 CodeCompletionContext::CCC_Other);
Steve Naroff936354c2009-10-08 21:55:05 +00004712 Results.EnterNewScope();
Bill Wendling44426052012-12-20 19:22:21 +00004713 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_readonly))
John McCall276321a2010-08-25 06:19:51 +00004714 Results.AddResult(CodeCompletionResult("readonly"));
Bill Wendling44426052012-12-20 19:22:21 +00004715 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_assign))
John McCall276321a2010-08-25 06:19:51 +00004716 Results.AddResult(CodeCompletionResult("assign"));
Bill Wendling44426052012-12-20 19:22:21 +00004717 if (!ObjCPropertyFlagConflicts(Attributes,
John McCall31168b02011-06-15 23:02:42 +00004718 ObjCDeclSpec::DQ_PR_unsafe_unretained))
4719 Results.AddResult(CodeCompletionResult("unsafe_unretained"));
Bill Wendling44426052012-12-20 19:22:21 +00004720 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_readwrite))
John McCall276321a2010-08-25 06:19:51 +00004721 Results.AddResult(CodeCompletionResult("readwrite"));
Bill Wendling44426052012-12-20 19:22:21 +00004722 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_retain))
John McCall276321a2010-08-25 06:19:51 +00004723 Results.AddResult(CodeCompletionResult("retain"));
Bill Wendling44426052012-12-20 19:22:21 +00004724 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_strong))
John McCall31168b02011-06-15 23:02:42 +00004725 Results.AddResult(CodeCompletionResult("strong"));
Bill Wendling44426052012-12-20 19:22:21 +00004726 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_copy))
John McCall276321a2010-08-25 06:19:51 +00004727 Results.AddResult(CodeCompletionResult("copy"));
Bill Wendling44426052012-12-20 19:22:21 +00004728 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_nonatomic))
John McCall276321a2010-08-25 06:19:51 +00004729 Results.AddResult(CodeCompletionResult("nonatomic"));
Bill Wendling44426052012-12-20 19:22:21 +00004730 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_atomic))
Fariborz Jahanian1c2d29e2011-06-11 17:14:27 +00004731 Results.AddResult(CodeCompletionResult("atomic"));
Jordan Rose53cb2f32012-08-20 20:01:13 +00004732
4733 // Only suggest "weak" if we're compiling for ARC-with-weak-references or GC.
John McCall3deb1ad2012-08-21 02:47:43 +00004734 if (getLangOpts().ObjCARCWeak || getLangOpts().getGC() != LangOptions::NonGC)
Bill Wendling44426052012-12-20 19:22:21 +00004735 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_weak))
Jordan Rose53cb2f32012-08-20 20:01:13 +00004736 Results.AddResult(CodeCompletionResult("weak"));
4737
Bill Wendling44426052012-12-20 19:22:21 +00004738 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_setter)) {
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004739 CodeCompletionBuilder Setter(Results.getAllocator(),
4740 Results.getCodeCompletionTUInfo());
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004741 Setter.AddTypedTextChunk("setter");
Argyrios Kyrtzidis7bbb8812014-02-20 07:55:15 +00004742 Setter.AddTextChunk("=");
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004743 Setter.AddPlaceholderChunk("method");
4744 Results.AddResult(CodeCompletionResult(Setter.TakeString()));
Douglas Gregor45f83ee2009-11-19 00:01:57 +00004745 }
Bill Wendling44426052012-12-20 19:22:21 +00004746 if (!ObjCPropertyFlagConflicts(Attributes, ObjCDeclSpec::DQ_PR_getter)) {
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004747 CodeCompletionBuilder Getter(Results.getAllocator(),
4748 Results.getCodeCompletionTUInfo());
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004749 Getter.AddTypedTextChunk("getter");
Argyrios Kyrtzidis7bbb8812014-02-20 07:55:15 +00004750 Getter.AddTextChunk("=");
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004751 Getter.AddPlaceholderChunk("method");
4752 Results.AddResult(CodeCompletionResult(Getter.TakeString()));
Douglas Gregor45f83ee2009-11-19 00:01:57 +00004753 }
Steve Naroff936354c2009-10-08 21:55:05 +00004754 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004755 HandleCodeCompleteResults(this, CodeCompleter,
4756 CodeCompletionContext::CCC_Other,
4757 Results.data(),Results.size());
Steve Naroff936354c2009-10-08 21:55:05 +00004758}
Steve Naroffeae65032009-11-07 02:08:14 +00004759
James Dennettf1243872012-06-17 05:33:25 +00004760/// \brief Describes the kind of Objective-C method that we want to find
Douglas Gregorc8537c52009-11-19 07:41:15 +00004761/// via code completion.
4762enum ObjCMethodKind {
Dmitri Gribenko4280e5c2012-06-08 23:13:42 +00004763 MK_Any, ///< Any kind of method, provided it means other specified criteria.
4764 MK_ZeroArgSelector, ///< Zero-argument (unary) selector.
4765 MK_OneArgSelector ///< One-argument selector.
Douglas Gregorc8537c52009-11-19 07:41:15 +00004766};
4767
Douglas Gregor67c692c2010-08-26 15:07:07 +00004768static bool isAcceptableObjCSelector(Selector Sel,
4769 ObjCMethodKind WantKind,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004770 ArrayRef<IdentifierInfo *> SelIdents,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00004771 bool AllowSameLength = true) {
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004772 unsigned NumSelIdents = SelIdents.size();
Douglas Gregor67c692c2010-08-26 15:07:07 +00004773 if (NumSelIdents > Sel.getNumArgs())
4774 return false;
4775
4776 switch (WantKind) {
4777 case MK_Any: break;
4778 case MK_ZeroArgSelector: return Sel.isUnarySelector();
4779 case MK_OneArgSelector: return Sel.getNumArgs() == 1;
4780 }
4781
Douglas Gregorb4a7c032010-11-17 21:36:08 +00004782 if (!AllowSameLength && NumSelIdents && NumSelIdents == Sel.getNumArgs())
4783 return false;
4784
Douglas Gregor67c692c2010-08-26 15:07:07 +00004785 for (unsigned I = 0; I != NumSelIdents; ++I)
4786 if (SelIdents[I] != Sel.getIdentifierInfoForSlot(I))
4787 return false;
4788
4789 return true;
4790}
4791
Douglas Gregorc8537c52009-11-19 07:41:15 +00004792static bool isAcceptableObjCMethod(ObjCMethodDecl *Method,
4793 ObjCMethodKind WantKind,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004794 ArrayRef<IdentifierInfo *> SelIdents,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00004795 bool AllowSameLength = true) {
Douglas Gregor67c692c2010-08-26 15:07:07 +00004796 return isAcceptableObjCSelector(Method->getSelector(), WantKind, SelIdents,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004797 AllowSameLength);
Douglas Gregorc8537c52009-11-19 07:41:15 +00004798}
Douglas Gregor1154e272010-09-16 16:06:31 +00004799
4800namespace {
4801 /// \brief A set of selectors, which is used to avoid introducing multiple
4802 /// completions with the same selector into the result set.
4803 typedef llvm::SmallPtrSet<Selector, 16> VisitedSelectorSet;
4804}
4805
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00004806/// \brief Add all of the Objective-C methods in the given Objective-C
4807/// container to the set of results.
4808///
4809/// The container will be a class, protocol, category, or implementation of
4810/// any of the above. This mether will recurse to include methods from
4811/// the superclasses of classes along with their categories, protocols, and
4812/// implementations.
4813///
4814/// \param Container the container in which we'll look to find methods.
4815///
James Dennett596e4752012-06-14 03:11:41 +00004816/// \param WantInstanceMethods Whether to add instance methods (only); if
4817/// false, this routine will add factory methods (only).
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00004818///
4819/// \param CurContext the context in which we're performing the lookup that
4820/// finds methods.
4821///
Douglas Gregorb4a7c032010-11-17 21:36:08 +00004822/// \param AllowSameLength Whether we allow a method to be added to the list
4823/// when it has the same number of parameters as we have selector identifiers.
4824///
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00004825/// \param Results the structure into which we'll add results.
4826static void AddObjCMethods(ObjCContainerDecl *Container,
4827 bool WantInstanceMethods,
Douglas Gregorc8537c52009-11-19 07:41:15 +00004828 ObjCMethodKind WantKind,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004829 ArrayRef<IdentifierInfo *> SelIdents,
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00004830 DeclContext *CurContext,
Douglas Gregor1154e272010-09-16 16:06:31 +00004831 VisitedSelectorSet &Selectors,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00004832 bool AllowSameLength,
Douglas Gregor416b5752010-08-25 01:08:01 +00004833 ResultBuilder &Results,
4834 bool InOriginalClass = true) {
John McCall276321a2010-08-25 06:19:51 +00004835 typedef CodeCompletionResult Result;
Douglas Gregor9b4f3702012-06-12 13:44:08 +00004836 Container = getContainerDef(Container);
Douglas Gregor41778c32013-01-30 06:58:39 +00004837 ObjCInterfaceDecl *IFace = dyn_cast<ObjCInterfaceDecl>(Container);
4838 bool isRootClass = IFace && !IFace->getSuperClass();
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00004839 for (ObjCContainerDecl::method_iterator M = Container->meth_begin(),
4840 MEnd = Container->meth_end();
4841 M != MEnd; ++M) {
Douglas Gregor41778c32013-01-30 06:58:39 +00004842 // The instance methods on the root class can be messaged via the
4843 // metaclass.
4844 if (M->isInstanceMethod() == WantInstanceMethods ||
4845 (isRootClass && !WantInstanceMethods)) {
Douglas Gregor1b605f72009-11-19 01:08:35 +00004846 // Check whether the selector identifiers we've been given are a
4847 // subset of the identifiers for this particular method.
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004848 if (!isAcceptableObjCMethod(*M, WantKind, SelIdents, AllowSameLength))
Douglas Gregor1b605f72009-11-19 01:08:35 +00004849 continue;
Douglas Gregorc8537c52009-11-19 07:41:15 +00004850
David Blaikie2d7c57e2012-04-30 02:36:29 +00004851 if (!Selectors.insert(M->getSelector()))
Douglas Gregor1154e272010-09-16 16:06:31 +00004852 continue;
4853
Douglas Gregor0a0e2b32013-01-31 04:52:16 +00004854 Result R = Result(*M, Results.getBasePriority(*M), 0);
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004855 R.StartParameter = SelIdents.size();
Douglas Gregorc8537c52009-11-19 07:41:15 +00004856 R.AllParametersAreInformative = (WantKind != MK_Any);
Douglas Gregor416b5752010-08-25 01:08:01 +00004857 if (!InOriginalClass)
4858 R.Priority += CCD_InBaseClass;
Douglas Gregor1b605f72009-11-19 01:08:35 +00004859 Results.MaybeAddResult(R, CurContext);
4860 }
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00004861 }
4862
Douglas Gregorf37c9492010-09-16 15:34:59 +00004863 // Visit the protocols of protocols.
4864 if (ObjCProtocolDecl *Protocol = dyn_cast<ObjCProtocolDecl>(Container)) {
Douglas Gregore6e48b12012-01-01 19:29:29 +00004865 if (Protocol->hasDefinition()) {
4866 const ObjCList<ObjCProtocolDecl> &Protocols
4867 = Protocol->getReferencedProtocols();
4868 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
4869 E = Protocols.end();
4870 I != E; ++I)
4871 AddObjCMethods(*I, WantInstanceMethods, WantKind, SelIdents,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004872 CurContext, Selectors, AllowSameLength, Results, false);
Douglas Gregore6e48b12012-01-01 19:29:29 +00004873 }
Douglas Gregorf37c9492010-09-16 15:34:59 +00004874 }
4875
Douglas Gregorc0ac7d62011-12-15 05:27:12 +00004876 if (!IFace || !IFace->hasDefinition())
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00004877 return;
4878
4879 // Add methods in protocols.
Argyrios Kyrtzidise7f3ef32012-03-13 01:09:41 +00004880 for (ObjCInterfaceDecl::protocol_iterator I = IFace->protocol_begin(),
4881 E = IFace->protocol_end();
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00004882 I != E; ++I)
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004883 AddObjCMethods(*I, WantInstanceMethods, WantKind, SelIdents,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00004884 CurContext, Selectors, AllowSameLength, Results, false);
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00004885
4886 // Add methods in categories.
Douglas Gregor048fbfa2013-01-16 23:00:23 +00004887 for (ObjCInterfaceDecl::known_categories_iterator
4888 Cat = IFace->known_categories_begin(),
4889 CatEnd = IFace->known_categories_end();
4890 Cat != CatEnd; ++Cat) {
4891 ObjCCategoryDecl *CatDecl = *Cat;
4892
4893 AddObjCMethods(CatDecl, WantInstanceMethods, WantKind, SelIdents,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004894 CurContext, Selectors, AllowSameLength,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00004895 Results, InOriginalClass);
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00004896
4897 // Add a categories protocol methods.
4898 const ObjCList<ObjCProtocolDecl> &Protocols
4899 = CatDecl->getReferencedProtocols();
4900 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
4901 E = Protocols.end();
4902 I != E; ++I)
Douglas Gregorc8537c52009-11-19 07:41:15 +00004903 AddObjCMethods(*I, WantInstanceMethods, WantKind, SelIdents,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004904 CurContext, Selectors, AllowSameLength,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00004905 Results, false);
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00004906
4907 // Add methods in category implementations.
4908 if (ObjCCategoryImplDecl *Impl = CatDecl->getImplementation())
Douglas Gregorc8537c52009-11-19 07:41:15 +00004909 AddObjCMethods(Impl, WantInstanceMethods, WantKind, SelIdents,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004910 CurContext, Selectors, AllowSameLength,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00004911 Results, InOriginalClass);
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00004912 }
4913
4914 // Add methods in superclass.
4915 if (IFace->getSuperClass())
Douglas Gregorc8537c52009-11-19 07:41:15 +00004916 AddObjCMethods(IFace->getSuperClass(), WantInstanceMethods, WantKind,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004917 SelIdents, CurContext, Selectors,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00004918 AllowSameLength, Results, false);
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00004919
4920 // Add methods in our implementation, if any.
4921 if (ObjCImplementationDecl *Impl = IFace->getImplementation())
Douglas Gregorc8537c52009-11-19 07:41:15 +00004922 AddObjCMethods(Impl, WantInstanceMethods, WantKind, SelIdents,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004923 CurContext, Selectors, AllowSameLength,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00004924 Results, InOriginalClass);
Douglas Gregorc8537c52009-11-19 07:41:15 +00004925}
4926
4927
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00004928void Sema::CodeCompleteObjCPropertyGetter(Scope *S) {
Douglas Gregorc8537c52009-11-19 07:41:15 +00004929 // Try to find the interface where getters might live.
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00004930 ObjCInterfaceDecl *Class = dyn_cast_or_null<ObjCInterfaceDecl>(CurContext);
Douglas Gregorc8537c52009-11-19 07:41:15 +00004931 if (!Class) {
4932 if (ObjCCategoryDecl *Category
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00004933 = dyn_cast_or_null<ObjCCategoryDecl>(CurContext))
Douglas Gregorc8537c52009-11-19 07:41:15 +00004934 Class = Category->getClassInterface();
4935
4936 if (!Class)
4937 return;
4938 }
4939
4940 // Find all of the potential getters.
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004941 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004942 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004943 CodeCompletionContext::CCC_Other);
Douglas Gregorc8537c52009-11-19 07:41:15 +00004944 Results.EnterNewScope();
4945
Douglas Gregor1154e272010-09-16 16:06:31 +00004946 VisitedSelectorSet Selectors;
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004947 AddObjCMethods(Class, true, MK_ZeroArgSelector, None, CurContext, Selectors,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00004948 /*AllowSameLength=*/true, Results);
Douglas Gregorc8537c52009-11-19 07:41:15 +00004949 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004950 HandleCodeCompleteResults(this, CodeCompleter,
4951 CodeCompletionContext::CCC_Other,
4952 Results.data(),Results.size());
Douglas Gregorc8537c52009-11-19 07:41:15 +00004953}
4954
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00004955void Sema::CodeCompleteObjCPropertySetter(Scope *S) {
Douglas Gregorc8537c52009-11-19 07:41:15 +00004956 // Try to find the interface where setters might live.
4957 ObjCInterfaceDecl *Class
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00004958 = dyn_cast_or_null<ObjCInterfaceDecl>(CurContext);
Douglas Gregorc8537c52009-11-19 07:41:15 +00004959 if (!Class) {
4960 if (ObjCCategoryDecl *Category
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00004961 = dyn_cast_or_null<ObjCCategoryDecl>(CurContext))
Douglas Gregorc8537c52009-11-19 07:41:15 +00004962 Class = Category->getClassInterface();
4963
4964 if (!Class)
4965 return;
4966 }
4967
4968 // Find all of the potential getters.
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_Other);
Douglas Gregorc8537c52009-11-19 07:41:15 +00004972 Results.EnterNewScope();
4973
Douglas Gregor1154e272010-09-16 16:06:31 +00004974 VisitedSelectorSet Selectors;
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00004975 AddObjCMethods(Class, true, MK_OneArgSelector, None, CurContext,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00004976 Selectors, /*AllowSameLength=*/true, Results);
Douglas Gregorc8537c52009-11-19 07:41:15 +00004977
4978 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00004979 HandleCodeCompleteResults(this, CodeCompleter,
4980 CodeCompletionContext::CCC_Other,
4981 Results.data(),Results.size());
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00004982}
4983
Douglas Gregorf34a6f02011-02-15 22:19:42 +00004984void Sema::CodeCompleteObjCPassingType(Scope *S, ObjCDeclSpec &DS,
4985 bool IsParameter) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004986 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00004987 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00004988 CodeCompletionContext::CCC_Type);
Douglas Gregor99fa2642010-08-24 01:06:58 +00004989 Results.EnterNewScope();
4990
4991 // Add context-sensitive, Objective-C parameter-passing keywords.
4992 bool AddedInOut = false;
4993 if ((DS.getObjCDeclQualifier() &
4994 (ObjCDeclSpec::DQ_In | ObjCDeclSpec::DQ_Inout)) == 0) {
4995 Results.AddResult("in");
4996 Results.AddResult("inout");
4997 AddedInOut = true;
4998 }
4999 if ((DS.getObjCDeclQualifier() &
5000 (ObjCDeclSpec::DQ_Out | ObjCDeclSpec::DQ_Inout)) == 0) {
5001 Results.AddResult("out");
5002 if (!AddedInOut)
5003 Results.AddResult("inout");
5004 }
5005 if ((DS.getObjCDeclQualifier() &
5006 (ObjCDeclSpec::DQ_Bycopy | ObjCDeclSpec::DQ_Byref |
5007 ObjCDeclSpec::DQ_Oneway)) == 0) {
5008 Results.AddResult("bycopy");
5009 Results.AddResult("byref");
5010 Results.AddResult("oneway");
5011 }
5012
Douglas Gregorf34a6f02011-02-15 22:19:42 +00005013 // If we're completing the return type of an Objective-C method and the
5014 // identifier IBAction refers to a macro, provide a completion item for
5015 // an action, e.g.,
5016 // IBAction)<#selector#>:(id)sender
5017 if (DS.getObjCDeclQualifier() == 0 && !IsParameter &&
5018 Context.Idents.get("IBAction").hasMacroDefinition()) {
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005019 CodeCompletionBuilder Builder(Results.getAllocator(),
5020 Results.getCodeCompletionTUInfo(),
5021 CCP_CodePattern, CXAvailability_Available);
Douglas Gregorf34a6f02011-02-15 22:19:42 +00005022 Builder.AddTypedTextChunk("IBAction");
Benjamin Kramerdb534a42012-03-26 16:57:36 +00005023 Builder.AddChunk(CodeCompletionString::CK_RightParen);
Douglas Gregorf34a6f02011-02-15 22:19:42 +00005024 Builder.AddPlaceholderChunk("selector");
Benjamin Kramerdb534a42012-03-26 16:57:36 +00005025 Builder.AddChunk(CodeCompletionString::CK_Colon);
5026 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
Douglas Gregorf34a6f02011-02-15 22:19:42 +00005027 Builder.AddTextChunk("id");
Benjamin Kramerdb534a42012-03-26 16:57:36 +00005028 Builder.AddChunk(CodeCompletionString::CK_RightParen);
Douglas Gregorf34a6f02011-02-15 22:19:42 +00005029 Builder.AddTextChunk("sender");
5030 Results.AddResult(CodeCompletionResult(Builder.TakeString()));
5031 }
Douglas Gregored1f5972013-01-30 07:11:43 +00005032
5033 // If we're completing the return type, provide 'instancetype'.
5034 if (!IsParameter) {
5035 Results.AddResult(CodeCompletionResult("instancetype"));
5036 }
Douglas Gregorf34a6f02011-02-15 22:19:42 +00005037
Douglas Gregor99fa2642010-08-24 01:06:58 +00005038 // Add various builtin type names and specifiers.
5039 AddOrdinaryNameResults(PCC_Type, S, *this, Results);
5040 Results.ExitScope();
5041
5042 // Add the various type names
5043 Results.setFilter(&ResultBuilder::IsOrdinaryNonValueName);
5044 CodeCompletionDeclConsumer Consumer(Results, CurContext);
5045 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
5046 CodeCompleter->includeGlobals());
5047
5048 if (CodeCompleter->includeMacros())
Douglas Gregor8cb17462012-10-09 16:01:50 +00005049 AddMacroResults(PP, Results, false);
Douglas Gregor99fa2642010-08-24 01:06:58 +00005050
5051 HandleCodeCompleteResults(this, CodeCompleter,
5052 CodeCompletionContext::CCC_Type,
5053 Results.data(), Results.size());
5054}
5055
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005056/// \brief When we have an expression with type "id", we may assume
5057/// that it has some more-specific class type based on knowledge of
5058/// common uses of Objective-C. This routine returns that class type,
5059/// or NULL if no better result could be determined.
5060static ObjCInterfaceDecl *GetAssumedMessageSendExprType(Expr *E) {
Douglas Gregored0b69d2010-09-15 16:23:04 +00005061 ObjCMessageExpr *Msg = dyn_cast_or_null<ObjCMessageExpr>(E);
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005062 if (!Msg)
5063 return 0;
5064
5065 Selector Sel = Msg->getSelector();
5066 if (Sel.isNull())
5067 return 0;
5068
5069 IdentifierInfo *Id = Sel.getIdentifierInfoForSlot(0);
5070 if (!Id)
5071 return 0;
5072
5073 ObjCMethodDecl *Method = Msg->getMethodDecl();
5074 if (!Method)
5075 return 0;
5076
5077 // Determine the class that we're sending the message to.
Douglas Gregor9a129192010-04-21 00:45:42 +00005078 ObjCInterfaceDecl *IFace = 0;
5079 switch (Msg->getReceiverKind()) {
5080 case ObjCMessageExpr::Class:
John McCall8b07ec22010-05-15 11:32:37 +00005081 if (const ObjCObjectType *ObjType
5082 = Msg->getClassReceiver()->getAs<ObjCObjectType>())
5083 IFace = ObjType->getInterface();
Douglas Gregor9a129192010-04-21 00:45:42 +00005084 break;
5085
5086 case ObjCMessageExpr::Instance: {
5087 QualType T = Msg->getInstanceReceiver()->getType();
5088 if (const ObjCObjectPointerType *Ptr = T->getAs<ObjCObjectPointerType>())
5089 IFace = Ptr->getInterfaceDecl();
5090 break;
5091 }
5092
5093 case ObjCMessageExpr::SuperInstance:
5094 case ObjCMessageExpr::SuperClass:
5095 break;
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005096 }
5097
5098 if (!IFace)
5099 return 0;
5100
5101 ObjCInterfaceDecl *Super = IFace->getSuperClass();
5102 if (Method->isInstanceMethod())
5103 return llvm::StringSwitch<ObjCInterfaceDecl *>(Id->getName())
5104 .Case("retain", IFace)
John McCall31168b02011-06-15 23:02:42 +00005105 .Case("strong", IFace)
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005106 .Case("autorelease", IFace)
5107 .Case("copy", IFace)
5108 .Case("copyWithZone", IFace)
5109 .Case("mutableCopy", IFace)
5110 .Case("mutableCopyWithZone", IFace)
5111 .Case("awakeFromCoder", IFace)
5112 .Case("replacementObjectFromCoder", IFace)
5113 .Case("class", IFace)
5114 .Case("classForCoder", IFace)
5115 .Case("superclass", Super)
5116 .Default(0);
5117
5118 return llvm::StringSwitch<ObjCInterfaceDecl *>(Id->getName())
5119 .Case("new", IFace)
5120 .Case("alloc", IFace)
5121 .Case("allocWithZone", IFace)
5122 .Case("class", IFace)
5123 .Case("superclass", Super)
5124 .Default(0);
5125}
5126
Douglas Gregor6fc04132010-08-27 15:10:57 +00005127// Add a special completion for a message send to "super", which fills in the
5128// most likely case of forwarding all of our arguments to the superclass
5129// function.
5130///
5131/// \param S The semantic analysis object.
5132///
Dmitri Gribenkoadba9be2012-08-23 17:58:28 +00005133/// \param NeedSuperKeyword Whether we need to prefix this completion with
Douglas Gregor6fc04132010-08-27 15:10:57 +00005134/// the "super" keyword. Otherwise, we just need to provide the arguments.
5135///
5136/// \param SelIdents The identifiers in the selector that have already been
5137/// provided as arguments for a send to "super".
5138///
Douglas Gregor6fc04132010-08-27 15:10:57 +00005139/// \param Results The set of results to augment.
5140///
5141/// \returns the Objective-C method declaration that would be invoked by
5142/// this "super" completion. If NULL, no completion was added.
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005143static ObjCMethodDecl *AddSuperSendCompletion(
5144 Sema &S, bool NeedSuperKeyword,
5145 ArrayRef<IdentifierInfo *> SelIdents,
5146 ResultBuilder &Results) {
Douglas Gregor6fc04132010-08-27 15:10:57 +00005147 ObjCMethodDecl *CurMethod = S.getCurMethodDecl();
5148 if (!CurMethod)
5149 return 0;
5150
5151 ObjCInterfaceDecl *Class = CurMethod->getClassInterface();
5152 if (!Class)
5153 return 0;
5154
5155 // Try to find a superclass method with the same selector.
5156 ObjCMethodDecl *SuperMethod = 0;
Douglas Gregorb5f1e462011-02-16 00:51:18 +00005157 while ((Class = Class->getSuperClass()) && !SuperMethod) {
5158 // Check in the class
Douglas Gregor6fc04132010-08-27 15:10:57 +00005159 SuperMethod = Class->getMethod(CurMethod->getSelector(),
5160 CurMethod->isInstanceMethod());
5161
Douglas Gregorb5f1e462011-02-16 00:51:18 +00005162 // Check in categories or class extensions.
5163 if (!SuperMethod) {
Douglas Gregor048fbfa2013-01-16 23:00:23 +00005164 for (ObjCInterfaceDecl::known_categories_iterator
5165 Cat = Class->known_categories_begin(),
5166 CatEnd = Class->known_categories_end();
5167 Cat != CatEnd; ++Cat) {
5168 if ((SuperMethod = Cat->getMethod(CurMethod->getSelector(),
Douglas Gregorb5f1e462011-02-16 00:51:18 +00005169 CurMethod->isInstanceMethod())))
5170 break;
Douglas Gregor048fbfa2013-01-16 23:00:23 +00005171 }
Douglas Gregorb5f1e462011-02-16 00:51:18 +00005172 }
5173 }
5174
Douglas Gregor6fc04132010-08-27 15:10:57 +00005175 if (!SuperMethod)
5176 return 0;
5177
5178 // Check whether the superclass method has the same signature.
5179 if (CurMethod->param_size() != SuperMethod->param_size() ||
5180 CurMethod->isVariadic() != SuperMethod->isVariadic())
5181 return 0;
5182
5183 for (ObjCMethodDecl::param_iterator CurP = CurMethod->param_begin(),
5184 CurPEnd = CurMethod->param_end(),
5185 SuperP = SuperMethod->param_begin();
5186 CurP != CurPEnd; ++CurP, ++SuperP) {
5187 // Make sure the parameter types are compatible.
5188 if (!S.Context.hasSameUnqualifiedType((*CurP)->getType(),
5189 (*SuperP)->getType()))
5190 return 0;
5191
5192 // Make sure we have a parameter name to forward!
5193 if (!(*CurP)->getIdentifier())
5194 return 0;
5195 }
5196
5197 // We have a superclass method. Now, form the send-to-super completion.
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005198 CodeCompletionBuilder Builder(Results.getAllocator(),
5199 Results.getCodeCompletionTUInfo());
Douglas Gregor6fc04132010-08-27 15:10:57 +00005200
5201 // Give this completion a return type.
Douglas Gregor75acd922011-09-27 23:30:47 +00005202 AddResultTypeChunk(S.Context, getCompletionPrintingPolicy(S), SuperMethod,
5203 Builder);
Douglas Gregor6fc04132010-08-27 15:10:57 +00005204
5205 // If we need the "super" keyword, add it (plus some spacing).
5206 if (NeedSuperKeyword) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005207 Builder.AddTypedTextChunk("super");
5208 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
Douglas Gregor6fc04132010-08-27 15:10:57 +00005209 }
5210
5211 Selector Sel = CurMethod->getSelector();
5212 if (Sel.isUnarySelector()) {
5213 if (NeedSuperKeyword)
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005214 Builder.AddTextChunk(Builder.getAllocator().CopyString(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00005215 Sel.getNameForSlot(0)));
Douglas Gregor6fc04132010-08-27 15:10:57 +00005216 else
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005217 Builder.AddTypedTextChunk(Builder.getAllocator().CopyString(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00005218 Sel.getNameForSlot(0)));
Douglas Gregor6fc04132010-08-27 15:10:57 +00005219 } else {
5220 ObjCMethodDecl::param_iterator CurP = CurMethod->param_begin();
5221 for (unsigned I = 0, N = Sel.getNumArgs(); I != N; ++I, ++CurP) {
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005222 if (I > SelIdents.size())
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005223 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
Douglas Gregor6fc04132010-08-27 15:10:57 +00005224
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005225 if (I < SelIdents.size())
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005226 Builder.AddInformativeChunk(
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005227 Builder.getAllocator().CopyString(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00005228 Sel.getNameForSlot(I) + ":"));
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005229 else if (NeedSuperKeyword || I > SelIdents.size()) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005230 Builder.AddTextChunk(
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005231 Builder.getAllocator().CopyString(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00005232 Sel.getNameForSlot(I) + ":"));
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005233 Builder.AddPlaceholderChunk(Builder.getAllocator().CopyString(
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005234 (*CurP)->getIdentifier()->getName()));
Douglas Gregor6fc04132010-08-27 15:10:57 +00005235 } else {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005236 Builder.AddTypedTextChunk(
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005237 Builder.getAllocator().CopyString(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00005238 Sel.getNameForSlot(I) + ":"));
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005239 Builder.AddPlaceholderChunk(Builder.getAllocator().CopyString(
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005240 (*CurP)->getIdentifier()->getName()));
Douglas Gregor6fc04132010-08-27 15:10:57 +00005241 }
5242 }
5243 }
5244
Douglas Gregor78254c82012-03-27 23:34:16 +00005245 Results.AddResult(CodeCompletionResult(Builder.TakeString(), SuperMethod,
5246 CCP_SuperCompletion));
Douglas Gregor6fc04132010-08-27 15:10:57 +00005247 return SuperMethod;
5248}
5249
Douglas Gregora817a192010-05-27 23:06:34 +00005250void Sema::CodeCompleteObjCMessageReceiver(Scope *S) {
John McCall276321a2010-08-25 06:19:51 +00005251 typedef CodeCompletionResult Result;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005252 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005253 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005254 CodeCompletionContext::CCC_ObjCMessageReceiver,
Richard Smith2bf7fdb2013-01-02 11:42:31 +00005255 getLangOpts().CPlusPlus11
Douglas Gregord8c61782012-02-15 15:34:24 +00005256 ? &ResultBuilder::IsObjCMessageReceiverOrLambdaCapture
5257 : &ResultBuilder::IsObjCMessageReceiver);
Douglas Gregora817a192010-05-27 23:06:34 +00005258
Douglas Gregora817a192010-05-27 23:06:34 +00005259 CodeCompletionDeclConsumer Consumer(Results, CurContext);
5260 Results.EnterNewScope();
Douglas Gregor39982192010-08-15 06:18:01 +00005261 LookupVisibleDecls(S, LookupOrdinaryName, Consumer,
5262 CodeCompleter->includeGlobals());
Douglas Gregora817a192010-05-27 23:06:34 +00005263
5264 // If we are in an Objective-C method inside a class that has a superclass,
5265 // add "super" as an option.
5266 if (ObjCMethodDecl *Method = getCurMethodDecl())
5267 if (ObjCInterfaceDecl *Iface = Method->getClassInterface())
Douglas Gregor6fc04132010-08-27 15:10:57 +00005268 if (Iface->getSuperClass()) {
Douglas Gregora817a192010-05-27 23:06:34 +00005269 Results.AddResult(Result("super"));
Douglas Gregor6fc04132010-08-27 15:10:57 +00005270
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005271 AddSuperSendCompletion(*this, /*NeedSuperKeyword=*/true, None, Results);
Douglas Gregor6fc04132010-08-27 15:10:57 +00005272 }
Douglas Gregora817a192010-05-27 23:06:34 +00005273
Richard Smith2bf7fdb2013-01-02 11:42:31 +00005274 if (getLangOpts().CPlusPlus11)
Douglas Gregord8c61782012-02-15 15:34:24 +00005275 addThisCompletion(*this, Results);
5276
Douglas Gregora817a192010-05-27 23:06:34 +00005277 Results.ExitScope();
5278
5279 if (CodeCompleter->includeMacros())
Douglas Gregor8cb17462012-10-09 16:01:50 +00005280 AddMacroResults(PP, Results, false);
Douglas Gregor50832e02010-09-20 22:39:41 +00005281 HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005282 Results.data(), Results.size());
Douglas Gregora817a192010-05-27 23:06:34 +00005283
5284}
5285
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005286void Sema::CodeCompleteObjCSuperMessage(Scope *S, SourceLocation SuperLoc,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005287 ArrayRef<IdentifierInfo *> SelIdents,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00005288 bool AtArgumentExpression) {
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005289 ObjCInterfaceDecl *CDecl = 0;
5290 if (ObjCMethodDecl *CurMethod = getCurMethodDecl()) {
5291 // Figure out which interface we're in.
5292 CDecl = CurMethod->getClassInterface();
5293 if (!CDecl)
5294 return;
5295
5296 // Find the superclass of this class.
5297 CDecl = CDecl->getSuperClass();
5298 if (!CDecl)
5299 return;
5300
5301 if (CurMethod->isInstanceMethod()) {
5302 // We are inside an instance method, which means that the message
5303 // send [super ...] is actually calling an instance method on the
Douglas Gregor392a84b2010-10-13 21:24:53 +00005304 // current object.
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005305 return CodeCompleteObjCInstanceMessage(S, 0, SelIdents,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00005306 AtArgumentExpression,
Douglas Gregor392a84b2010-10-13 21:24:53 +00005307 CDecl);
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005308 }
5309
5310 // Fall through to send to the superclass in CDecl.
5311 } else {
5312 // "super" may be the name of a type or variable. Figure out which
5313 // it is.
Argyrios Kyrtzidis3e56dd42013-03-14 22:56:43 +00005314 IdentifierInfo *Super = getSuperIdentifier();
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005315 NamedDecl *ND = LookupSingleName(S, Super, SuperLoc,
5316 LookupOrdinaryName);
5317 if ((CDecl = dyn_cast_or_null<ObjCInterfaceDecl>(ND))) {
5318 // "super" names an interface. Use it.
5319 } else if (TypeDecl *TD = dyn_cast_or_null<TypeDecl>(ND)) {
John McCall8b07ec22010-05-15 11:32:37 +00005320 if (const ObjCObjectType *Iface
5321 = Context.getTypeDeclType(TD)->getAs<ObjCObjectType>())
5322 CDecl = Iface->getInterface();
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005323 } else if (ND && isa<UnresolvedUsingTypenameDecl>(ND)) {
5324 // "super" names an unresolved type; we can't be more specific.
5325 } else {
5326 // Assume that "super" names some kind of value and parse that way.
5327 CXXScopeSpec SS;
Abramo Bagnara7945c982012-01-27 09:46:47 +00005328 SourceLocation TemplateKWLoc;
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005329 UnqualifiedId id;
5330 id.setIdentifier(Super, SuperLoc);
Abramo Bagnara7945c982012-01-27 09:46:47 +00005331 ExprResult SuperExpr = ActOnIdExpression(S, SS, TemplateKWLoc, id,
5332 false, false);
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005333 return CodeCompleteObjCInstanceMessage(S, (Expr *)SuperExpr.get(),
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005334 SelIdents,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00005335 AtArgumentExpression);
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005336 }
5337
5338 // Fall through
5339 }
5340
John McCallba7bf592010-08-24 05:47:05 +00005341 ParsedType Receiver;
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005342 if (CDecl)
John McCallba7bf592010-08-24 05:47:05 +00005343 Receiver = ParsedType::make(Context.getObjCInterfaceType(CDecl));
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005344 return CodeCompleteObjCClassMessage(S, Receiver, SelIdents,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005345 AtArgumentExpression,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00005346 /*IsSuper=*/true);
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005347}
5348
Douglas Gregor74661272010-09-21 00:03:25 +00005349/// \brief Given a set of code-completion results for the argument of a message
5350/// send, determine the preferred type (if any) for that argument expression.
5351static QualType getPreferredArgumentTypeForMessageSend(ResultBuilder &Results,
5352 unsigned NumSelIdents) {
5353 typedef CodeCompletionResult Result;
5354 ASTContext &Context = Results.getSema().Context;
5355
5356 QualType PreferredType;
5357 unsigned BestPriority = CCP_Unlikely * 2;
5358 Result *ResultsData = Results.data();
5359 for (unsigned I = 0, N = Results.size(); I != N; ++I) {
5360 Result &R = ResultsData[I];
5361 if (R.Kind == Result::RK_Declaration &&
5362 isa<ObjCMethodDecl>(R.Declaration)) {
5363 if (R.Priority <= BestPriority) {
Dmitri Gribenkofe0483d2013-01-23 17:21:11 +00005364 const ObjCMethodDecl *Method = cast<ObjCMethodDecl>(R.Declaration);
Douglas Gregor74661272010-09-21 00:03:25 +00005365 if (NumSelIdents <= Method->param_size()) {
5366 QualType MyPreferredType = Method->param_begin()[NumSelIdents - 1]
5367 ->getType();
5368 if (R.Priority < BestPriority || PreferredType.isNull()) {
5369 BestPriority = R.Priority;
5370 PreferredType = MyPreferredType;
5371 } else if (!Context.hasSameUnqualifiedType(PreferredType,
5372 MyPreferredType)) {
5373 PreferredType = QualType();
5374 }
5375 }
5376 }
5377 }
5378 }
5379
5380 return PreferredType;
5381}
5382
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005383static void AddClassMessageCompletions(Sema &SemaRef, Scope *S,
5384 ParsedType Receiver,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005385 ArrayRef<IdentifierInfo *> SelIdents,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00005386 bool AtArgumentExpression,
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005387 bool IsSuper,
5388 ResultBuilder &Results) {
John McCall276321a2010-08-25 06:19:51 +00005389 typedef CodeCompletionResult Result;
Douglas Gregor8ce33212009-11-17 17:59:40 +00005390 ObjCInterfaceDecl *CDecl = 0;
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005391
Douglas Gregor8ce33212009-11-17 17:59:40 +00005392 // If the given name refers to an interface type, retrieve the
5393 // corresponding declaration.
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005394 if (Receiver) {
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005395 QualType T = SemaRef.GetTypeFromParser(Receiver, 0);
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005396 if (!T.isNull())
John McCall8b07ec22010-05-15 11:32:37 +00005397 if (const ObjCObjectType *Interface = T->getAs<ObjCObjectType>())
5398 CDecl = Interface->getInterface();
Douglas Gregor8ce33212009-11-17 17:59:40 +00005399 }
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005400
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005401 // Add all of the factory methods in this Objective-C class, its protocols,
5402 // superclasses, categories, implementation, etc.
Steve Naroffeae65032009-11-07 02:08:14 +00005403 Results.EnterNewScope();
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005404
Douglas Gregor6fc04132010-08-27 15:10:57 +00005405 // If this is a send-to-super, try to add the special "super" send
5406 // completion.
5407 if (IsSuper) {
5408 if (ObjCMethodDecl *SuperMethod
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005409 = AddSuperSendCompletion(SemaRef, false, SelIdents, Results))
Douglas Gregor6fc04132010-08-27 15:10:57 +00005410 Results.Ignore(SuperMethod);
5411 }
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005412
Douglas Gregorc2cb2e22010-08-27 15:29:55 +00005413 // If we're inside an Objective-C method definition, prefer its selector to
5414 // others.
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005415 if (ObjCMethodDecl *CurMethod = SemaRef.getCurMethodDecl())
Douglas Gregorc2cb2e22010-08-27 15:29:55 +00005416 Results.setPreferredSelector(CurMethod->getSelector());
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005417
Douglas Gregor1154e272010-09-16 16:06:31 +00005418 VisitedSelectorSet Selectors;
Douglas Gregor6285f752010-04-06 16:40:00 +00005419 if (CDecl)
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005420 AddObjCMethods(CDecl, false, MK_Any, SelIdents,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005421 SemaRef.CurContext, Selectors, AtArgumentExpression,
5422 Results);
Douglas Gregor0c78ad92010-04-21 19:57:20 +00005423 else {
Douglas Gregor6285f752010-04-06 16:40:00 +00005424 // We're messaging "id" as a type; provide all class/factory methods.
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005425
Douglas Gregord720daf2010-04-06 17:30:22 +00005426 // If we have an external source, load the entire class method
Sebastian Redld44cd6a2010-08-18 23:57:06 +00005427 // pool from the AST file.
Axel Naumanndd433f02012-10-18 19:05:02 +00005428 if (SemaRef.getExternalSource()) {
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005429 for (uint32_t I = 0,
Axel Naumanndd433f02012-10-18 19:05:02 +00005430 N = SemaRef.getExternalSource()->GetNumExternalSelectors();
John McCall75b960e2010-06-01 09:23:16 +00005431 I != N; ++I) {
Axel Naumanndd433f02012-10-18 19:05:02 +00005432 Selector Sel = SemaRef.getExternalSource()->GetExternalSelector(I);
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005433 if (Sel.isNull() || SemaRef.MethodPool.count(Sel))
Douglas Gregord720daf2010-04-06 17:30:22 +00005434 continue;
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005435
5436 SemaRef.ReadMethodPool(Sel);
Douglas Gregord720daf2010-04-06 17:30:22 +00005437 }
5438 }
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005439
5440 for (Sema::GlobalMethodPool::iterator M = SemaRef.MethodPool.begin(),
5441 MEnd = SemaRef.MethodPool.end();
Sebastian Redl75d8a322010-08-02 23:18:59 +00005442 M != MEnd; ++M) {
5443 for (ObjCMethodList *MethList = &M->second.second;
5444 MethList && MethList->Method;
Argyrios Kyrtzidisd3da6e02013-04-17 00:08:58 +00005445 MethList = MethList->getNext()) {
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005446 if (!isAcceptableObjCMethod(MethList->Method, MK_Any, SelIdents))
Douglas Gregor6285f752010-04-06 16:40:00 +00005447 continue;
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005448
Douglas Gregor0a0e2b32013-01-31 04:52:16 +00005449 Result R(MethList->Method, Results.getBasePriority(MethList->Method),0);
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005450 R.StartParameter = SelIdents.size();
Douglas Gregor6285f752010-04-06 16:40:00 +00005451 R.AllParametersAreInformative = false;
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005452 Results.MaybeAddResult(R, SemaRef.CurContext);
Douglas Gregor6285f752010-04-06 16:40:00 +00005453 }
5454 }
5455 }
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005456
5457 Results.ExitScope();
5458}
Douglas Gregor6285f752010-04-06 16:40:00 +00005459
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005460void Sema::CodeCompleteObjCClassMessage(Scope *S, ParsedType Receiver,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005461 ArrayRef<IdentifierInfo *> SelIdents,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00005462 bool AtArgumentExpression,
Douglas Gregorbfcea8b2010-09-16 15:14:18 +00005463 bool IsSuper) {
Douglas Gregor63745d52011-07-21 01:05:26 +00005464
5465 QualType T = this->GetTypeFromParser(Receiver);
5466
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005467 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005468 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor63745d52011-07-21 01:05:26 +00005469 CodeCompletionContext(CodeCompletionContext::CCC_ObjCClassMessage,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005470 T, SelIdents));
Douglas Gregor63745d52011-07-21 01:05:26 +00005471
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005472 AddClassMessageCompletions(*this, S, Receiver, SelIdents,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00005473 AtArgumentExpression, IsSuper, Results);
Douglas Gregor74661272010-09-21 00:03:25 +00005474
5475 // If we're actually at the argument expression (rather than prior to the
5476 // selector), we're actually performing code completion for an expression.
5477 // Determine whether we have a single, best method. If so, we can
5478 // code-complete the expression using the corresponding parameter type as
5479 // our preferred type, improving completion results.
5480 if (AtArgumentExpression) {
5481 QualType PreferredType = getPreferredArgumentTypeForMessageSend(Results,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005482 SelIdents.size());
Douglas Gregor74661272010-09-21 00:03:25 +00005483 if (PreferredType.isNull())
5484 CodeCompleteOrdinaryName(S, PCC_Expression);
5485 else
5486 CodeCompleteExpression(S, PreferredType);
5487 return;
5488 }
5489
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005490 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor63745d52011-07-21 01:05:26 +00005491 Results.getCompletionContext(),
Douglas Gregor6fc04132010-08-27 15:10:57 +00005492 Results.data(), Results.size());
Steve Naroffeae65032009-11-07 02:08:14 +00005493}
5494
Richard Trieu2bd04012011-09-09 02:00:50 +00005495void Sema::CodeCompleteObjCInstanceMessage(Scope *S, Expr *Receiver,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005496 ArrayRef<IdentifierInfo *> SelIdents,
Douglas Gregorf86e4da2010-09-20 23:34:21 +00005497 bool AtArgumentExpression,
Douglas Gregor392a84b2010-10-13 21:24:53 +00005498 ObjCInterfaceDecl *Super) {
John McCall276321a2010-08-25 06:19:51 +00005499 typedef CodeCompletionResult Result;
Steve Naroffeae65032009-11-07 02:08:14 +00005500
5501 Expr *RecExpr = static_cast<Expr *>(Receiver);
Steve Naroffeae65032009-11-07 02:08:14 +00005502
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005503 // If necessary, apply function/array conversion to the receiver.
5504 // C99 6.7.5.3p[7,8].
John Wiegley01296292011-04-08 18:41:53 +00005505 if (RecExpr) {
5506 ExprResult Conv = DefaultFunctionArrayLvalueConversion(RecExpr);
5507 if (Conv.isInvalid()) // conversion failed. bail.
5508 return;
5509 RecExpr = Conv.take();
5510 }
Douglas Gregor392a84b2010-10-13 21:24:53 +00005511 QualType ReceiverType = RecExpr? RecExpr->getType()
5512 : Super? Context.getObjCObjectPointerType(
5513 Context.getObjCInterfaceType(Super))
5514 : Context.getObjCIdType();
Steve Naroffeae65032009-11-07 02:08:14 +00005515
Douglas Gregordc520b02010-11-08 21:12:30 +00005516 // If we're messaging an expression with type "id" or "Class", check
5517 // whether we know something special about the receiver that allows
5518 // us to assume a more-specific receiver type.
Anders Carlsson382ba412014-02-28 19:07:22 +00005519 if (ReceiverType->isObjCIdType() || ReceiverType->isObjCClassType()) {
Douglas Gregordc520b02010-11-08 21:12:30 +00005520 if (ObjCInterfaceDecl *IFace = GetAssumedMessageSendExprType(RecExpr)) {
5521 if (ReceiverType->isObjCClassType())
5522 return CodeCompleteObjCClassMessage(S,
5523 ParsedType::make(Context.getObjCInterfaceType(IFace)),
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005524 SelIdents,
Douglas Gregordc520b02010-11-08 21:12:30 +00005525 AtArgumentExpression, Super);
5526
5527 ReceiverType = Context.getObjCObjectPointerType(
5528 Context.getObjCInterfaceType(IFace));
5529 }
Anders Carlsson382ba412014-02-28 19:07:22 +00005530 } else if (RecExpr && getLangOpts().CPlusPlus) {
5531 ExprResult Conv = PerformContextuallyConvertToObjCPointer(RecExpr);
5532 if (Conv.isUsable()) {
5533 RecExpr = Conv.take();
5534 ReceiverType = RecExpr->getType();
5535 }
5536 }
Douglas Gregordc520b02010-11-08 21:12:30 +00005537
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005538 // Build the set of methods we can see.
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005539 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005540 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor63745d52011-07-21 01:05:26 +00005541 CodeCompletionContext(CodeCompletionContext::CCC_ObjCInstanceMessage,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005542 ReceiverType, SelIdents));
Douglas Gregor63745d52011-07-21 01:05:26 +00005543
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005544 Results.EnterNewScope();
Douglas Gregor9d2ddb22010-04-06 19:22:33 +00005545
Douglas Gregor6fc04132010-08-27 15:10:57 +00005546 // If this is a send-to-super, try to add the special "super" send
5547 // completion.
Douglas Gregor392a84b2010-10-13 21:24:53 +00005548 if (Super) {
Douglas Gregor6fc04132010-08-27 15:10:57 +00005549 if (ObjCMethodDecl *SuperMethod
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005550 = AddSuperSendCompletion(*this, false, SelIdents, Results))
Douglas Gregor6fc04132010-08-27 15:10:57 +00005551 Results.Ignore(SuperMethod);
5552 }
5553
Douglas Gregorc2cb2e22010-08-27 15:29:55 +00005554 // If we're inside an Objective-C method definition, prefer its selector to
5555 // others.
5556 if (ObjCMethodDecl *CurMethod = getCurMethodDecl())
5557 Results.setPreferredSelector(CurMethod->getSelector());
Douglas Gregorbab2b3c2009-11-17 23:22:23 +00005558
Douglas Gregor1154e272010-09-16 16:06:31 +00005559 // Keep track of the selectors we've already added.
5560 VisitedSelectorSet Selectors;
5561
Douglas Gregora3329fa2009-11-18 00:06:18 +00005562 // Handle messages to Class. This really isn't a message to an instance
5563 // method, so we treat it the same way we would treat a message send to a
5564 // class method.
5565 if (ReceiverType->isObjCClassType() ||
5566 ReceiverType->isObjCQualifiedClassType()) {
5567 if (ObjCMethodDecl *CurMethod = getCurMethodDecl()) {
5568 if (ObjCInterfaceDecl *ClassDecl = CurMethod->getClassInterface())
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005569 AddObjCMethods(ClassDecl, false, MK_Any, SelIdents,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005570 CurContext, Selectors, AtArgumentExpression, Results);
Douglas Gregora3329fa2009-11-18 00:06:18 +00005571 }
5572 }
5573 // Handle messages to a qualified ID ("id<foo>").
5574 else if (const ObjCObjectPointerType *QualID
5575 = ReceiverType->getAsObjCQualifiedIdType()) {
5576 // Search protocols for instance methods.
5577 for (ObjCObjectPointerType::qual_iterator I = QualID->qual_begin(),
5578 E = QualID->qual_end();
5579 I != E; ++I)
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005580 AddObjCMethods(*I, true, MK_Any, SelIdents, CurContext,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005581 Selectors, AtArgumentExpression, Results);
Douglas Gregora3329fa2009-11-18 00:06:18 +00005582 }
5583 // Handle messages to a pointer to interface type.
5584 else if (const ObjCObjectPointerType *IFacePtr
5585 = ReceiverType->getAsObjCInterfacePointerType()) {
5586 // Search the class, its superclasses, etc., for instance methods.
Douglas Gregorc8537c52009-11-19 07:41:15 +00005587 AddObjCMethods(IFacePtr->getInterfaceDecl(), true, MK_Any, SelIdents,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005588 CurContext, Selectors, AtArgumentExpression,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005589 Results);
Douglas Gregora3329fa2009-11-18 00:06:18 +00005590
5591 // Search protocols for instance methods.
5592 for (ObjCObjectPointerType::qual_iterator I = IFacePtr->qual_begin(),
5593 E = IFacePtr->qual_end();
5594 I != E; ++I)
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005595 AddObjCMethods(*I, true, MK_Any, SelIdents, CurContext,
Douglas Gregorb4a7c032010-11-17 21:36:08 +00005596 Selectors, AtArgumentExpression, Results);
Douglas Gregora3329fa2009-11-18 00:06:18 +00005597 }
Douglas Gregor6285f752010-04-06 16:40:00 +00005598 // Handle messages to "id".
5599 else if (ReceiverType->isObjCIdType()) {
Douglas Gregord720daf2010-04-06 17:30:22 +00005600 // We're messaging "id", so provide all instance methods we know
5601 // about as code-completion results.
5602
5603 // If we have an external source, load the entire class method
Sebastian Redld44cd6a2010-08-18 23:57:06 +00005604 // pool from the AST file.
Douglas Gregord720daf2010-04-06 17:30:22 +00005605 if (ExternalSource) {
John McCall75b960e2010-06-01 09:23:16 +00005606 for (uint32_t I = 0, N = ExternalSource->GetNumExternalSelectors();
5607 I != N; ++I) {
5608 Selector Sel = ExternalSource->GetExternalSelector(I);
Sebastian Redl75d8a322010-08-02 23:18:59 +00005609 if (Sel.isNull() || MethodPool.count(Sel))
Douglas Gregord720daf2010-04-06 17:30:22 +00005610 continue;
5611
Sebastian Redl75d8a322010-08-02 23:18:59 +00005612 ReadMethodPool(Sel);
Douglas Gregord720daf2010-04-06 17:30:22 +00005613 }
5614 }
5615
Sebastian Redl75d8a322010-08-02 23:18:59 +00005616 for (GlobalMethodPool::iterator M = MethodPool.begin(),
5617 MEnd = MethodPool.end();
5618 M != MEnd; ++M) {
5619 for (ObjCMethodList *MethList = &M->second.first;
5620 MethList && MethList->Method;
Argyrios Kyrtzidisd3da6e02013-04-17 00:08:58 +00005621 MethList = MethList->getNext()) {
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005622 if (!isAcceptableObjCMethod(MethList->Method, MK_Any, SelIdents))
Douglas Gregor6285f752010-04-06 16:40:00 +00005623 continue;
Douglas Gregor1154e272010-09-16 16:06:31 +00005624
5625 if (!Selectors.insert(MethList->Method->getSelector()))
5626 continue;
5627
Douglas Gregor0a0e2b32013-01-31 04:52:16 +00005628 Result R(MethList->Method, Results.getBasePriority(MethList->Method),0);
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005629 R.StartParameter = SelIdents.size();
Douglas Gregor6285f752010-04-06 16:40:00 +00005630 R.AllParametersAreInformative = false;
5631 Results.MaybeAddResult(R, CurContext);
5632 }
5633 }
5634 }
Steve Naroffeae65032009-11-07 02:08:14 +00005635 Results.ExitScope();
Douglas Gregor74661272010-09-21 00:03:25 +00005636
5637
5638 // If we're actually at the argument expression (rather than prior to the
5639 // selector), we're actually performing code completion for an expression.
5640 // Determine whether we have a single, best method. If so, we can
5641 // code-complete the expression using the corresponding parameter type as
5642 // our preferred type, improving completion results.
5643 if (AtArgumentExpression) {
5644 QualType PreferredType = getPreferredArgumentTypeForMessageSend(Results,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005645 SelIdents.size());
Douglas Gregor74661272010-09-21 00:03:25 +00005646 if (PreferredType.isNull())
5647 CodeCompleteOrdinaryName(S, PCC_Expression);
5648 else
5649 CodeCompleteExpression(S, PreferredType);
5650 return;
5651 }
5652
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005653 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor63745d52011-07-21 01:05:26 +00005654 Results.getCompletionContext(),
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005655 Results.data(),Results.size());
Steve Naroffeae65032009-11-07 02:08:14 +00005656}
Douglas Gregorbaf69612009-11-18 04:19:12 +00005657
Douglas Gregor68762e72010-08-23 21:17:50 +00005658void Sema::CodeCompleteObjCForCollection(Scope *S,
5659 DeclGroupPtrTy IterationVar) {
5660 CodeCompleteExpressionData Data;
5661 Data.ObjCCollection = true;
5662
5663 if (IterationVar.getAsOpaquePtr()) {
Serge Pavlov9ddb76e2013-08-27 13:15:56 +00005664 DeclGroupRef DG = IterationVar.get();
Douglas Gregor68762e72010-08-23 21:17:50 +00005665 for (DeclGroupRef::iterator I = DG.begin(), End = DG.end(); I != End; ++I) {
5666 if (*I)
5667 Data.IgnoreDecls.push_back(*I);
5668 }
5669 }
5670
5671 CodeCompleteExpression(S, Data);
5672}
5673
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005674void Sema::CodeCompleteObjCSelector(Scope *S,
5675 ArrayRef<IdentifierInfo *> SelIdents) {
Douglas Gregor67c692c2010-08-26 15:07:07 +00005676 // If we have an external source, load the entire class method
5677 // pool from the AST file.
5678 if (ExternalSource) {
5679 for (uint32_t I = 0, N = ExternalSource->GetNumExternalSelectors();
5680 I != N; ++I) {
5681 Selector Sel = ExternalSource->GetExternalSelector(I);
5682 if (Sel.isNull() || MethodPool.count(Sel))
5683 continue;
5684
5685 ReadMethodPool(Sel);
5686 }
5687 }
5688
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005689 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005690 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005691 CodeCompletionContext::CCC_SelectorName);
Douglas Gregor67c692c2010-08-26 15:07:07 +00005692 Results.EnterNewScope();
5693 for (GlobalMethodPool::iterator M = MethodPool.begin(),
5694 MEnd = MethodPool.end();
5695 M != MEnd; ++M) {
5696
5697 Selector Sel = M->first;
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005698 if (!isAcceptableObjCSelector(Sel, MK_Any, SelIdents))
Douglas Gregor67c692c2010-08-26 15:07:07 +00005699 continue;
5700
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005701 CodeCompletionBuilder Builder(Results.getAllocator(),
5702 Results.getCodeCompletionTUInfo());
Douglas Gregor67c692c2010-08-26 15:07:07 +00005703 if (Sel.isUnarySelector()) {
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005704 Builder.AddTypedTextChunk(Builder.getAllocator().CopyString(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00005705 Sel.getNameForSlot(0)));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005706 Results.AddResult(Builder.TakeString());
Douglas Gregor67c692c2010-08-26 15:07:07 +00005707 continue;
5708 }
5709
Douglas Gregor9ac1ad12010-08-26 16:46:39 +00005710 std::string Accumulator;
Douglas Gregor67c692c2010-08-26 15:07:07 +00005711 for (unsigned I = 0, N = Sel.getNumArgs(); I != N; ++I) {
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00005712 if (I == SelIdents.size()) {
Douglas Gregor9ac1ad12010-08-26 16:46:39 +00005713 if (!Accumulator.empty()) {
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005714 Builder.AddInformativeChunk(Builder.getAllocator().CopyString(
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005715 Accumulator));
Douglas Gregor9ac1ad12010-08-26 16:46:39 +00005716 Accumulator.clear();
5717 }
5718 }
5719
Benjamin Kramer632500c2011-07-26 16:59:25 +00005720 Accumulator += Sel.getNameForSlot(I);
Douglas Gregor9ac1ad12010-08-26 16:46:39 +00005721 Accumulator += ':';
Douglas Gregor67c692c2010-08-26 15:07:07 +00005722 }
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00005723 Builder.AddTypedTextChunk(Builder.getAllocator().CopyString( Accumulator));
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005724 Results.AddResult(Builder.TakeString());
Douglas Gregor67c692c2010-08-26 15:07:07 +00005725 }
5726 Results.ExitScope();
5727
5728 HandleCodeCompleteResults(this, CodeCompleter,
5729 CodeCompletionContext::CCC_SelectorName,
5730 Results.data(), Results.size());
5731}
5732
Douglas Gregorbaf69612009-11-18 04:19:12 +00005733/// \brief Add all of the protocol declarations that we find in the given
5734/// (translation unit) context.
5735static void AddProtocolResults(DeclContext *Ctx, DeclContext *CurContext,
Douglas Gregor5b4671c2009-11-18 04:49:41 +00005736 bool OnlyForwardDeclarations,
Douglas Gregorbaf69612009-11-18 04:19:12 +00005737 ResultBuilder &Results) {
John McCall276321a2010-08-25 06:19:51 +00005738 typedef CodeCompletionResult Result;
Douglas Gregorbaf69612009-11-18 04:19:12 +00005739
5740 for (DeclContext::decl_iterator D = Ctx->decls_begin(),
5741 DEnd = Ctx->decls_end();
5742 D != DEnd; ++D) {
5743 // Record any protocols we find.
5744 if (ObjCProtocolDecl *Proto = dyn_cast<ObjCProtocolDecl>(*D))
Douglas Gregore6e48b12012-01-01 19:29:29 +00005745 if (!OnlyForwardDeclarations || !Proto->hasDefinition())
Douglas Gregor0a0e2b32013-01-31 04:52:16 +00005746 Results.AddResult(Result(Proto, Results.getBasePriority(Proto), 0),
5747 CurContext, 0, false);
Douglas Gregorbaf69612009-11-18 04:19:12 +00005748 }
5749}
5750
5751void Sema::CodeCompleteObjCProtocolReferences(IdentifierLocPair *Protocols,
5752 unsigned NumProtocols) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005753 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005754 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005755 CodeCompletionContext::CCC_ObjCProtocolName);
Douglas Gregorbaf69612009-11-18 04:19:12 +00005756
Douglas Gregora3b23b02010-12-09 21:44:02 +00005757 if (CodeCompleter && CodeCompleter->includeGlobals()) {
5758 Results.EnterNewScope();
5759
5760 // Tell the result set to ignore all of the protocols we have
5761 // already seen.
5762 // FIXME: This doesn't work when caching code-completion results.
5763 for (unsigned I = 0; I != NumProtocols; ++I)
5764 if (ObjCProtocolDecl *Protocol = LookupProtocol(Protocols[I].first,
5765 Protocols[I].second))
5766 Results.Ignore(Protocol);
Douglas Gregorbaf69612009-11-18 04:19:12 +00005767
Douglas Gregora3b23b02010-12-09 21:44:02 +00005768 // Add all protocols.
5769 AddProtocolResults(Context.getTranslationUnitDecl(), CurContext, false,
5770 Results);
Douglas Gregor5b4671c2009-11-18 04:49:41 +00005771
Douglas Gregora3b23b02010-12-09 21:44:02 +00005772 Results.ExitScope();
5773 }
5774
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005775 HandleCodeCompleteResults(this, CodeCompleter,
5776 CodeCompletionContext::CCC_ObjCProtocolName,
5777 Results.data(),Results.size());
Douglas Gregor5b4671c2009-11-18 04:49:41 +00005778}
5779
5780void Sema::CodeCompleteObjCProtocolDecl(Scope *) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005781 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005782 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005783 CodeCompletionContext::CCC_ObjCProtocolName);
Douglas Gregor5b4671c2009-11-18 04:49:41 +00005784
Douglas Gregora3b23b02010-12-09 21:44:02 +00005785 if (CodeCompleter && CodeCompleter->includeGlobals()) {
5786 Results.EnterNewScope();
5787
5788 // Add all protocols.
5789 AddProtocolResults(Context.getTranslationUnitDecl(), CurContext, true,
5790 Results);
Douglas Gregorbaf69612009-11-18 04:19:12 +00005791
Douglas Gregora3b23b02010-12-09 21:44:02 +00005792 Results.ExitScope();
5793 }
5794
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005795 HandleCodeCompleteResults(this, CodeCompleter,
5796 CodeCompletionContext::CCC_ObjCProtocolName,
5797 Results.data(),Results.size());
Douglas Gregorbaf69612009-11-18 04:19:12 +00005798}
Douglas Gregor49c22a72009-11-18 16:26:39 +00005799
5800/// \brief Add all of the Objective-C interface declarations that we find in
5801/// the given (translation unit) context.
5802static void AddInterfaceResults(DeclContext *Ctx, DeclContext *CurContext,
5803 bool OnlyForwardDeclarations,
5804 bool OnlyUnimplemented,
5805 ResultBuilder &Results) {
John McCall276321a2010-08-25 06:19:51 +00005806 typedef CodeCompletionResult Result;
Douglas Gregor49c22a72009-11-18 16:26:39 +00005807
5808 for (DeclContext::decl_iterator D = Ctx->decls_begin(),
5809 DEnd = Ctx->decls_end();
5810 D != DEnd; ++D) {
Douglas Gregor1c283312010-08-11 12:19:30 +00005811 // Record any interfaces we find.
5812 if (ObjCInterfaceDecl *Class = dyn_cast<ObjCInterfaceDecl>(*D))
Douglas Gregordc9166c2011-12-15 20:29:51 +00005813 if ((!OnlyForwardDeclarations || !Class->hasDefinition()) &&
Douglas Gregor1c283312010-08-11 12:19:30 +00005814 (!OnlyUnimplemented || !Class->getImplementation()))
Douglas Gregor0a0e2b32013-01-31 04:52:16 +00005815 Results.AddResult(Result(Class, Results.getBasePriority(Class), 0),
5816 CurContext, 0, false);
Douglas Gregor49c22a72009-11-18 16:26:39 +00005817 }
5818}
5819
5820void Sema::CodeCompleteObjCInterfaceDecl(Scope *S) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005821 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005822 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005823 CodeCompletionContext::CCC_Other);
Douglas Gregor49c22a72009-11-18 16:26:39 +00005824 Results.EnterNewScope();
5825
Douglas Gregor2c595ad2011-07-30 06:55:39 +00005826 if (CodeCompleter->includeGlobals()) {
5827 // Add all classes.
5828 AddInterfaceResults(Context.getTranslationUnitDecl(), CurContext, false,
5829 false, Results);
5830 }
5831
Douglas Gregor49c22a72009-11-18 16:26:39 +00005832 Results.ExitScope();
Douglas Gregor2c595ad2011-07-30 06:55:39 +00005833
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005834 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor2c595ad2011-07-30 06:55:39 +00005835 CodeCompletionContext::CCC_ObjCInterfaceName,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005836 Results.data(),Results.size());
Douglas Gregor49c22a72009-11-18 16:26:39 +00005837}
5838
Douglas Gregorb2ccf012010-04-15 22:33:43 +00005839void Sema::CodeCompleteObjCSuperclass(Scope *S, IdentifierInfo *ClassName,
5840 SourceLocation ClassNameLoc) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005841 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005842 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor2c595ad2011-07-30 06:55:39 +00005843 CodeCompletionContext::CCC_ObjCInterfaceName);
Douglas Gregor49c22a72009-11-18 16:26:39 +00005844 Results.EnterNewScope();
5845
5846 // Make sure that we ignore the class we're currently defining.
5847 NamedDecl *CurClass
Douglas Gregorb2ccf012010-04-15 22:33:43 +00005848 = LookupSingleName(TUScope, ClassName, ClassNameLoc, LookupOrdinaryName);
Douglas Gregor5d34fd32009-11-18 19:08:43 +00005849 if (CurClass && isa<ObjCInterfaceDecl>(CurClass))
Douglas Gregor49c22a72009-11-18 16:26:39 +00005850 Results.Ignore(CurClass);
5851
Douglas Gregor2c595ad2011-07-30 06:55:39 +00005852 if (CodeCompleter->includeGlobals()) {
5853 // Add all classes.
5854 AddInterfaceResults(Context.getTranslationUnitDecl(), CurContext, false,
5855 false, Results);
5856 }
5857
Douglas Gregor49c22a72009-11-18 16:26:39 +00005858 Results.ExitScope();
Douglas Gregor2c595ad2011-07-30 06:55:39 +00005859
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005860 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor2c595ad2011-07-30 06:55:39 +00005861 CodeCompletionContext::CCC_ObjCInterfaceName,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005862 Results.data(),Results.size());
Douglas Gregor49c22a72009-11-18 16:26:39 +00005863}
5864
5865void Sema::CodeCompleteObjCImplementationDecl(Scope *S) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005866 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005867 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005868 CodeCompletionContext::CCC_Other);
Douglas Gregor49c22a72009-11-18 16:26:39 +00005869 Results.EnterNewScope();
5870
Douglas Gregor2c595ad2011-07-30 06:55:39 +00005871 if (CodeCompleter->includeGlobals()) {
5872 // Add all unimplemented classes.
5873 AddInterfaceResults(Context.getTranslationUnitDecl(), CurContext, false,
5874 true, Results);
5875 }
5876
Douglas Gregor49c22a72009-11-18 16:26:39 +00005877 Results.ExitScope();
Douglas Gregor2c595ad2011-07-30 06:55:39 +00005878
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005879 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor2c595ad2011-07-30 06:55:39 +00005880 CodeCompletionContext::CCC_ObjCInterfaceName,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005881 Results.data(),Results.size());
Douglas Gregor49c22a72009-11-18 16:26:39 +00005882}
Douglas Gregor5d34fd32009-11-18 19:08:43 +00005883
5884void Sema::CodeCompleteObjCInterfaceCategory(Scope *S,
Douglas Gregorb2ccf012010-04-15 22:33:43 +00005885 IdentifierInfo *ClassName,
5886 SourceLocation ClassNameLoc) {
John McCall276321a2010-08-25 06:19:51 +00005887 typedef CodeCompletionResult Result;
Douglas Gregor5d34fd32009-11-18 19:08:43 +00005888
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005889 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005890 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor21325842011-07-07 16:03:39 +00005891 CodeCompletionContext::CCC_ObjCCategoryName);
Douglas Gregor5d34fd32009-11-18 19:08:43 +00005892
5893 // Ignore any categories we find that have already been implemented by this
5894 // interface.
5895 llvm::SmallPtrSet<IdentifierInfo *, 16> CategoryNames;
5896 NamedDecl *CurClass
Douglas Gregorb2ccf012010-04-15 22:33:43 +00005897 = LookupSingleName(TUScope, ClassName, ClassNameLoc, LookupOrdinaryName);
Douglas Gregor048fbfa2013-01-16 23:00:23 +00005898 if (ObjCInterfaceDecl *Class = dyn_cast_or_null<ObjCInterfaceDecl>(CurClass)){
5899 for (ObjCInterfaceDecl::visible_categories_iterator
5900 Cat = Class->visible_categories_begin(),
5901 CatEnd = Class->visible_categories_end();
5902 Cat != CatEnd; ++Cat) {
5903 CategoryNames.insert(Cat->getIdentifier());
5904 }
5905 }
5906
Douglas Gregor5d34fd32009-11-18 19:08:43 +00005907 // Add all of the categories we know about.
5908 Results.EnterNewScope();
5909 TranslationUnitDecl *TU = Context.getTranslationUnitDecl();
5910 for (DeclContext::decl_iterator D = TU->decls_begin(),
5911 DEnd = TU->decls_end();
5912 D != DEnd; ++D)
5913 if (ObjCCategoryDecl *Category = dyn_cast<ObjCCategoryDecl>(*D))
5914 if (CategoryNames.insert(Category->getIdentifier()))
Douglas Gregor0a0e2b32013-01-31 04:52:16 +00005915 Results.AddResult(Result(Category, Results.getBasePriority(Category),0),
5916 CurContext, 0, false);
Douglas Gregor5d34fd32009-11-18 19:08:43 +00005917 Results.ExitScope();
5918
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005919 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor21325842011-07-07 16:03:39 +00005920 CodeCompletionContext::CCC_ObjCCategoryName,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005921 Results.data(),Results.size());
Douglas Gregor5d34fd32009-11-18 19:08:43 +00005922}
5923
5924void Sema::CodeCompleteObjCImplementationCategory(Scope *S,
Douglas Gregorb2ccf012010-04-15 22:33:43 +00005925 IdentifierInfo *ClassName,
5926 SourceLocation ClassNameLoc) {
John McCall276321a2010-08-25 06:19:51 +00005927 typedef CodeCompletionResult Result;
Douglas Gregor5d34fd32009-11-18 19:08:43 +00005928
5929 // Find the corresponding interface. If we couldn't find the interface, the
5930 // program itself is ill-formed. However, we'll try to be helpful still by
5931 // providing the list of all of the categories we know about.
5932 NamedDecl *CurClass
Douglas Gregorb2ccf012010-04-15 22:33:43 +00005933 = LookupSingleName(TUScope, ClassName, ClassNameLoc, LookupOrdinaryName);
Douglas Gregor5d34fd32009-11-18 19:08:43 +00005934 ObjCInterfaceDecl *Class = dyn_cast_or_null<ObjCInterfaceDecl>(CurClass);
5935 if (!Class)
Douglas Gregorb2ccf012010-04-15 22:33:43 +00005936 return CodeCompleteObjCInterfaceCategory(S, ClassName, ClassNameLoc);
Douglas Gregor5d34fd32009-11-18 19:08:43 +00005937
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005938 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005939 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor21325842011-07-07 16:03:39 +00005940 CodeCompletionContext::CCC_ObjCCategoryName);
Douglas Gregor5d34fd32009-11-18 19:08:43 +00005941
5942 // Add all of the categories that have have corresponding interface
5943 // declarations in this class and any of its superclasses, except for
5944 // already-implemented categories in the class itself.
5945 llvm::SmallPtrSet<IdentifierInfo *, 16> CategoryNames;
5946 Results.EnterNewScope();
5947 bool IgnoreImplemented = true;
5948 while (Class) {
Douglas Gregor048fbfa2013-01-16 23:00:23 +00005949 for (ObjCInterfaceDecl::visible_categories_iterator
5950 Cat = Class->visible_categories_begin(),
5951 CatEnd = Class->visible_categories_end();
5952 Cat != CatEnd; ++Cat) {
5953 if ((!IgnoreImplemented || !Cat->getImplementation()) &&
5954 CategoryNames.insert(Cat->getIdentifier()))
Douglas Gregor0a0e2b32013-01-31 04:52:16 +00005955 Results.AddResult(Result(*Cat, Results.getBasePriority(*Cat), 0),
5956 CurContext, 0, false);
Douglas Gregor048fbfa2013-01-16 23:00:23 +00005957 }
Douglas Gregor5d34fd32009-11-18 19:08:43 +00005958
5959 Class = Class->getSuperClass();
5960 IgnoreImplemented = false;
5961 }
5962 Results.ExitScope();
5963
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005964 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor21325842011-07-07 16:03:39 +00005965 CodeCompletionContext::CCC_ObjCCategoryName,
Douglas Gregor00c37ef2010-08-11 21:23:17 +00005966 Results.data(),Results.size());
Douglas Gregor5d34fd32009-11-18 19:08:43 +00005967}
Douglas Gregor5d649882009-11-18 22:32:06 +00005968
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00005969void Sema::CodeCompleteObjCPropertyDefinition(Scope *S) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005970 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00005971 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00005972 CodeCompletionContext::CCC_Other);
Douglas Gregor5d649882009-11-18 22:32:06 +00005973
5974 // Figure out where this @synthesize lives.
5975 ObjCContainerDecl *Container
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00005976 = dyn_cast_or_null<ObjCContainerDecl>(CurContext);
Douglas Gregor5d649882009-11-18 22:32:06 +00005977 if (!Container ||
5978 (!isa<ObjCImplementationDecl>(Container) &&
5979 !isa<ObjCCategoryImplDecl>(Container)))
5980 return;
5981
5982 // Ignore any properties that have already been implemented.
Douglas Gregor9b4f3702012-06-12 13:44:08 +00005983 Container = getContainerDef(Container);
5984 for (DeclContext::decl_iterator D = Container->decls_begin(),
Douglas Gregor5d649882009-11-18 22:32:06 +00005985 DEnd = Container->decls_end();
5986 D != DEnd; ++D)
5987 if (ObjCPropertyImplDecl *PropertyImpl = dyn_cast<ObjCPropertyImplDecl>(*D))
5988 Results.Ignore(PropertyImpl->getPropertyDecl());
5989
5990 // Add any properties that we find.
Douglas Gregorb888acf2010-12-09 23:01:55 +00005991 AddedPropertiesSet AddedProperties;
Douglas Gregor5d649882009-11-18 22:32:06 +00005992 Results.EnterNewScope();
5993 if (ObjCImplementationDecl *ClassImpl
5994 = dyn_cast<ObjCImplementationDecl>(Container))
Douglas Gregor95147142011-05-05 15:50:42 +00005995 AddObjCProperties(ClassImpl->getClassInterface(), false,
5996 /*AllowNullaryMethods=*/false, CurContext,
Douglas Gregorb888acf2010-12-09 23:01:55 +00005997 AddedProperties, Results);
Douglas Gregor5d649882009-11-18 22:32:06 +00005998 else
5999 AddObjCProperties(cast<ObjCCategoryImplDecl>(Container)->getCategoryDecl(),
Douglas Gregor95147142011-05-05 15:50:42 +00006000 false, /*AllowNullaryMethods=*/false, CurContext,
6001 AddedProperties, Results);
Douglas Gregor5d649882009-11-18 22:32:06 +00006002 Results.ExitScope();
6003
Douglas Gregor00c37ef2010-08-11 21:23:17 +00006004 HandleCodeCompleteResults(this, CodeCompleter,
6005 CodeCompletionContext::CCC_Other,
6006 Results.data(),Results.size());
Douglas Gregor5d649882009-11-18 22:32:06 +00006007}
6008
6009void Sema::CodeCompleteObjCPropertySynthesizeIvar(Scope *S,
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00006010 IdentifierInfo *PropertyName) {
John McCall276321a2010-08-25 06:19:51 +00006011 typedef CodeCompletionResult Result;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006012 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00006013 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006014 CodeCompletionContext::CCC_Other);
Douglas Gregor5d649882009-11-18 22:32:06 +00006015
6016 // Figure out where this @synthesize lives.
6017 ObjCContainerDecl *Container
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00006018 = dyn_cast_or_null<ObjCContainerDecl>(CurContext);
Douglas Gregor5d649882009-11-18 22:32:06 +00006019 if (!Container ||
6020 (!isa<ObjCImplementationDecl>(Container) &&
6021 !isa<ObjCCategoryImplDecl>(Container)))
6022 return;
6023
6024 // Figure out which interface we're looking into.
6025 ObjCInterfaceDecl *Class = 0;
6026 if (ObjCImplementationDecl *ClassImpl
6027 = dyn_cast<ObjCImplementationDecl>(Container))
6028 Class = ClassImpl->getClassInterface();
6029 else
6030 Class = cast<ObjCCategoryImplDecl>(Container)->getCategoryDecl()
6031 ->getClassInterface();
6032
Douglas Gregor6c7a9ee2011-04-18 14:40:46 +00006033 // Determine the type of the property we're synthesizing.
6034 QualType PropertyType = Context.getObjCIdType();
6035 if (Class) {
6036 if (ObjCPropertyDecl *Property
6037 = Class->FindPropertyDeclaration(PropertyName)) {
6038 PropertyType
6039 = Property->getType().getNonReferenceType().getUnqualifiedType();
6040
6041 // Give preference to ivars
6042 Results.setPreferredType(PropertyType);
6043 }
6044 }
6045
Douglas Gregor5d649882009-11-18 22:32:06 +00006046 // Add all of the instance variables in this class and its superclasses.
6047 Results.EnterNewScope();
Douglas Gregor331faa02011-04-18 14:13:53 +00006048 bool SawSimilarlyNamedIvar = false;
6049 std::string NameWithPrefix;
6050 NameWithPrefix += '_';
Benjamin Kramer632500c2011-07-26 16:59:25 +00006051 NameWithPrefix += PropertyName->getName();
Douglas Gregor331faa02011-04-18 14:13:53 +00006052 std::string NameWithSuffix = PropertyName->getName().str();
6053 NameWithSuffix += '_';
Douglas Gregor5d649882009-11-18 22:32:06 +00006054 for(; Class; Class = Class->getSuperClass()) {
Douglas Gregor331faa02011-04-18 14:13:53 +00006055 for (ObjCIvarDecl *Ivar = Class->all_declared_ivar_begin(); Ivar;
6056 Ivar = Ivar->getNextIvar()) {
Douglas Gregor0a0e2b32013-01-31 04:52:16 +00006057 Results.AddResult(Result(Ivar, Results.getBasePriority(Ivar), 0),
6058 CurContext, 0, false);
Douglas Gregor6c7a9ee2011-04-18 14:40:46 +00006059
Douglas Gregor331faa02011-04-18 14:13:53 +00006060 // Determine whether we've seen an ivar with a name similar to the
6061 // property.
Douglas Gregor6c7a9ee2011-04-18 14:40:46 +00006062 if ((PropertyName == Ivar->getIdentifier() ||
Douglas Gregor331faa02011-04-18 14:13:53 +00006063 NameWithPrefix == Ivar->getName() ||
Douglas Gregor6c7a9ee2011-04-18 14:40:46 +00006064 NameWithSuffix == Ivar->getName())) {
Douglas Gregor331faa02011-04-18 14:13:53 +00006065 SawSimilarlyNamedIvar = true;
Douglas Gregor6c7a9ee2011-04-18 14:40:46 +00006066
6067 // Reduce the priority of this result by one, to give it a slight
6068 // advantage over other results whose names don't match so closely.
6069 if (Results.size() &&
6070 Results.data()[Results.size() - 1].Kind
6071 == CodeCompletionResult::RK_Declaration &&
6072 Results.data()[Results.size() - 1].Declaration == Ivar)
6073 Results.data()[Results.size() - 1].Priority--;
6074 }
Douglas Gregor331faa02011-04-18 14:13:53 +00006075 }
Douglas Gregor5d649882009-11-18 22:32:06 +00006076 }
Douglas Gregor331faa02011-04-18 14:13:53 +00006077
6078 if (!SawSimilarlyNamedIvar) {
6079 // Create ivar result _propName, that the user can use to synthesize
Douglas Gregor6c7a9ee2011-04-18 14:40:46 +00006080 // an ivar of the appropriate type.
6081 unsigned Priority = CCP_MemberDeclaration + 1;
Douglas Gregor331faa02011-04-18 14:13:53 +00006082 typedef CodeCompletionResult Result;
6083 CodeCompletionAllocator &Allocator = Results.getAllocator();
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00006084 CodeCompletionBuilder Builder(Allocator, Results.getCodeCompletionTUInfo(),
6085 Priority,CXAvailability_Available);
Douglas Gregor331faa02011-04-18 14:13:53 +00006086
Douglas Gregor75acd922011-09-27 23:30:47 +00006087 PrintingPolicy Policy = getCompletionPrintingPolicy(*this);
Douglas Gregor6c7a9ee2011-04-18 14:40:46 +00006088 Builder.AddResultTypeChunk(GetCompletionTypeString(PropertyType, Context,
Douglas Gregor75acd922011-09-27 23:30:47 +00006089 Policy, Allocator));
Douglas Gregor331faa02011-04-18 14:13:53 +00006090 Builder.AddTypedTextChunk(Allocator.CopyString(NameWithPrefix));
6091 Results.AddResult(Result(Builder.TakeString(), Priority,
6092 CXCursor_ObjCIvarDecl));
6093 }
6094
Douglas Gregor5d649882009-11-18 22:32:06 +00006095 Results.ExitScope();
6096
Douglas Gregor00c37ef2010-08-11 21:23:17 +00006097 HandleCodeCompleteResults(this, CodeCompleter,
6098 CodeCompletionContext::CCC_Other,
6099 Results.data(),Results.size());
Douglas Gregor5d649882009-11-18 22:32:06 +00006100}
Douglas Gregor636a61e2010-04-07 00:21:17 +00006101
Douglas Gregor416b5752010-08-25 01:08:01 +00006102// Mapping from selectors to the methods that implement that selector, along
6103// with the "in original class" flag.
Benjamin Kramereb8c4462013-06-29 17:52:13 +00006104typedef llvm::DenseMap<
6105 Selector, llvm::PointerIntPair<ObjCMethodDecl *, 1, bool> > KnownMethodsMap;
Douglas Gregor636a61e2010-04-07 00:21:17 +00006106
6107/// \brief Find all of the methods that reside in the given container
6108/// (and its superclasses, protocols, etc.) that meet the given
6109/// criteria. Insert those methods into the map of known methods,
6110/// indexed by selector so they can be easily found.
6111static void FindImplementableMethods(ASTContext &Context,
6112 ObjCContainerDecl *Container,
6113 bool WantInstanceMethods,
6114 QualType ReturnType,
Douglas Gregor416b5752010-08-25 01:08:01 +00006115 KnownMethodsMap &KnownMethods,
6116 bool InOriginalClass = true) {
Douglas Gregor636a61e2010-04-07 00:21:17 +00006117 if (ObjCInterfaceDecl *IFace = dyn_cast<ObjCInterfaceDecl>(Container)) {
Douglas Gregor9b4f3702012-06-12 13:44:08 +00006118 // Make sure we have a definition; that's what we'll walk.
Douglas Gregorc0ac7d62011-12-15 05:27:12 +00006119 if (!IFace->hasDefinition())
6120 return;
Douglas Gregor9b4f3702012-06-12 13:44:08 +00006121
6122 IFace = IFace->getDefinition();
6123 Container = IFace;
Douglas Gregorc0ac7d62011-12-15 05:27:12 +00006124
Douglas Gregor636a61e2010-04-07 00:21:17 +00006125 const ObjCList<ObjCProtocolDecl> &Protocols
6126 = IFace->getReferencedProtocols();
6127 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006128 E = Protocols.end();
Douglas Gregor636a61e2010-04-07 00:21:17 +00006129 I != E; ++I)
6130 FindImplementableMethods(Context, *I, WantInstanceMethods, ReturnType,
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006131 KnownMethods, InOriginalClass);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006132
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006133 // Add methods from any class extensions and categories.
Douglas Gregor048fbfa2013-01-16 23:00:23 +00006134 for (ObjCInterfaceDecl::visible_categories_iterator
6135 Cat = IFace->visible_categories_begin(),
6136 CatEnd = IFace->visible_categories_end();
6137 Cat != CatEnd; ++Cat) {
6138 FindImplementableMethods(Context, *Cat, WantInstanceMethods, ReturnType,
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006139 KnownMethods, false);
Douglas Gregor048fbfa2013-01-16 23:00:23 +00006140 }
6141
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006142 // Visit the superclass.
6143 if (IFace->getSuperClass())
6144 FindImplementableMethods(Context, IFace->getSuperClass(),
6145 WantInstanceMethods, ReturnType,
6146 KnownMethods, false);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006147 }
6148
6149 if (ObjCCategoryDecl *Category = dyn_cast<ObjCCategoryDecl>(Container)) {
6150 // Recurse into protocols.
6151 const ObjCList<ObjCProtocolDecl> &Protocols
6152 = Category->getReferencedProtocols();
6153 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006154 E = Protocols.end();
Douglas Gregor636a61e2010-04-07 00:21:17 +00006155 I != E; ++I)
6156 FindImplementableMethods(Context, *I, WantInstanceMethods, ReturnType,
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006157 KnownMethods, InOriginalClass);
6158
6159 // If this category is the original class, jump to the interface.
6160 if (InOriginalClass && Category->getClassInterface())
6161 FindImplementableMethods(Context, Category->getClassInterface(),
6162 WantInstanceMethods, ReturnType, KnownMethods,
6163 false);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006164 }
6165
6166 if (ObjCProtocolDecl *Protocol = dyn_cast<ObjCProtocolDecl>(Container)) {
Douglas Gregor9b4f3702012-06-12 13:44:08 +00006167 // Make sure we have a definition; that's what we'll walk.
6168 if (!Protocol->hasDefinition())
6169 return;
6170 Protocol = Protocol->getDefinition();
6171 Container = Protocol;
6172
6173 // Recurse into protocols.
6174 const ObjCList<ObjCProtocolDecl> &Protocols
6175 = Protocol->getReferencedProtocols();
6176 for (ObjCList<ObjCProtocolDecl>::iterator I = Protocols.begin(),
6177 E = Protocols.end();
6178 I != E; ++I)
6179 FindImplementableMethods(Context, *I, WantInstanceMethods, ReturnType,
6180 KnownMethods, false);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006181 }
6182
6183 // Add methods in this container. This operation occurs last because
6184 // we want the methods from this container to override any methods
6185 // we've previously seen with the same selector.
6186 for (ObjCContainerDecl::method_iterator M = Container->meth_begin(),
6187 MEnd = Container->meth_end();
6188 M != MEnd; ++M) {
David Blaikie2d7c57e2012-04-30 02:36:29 +00006189 if (M->isInstanceMethod() == WantInstanceMethods) {
Douglas Gregor636a61e2010-04-07 00:21:17 +00006190 if (!ReturnType.isNull() &&
Alp Toker314cc812014-01-25 16:55:45 +00006191 !Context.hasSameUnqualifiedType(ReturnType, M->getReturnType()))
Douglas Gregor636a61e2010-04-07 00:21:17 +00006192 continue;
6193
Benjamin Kramereb8c4462013-06-29 17:52:13 +00006194 KnownMethods[M->getSelector()] =
6195 KnownMethodsMap::mapped_type(*M, InOriginalClass);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006196 }
6197 }
6198}
6199
Douglas Gregor669a25a2011-02-17 00:22:45 +00006200/// \brief Add the parenthesized return or parameter type chunk to a code
6201/// completion string.
6202static void AddObjCPassingTypeChunk(QualType Type,
Douglas Gregor29979142012-04-10 18:35:07 +00006203 unsigned ObjCDeclQuals,
Douglas Gregor669a25a2011-02-17 00:22:45 +00006204 ASTContext &Context,
Douglas Gregor75acd922011-09-27 23:30:47 +00006205 const PrintingPolicy &Policy,
Douglas Gregor669a25a2011-02-17 00:22:45 +00006206 CodeCompletionBuilder &Builder) {
6207 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
Douglas Gregor29979142012-04-10 18:35:07 +00006208 std::string Quals = formatObjCParamQualifiers(ObjCDeclQuals);
6209 if (!Quals.empty())
6210 Builder.AddTextChunk(Builder.getAllocator().CopyString(Quals));
Douglas Gregor75acd922011-09-27 23:30:47 +00006211 Builder.AddTextChunk(GetCompletionTypeString(Type, Context, Policy,
Douglas Gregor669a25a2011-02-17 00:22:45 +00006212 Builder.getAllocator()));
6213 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6214}
6215
6216/// \brief Determine whether the given class is or inherits from a class by
6217/// the given name.
6218static bool InheritsFromClassNamed(ObjCInterfaceDecl *Class,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006219 StringRef Name) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006220 if (!Class)
6221 return false;
6222
6223 if (Class->getIdentifier() && Class->getIdentifier()->getName() == Name)
6224 return true;
6225
6226 return InheritsFromClassNamed(Class->getSuperClass(), Name);
6227}
6228
6229/// \brief Add code completions for Objective-C Key-Value Coding (KVC) and
6230/// Key-Value Observing (KVO).
6231static void AddObjCKeyValueCompletions(ObjCPropertyDecl *Property,
6232 bool IsInstanceMethod,
6233 QualType ReturnType,
6234 ASTContext &Context,
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006235 VisitedSelectorSet &KnownSelectors,
Douglas Gregor669a25a2011-02-17 00:22:45 +00006236 ResultBuilder &Results) {
6237 IdentifierInfo *PropName = Property->getIdentifier();
6238 if (!PropName || PropName->getLength() == 0)
6239 return;
6240
Douglas Gregor75acd922011-09-27 23:30:47 +00006241 PrintingPolicy Policy = getCompletionPrintingPolicy(Results.getSema());
6242
Douglas Gregor669a25a2011-02-17 00:22:45 +00006243 // Builder that will create each code completion.
6244 typedef CodeCompletionResult Result;
6245 CodeCompletionAllocator &Allocator = Results.getAllocator();
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00006246 CodeCompletionBuilder Builder(Allocator, Results.getCodeCompletionTUInfo());
Douglas Gregor669a25a2011-02-17 00:22:45 +00006247
6248 // The selector table.
6249 SelectorTable &Selectors = Context.Selectors;
6250
6251 // The property name, copied into the code completion allocation region
6252 // on demand.
6253 struct KeyHolder {
6254 CodeCompletionAllocator &Allocator;
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006255 StringRef Key;
Douglas Gregor669a25a2011-02-17 00:22:45 +00006256 const char *CopiedKey;
6257
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006258 KeyHolder(CodeCompletionAllocator &Allocator, StringRef Key)
Douglas Gregor669a25a2011-02-17 00:22:45 +00006259 : Allocator(Allocator), Key(Key), CopiedKey(0) { }
6260
6261 operator const char *() {
6262 if (CopiedKey)
6263 return CopiedKey;
6264
6265 return CopiedKey = Allocator.CopyString(Key);
6266 }
6267 } Key(Allocator, PropName->getName());
6268
6269 // The uppercased name of the property name.
6270 std::string UpperKey = PropName->getName();
6271 if (!UpperKey.empty())
Jordan Rose4938f272013-02-09 10:09:43 +00006272 UpperKey[0] = toUppercase(UpperKey[0]);
Douglas Gregor669a25a2011-02-17 00:22:45 +00006273
6274 bool ReturnTypeMatchesProperty = ReturnType.isNull() ||
6275 Context.hasSameUnqualifiedType(ReturnType.getNonReferenceType(),
6276 Property->getType());
6277 bool ReturnTypeMatchesVoid
6278 = ReturnType.isNull() || ReturnType->isVoidType();
6279
6280 // Add the normal accessor -(type)key.
6281 if (IsInstanceMethod &&
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006282 KnownSelectors.insert(Selectors.getNullarySelector(PropName)) &&
Douglas Gregor669a25a2011-02-17 00:22:45 +00006283 ReturnTypeMatchesProperty && !Property->getGetterMethodDecl()) {
6284 if (ReturnType.isNull())
Douglas Gregor29979142012-04-10 18:35:07 +00006285 AddObjCPassingTypeChunk(Property->getType(), /*Quals=*/0,
6286 Context, Policy, Builder);
Douglas Gregor669a25a2011-02-17 00:22:45 +00006287
6288 Builder.AddTypedTextChunk(Key);
6289 Results.AddResult(Result(Builder.TakeString(), CCP_CodePattern,
6290 CXCursor_ObjCInstanceMethodDecl));
6291 }
6292
6293 // If we have an integral or boolean property (or the user has provided
6294 // an integral or boolean return type), add the accessor -(type)isKey.
6295 if (IsInstanceMethod &&
6296 ((!ReturnType.isNull() &&
6297 (ReturnType->isIntegerType() || ReturnType->isBooleanType())) ||
6298 (ReturnType.isNull() &&
6299 (Property->getType()->isIntegerType() ||
6300 Property->getType()->isBooleanType())))) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006301 std::string SelectorName = (Twine("is") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006302 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006303 if (KnownSelectors.insert(Selectors.getNullarySelector(SelectorId))) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006304 if (ReturnType.isNull()) {
6305 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6306 Builder.AddTextChunk("BOOL");
6307 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6308 }
6309
6310 Builder.AddTypedTextChunk(
6311 Allocator.CopyString(SelectorId->getName()));
6312 Results.AddResult(Result(Builder.TakeString(), CCP_CodePattern,
6313 CXCursor_ObjCInstanceMethodDecl));
6314 }
6315 }
6316
6317 // Add the normal mutator.
6318 if (IsInstanceMethod && ReturnTypeMatchesVoid &&
6319 !Property->getSetterMethodDecl()) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006320 std::string SelectorName = (Twine("set") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006321 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006322 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId))) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006323 if (ReturnType.isNull()) {
6324 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6325 Builder.AddTextChunk("void");
6326 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6327 }
6328
6329 Builder.AddTypedTextChunk(
6330 Allocator.CopyString(SelectorId->getName()));
6331 Builder.AddTypedTextChunk(":");
Douglas Gregor29979142012-04-10 18:35:07 +00006332 AddObjCPassingTypeChunk(Property->getType(), /*Quals=*/0,
6333 Context, Policy, Builder);
Douglas Gregor669a25a2011-02-17 00:22:45 +00006334 Builder.AddTextChunk(Key);
6335 Results.AddResult(Result(Builder.TakeString(), CCP_CodePattern,
6336 CXCursor_ObjCInstanceMethodDecl));
6337 }
6338 }
6339
6340 // Indexed and unordered accessors
6341 unsigned IndexedGetterPriority = CCP_CodePattern;
6342 unsigned IndexedSetterPriority = CCP_CodePattern;
6343 unsigned UnorderedGetterPriority = CCP_CodePattern;
6344 unsigned UnorderedSetterPriority = CCP_CodePattern;
6345 if (const ObjCObjectPointerType *ObjCPointer
6346 = Property->getType()->getAs<ObjCObjectPointerType>()) {
6347 if (ObjCInterfaceDecl *IFace = ObjCPointer->getInterfaceDecl()) {
6348 // If this interface type is not provably derived from a known
6349 // collection, penalize the corresponding completions.
6350 if (!InheritsFromClassNamed(IFace, "NSMutableArray")) {
6351 IndexedSetterPriority += CCD_ProbablyNotObjCCollection;
6352 if (!InheritsFromClassNamed(IFace, "NSArray"))
6353 IndexedGetterPriority += CCD_ProbablyNotObjCCollection;
6354 }
6355
6356 if (!InheritsFromClassNamed(IFace, "NSMutableSet")) {
6357 UnorderedSetterPriority += CCD_ProbablyNotObjCCollection;
6358 if (!InheritsFromClassNamed(IFace, "NSSet"))
6359 UnorderedGetterPriority += CCD_ProbablyNotObjCCollection;
6360 }
6361 }
6362 } else {
6363 IndexedGetterPriority += CCD_ProbablyNotObjCCollection;
6364 IndexedSetterPriority += CCD_ProbablyNotObjCCollection;
6365 UnorderedGetterPriority += CCD_ProbablyNotObjCCollection;
6366 UnorderedSetterPriority += CCD_ProbablyNotObjCCollection;
6367 }
6368
6369 // Add -(NSUInteger)countOf<key>
6370 if (IsInstanceMethod &&
6371 (ReturnType.isNull() || ReturnType->isIntegerType())) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006372 std::string SelectorName = (Twine("countOf") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006373 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006374 if (KnownSelectors.insert(Selectors.getNullarySelector(SelectorId))) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006375 if (ReturnType.isNull()) {
6376 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6377 Builder.AddTextChunk("NSUInteger");
6378 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6379 }
6380
6381 Builder.AddTypedTextChunk(
6382 Allocator.CopyString(SelectorId->getName()));
6383 Results.AddResult(Result(Builder.TakeString(),
6384 std::min(IndexedGetterPriority,
6385 UnorderedGetterPriority),
6386 CXCursor_ObjCInstanceMethodDecl));
6387 }
6388 }
6389
6390 // Indexed getters
6391 // Add -(id)objectInKeyAtIndex:(NSUInteger)index
6392 if (IsInstanceMethod &&
6393 (ReturnType.isNull() || ReturnType->isObjCObjectPointerType())) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006394 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006395 = (Twine("objectIn") + UpperKey + "AtIndex").str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006396 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006397 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId))) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006398 if (ReturnType.isNull()) {
6399 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6400 Builder.AddTextChunk("id");
6401 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6402 }
6403
6404 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6405 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6406 Builder.AddTextChunk("NSUInteger");
6407 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6408 Builder.AddTextChunk("index");
6409 Results.AddResult(Result(Builder.TakeString(), IndexedGetterPriority,
6410 CXCursor_ObjCInstanceMethodDecl));
6411 }
6412 }
6413
6414 // Add -(NSArray *)keyAtIndexes:(NSIndexSet *)indexes
6415 if (IsInstanceMethod &&
6416 (ReturnType.isNull() ||
6417 (ReturnType->isObjCObjectPointerType() &&
6418 ReturnType->getAs<ObjCObjectPointerType>()->getInterfaceDecl() &&
6419 ReturnType->getAs<ObjCObjectPointerType>()->getInterfaceDecl()
6420 ->getName() == "NSArray"))) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006421 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006422 = (Twine(Property->getName()) + "AtIndexes").str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006423 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006424 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId))) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006425 if (ReturnType.isNull()) {
6426 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6427 Builder.AddTextChunk("NSArray *");
6428 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6429 }
6430
6431 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6432 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6433 Builder.AddTextChunk("NSIndexSet *");
6434 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6435 Builder.AddTextChunk("indexes");
6436 Results.AddResult(Result(Builder.TakeString(), IndexedGetterPriority,
6437 CXCursor_ObjCInstanceMethodDecl));
6438 }
6439 }
6440
6441 // Add -(void)getKey:(type **)buffer range:(NSRange)inRange
6442 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006443 std::string SelectorName = (Twine("get") + UpperKey).str();
Douglas Gregor669a25a2011-02-17 00:22:45 +00006444 IdentifierInfo *SelectorIds[2] = {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006445 &Context.Idents.get(SelectorName),
Douglas Gregor669a25a2011-02-17 00:22:45 +00006446 &Context.Idents.get("range")
6447 };
6448
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006449 if (KnownSelectors.insert(Selectors.getSelector(2, SelectorIds))) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006450 if (ReturnType.isNull()) {
6451 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6452 Builder.AddTextChunk("void");
6453 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6454 }
6455
6456 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6457 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6458 Builder.AddPlaceholderChunk("object-type");
6459 Builder.AddTextChunk(" **");
6460 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6461 Builder.AddTextChunk("buffer");
6462 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
6463 Builder.AddTypedTextChunk("range:");
6464 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6465 Builder.AddTextChunk("NSRange");
6466 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6467 Builder.AddTextChunk("inRange");
6468 Results.AddResult(Result(Builder.TakeString(), IndexedGetterPriority,
6469 CXCursor_ObjCInstanceMethodDecl));
6470 }
6471 }
6472
6473 // Mutable indexed accessors
6474
6475 // - (void)insertObject:(type *)object inKeyAtIndex:(NSUInteger)index
6476 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006477 std::string SelectorName = (Twine("in") + UpperKey + "AtIndex").str();
Douglas Gregor669a25a2011-02-17 00:22:45 +00006478 IdentifierInfo *SelectorIds[2] = {
6479 &Context.Idents.get("insertObject"),
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006480 &Context.Idents.get(SelectorName)
Douglas Gregor669a25a2011-02-17 00:22:45 +00006481 };
6482
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006483 if (KnownSelectors.insert(Selectors.getSelector(2, SelectorIds))) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006484 if (ReturnType.isNull()) {
6485 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6486 Builder.AddTextChunk("void");
6487 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6488 }
6489
6490 Builder.AddTypedTextChunk("insertObject:");
6491 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6492 Builder.AddPlaceholderChunk("object-type");
6493 Builder.AddTextChunk(" *");
6494 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6495 Builder.AddTextChunk("object");
6496 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
6497 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6498 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6499 Builder.AddPlaceholderChunk("NSUInteger");
6500 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6501 Builder.AddTextChunk("index");
6502 Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority,
6503 CXCursor_ObjCInstanceMethodDecl));
6504 }
6505 }
6506
6507 // - (void)insertKey:(NSArray *)array atIndexes:(NSIndexSet *)indexes
6508 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006509 std::string SelectorName = (Twine("insert") + UpperKey).str();
Douglas Gregor669a25a2011-02-17 00:22:45 +00006510 IdentifierInfo *SelectorIds[2] = {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006511 &Context.Idents.get(SelectorName),
Douglas Gregor669a25a2011-02-17 00:22:45 +00006512 &Context.Idents.get("atIndexes")
6513 };
6514
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006515 if (KnownSelectors.insert(Selectors.getSelector(2, SelectorIds))) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006516 if (ReturnType.isNull()) {
6517 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6518 Builder.AddTextChunk("void");
6519 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6520 }
6521
6522 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6523 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6524 Builder.AddTextChunk("NSArray *");
6525 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6526 Builder.AddTextChunk("array");
6527 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
6528 Builder.AddTypedTextChunk("atIndexes:");
6529 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6530 Builder.AddPlaceholderChunk("NSIndexSet *");
6531 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6532 Builder.AddTextChunk("indexes");
6533 Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority,
6534 CXCursor_ObjCInstanceMethodDecl));
6535 }
6536 }
6537
6538 // -(void)removeObjectFromKeyAtIndex:(NSUInteger)index
6539 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006540 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006541 = (Twine("removeObjectFrom") + UpperKey + "AtIndex").str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006542 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006543 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId))) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006544 if (ReturnType.isNull()) {
6545 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6546 Builder.AddTextChunk("void");
6547 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6548 }
6549
6550 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6551 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6552 Builder.AddTextChunk("NSUInteger");
6553 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6554 Builder.AddTextChunk("index");
6555 Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority,
6556 CXCursor_ObjCInstanceMethodDecl));
6557 }
6558 }
6559
6560 // -(void)removeKeyAtIndexes:(NSIndexSet *)indexes
6561 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006562 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006563 = (Twine("remove") + UpperKey + "AtIndexes").str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006564 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006565 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId))) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006566 if (ReturnType.isNull()) {
6567 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6568 Builder.AddTextChunk("void");
6569 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6570 }
6571
6572 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6573 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6574 Builder.AddTextChunk("NSIndexSet *");
6575 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6576 Builder.AddTextChunk("indexes");
6577 Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority,
6578 CXCursor_ObjCInstanceMethodDecl));
6579 }
6580 }
6581
6582 // - (void)replaceObjectInKeyAtIndex:(NSUInteger)index withObject:(id)object
6583 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006584 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006585 = (Twine("replaceObjectIn") + UpperKey + "AtIndex").str();
Douglas Gregor669a25a2011-02-17 00:22:45 +00006586 IdentifierInfo *SelectorIds[2] = {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006587 &Context.Idents.get(SelectorName),
Douglas Gregor669a25a2011-02-17 00:22:45 +00006588 &Context.Idents.get("withObject")
6589 };
6590
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006591 if (KnownSelectors.insert(Selectors.getSelector(2, SelectorIds))) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006592 if (ReturnType.isNull()) {
6593 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6594 Builder.AddTextChunk("void");
6595 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6596 }
6597
6598 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6599 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6600 Builder.AddPlaceholderChunk("NSUInteger");
6601 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6602 Builder.AddTextChunk("index");
6603 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
6604 Builder.AddTypedTextChunk("withObject:");
6605 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6606 Builder.AddTextChunk("id");
6607 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6608 Builder.AddTextChunk("object");
6609 Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority,
6610 CXCursor_ObjCInstanceMethodDecl));
6611 }
6612 }
6613
6614 // - (void)replaceKeyAtIndexes:(NSIndexSet *)indexes withKey:(NSArray *)array
6615 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006616 std::string SelectorName1
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006617 = (Twine("replace") + UpperKey + "AtIndexes").str();
6618 std::string SelectorName2 = (Twine("with") + UpperKey).str();
Douglas Gregor669a25a2011-02-17 00:22:45 +00006619 IdentifierInfo *SelectorIds[2] = {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006620 &Context.Idents.get(SelectorName1),
6621 &Context.Idents.get(SelectorName2)
Douglas Gregor669a25a2011-02-17 00:22:45 +00006622 };
6623
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006624 if (KnownSelectors.insert(Selectors.getSelector(2, SelectorIds))) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006625 if (ReturnType.isNull()) {
6626 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6627 Builder.AddTextChunk("void");
6628 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6629 }
6630
6631 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName1 + ":"));
6632 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6633 Builder.AddPlaceholderChunk("NSIndexSet *");
6634 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6635 Builder.AddTextChunk("indexes");
6636 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
6637 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName2 + ":"));
6638 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6639 Builder.AddTextChunk("NSArray *");
6640 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6641 Builder.AddTextChunk("array");
6642 Results.AddResult(Result(Builder.TakeString(), IndexedSetterPriority,
6643 CXCursor_ObjCInstanceMethodDecl));
6644 }
6645 }
6646
6647 // Unordered getters
6648 // - (NSEnumerator *)enumeratorOfKey
6649 if (IsInstanceMethod &&
6650 (ReturnType.isNull() ||
6651 (ReturnType->isObjCObjectPointerType() &&
6652 ReturnType->getAs<ObjCObjectPointerType>()->getInterfaceDecl() &&
6653 ReturnType->getAs<ObjCObjectPointerType>()->getInterfaceDecl()
6654 ->getName() == "NSEnumerator"))) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006655 std::string SelectorName = (Twine("enumeratorOf") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006656 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006657 if (KnownSelectors.insert(Selectors.getNullarySelector(SelectorId))) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006658 if (ReturnType.isNull()) {
6659 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6660 Builder.AddTextChunk("NSEnumerator *");
6661 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6662 }
6663
6664 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName));
6665 Results.AddResult(Result(Builder.TakeString(), UnorderedGetterPriority,
6666 CXCursor_ObjCInstanceMethodDecl));
6667 }
6668 }
6669
6670 // - (type *)memberOfKey:(type *)object
6671 if (IsInstanceMethod &&
6672 (ReturnType.isNull() || ReturnType->isObjCObjectPointerType())) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006673 std::string SelectorName = (Twine("memberOf") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006674 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006675 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId))) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006676 if (ReturnType.isNull()) {
6677 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6678 Builder.AddPlaceholderChunk("object-type");
6679 Builder.AddTextChunk(" *");
6680 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6681 }
6682
6683 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6684 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6685 if (ReturnType.isNull()) {
6686 Builder.AddPlaceholderChunk("object-type");
6687 Builder.AddTextChunk(" *");
6688 } else {
6689 Builder.AddTextChunk(GetCompletionTypeString(ReturnType, Context,
Douglas Gregor75acd922011-09-27 23:30:47 +00006690 Policy,
Douglas Gregor669a25a2011-02-17 00:22:45 +00006691 Builder.getAllocator()));
6692 }
6693 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6694 Builder.AddTextChunk("object");
6695 Results.AddResult(Result(Builder.TakeString(), UnorderedGetterPriority,
6696 CXCursor_ObjCInstanceMethodDecl));
6697 }
6698 }
6699
6700 // Mutable unordered accessors
6701 // - (void)addKeyObject:(type *)object
6702 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006703 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006704 = (Twine("add") + UpperKey + Twine("Object")).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006705 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006706 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId))) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006707 if (ReturnType.isNull()) {
6708 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6709 Builder.AddTextChunk("void");
6710 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6711 }
6712
6713 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6714 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6715 Builder.AddPlaceholderChunk("object-type");
6716 Builder.AddTextChunk(" *");
6717 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6718 Builder.AddTextChunk("object");
6719 Results.AddResult(Result(Builder.TakeString(), UnorderedSetterPriority,
6720 CXCursor_ObjCInstanceMethodDecl));
6721 }
6722 }
6723
6724 // - (void)addKey:(NSSet *)objects
6725 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006726 std::string SelectorName = (Twine("add") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006727 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006728 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId))) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006729 if (ReturnType.isNull()) {
6730 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6731 Builder.AddTextChunk("void");
6732 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6733 }
6734
6735 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6736 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6737 Builder.AddTextChunk("NSSet *");
6738 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6739 Builder.AddTextChunk("objects");
6740 Results.AddResult(Result(Builder.TakeString(), UnorderedSetterPriority,
6741 CXCursor_ObjCInstanceMethodDecl));
6742 }
6743 }
6744
6745 // - (void)removeKeyObject:(type *)object
6746 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006747 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006748 = (Twine("remove") + UpperKey + Twine("Object")).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006749 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006750 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId))) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006751 if (ReturnType.isNull()) {
6752 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6753 Builder.AddTextChunk("void");
6754 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6755 }
6756
6757 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6758 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6759 Builder.AddPlaceholderChunk("object-type");
6760 Builder.AddTextChunk(" *");
6761 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6762 Builder.AddTextChunk("object");
6763 Results.AddResult(Result(Builder.TakeString(), UnorderedSetterPriority,
6764 CXCursor_ObjCInstanceMethodDecl));
6765 }
6766 }
6767
6768 // - (void)removeKey:(NSSet *)objects
6769 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006770 std::string SelectorName = (Twine("remove") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006771 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006772 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId))) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006773 if (ReturnType.isNull()) {
6774 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6775 Builder.AddTextChunk("void");
6776 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6777 }
6778
6779 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6780 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6781 Builder.AddTextChunk("NSSet *");
6782 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6783 Builder.AddTextChunk("objects");
6784 Results.AddResult(Result(Builder.TakeString(), UnorderedSetterPriority,
6785 CXCursor_ObjCInstanceMethodDecl));
6786 }
6787 }
6788
6789 // - (void)intersectKey:(NSSet *)objects
6790 if (IsInstanceMethod && ReturnTypeMatchesVoid) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006791 std::string SelectorName = (Twine("intersect") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006792 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006793 if (KnownSelectors.insert(Selectors.getUnarySelector(SelectorId))) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006794 if (ReturnType.isNull()) {
6795 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6796 Builder.AddTextChunk("void");
6797 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6798 }
6799
6800 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName + ":"));
6801 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6802 Builder.AddTextChunk("NSSet *");
6803 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6804 Builder.AddTextChunk("objects");
6805 Results.AddResult(Result(Builder.TakeString(), UnorderedSetterPriority,
6806 CXCursor_ObjCInstanceMethodDecl));
6807 }
6808 }
6809
6810 // Key-Value Observing
6811 // + (NSSet *)keyPathsForValuesAffectingKey
6812 if (!IsInstanceMethod &&
6813 (ReturnType.isNull() ||
6814 (ReturnType->isObjCObjectPointerType() &&
6815 ReturnType->getAs<ObjCObjectPointerType>()->getInterfaceDecl() &&
6816 ReturnType->getAs<ObjCObjectPointerType>()->getInterfaceDecl()
6817 ->getName() == "NSSet"))) {
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006818 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006819 = (Twine("keyPathsForValuesAffecting") + UpperKey).str();
Douglas Gregor0e5d72f2011-02-17 03:19:26 +00006820 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006821 if (KnownSelectors.insert(Selectors.getNullarySelector(SelectorId))) {
Douglas Gregor669a25a2011-02-17 00:22:45 +00006822 if (ReturnType.isNull()) {
6823 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6824 Builder.AddTextChunk("NSSet *");
6825 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6826 }
6827
6828 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName));
6829 Results.AddResult(Result(Builder.TakeString(), CCP_CodePattern,
Douglas Gregor857bcda2011-06-02 04:02:27 +00006830 CXCursor_ObjCClassMethodDecl));
6831 }
6832 }
6833
6834 // + (BOOL)automaticallyNotifiesObserversForKey
6835 if (!IsInstanceMethod &&
6836 (ReturnType.isNull() ||
6837 ReturnType->isIntegerType() ||
6838 ReturnType->isBooleanType())) {
6839 std::string SelectorName
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006840 = (Twine("automaticallyNotifiesObserversOf") + UpperKey).str();
Douglas Gregor857bcda2011-06-02 04:02:27 +00006841 IdentifierInfo *SelectorId = &Context.Idents.get(SelectorName);
6842 if (KnownSelectors.insert(Selectors.getNullarySelector(SelectorId))) {
6843 if (ReturnType.isNull()) {
6844 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
6845 Builder.AddTextChunk("BOOL");
6846 Builder.AddChunk(CodeCompletionString::CK_RightParen);
6847 }
6848
6849 Builder.AddTypedTextChunk(Allocator.CopyString(SelectorName));
6850 Results.AddResult(Result(Builder.TakeString(), CCP_CodePattern,
6851 CXCursor_ObjCClassMethodDecl));
Douglas Gregor669a25a2011-02-17 00:22:45 +00006852 }
6853 }
6854}
6855
Douglas Gregor636a61e2010-04-07 00:21:17 +00006856void Sema::CodeCompleteObjCMethodDecl(Scope *S,
6857 bool IsInstanceMethod,
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00006858 ParsedType ReturnTy) {
Douglas Gregor636a61e2010-04-07 00:21:17 +00006859 // Determine the return type of the method we're declaring, if
6860 // provided.
6861 QualType ReturnType = GetTypeFromParser(ReturnTy);
Fariborz Jahanian8d382dc2011-08-22 15:54:49 +00006862 Decl *IDecl = 0;
6863 if (CurContext->isObjCContainer()) {
6864 ObjCContainerDecl *OCD = dyn_cast<ObjCContainerDecl>(CurContext);
6865 IDecl = cast<Decl>(OCD);
6866 }
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006867 // Determine where we should start searching for methods.
6868 ObjCContainerDecl *SearchDecl = 0;
Douglas Gregor636a61e2010-04-07 00:21:17 +00006869 bool IsInImplementation = false;
John McCall48871652010-08-21 09:40:31 +00006870 if (Decl *D = IDecl) {
Douglas Gregor636a61e2010-04-07 00:21:17 +00006871 if (ObjCImplementationDecl *Impl = dyn_cast<ObjCImplementationDecl>(D)) {
6872 SearchDecl = Impl->getClassInterface();
Douglas Gregor636a61e2010-04-07 00:21:17 +00006873 IsInImplementation = true;
6874 } else if (ObjCCategoryImplDecl *CatImpl
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006875 = dyn_cast<ObjCCategoryImplDecl>(D)) {
Douglas Gregor636a61e2010-04-07 00:21:17 +00006876 SearchDecl = CatImpl->getCategoryDecl();
Douglas Gregor636a61e2010-04-07 00:21:17 +00006877 IsInImplementation = true;
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006878 } else
Douglas Gregor636a61e2010-04-07 00:21:17 +00006879 SearchDecl = dyn_cast<ObjCContainerDecl>(D);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006880 }
6881
6882 if (!SearchDecl && S) {
Ted Kremenekc37877d2013-10-08 17:08:03 +00006883 if (DeclContext *DC = S->getEntity())
Douglas Gregor636a61e2010-04-07 00:21:17 +00006884 SearchDecl = dyn_cast<ObjCContainerDecl>(DC);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006885 }
6886
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006887 if (!SearchDecl) {
Douglas Gregor00c37ef2010-08-11 21:23:17 +00006888 HandleCodeCompleteResults(this, CodeCompleter,
6889 CodeCompletionContext::CCC_Other,
6890 0, 0);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006891 return;
6892 }
6893
6894 // Find all of the methods that we could declare/implement here.
6895 KnownMethodsMap KnownMethods;
6896 FindImplementableMethods(Context, SearchDecl, IsInstanceMethod,
Douglas Gregor1b035bb2010-10-18 18:21:28 +00006897 ReturnType, KnownMethods);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006898
Douglas Gregor636a61e2010-04-07 00:21:17 +00006899 // Add declarations or definitions for each of the known methods.
John McCall276321a2010-08-25 06:19:51 +00006900 typedef CodeCompletionResult Result;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006901 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00006902 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006903 CodeCompletionContext::CCC_Other);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006904 Results.EnterNewScope();
Douglas Gregor75acd922011-09-27 23:30:47 +00006905 PrintingPolicy Policy = getCompletionPrintingPolicy(*this);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006906 for (KnownMethodsMap::iterator M = KnownMethods.begin(),
6907 MEnd = KnownMethods.end();
6908 M != MEnd; ++M) {
Benjamin Kramereb8c4462013-06-29 17:52:13 +00006909 ObjCMethodDecl *Method = M->second.getPointer();
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00006910 CodeCompletionBuilder Builder(Results.getAllocator(),
6911 Results.getCodeCompletionTUInfo());
Douglas Gregor636a61e2010-04-07 00:21:17 +00006912
6913 // If the result type was not already provided, add it to the
6914 // pattern as (type).
Douglas Gregor669a25a2011-02-17 00:22:45 +00006915 if (ReturnType.isNull())
Alp Toker314cc812014-01-25 16:55:45 +00006916 AddObjCPassingTypeChunk(Method->getReturnType(),
6917 Method->getObjCDeclQualifier(), Context, Policy,
6918 Builder);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006919
6920 Selector Sel = Method->getSelector();
6921
6922 // Add the first part of the selector to the pattern.
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00006923 Builder.AddTypedTextChunk(Builder.getAllocator().CopyString(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00006924 Sel.getNameForSlot(0)));
Douglas Gregor636a61e2010-04-07 00:21:17 +00006925
6926 // Add parameters to the pattern.
6927 unsigned I = 0;
6928 for (ObjCMethodDecl::param_iterator P = Method->param_begin(),
6929 PEnd = Method->param_end();
6930 P != PEnd; (void)++P, ++I) {
6931 // Add the part of the selector name.
6932 if (I == 0)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006933 Builder.AddTypedTextChunk(":");
Douglas Gregor636a61e2010-04-07 00:21:17 +00006934 else if (I < Sel.getNumArgs()) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006935 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
6936 Builder.AddTypedTextChunk(
Douglas Gregoraf2a6ae2011-02-18 22:29:55 +00006937 Builder.getAllocator().CopyString(Sel.getNameForSlot(I) + ":"));
Douglas Gregor636a61e2010-04-07 00:21:17 +00006938 } else
6939 break;
6940
6941 // Add the parameter type.
Douglas Gregor29979142012-04-10 18:35:07 +00006942 AddObjCPassingTypeChunk((*P)->getOriginalType(),
6943 (*P)->getObjCDeclQualifier(),
6944 Context, Policy,
Douglas Gregor75acd922011-09-27 23:30:47 +00006945 Builder);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006946
6947 if (IdentifierInfo *Id = (*P)->getIdentifier())
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00006948 Builder.AddTextChunk(Builder.getAllocator().CopyString( Id->getName()));
Douglas Gregor636a61e2010-04-07 00:21:17 +00006949 }
6950
6951 if (Method->isVariadic()) {
6952 if (Method->param_size() > 0)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006953 Builder.AddChunk(CodeCompletionString::CK_Comma);
6954 Builder.AddTextChunk("...");
Douglas Gregor400f5972010-08-31 05:13:43 +00006955 }
Douglas Gregor636a61e2010-04-07 00:21:17 +00006956
Douglas Gregord37c59d2010-05-28 00:57:46 +00006957 if (IsInImplementation && Results.includeCodePatterns()) {
Douglas Gregor636a61e2010-04-07 00:21:17 +00006958 // We will be defining the method here, so add a compound statement.
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006959 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
6960 Builder.AddChunk(CodeCompletionString::CK_LeftBrace);
6961 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
Alp Toker314cc812014-01-25 16:55:45 +00006962 if (!Method->getReturnType()->isVoidType()) {
Douglas Gregor636a61e2010-04-07 00:21:17 +00006963 // If the result type is not void, add a return clause.
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006964 Builder.AddTextChunk("return");
6965 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
6966 Builder.AddPlaceholderChunk("expression");
6967 Builder.AddChunk(CodeCompletionString::CK_SemiColon);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006968 } else
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006969 Builder.AddPlaceholderChunk("statements");
Douglas Gregor636a61e2010-04-07 00:21:17 +00006970
Douglas Gregorb278aaf2011-02-01 19:23:04 +00006971 Builder.AddChunk(CodeCompletionString::CK_VerticalSpace);
6972 Builder.AddChunk(CodeCompletionString::CK_RightBrace);
Douglas Gregor636a61e2010-04-07 00:21:17 +00006973 }
6974
Douglas Gregor416b5752010-08-25 01:08:01 +00006975 unsigned Priority = CCP_CodePattern;
Benjamin Kramereb8c4462013-06-29 17:52:13 +00006976 if (!M->second.getInt())
Douglas Gregor416b5752010-08-25 01:08:01 +00006977 Priority += CCD_InBaseClass;
6978
Douglas Gregor78254c82012-03-27 23:34:16 +00006979 Results.AddResult(Result(Builder.TakeString(), Method, Priority));
Douglas Gregor636a61e2010-04-07 00:21:17 +00006980 }
6981
Douglas Gregor669a25a2011-02-17 00:22:45 +00006982 // Add Key-Value-Coding and Key-Value-Observing accessor methods for all of
6983 // the properties in this class and its categories.
David Blaikiebbafb8a2012-03-11 07:00:24 +00006984 if (Context.getLangOpts().ObjC2) {
Chris Lattner0e62c1c2011-07-23 10:55:15 +00006985 SmallVector<ObjCContainerDecl *, 4> Containers;
Douglas Gregor669a25a2011-02-17 00:22:45 +00006986 Containers.push_back(SearchDecl);
6987
Douglas Gregord4a8ced2011-05-04 23:50:46 +00006988 VisitedSelectorSet KnownSelectors;
6989 for (KnownMethodsMap::iterator M = KnownMethods.begin(),
6990 MEnd = KnownMethods.end();
6991 M != MEnd; ++M)
6992 KnownSelectors.insert(M->first);
6993
6994
Douglas Gregor669a25a2011-02-17 00:22:45 +00006995 ObjCInterfaceDecl *IFace = dyn_cast<ObjCInterfaceDecl>(SearchDecl);
6996 if (!IFace)
6997 if (ObjCCategoryDecl *Category = dyn_cast<ObjCCategoryDecl>(SearchDecl))
6998 IFace = Category->getClassInterface();
6999
7000 if (IFace) {
Douglas Gregor048fbfa2013-01-16 23:00:23 +00007001 for (ObjCInterfaceDecl::visible_categories_iterator
7002 Cat = IFace->visible_categories_begin(),
7003 CatEnd = IFace->visible_categories_end();
7004 Cat != CatEnd; ++Cat) {
7005 Containers.push_back(*Cat);
7006 }
Douglas Gregor669a25a2011-02-17 00:22:45 +00007007 }
7008
7009 for (unsigned I = 0, N = Containers.size(); I != N; ++I) {
7010 for (ObjCContainerDecl::prop_iterator P = Containers[I]->prop_begin(),
7011 PEnd = Containers[I]->prop_end();
7012 P != PEnd; ++P) {
David Blaikie40ed2972012-06-06 20:45:41 +00007013 AddObjCKeyValueCompletions(*P, IsInstanceMethod, ReturnType, Context,
Douglas Gregord4a8ced2011-05-04 23:50:46 +00007014 KnownSelectors, Results);
Douglas Gregor669a25a2011-02-17 00:22:45 +00007015 }
7016 }
7017 }
7018
Douglas Gregor636a61e2010-04-07 00:21:17 +00007019 Results.ExitScope();
7020
Douglas Gregor00c37ef2010-08-11 21:23:17 +00007021 HandleCodeCompleteResults(this, CodeCompleter,
7022 CodeCompletionContext::CCC_Other,
7023 Results.data(),Results.size());
Douglas Gregor636a61e2010-04-07 00:21:17 +00007024}
Douglas Gregor95887f92010-07-08 23:20:03 +00007025
7026void Sema::CodeCompleteObjCMethodDeclSelector(Scope *S,
7027 bool IsInstanceMethod,
Douglas Gregor45879692010-07-08 23:37:41 +00007028 bool AtParameterName,
John McCallba7bf592010-08-24 05:47:05 +00007029 ParsedType ReturnTy,
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00007030 ArrayRef<IdentifierInfo *> SelIdents) {
Douglas Gregor95887f92010-07-08 23:20:03 +00007031 // If we have an external source, load the entire class method
Sebastian Redld44cd6a2010-08-18 23:57:06 +00007032 // pool from the AST file.
Douglas Gregor95887f92010-07-08 23:20:03 +00007033 if (ExternalSource) {
7034 for (uint32_t I = 0, N = ExternalSource->GetNumExternalSelectors();
7035 I != N; ++I) {
7036 Selector Sel = ExternalSource->GetExternalSelector(I);
Sebastian Redl75d8a322010-08-02 23:18:59 +00007037 if (Sel.isNull() || MethodPool.count(Sel))
Douglas Gregor95887f92010-07-08 23:20:03 +00007038 continue;
Sebastian Redl75d8a322010-08-02 23:18:59 +00007039
7040 ReadMethodPool(Sel);
Douglas Gregor95887f92010-07-08 23:20:03 +00007041 }
7042 }
7043
7044 // Build the set of methods we can see.
John McCall276321a2010-08-25 06:19:51 +00007045 typedef CodeCompletionResult Result;
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007046 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007047 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007048 CodeCompletionContext::CCC_Other);
Douglas Gregor95887f92010-07-08 23:20:03 +00007049
7050 if (ReturnTy)
7051 Results.setPreferredType(GetTypeFromParser(ReturnTy).getNonReferenceType());
Sebastian Redl75d8a322010-08-02 23:18:59 +00007052
Douglas Gregor95887f92010-07-08 23:20:03 +00007053 Results.EnterNewScope();
Sebastian Redl75d8a322010-08-02 23:18:59 +00007054 for (GlobalMethodPool::iterator M = MethodPool.begin(),
7055 MEnd = MethodPool.end();
7056 M != MEnd; ++M) {
7057 for (ObjCMethodList *MethList = IsInstanceMethod ? &M->second.first :
7058 &M->second.second;
7059 MethList && MethList->Method;
Argyrios Kyrtzidisd3da6e02013-04-17 00:08:58 +00007060 MethList = MethList->getNext()) {
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00007061 if (!isAcceptableObjCMethod(MethList->Method, MK_Any, SelIdents))
Douglas Gregor95887f92010-07-08 23:20:03 +00007062 continue;
7063
Douglas Gregor45879692010-07-08 23:37:41 +00007064 if (AtParameterName) {
7065 // Suggest parameter names we've seen before.
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00007066 unsigned NumSelIdents = SelIdents.size();
Douglas Gregor45879692010-07-08 23:37:41 +00007067 if (NumSelIdents && NumSelIdents <= MethList->Method->param_size()) {
7068 ParmVarDecl *Param = MethList->Method->param_begin()[NumSelIdents-1];
7069 if (Param->getIdentifier()) {
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007070 CodeCompletionBuilder Builder(Results.getAllocator(),
7071 Results.getCodeCompletionTUInfo());
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00007072 Builder.AddTypedTextChunk(Builder.getAllocator().CopyString(
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007073 Param->getIdentifier()->getName()));
7074 Results.AddResult(Builder.TakeString());
Douglas Gregor45879692010-07-08 23:37:41 +00007075 }
7076 }
7077
7078 continue;
7079 }
7080
Douglas Gregor0a0e2b32013-01-31 04:52:16 +00007081 Result R(MethList->Method, Results.getBasePriority(MethList->Method), 0);
Dmitri Gribenko070a10e2013-06-16 03:47:57 +00007082 R.StartParameter = SelIdents.size();
Douglas Gregor95887f92010-07-08 23:20:03 +00007083 R.AllParametersAreInformative = false;
7084 R.DeclaringEntity = true;
7085 Results.MaybeAddResult(R, CurContext);
7086 }
7087 }
7088
7089 Results.ExitScope();
Douglas Gregor00c37ef2010-08-11 21:23:17 +00007090 HandleCodeCompleteResults(this, CodeCompleter,
7091 CodeCompletionContext::CCC_Other,
7092 Results.data(),Results.size());
Douglas Gregor95887f92010-07-08 23:20:03 +00007093}
Douglas Gregorb14904c2010-08-13 22:48:40 +00007094
Douglas Gregorec00a262010-08-24 22:20:20 +00007095void Sema::CodeCompletePreprocessorDirective(bool InConditional) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007096 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007097 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor0ac41382010-09-23 23:01:17 +00007098 CodeCompletionContext::CCC_PreprocessorDirective);
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007099 Results.EnterNewScope();
7100
7101 // #if <condition>
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007102 CodeCompletionBuilder Builder(Results.getAllocator(),
7103 Results.getCodeCompletionTUInfo());
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007104 Builder.AddTypedTextChunk("if");
7105 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7106 Builder.AddPlaceholderChunk("condition");
7107 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007108
7109 // #ifdef <macro>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007110 Builder.AddTypedTextChunk("ifdef");
7111 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7112 Builder.AddPlaceholderChunk("macro");
7113 Results.AddResult(Builder.TakeString());
7114
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007115 // #ifndef <macro>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007116 Builder.AddTypedTextChunk("ifndef");
7117 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7118 Builder.AddPlaceholderChunk("macro");
7119 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007120
7121 if (InConditional) {
7122 // #elif <condition>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007123 Builder.AddTypedTextChunk("elif");
7124 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7125 Builder.AddPlaceholderChunk("condition");
7126 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007127
7128 // #else
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007129 Builder.AddTypedTextChunk("else");
7130 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007131
7132 // #endif
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007133 Builder.AddTypedTextChunk("endif");
7134 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007135 }
7136
7137 // #include "header"
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007138 Builder.AddTypedTextChunk("include");
7139 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7140 Builder.AddTextChunk("\"");
7141 Builder.AddPlaceholderChunk("header");
7142 Builder.AddTextChunk("\"");
7143 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007144
7145 // #include <header>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007146 Builder.AddTypedTextChunk("include");
7147 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7148 Builder.AddTextChunk("<");
7149 Builder.AddPlaceholderChunk("header");
7150 Builder.AddTextChunk(">");
7151 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007152
7153 // #define <macro>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007154 Builder.AddTypedTextChunk("define");
7155 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7156 Builder.AddPlaceholderChunk("macro");
7157 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007158
7159 // #define <macro>(<args>)
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007160 Builder.AddTypedTextChunk("define");
7161 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7162 Builder.AddPlaceholderChunk("macro");
7163 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
7164 Builder.AddPlaceholderChunk("args");
7165 Builder.AddChunk(CodeCompletionString::CK_RightParen);
7166 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007167
7168 // #undef <macro>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007169 Builder.AddTypedTextChunk("undef");
7170 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7171 Builder.AddPlaceholderChunk("macro");
7172 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007173
7174 // #line <number>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007175 Builder.AddTypedTextChunk("line");
7176 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7177 Builder.AddPlaceholderChunk("number");
7178 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007179
7180 // #line <number> "filename"
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007181 Builder.AddTypedTextChunk("line");
7182 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7183 Builder.AddPlaceholderChunk("number");
7184 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7185 Builder.AddTextChunk("\"");
7186 Builder.AddPlaceholderChunk("filename");
7187 Builder.AddTextChunk("\"");
7188 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007189
7190 // #error <message>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007191 Builder.AddTypedTextChunk("error");
7192 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7193 Builder.AddPlaceholderChunk("message");
7194 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007195
7196 // #pragma <arguments>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007197 Builder.AddTypedTextChunk("pragma");
7198 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7199 Builder.AddPlaceholderChunk("arguments");
7200 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007201
David Blaikiebbafb8a2012-03-11 07:00:24 +00007202 if (getLangOpts().ObjC1) {
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007203 // #import "header"
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007204 Builder.AddTypedTextChunk("import");
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 // #import <header>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007212 Builder.AddTypedTextChunk("import");
7213 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7214 Builder.AddTextChunk("<");
7215 Builder.AddPlaceholderChunk("header");
7216 Builder.AddTextChunk(">");
7217 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007218 }
7219
7220 // #include_next "header"
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007221 Builder.AddTypedTextChunk("include_next");
7222 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7223 Builder.AddTextChunk("\"");
7224 Builder.AddPlaceholderChunk("header");
7225 Builder.AddTextChunk("\"");
7226 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007227
7228 // #include_next <header>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007229 Builder.AddTypedTextChunk("include_next");
7230 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7231 Builder.AddTextChunk("<");
7232 Builder.AddPlaceholderChunk("header");
7233 Builder.AddTextChunk(">");
7234 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007235
7236 // #warning <message>
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007237 Builder.AddTypedTextChunk("warning");
7238 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7239 Builder.AddPlaceholderChunk("message");
7240 Results.AddResult(Builder.TakeString());
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007241
7242 // Note: #ident and #sccs are such crazy anachronisms that we don't provide
7243 // completions for them. And __include_macros is a Clang-internal extension
7244 // that we don't want to encourage anyone to use.
7245
7246 // FIXME: we don't support #assert or #unassert, so don't suggest them.
7247 Results.ExitScope();
7248
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007249 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregor0de55ce2010-08-25 18:41:16 +00007250 CodeCompletionContext::CCC_PreprocessorDirective,
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007251 Results.data(), Results.size());
7252}
7253
7254void Sema::CodeCompleteInPreprocessorConditionalExclusion(Scope *S) {
Douglas Gregorec00a262010-08-24 22:20:20 +00007255 CodeCompleteOrdinaryName(S,
John McCallfaf5fb42010-08-26 23:41:50 +00007256 S->getFnParent()? Sema::PCC_RecoveryInFunction
7257 : Sema::PCC_Namespace);
Douglas Gregor3a7ad252010-08-24 19:08:16 +00007258}
7259
Douglas Gregorec00a262010-08-24 22:20:20 +00007260void Sema::CodeCompletePreprocessorMacroName(bool IsDefinition) {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007261 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007262 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor0ac41382010-09-23 23:01:17 +00007263 IsDefinition? CodeCompletionContext::CCC_MacroName
7264 : CodeCompletionContext::CCC_MacroNameUse);
Douglas Gregor12785102010-08-24 20:21:13 +00007265 if (!IsDefinition && (!CodeCompleter || CodeCompleter->includeMacros())) {
7266 // Add just the names of macros, not their arguments.
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007267 CodeCompletionBuilder Builder(Results.getAllocator(),
7268 Results.getCodeCompletionTUInfo());
Douglas Gregor12785102010-08-24 20:21:13 +00007269 Results.EnterNewScope();
7270 for (Preprocessor::macro_iterator M = PP.macro_begin(),
7271 MEnd = PP.macro_end();
7272 M != MEnd; ++M) {
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00007273 Builder.AddTypedTextChunk(Builder.getAllocator().CopyString(
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007274 M->first->getName()));
Argyrios Kyrtzidis5c8b1cd2012-09-27 00:24:09 +00007275 Results.AddResult(CodeCompletionResult(Builder.TakeString(),
7276 CCP_CodePattern,
7277 CXCursor_MacroDefinition));
Douglas Gregor12785102010-08-24 20:21:13 +00007278 }
7279 Results.ExitScope();
7280 } else if (IsDefinition) {
7281 // FIXME: Can we detect when the user just wrote an include guard above?
7282 }
7283
Douglas Gregor0ac41382010-09-23 23:01:17 +00007284 HandleCodeCompleteResults(this, CodeCompleter, Results.getCompletionContext(),
Douglas Gregor12785102010-08-24 20:21:13 +00007285 Results.data(), Results.size());
7286}
7287
Douglas Gregorec00a262010-08-24 22:20:20 +00007288void Sema::CodeCompletePreprocessorExpression() {
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007289 ResultBuilder Results(*this, CodeCompleter->getAllocator(),
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007290 CodeCompleter->getCodeCompletionTUInfo(),
Douglas Gregor0ac41382010-09-23 23:01:17 +00007291 CodeCompletionContext::CCC_PreprocessorExpression);
Douglas Gregorec00a262010-08-24 22:20:20 +00007292
7293 if (!CodeCompleter || CodeCompleter->includeMacros())
Douglas Gregor8cb17462012-10-09 16:01:50 +00007294 AddMacroResults(PP, Results, true);
Douglas Gregorec00a262010-08-24 22:20:20 +00007295
7296 // defined (<macro>)
7297 Results.EnterNewScope();
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007298 CodeCompletionBuilder Builder(Results.getAllocator(),
7299 Results.getCodeCompletionTUInfo());
Douglas Gregorb278aaf2011-02-01 19:23:04 +00007300 Builder.AddTypedTextChunk("defined");
7301 Builder.AddChunk(CodeCompletionString::CK_HorizontalSpace);
7302 Builder.AddChunk(CodeCompletionString::CK_LeftParen);
7303 Builder.AddPlaceholderChunk("macro");
7304 Builder.AddChunk(CodeCompletionString::CK_RightParen);
7305 Results.AddResult(Builder.TakeString());
Douglas Gregorec00a262010-08-24 22:20:20 +00007306 Results.ExitScope();
7307
7308 HandleCodeCompleteResults(this, CodeCompleter,
7309 CodeCompletionContext::CCC_PreprocessorExpression,
7310 Results.data(), Results.size());
7311}
7312
7313void Sema::CodeCompletePreprocessorMacroArgument(Scope *S,
7314 IdentifierInfo *Macro,
7315 MacroInfo *MacroInfo,
7316 unsigned Argument) {
7317 // FIXME: In the future, we could provide "overload" results, much like we
7318 // do for function calls.
7319
Argyrios Kyrtzidis75f6cd22011-08-18 19:41:28 +00007320 // Now just ignore this. There will be another code-completion callback
7321 // for the expanded tokens.
Douglas Gregorec00a262010-08-24 22:20:20 +00007322}
7323
Douglas Gregor11583702010-08-25 17:04:25 +00007324void Sema::CodeCompleteNaturalLanguage() {
Douglas Gregor11583702010-08-25 17:04:25 +00007325 HandleCodeCompleteResults(this, CodeCompleter,
Douglas Gregorea736372010-08-25 17:10:00 +00007326 CodeCompletionContext::CCC_NaturalLanguage,
Douglas Gregor11583702010-08-25 17:04:25 +00007327 0, 0);
7328}
7329
Douglas Gregorbcbf46c2011-02-01 22:57:45 +00007330void Sema::GatherGlobalCodeCompletions(CodeCompletionAllocator &Allocator,
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007331 CodeCompletionTUInfo &CCTUInfo,
Chris Lattner0e62c1c2011-07-23 10:55:15 +00007332 SmallVectorImpl<CodeCompletionResult> &Results) {
Argyrios Kyrtzidis9d7c0fe2012-04-10 17:23:48 +00007333 ResultBuilder Builder(*this, Allocator, CCTUInfo,
7334 CodeCompletionContext::CCC_Recovery);
Douglas Gregor39982192010-08-15 06:18:01 +00007335 if (!CodeCompleter || CodeCompleter->includeGlobals()) {
7336 CodeCompletionDeclConsumer Consumer(Builder,
7337 Context.getTranslationUnitDecl());
7338 LookupVisibleDecls(Context.getTranslationUnitDecl(), LookupAnyName,
7339 Consumer);
7340 }
Douglas Gregorb14904c2010-08-13 22:48:40 +00007341
7342 if (!CodeCompleter || CodeCompleter->includeMacros())
Douglas Gregor8cb17462012-10-09 16:01:50 +00007343 AddMacroResults(PP, Builder, true);
Douglas Gregorb14904c2010-08-13 22:48:40 +00007344
7345 Results.clear();
7346 Results.insert(Results.end(),
7347 Builder.data(), Builder.data() + Builder.size());
7348}