blob: 37db9aec63720ec6a111b2103986cbd5cfb7875f [file] [log] [blame]
Nick Lewycky4b81fc872015-10-18 20:32:12 +00001//===--------------------- SemaLookup.cpp - Name Lookup ------------------===//
Douglas Gregor34074322009-01-14 22:20:51 +00002//
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 implements name lookup for C, C++, Objective-C, and
11// Objective-C++.
12//
13//===----------------------------------------------------------------------===//
Hans Wennborgdcfba332015-10-06 23:40:43 +000014
Douglas Gregorc3a6ade2010-08-12 20:07:10 +000015#include "clang/Sema/Lookup.h"
Douglas Gregor960b5bc2009-01-15 00:26:24 +000016#include "clang/AST/ASTContext.h"
Richard Smithd9ba2242015-05-07 03:54:19 +000017#include "clang/AST/ASTMutationListener.h"
Douglas Gregor36d1b142009-10-06 17:59:45 +000018#include "clang/AST/CXXInheritance.h"
Douglas Gregor34074322009-01-14 22:20:51 +000019#include "clang/AST/Decl.h"
20#include "clang/AST/DeclCXX.h"
Nick Lewyckyc3921482012-04-03 21:44:08 +000021#include "clang/AST/DeclLookups.h"
Douglas Gregor34074322009-01-14 22:20:51 +000022#include "clang/AST/DeclObjC.h"
Douglas Gregorc9f9b862009-05-11 19:58:34 +000023#include "clang/AST/DeclTemplate.h"
Douglas Gregore254f902009-02-04 00:32:51 +000024#include "clang/AST/Expr.h"
Douglas Gregorbe759252009-07-08 10:57:20 +000025#include "clang/AST/ExprCXX.h"
Chris Lattner15ba9492009-06-14 01:54:56 +000026#include "clang/Basic/Builtins.h"
Douglas Gregor34074322009-01-14 22:20:51 +000027#include "clang/Basic/LangOptions.h"
Richard Smith42413142015-05-15 20:05:43 +000028#include "clang/Lex/HeaderSearch.h"
Alp Tokerb6cc5922014-05-03 03:45:55 +000029#include "clang/Lex/ModuleLoader.h"
Richard Smith4caa4492015-05-15 02:34:32 +000030#include "clang/Lex/Preprocessor.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000031#include "clang/Sema/DeclSpec.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000032#include "clang/Sema/Overload.h"
33#include "clang/Sema/Scope.h"
34#include "clang/Sema/ScopeInfo.h"
35#include "clang/Sema/Sema.h"
36#include "clang/Sema/SemaInternal.h"
37#include "clang/Sema/TemplateDeduction.h"
38#include "clang/Sema/TypoCorrection.h"
Douglas Gregor34074322009-01-14 22:20:51 +000039#include "llvm/ADT/STLExtras.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000040#include "llvm/ADT/SetVector.h"
Douglas Gregore254f902009-02-04 00:32:51 +000041#include "llvm/ADT/SmallPtrSet.h"
Douglas Gregor0afa7f62010-10-14 20:34:08 +000042#include "llvm/ADT/StringMap.h"
Chris Lattner83cfc7c2011-07-18 01:54:02 +000043#include "llvm/ADT/TinyPtrVector.h"
Kaelyn Uhrain5986c3e2012-02-15 22:14:18 +000044#include "llvm/ADT/edit_distance.h"
John McCall6538c932009-10-10 05:48:19 +000045#include "llvm/Support/ErrorHandling.h"
Nick Lewycky13668f22012-04-03 20:26:45 +000046#include <algorithm>
47#include <iterator>
Douglas Gregor0afa7f62010-10-14 20:34:08 +000048#include <limits>
Douglas Gregor2d435302009-12-30 17:04:44 +000049#include <list>
Douglas Gregorc2fa1692011-06-28 16:20:02 +000050#include <map>
Nick Lewycky13668f22012-04-03 20:26:45 +000051#include <set>
52#include <utility>
53#include <vector>
Douglas Gregor34074322009-01-14 22:20:51 +000054
55using namespace clang;
John McCall19c1bfd2010-08-25 05:32:35 +000056using namespace sema;
Douglas Gregor34074322009-01-14 22:20:51 +000057
John McCallf6c8a4e2009-11-10 07:01:13 +000058namespace {
59 class UnqualUsingEntry {
60 const DeclContext *Nominated;
61 const DeclContext *CommonAncestor;
Douglas Gregor889ceb72009-02-03 19:21:40 +000062
John McCallf6c8a4e2009-11-10 07:01:13 +000063 public:
64 UnqualUsingEntry(const DeclContext *Nominated,
65 const DeclContext *CommonAncestor)
66 : Nominated(Nominated), CommonAncestor(CommonAncestor) {
67 }
Douglas Gregor889ceb72009-02-03 19:21:40 +000068
John McCallf6c8a4e2009-11-10 07:01:13 +000069 const DeclContext *getCommonAncestor() const {
70 return CommonAncestor;
71 }
Douglas Gregor889ceb72009-02-03 19:21:40 +000072
John McCallf6c8a4e2009-11-10 07:01:13 +000073 const DeclContext *getNominatedNamespace() const {
74 return Nominated;
75 }
Douglas Gregor889ceb72009-02-03 19:21:40 +000076
John McCallf6c8a4e2009-11-10 07:01:13 +000077 // Sort by the pointer value of the common ancestor.
78 struct Comparator {
79 bool operator()(const UnqualUsingEntry &L, const UnqualUsingEntry &R) {
80 return L.getCommonAncestor() < R.getCommonAncestor();
81 }
Douglas Gregor889ceb72009-02-03 19:21:40 +000082
John McCallf6c8a4e2009-11-10 07:01:13 +000083 bool operator()(const UnqualUsingEntry &E, const DeclContext *DC) {
84 return E.getCommonAncestor() < DC;
85 }
Douglas Gregor889ceb72009-02-03 19:21:40 +000086
John McCallf6c8a4e2009-11-10 07:01:13 +000087 bool operator()(const DeclContext *DC, const UnqualUsingEntry &E) {
88 return DC < E.getCommonAncestor();
89 }
90 };
91 };
Douglas Gregor889ceb72009-02-03 19:21:40 +000092
John McCallf6c8a4e2009-11-10 07:01:13 +000093 /// A collection of using directives, as used by C++ unqualified
94 /// lookup.
95 class UnqualUsingDirectiveSet {
Chris Lattner0e62c1c2011-07-23 10:55:15 +000096 typedef SmallVector<UnqualUsingEntry, 8> ListTy;
Douglas Gregor889ceb72009-02-03 19:21:40 +000097
John McCallf6c8a4e2009-11-10 07:01:13 +000098 ListTy list;
99 llvm::SmallPtrSet<DeclContext*, 8> visited;
Douglas Gregor889ceb72009-02-03 19:21:40 +0000100
John McCallf6c8a4e2009-11-10 07:01:13 +0000101 public:
102 UnqualUsingDirectiveSet() {}
Douglas Gregor889ceb72009-02-03 19:21:40 +0000103
John McCallf6c8a4e2009-11-10 07:01:13 +0000104 void visitScopeChain(Scope *S, Scope *InnermostFileScope) {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000105 // C++ [namespace.udir]p1:
John McCallf6c8a4e2009-11-10 07:01:13 +0000106 // During unqualified name lookup, the names appear as if they
107 // were declared in the nearest enclosing namespace which contains
108 // both the using-directive and the nominated namespace.
Ted Kremenekc37877d2013-10-08 17:08:03 +0000109 DeclContext *InnermostFileDC = InnermostFileScope->getEntity();
John McCallf6c8a4e2009-11-10 07:01:13 +0000110 assert(InnermostFileDC && InnermostFileDC->isFileContext());
Douglas Gregor889ceb72009-02-03 19:21:40 +0000111
John McCallf6c8a4e2009-11-10 07:01:13 +0000112 for (; S; S = S->getParent()) {
Nick Lewycky2bd636f2012-03-13 04:12:34 +0000113 // C++ [namespace.udir]p1:
114 // A using-directive shall not appear in class scope, but may
115 // appear in namespace scope or in block scope.
Ted Kremenekc37877d2013-10-08 17:08:03 +0000116 DeclContext *Ctx = S->getEntity();
Nick Lewycky2bd636f2012-03-13 04:12:34 +0000117 if (Ctx && Ctx->isFileContext()) {
118 visit(Ctx, Ctx);
119 } else if (!Ctx || Ctx->isFunctionOrMethod()) {
Aaron Ballman5df6aa42014-03-17 17:03:37 +0000120 for (auto *I : S->using_directives())
121 visit(I, InnermostFileDC);
John McCallf6c8a4e2009-11-10 07:01:13 +0000122 }
Douglas Gregor889ceb72009-02-03 19:21:40 +0000123 }
124 }
John McCallf6c8a4e2009-11-10 07:01:13 +0000125
126 // Visits a context and collect all of its using directives
127 // recursively. Treats all using directives as if they were
128 // declared in the context.
129 //
130 // A given context is only every visited once, so it is important
131 // that contexts be visited from the inside out in order to get
132 // the effective DCs right.
133 void visit(DeclContext *DC, DeclContext *EffectiveDC) {
David Blaikie82e95a32014-11-19 07:49:47 +0000134 if (!visited.insert(DC).second)
John McCallf6c8a4e2009-11-10 07:01:13 +0000135 return;
136
137 addUsingDirectives(DC, EffectiveDC);
138 }
139
140 // Visits a using directive and collects all of its using
141 // directives recursively. Treats all using directives as if they
142 // were declared in the effective DC.
143 void visit(UsingDirectiveDecl *UD, DeclContext *EffectiveDC) {
144 DeclContext *NS = UD->getNominatedNamespace();
David Blaikie82e95a32014-11-19 07:49:47 +0000145 if (!visited.insert(NS).second)
John McCallf6c8a4e2009-11-10 07:01:13 +0000146 return;
147
148 addUsingDirective(UD, EffectiveDC);
149 addUsingDirectives(NS, EffectiveDC);
150 }
151
152 // Adds all the using directives in a context (and those nominated
153 // by its using directives, transitively) as if they appeared in
154 // the given effective context.
155 void addUsingDirectives(DeclContext *DC, DeclContext *EffectiveDC) {
Nick Lewycky4b81fc872015-10-18 20:32:12 +0000156 SmallVector<DeclContext*, 4> queue;
John McCallf6c8a4e2009-11-10 07:01:13 +0000157 while (true) {
Aaron Ballman804a7fb2014-03-17 17:14:12 +0000158 for (auto UD : DC->using_directives()) {
John McCallf6c8a4e2009-11-10 07:01:13 +0000159 DeclContext *NS = UD->getNominatedNamespace();
David Blaikie82e95a32014-11-19 07:49:47 +0000160 if (visited.insert(NS).second) {
John McCallf6c8a4e2009-11-10 07:01:13 +0000161 addUsingDirective(UD, EffectiveDC);
162 queue.push_back(NS);
163 }
164 }
165
166 if (queue.empty())
167 return;
168
Robert Wilhelm25284cc2013-08-23 16:11:15 +0000169 DC = queue.pop_back_val();
John McCallf6c8a4e2009-11-10 07:01:13 +0000170 }
171 }
172
173 // Add a using directive as if it had been declared in the given
174 // context. This helps implement C++ [namespace.udir]p3:
175 // The using-directive is transitive: if a scope contains a
176 // using-directive that nominates a second namespace that itself
177 // contains using-directives, the effect is as if the
178 // using-directives from the second namespace also appeared in
179 // the first.
180 void addUsingDirective(UsingDirectiveDecl *UD, DeclContext *EffectiveDC) {
181 // Find the common ancestor between the effective context and
182 // the nominated namespace.
183 DeclContext *Common = UD->getNominatedNamespace();
184 while (!Common->Encloses(EffectiveDC))
185 Common = Common->getParent();
John McCall9757d032009-11-10 09:20:04 +0000186 Common = Common->getPrimaryContext();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000187
John McCallf6c8a4e2009-11-10 07:01:13 +0000188 list.push_back(UnqualUsingEntry(UD->getNominatedNamespace(), Common));
189 }
190
191 void done() {
192 std::sort(list.begin(), list.end(), UnqualUsingEntry::Comparator());
193 }
194
John McCallf6c8a4e2009-11-10 07:01:13 +0000195 typedef ListTy::const_iterator const_iterator;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000196
John McCallf6c8a4e2009-11-10 07:01:13 +0000197 const_iterator begin() const { return list.begin(); }
198 const_iterator end() const { return list.end(); }
199
Benjamin Kramerb4ef6682015-02-06 17:25:10 +0000200 llvm::iterator_range<const_iterator>
John McCallf6c8a4e2009-11-10 07:01:13 +0000201 getNamespacesFor(DeclContext *DC) const {
Benjamin Kramerb4ef6682015-02-06 17:25:10 +0000202 return llvm::make_range(std::equal_range(begin(), end(),
203 DC->getPrimaryContext(),
204 UnqualUsingEntry::Comparator()));
John McCallf6c8a4e2009-11-10 07:01:13 +0000205 }
206 };
Hans Wennborgdcfba332015-10-06 23:40:43 +0000207} // end anonymous namespace
Douglas Gregor889ceb72009-02-03 19:21:40 +0000208
Douglas Gregor889ceb72009-02-03 19:21:40 +0000209// Retrieve the set of identifier namespaces that correspond to a
210// specific kind of name lookup.
John McCallea305ed2009-12-18 10:40:03 +0000211static inline unsigned getIDNS(Sema::LookupNameKind NameKind,
212 bool CPlusPlus,
213 bool Redeclaration) {
Douglas Gregor889ceb72009-02-03 19:21:40 +0000214 unsigned IDNS = 0;
215 switch (NameKind) {
Fariborz Jahanian7f4427f2011-07-12 17:16:56 +0000216 case Sema::LookupObjCImplicitSelfParam:
Douglas Gregor889ceb72009-02-03 19:21:40 +0000217 case Sema::LookupOrdinaryName:
Douglas Gregoreddf4332009-02-24 20:03:32 +0000218 case Sema::LookupRedeclarationWithLinkage:
Richard Smith114394f2013-08-09 04:35:01 +0000219 case Sema::LookupLocalFriendName:
Douglas Gregor889ceb72009-02-03 19:21:40 +0000220 IDNS = Decl::IDNS_Ordinary;
John McCallea305ed2009-12-18 10:40:03 +0000221 if (CPlusPlus) {
John McCalle87beb22010-04-23 18:46:30 +0000222 IDNS |= Decl::IDNS_Tag | Decl::IDNS_Member | Decl::IDNS_Namespace;
Chris Lattnerebb5c6c2011-02-18 01:27:55 +0000223 if (Redeclaration)
224 IDNS |= Decl::IDNS_TagFriend | Decl::IDNS_OrdinaryFriend;
John McCallea305ed2009-12-18 10:40:03 +0000225 }
Richard Smith541b38b2013-09-20 01:15:31 +0000226 if (Redeclaration)
227 IDNS |= Decl::IDNS_LocalExtern;
Douglas Gregor889ceb72009-02-03 19:21:40 +0000228 break;
229
John McCallb9467b62010-04-24 01:30:58 +0000230 case Sema::LookupOperatorName:
231 // Operator lookup is its own crazy thing; it is not the same
232 // as (e.g.) looking up an operator name for redeclaration.
233 assert(!Redeclaration && "cannot do redeclaration operator lookup");
234 IDNS = Decl::IDNS_NonMemberOperator;
235 break;
236
Douglas Gregor889ceb72009-02-03 19:21:40 +0000237 case Sema::LookupTagName:
John McCalle87beb22010-04-23 18:46:30 +0000238 if (CPlusPlus) {
239 IDNS = Decl::IDNS_Type;
240
241 // When looking for a redeclaration of a tag name, we add:
242 // 1) TagFriend to find undeclared friend decls
243 // 2) Namespace because they can't "overload" with tag decls.
244 // 3) Tag because it includes class templates, which can't
245 // "overload" with tag decls.
246 if (Redeclaration)
247 IDNS |= Decl::IDNS_Tag | Decl::IDNS_TagFriend | Decl::IDNS_Namespace;
248 } else {
249 IDNS = Decl::IDNS_Tag;
250 }
Douglas Gregor889ceb72009-02-03 19:21:40 +0000251 break;
Richard Smith83e78f52014-04-11 01:03:38 +0000252
Chris Lattnerebb5c6c2011-02-18 01:27:55 +0000253 case Sema::LookupLabel:
254 IDNS = Decl::IDNS_Label;
255 break;
Richard Smith83e78f52014-04-11 01:03:38 +0000256
Douglas Gregor889ceb72009-02-03 19:21:40 +0000257 case Sema::LookupMemberName:
258 IDNS = Decl::IDNS_Member;
259 if (CPlusPlus)
Mike Stump11289f42009-09-09 15:08:12 +0000260 IDNS |= Decl::IDNS_Tag | Decl::IDNS_Ordinary;
Douglas Gregor889ceb72009-02-03 19:21:40 +0000261 break;
262
263 case Sema::LookupNestedNameSpecifierName:
John McCalle87beb22010-04-23 18:46:30 +0000264 IDNS = Decl::IDNS_Type | Decl::IDNS_Namespace;
265 break;
266
Douglas Gregor889ceb72009-02-03 19:21:40 +0000267 case Sema::LookupNamespaceName:
John McCalle87beb22010-04-23 18:46:30 +0000268 IDNS = Decl::IDNS_Namespace;
Douglas Gregor889ceb72009-02-03 19:21:40 +0000269 break;
Douglas Gregorde9f17e2009-04-23 23:18:26 +0000270
John McCall84d87672009-12-10 09:41:52 +0000271 case Sema::LookupUsingDeclName:
Richard Smith83e78f52014-04-11 01:03:38 +0000272 assert(Redeclaration && "should only be used for redecl lookup");
273 IDNS = Decl::IDNS_Ordinary | Decl::IDNS_Tag | Decl::IDNS_Member |
274 Decl::IDNS_Using | Decl::IDNS_TagFriend | Decl::IDNS_OrdinaryFriend |
275 Decl::IDNS_LocalExtern;
John McCall84d87672009-12-10 09:41:52 +0000276 break;
277
Douglas Gregor79947a22009-04-24 00:11:27 +0000278 case Sema::LookupObjCProtocolName:
279 IDNS = Decl::IDNS_ObjCProtocol;
280 break;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000281
Alexey Bataev94a4f0c2016-03-03 05:21:39 +0000282 case Sema::LookupOMPReductionName:
283 IDNS = Decl::IDNS_OMPReduction;
284 break;
285
Douglas Gregor39982192010-08-15 06:18:01 +0000286 case Sema::LookupAnyName:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000287 IDNS = Decl::IDNS_Ordinary | Decl::IDNS_Tag | Decl::IDNS_Member
Douglas Gregor39982192010-08-15 06:18:01 +0000288 | Decl::IDNS_Using | Decl::IDNS_Namespace | Decl::IDNS_ObjCProtocol
289 | Decl::IDNS_Type;
290 break;
Douglas Gregor889ceb72009-02-03 19:21:40 +0000291 }
292 return IDNS;
293}
294
John McCallea305ed2009-12-18 10:40:03 +0000295void LookupResult::configure() {
Kaelyn Takatafc8c61a2014-11-11 23:00:42 +0000296 IDNS = getIDNS(LookupKind, getSema().getLangOpts().CPlusPlus,
John McCallea305ed2009-12-18 10:40:03 +0000297 isForRedeclaration());
Douglas Gregorbcf0a472010-03-24 05:07:21 +0000298
Richard Smithbdd14642014-02-04 01:14:30 +0000299 // If we're looking for one of the allocation or deallocation
300 // operators, make sure that the implicitly-declared new and delete
301 // operators can be found.
302 switch (NameInfo.getName().getCXXOverloadedOperator()) {
303 case OO_New:
304 case OO_Delete:
305 case OO_Array_New:
306 case OO_Array_Delete:
Kaelyn Takatafc8c61a2014-11-11 23:00:42 +0000307 getSema().DeclareGlobalNewDelete();
Richard Smithbdd14642014-02-04 01:14:30 +0000308 break;
Douglas Gregorbcf0a472010-03-24 05:07:21 +0000309
Richard Smithbdd14642014-02-04 01:14:30 +0000310 default:
311 break;
312 }
Douglas Gregor15197662013-04-03 23:06:26 +0000313
Richard Smithbdd14642014-02-04 01:14:30 +0000314 // Compiler builtins are always visible, regardless of where they end
315 // up being declared.
316 if (IdentifierInfo *Id = NameInfo.getName().getAsIdentifierInfo()) {
317 if (unsigned BuiltinID = Id->getBuiltinID()) {
Kaelyn Takatafc8c61a2014-11-11 23:00:42 +0000318 if (!getSema().Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID))
Richard Smithbdd14642014-02-04 01:14:30 +0000319 AllowHidden = true;
Douglas Gregor15197662013-04-03 23:06:26 +0000320 }
Douglas Gregorbcf0a472010-03-24 05:07:21 +0000321 }
John McCallea305ed2009-12-18 10:40:03 +0000322}
323
Alp Tokerc1086762013-12-07 13:51:35 +0000324bool LookupResult::sanity() const {
Richard Smithf97ad222014-04-01 18:33:50 +0000325 // This function is never called by NDEBUG builds.
John McCall19c1bfd2010-08-25 05:32:35 +0000326 assert(ResultKind != NotFound || Decls.size() == 0);
327 assert(ResultKind != Found || Decls.size() == 1);
328 assert(ResultKind != FoundOverloaded || Decls.size() > 1 ||
329 (Decls.size() == 1 &&
330 isa<FunctionTemplateDecl>((*begin())->getUnderlyingDecl())));
331 assert(ResultKind != FoundUnresolvedValue || sanityCheckUnresolved());
332 assert(ResultKind != Ambiguous || Decls.size() > 1 ||
Douglas Gregorc0d24902010-10-22 22:08:47 +0000333 (Decls.size() == 1 && (Ambiguity == AmbiguousBaseSubobjects ||
334 Ambiguity == AmbiguousBaseSubobjectTypes)));
Craig Topperc3ec1492014-05-26 06:22:03 +0000335 assert((Paths != nullptr) == (ResultKind == Ambiguous &&
336 (Ambiguity == AmbiguousBaseSubobjectTypes ||
337 Ambiguity == AmbiguousBaseSubobjects)));
Alp Tokerc1086762013-12-07 13:51:35 +0000338 return true;
John McCall19c1bfd2010-08-25 05:32:35 +0000339}
John McCall19c1bfd2010-08-25 05:32:35 +0000340
John McCall9f3059a2009-10-09 21:13:30 +0000341// Necessary because CXXBasePaths is not complete in Sema.h
John McCall5cebab12009-11-18 07:57:50 +0000342void LookupResult::deletePaths(CXXBasePaths *Paths) {
John McCall9f3059a2009-10-09 21:13:30 +0000343 delete Paths;
Douglas Gregor889ceb72009-02-03 19:21:40 +0000344}
345
Richard Smith3876cc82013-10-30 01:02:04 +0000346/// Get a representative context for a declaration such that two declarations
347/// will have the same context if they were found within the same scope.
Benjamin Kramerfc58b042013-11-01 11:50:55 +0000348static DeclContext *getContextForScopeMatching(Decl *D) {
Richard Smith3876cc82013-10-30 01:02:04 +0000349 // For function-local declarations, use that function as the context. This
350 // doesn't account for scopes within the function; the caller must deal with
351 // those.
352 DeclContext *DC = D->getLexicalDeclContext();
353 if (DC->isFunctionOrMethod())
354 return DC;
355
356 // Otherwise, look at the semantic context of the declaration. The
357 // declaration must have been found there.
358 return D->getDeclContext()->getRedeclContext();
359}
360
Richard Smith826711d2015-07-29 23:38:25 +0000361/// \brief Determine whether \p D is a better lookup result than \p Existing,
362/// given that they declare the same entity.
Richard Smithcd31b852015-08-22 21:37:34 +0000363static bool isPreferredLookupResult(Sema &S, Sema::LookupNameKind Kind,
Richard Smith826711d2015-07-29 23:38:25 +0000364 NamedDecl *D, NamedDecl *Existing) {
365 // When looking up redeclarations of a using declaration, prefer a using
366 // shadow declaration over any other declaration of the same entity.
367 if (Kind == Sema::LookupUsingDeclName && isa<UsingShadowDecl>(D) &&
368 !isa<UsingShadowDecl>(Existing))
369 return true;
370
371 auto *DUnderlying = D->getUnderlyingDecl();
372 auto *EUnderlying = Existing->getUnderlyingDecl();
373
Richard Smith990668b2015-11-12 22:04:34 +0000374 // If they have different underlying declarations, prefer a typedef over the
375 // original type (this happens when two type declarations denote the same
376 // type), per a generous reading of C++ [dcl.typedef]p3 and p4. The typedef
377 // might carry additional semantic information, such as an alignment override.
378 // However, per C++ [dcl.typedef]p5, when looking up a tag name, prefer a tag
379 // declaration over a typedef.
Richard Smith826711d2015-07-29 23:38:25 +0000380 if (DUnderlying->getCanonicalDecl() != EUnderlying->getCanonicalDecl()) {
381 assert(isa<TypeDecl>(DUnderlying) && isa<TypeDecl>(EUnderlying));
Richard Smith990668b2015-11-12 22:04:34 +0000382 bool HaveTag = isa<TagDecl>(EUnderlying);
383 bool WantTag = Kind == Sema::LookupTagName;
384 return HaveTag != WantTag;
Richard Smith826711d2015-07-29 23:38:25 +0000385 }
386
Richard Smithcd31b852015-08-22 21:37:34 +0000387 // Pick the function with more default arguments.
388 // FIXME: In the presence of ambiguous default arguments, we should keep both,
389 // so we can diagnose the ambiguity if the default argument is needed.
390 // See C++ [over.match.best]p3.
391 if (auto *DFD = dyn_cast<FunctionDecl>(DUnderlying)) {
392 auto *EFD = cast<FunctionDecl>(EUnderlying);
393 unsigned DMin = DFD->getMinRequiredArguments();
394 unsigned EMin = EFD->getMinRequiredArguments();
395 // If D has more default arguments, it is preferred.
396 if (DMin != EMin)
397 return DMin < EMin;
Richard Smith535ff802015-09-11 22:39:35 +0000398 // FIXME: When we track visibility for default function arguments, check
399 // that we pick the declaration with more visible default arguments.
Richard Smithcd31b852015-08-22 21:37:34 +0000400 }
401
402 // Pick the template with more default template arguments.
403 if (auto *DTD = dyn_cast<TemplateDecl>(DUnderlying)) {
404 auto *ETD = cast<TemplateDecl>(EUnderlying);
405 unsigned DMin = DTD->getTemplateParameters()->getMinRequiredArguments();
406 unsigned EMin = ETD->getTemplateParameters()->getMinRequiredArguments();
Richard Smith535ff802015-09-11 22:39:35 +0000407 // If D has more default arguments, it is preferred. Note that default
408 // arguments (and their visibility) is monotonically increasing across the
409 // redeclaration chain, so this is a quick proxy for "is more recent".
Richard Smithcd31b852015-08-22 21:37:34 +0000410 if (DMin != EMin)
411 return DMin < EMin;
Richard Smith535ff802015-09-11 22:39:35 +0000412 // If D has more *visible* default arguments, it is preferred. Note, an
413 // earlier default argument being visible does not imply that a later
414 // default argument is visible, so we can't just check the first one.
415 for (unsigned I = DMin, N = DTD->getTemplateParameters()->size();
416 I != N; ++I) {
417 if (!S.hasVisibleDefaultArgument(
418 ETD->getTemplateParameters()->getParam(I)) &&
419 S.hasVisibleDefaultArgument(
420 DTD->getTemplateParameters()->getParam(I)))
421 return true;
422 }
Richard Smithcd31b852015-08-22 21:37:34 +0000423 }
424
Vassil Vassilev4d75e8d2016-02-28 19:08:24 +0000425 // VarDecl can have incomplete array types, prefer the one with more complete
426 // array type.
427 if (VarDecl *DVD = dyn_cast<VarDecl>(DUnderlying)) {
428 VarDecl *EVD = cast<VarDecl>(EUnderlying);
429 if (EVD->getType()->isIncompleteType() &&
430 !DVD->getType()->isIncompleteType()) {
431 // Prefer the decl with a more complete type if visible.
432 return S.isVisible(DVD);
433 }
434 return false; // Avoid picking up a newer decl, just because it was newer.
435 }
436
Richard Smithcd31b852015-08-22 21:37:34 +0000437 // For most kinds of declaration, it doesn't really matter which one we pick.
438 if (!isa<FunctionDecl>(DUnderlying) && !isa<VarDecl>(DUnderlying)) {
439 // If the existing declaration is hidden, prefer the new one. Otherwise,
440 // keep what we've got.
441 return !S.isVisible(Existing);
442 }
443
444 // Pick the newer declaration; it might have a more precise type.
Richard Smith826711d2015-07-29 23:38:25 +0000445 for (Decl *Prev = DUnderlying->getPreviousDecl(); Prev;
446 Prev = Prev->getPreviousDecl())
447 if (Prev == EUnderlying)
448 return true;
Richard Smith826711d2015-07-29 23:38:25 +0000449 return false;
450}
451
Richard Smith990668b2015-11-12 22:04:34 +0000452/// Determine whether \p D can hide a tag declaration.
453static bool canHideTag(NamedDecl *D) {
454 // C++ [basic.scope.declarative]p4:
455 // Given a set of declarations in a single declarative region [...]
456 // exactly one declaration shall declare a class name or enumeration name
457 // that is not a typedef name and the other declarations shall all refer to
458 // the same variable or enumerator, or all refer to functions and function
459 // templates; in this case the class name or enumeration name is hidden.
460 // C++ [basic.scope.hiding]p2:
461 // A class name or enumeration name can be hidden by the name of a
462 // variable, data member, function, or enumerator declared in the same
463 // scope.
464 D = D->getUnderlyingDecl();
465 return isa<VarDecl>(D) || isa<EnumConstantDecl>(D) || isa<FunctionDecl>(D) ||
466 isa<FunctionTemplateDecl>(D) || isa<FieldDecl>(D);
467}
468
John McCall283b9012009-11-22 00:44:51 +0000469/// Resolves the result kind of this lookup.
John McCall5cebab12009-11-18 07:57:50 +0000470void LookupResult::resolveKind() {
John McCall9f3059a2009-10-09 21:13:30 +0000471 unsigned N = Decls.size();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000472
John McCall9f3059a2009-10-09 21:13:30 +0000473 // Fast case: no possible ambiguity.
John McCall1f82f242009-11-18 22:49:29 +0000474 if (N == 0) {
Richard Smith826711d2015-07-29 23:38:25 +0000475 assert(ResultKind == NotFound ||
476 ResultKind == NotFoundInCurrentInstantiation);
John McCall1f82f242009-11-18 22:49:29 +0000477 return;
478 }
479
John McCall283b9012009-11-22 00:44:51 +0000480 // If there's a single decl, we need to examine it to decide what
481 // kind of lookup this is.
John McCalle61f2ba2009-11-18 02:36:19 +0000482 if (N == 1) {
Douglas Gregor516d6722010-04-25 21:15:30 +0000483 NamedDecl *D = (*Decls.begin())->getUnderlyingDecl();
484 if (isa<FunctionTemplateDecl>(D))
John McCall283b9012009-11-22 00:44:51 +0000485 ResultKind = FoundOverloaded;
Douglas Gregor516d6722010-04-25 21:15:30 +0000486 else if (isa<UnresolvedUsingValueDecl>(D))
John McCalle61f2ba2009-11-18 02:36:19 +0000487 ResultKind = FoundUnresolvedValue;
488 return;
489 }
John McCall9f3059a2009-10-09 21:13:30 +0000490
John McCall6538c932009-10-10 05:48:19 +0000491 // Don't do any extra resolution if we've already resolved as ambiguous.
John McCall27b18f82009-11-17 02:14:36 +0000492 if (ResultKind == Ambiguous) return;
John McCall6538c932009-10-10 05:48:19 +0000493
Richard Smitha534a312015-07-21 23:54:07 +0000494 llvm::SmallDenseMap<NamedDecl*, unsigned, 16> Unique;
Richard Smith826711d2015-07-29 23:38:25 +0000495 llvm::SmallDenseMap<QualType, unsigned, 16> UniqueTypes;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000496
John McCall9f3059a2009-10-09 21:13:30 +0000497 bool Ambiguous = false;
Richard Smith2dbe4042015-11-04 19:26:32 +0000498 bool HasTag = false, HasFunction = false;
John McCall283b9012009-11-22 00:44:51 +0000499 bool HasFunctionTemplate = false, HasUnresolved = false;
Richard Smith2dbe4042015-11-04 19:26:32 +0000500 NamedDecl *HasNonFunction = nullptr;
501
502 llvm::SmallVector<NamedDecl*, 4> EquivalentNonFunctions;
John McCall9f3059a2009-10-09 21:13:30 +0000503
504 unsigned UniqueTagIndex = 0;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000505
John McCall9f3059a2009-10-09 21:13:30 +0000506 unsigned I = 0;
507 while (I < N) {
John McCallf0f1cf02009-11-17 07:50:12 +0000508 NamedDecl *D = Decls[I]->getUnderlyingDecl();
509 D = cast<NamedDecl>(D->getCanonicalDecl());
John McCall9f3059a2009-10-09 21:13:30 +0000510
Argyrios Kyrtzidis1fcd7fd2013-02-22 06:58:37 +0000511 // Ignore an invalid declaration unless it's the only one left.
Richard Smith5cd86f82015-11-03 03:13:11 +0000512 if (D->isInvalidDecl() && !(I == 0 && N == 1)) {
Argyrios Kyrtzidis1fcd7fd2013-02-22 06:58:37 +0000513 Decls[I] = Decls[--N];
514 continue;
515 }
516
Richard Smith826711d2015-07-29 23:38:25 +0000517 llvm::Optional<unsigned> ExistingI;
518
Douglas Gregor13e65872010-08-11 14:45:53 +0000519 // Redeclarations of types via typedef can occur both within a scope
520 // and, through using declarations and directives, across scopes. There is
521 // no ambiguity if they all refer to the same type, so unique based on the
522 // canonical type.
523 if (TypeDecl *TD = dyn_cast<TypeDecl>(D)) {
Richard Smith990668b2015-11-12 22:04:34 +0000524 QualType T = getSema().Context.getTypeDeclType(TD);
525 auto UniqueResult = UniqueTypes.insert(
526 std::make_pair(getSema().Context.getCanonicalType(T), I));
527 if (!UniqueResult.second) {
528 // The type is not unique.
529 ExistingI = UniqueResult.first->second;
Douglas Gregor13e65872010-08-11 14:45:53 +0000530 }
531 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000532
Richard Smith826711d2015-07-29 23:38:25 +0000533 // For non-type declarations, check for a prior lookup result naming this
534 // canonical declaration.
535 if (!ExistingI) {
536 auto UniqueResult = Unique.insert(std::make_pair(D, I));
537 if (!UniqueResult.second) {
538 // We've seen this entity before.
539 ExistingI = UniqueResult.first->second;
Richard Smitha534a312015-07-21 23:54:07 +0000540 }
Richard Smith826711d2015-07-29 23:38:25 +0000541 }
542
543 if (ExistingI) {
544 // This is not a unique lookup result. Pick one of the results and
545 // discard the other.
Richard Smithcd31b852015-08-22 21:37:34 +0000546 if (isPreferredLookupResult(getSema(), getLookupKind(), Decls[I],
Richard Smith826711d2015-07-29 23:38:25 +0000547 Decls[*ExistingI]))
548 Decls[*ExistingI] = Decls[I];
549 Decls[I] = Decls[--N];
Douglas Gregor13e65872010-08-11 14:45:53 +0000550 continue;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000551 }
552
Douglas Gregor13e65872010-08-11 14:45:53 +0000553 // Otherwise, do some decl type analysis and then continue.
John McCalle61f2ba2009-11-18 02:36:19 +0000554
Douglas Gregor13e65872010-08-11 14:45:53 +0000555 if (isa<UnresolvedUsingValueDecl>(D)) {
556 HasUnresolved = true;
557 } else if (isa<TagDecl>(D)) {
558 if (HasTag)
559 Ambiguous = true;
560 UniqueTagIndex = I;
561 HasTag = true;
562 } else if (isa<FunctionTemplateDecl>(D)) {
563 HasFunction = true;
564 HasFunctionTemplate = true;
565 } else if (isa<FunctionDecl>(D)) {
566 HasFunction = true;
567 } else {
Richard Smith2dbe4042015-11-04 19:26:32 +0000568 if (HasNonFunction) {
569 // If we're about to create an ambiguity between two declarations that
570 // are equivalent, but one is an internal linkage declaration from one
571 // module and the other is an internal linkage declaration from another
572 // module, just skip it.
573 if (getSema().isEquivalentInternalLinkageDeclaration(HasNonFunction,
574 D)) {
575 EquivalentNonFunctions.push_back(D);
576 Decls[I] = Decls[--N];
577 continue;
578 }
579
Douglas Gregor13e65872010-08-11 14:45:53 +0000580 Ambiguous = true;
Richard Smith2dbe4042015-11-04 19:26:32 +0000581 }
582 HasNonFunction = D;
Douglas Gregor960b5bc2009-01-15 00:26:24 +0000583 }
Douglas Gregor13e65872010-08-11 14:45:53 +0000584 I++;
Mike Stump11289f42009-09-09 15:08:12 +0000585 }
Douglas Gregor38feed82009-04-24 02:57:34 +0000586
John McCall9f3059a2009-10-09 21:13:30 +0000587 // C++ [basic.scope.hiding]p2:
588 // A class name or enumeration name can be hidden by the name of
589 // an object, function, or enumerator declared in the same
590 // scope. If a class or enumeration name and an object, function,
591 // or enumerator are declared in the same scope (in any order)
592 // with the same name, the class or enumeration name is hidden
593 // wherever the object, function, or enumerator name is visible.
594 // But it's still an error if there are distinct tag types found,
595 // even if they're not visible. (ref?)
Richard Smith990668b2015-11-12 22:04:34 +0000596 if (N > 1 && HideTags && HasTag && !Ambiguous &&
Douglas Gregore63d0872010-10-23 16:06:17 +0000597 (HasFunction || HasNonFunction || HasUnresolved)) {
Richard Smith990668b2015-11-12 22:04:34 +0000598 NamedDecl *OtherDecl = Decls[UniqueTagIndex ? 0 : N - 1];
599 if (isa<TagDecl>(Decls[UniqueTagIndex]->getUnderlyingDecl()) &&
600 getContextForScopeMatching(Decls[UniqueTagIndex])->Equals(
601 getContextForScopeMatching(OtherDecl)) &&
602 canHideTag(OtherDecl))
Douglas Gregore63d0872010-10-23 16:06:17 +0000603 Decls[UniqueTagIndex] = Decls[--N];
604 else
605 Ambiguous = true;
606 }
Anders Carlsson8d0f6b72009-06-26 03:37:05 +0000607
Richard Smith2dbe4042015-11-04 19:26:32 +0000608 // FIXME: This diagnostic should really be delayed until we're done with
609 // the lookup result, in case the ambiguity is resolved by the caller.
610 if (!EquivalentNonFunctions.empty() && !Ambiguous)
611 getSema().diagnoseEquivalentInternalLinkageDeclarations(
612 getNameLoc(), HasNonFunction, EquivalentNonFunctions);
613
John McCall9f3059a2009-10-09 21:13:30 +0000614 Decls.set_size(N);
Douglas Gregor960b5bc2009-01-15 00:26:24 +0000615
John McCall80053822009-12-03 00:58:24 +0000616 if (HasNonFunction && (HasFunction || HasUnresolved))
John McCall9f3059a2009-10-09 21:13:30 +0000617 Ambiguous = true;
Douglas Gregorf23311d2009-01-17 01:13:24 +0000618
John McCall9f3059a2009-10-09 21:13:30 +0000619 if (Ambiguous)
John McCall6538c932009-10-10 05:48:19 +0000620 setAmbiguous(LookupResult::AmbiguousReference);
John McCalle61f2ba2009-11-18 02:36:19 +0000621 else if (HasUnresolved)
622 ResultKind = LookupResult::FoundUnresolvedValue;
John McCall283b9012009-11-22 00:44:51 +0000623 else if (N > 1 || HasFunctionTemplate)
John McCall27b18f82009-11-17 02:14:36 +0000624 ResultKind = LookupResult::FoundOverloaded;
John McCall9f3059a2009-10-09 21:13:30 +0000625 else
John McCall27b18f82009-11-17 02:14:36 +0000626 ResultKind = LookupResult::Found;
Douglas Gregor34074322009-01-14 22:20:51 +0000627}
628
John McCall5cebab12009-11-18 07:57:50 +0000629void LookupResult::addDeclsFromBasePaths(const CXXBasePaths &P) {
John McCall5b0829a2010-02-10 09:31:12 +0000630 CXXBasePaths::const_paths_iterator I, E;
John McCall9f3059a2009-10-09 21:13:30 +0000631 for (I = P.begin(), E = P.end(); I != E; ++I)
David Blaikieff7d47a2012-12-19 00:45:41 +0000632 for (DeclContext::lookup_iterator DI = I->Decls.begin(),
633 DE = I->Decls.end(); DI != DE; ++DI)
John McCall9f3059a2009-10-09 21:13:30 +0000634 addDecl(*DI);
Douglas Gregorfe3d7d02009-04-01 21:51:26 +0000635}
636
John McCall5cebab12009-11-18 07:57:50 +0000637void LookupResult::setAmbiguousBaseSubobjects(CXXBasePaths &P) {
John McCall9f3059a2009-10-09 21:13:30 +0000638 Paths = new CXXBasePaths;
639 Paths->swap(P);
640 addDeclsFromBasePaths(*Paths);
641 resolveKind();
John McCall6538c932009-10-10 05:48:19 +0000642 setAmbiguous(AmbiguousBaseSubobjects);
Douglas Gregor0e8fc3c2009-02-02 21:35:47 +0000643}
644
John McCall5cebab12009-11-18 07:57:50 +0000645void LookupResult::setAmbiguousBaseSubobjectTypes(CXXBasePaths &P) {
John McCall9f3059a2009-10-09 21:13:30 +0000646 Paths = new CXXBasePaths;
647 Paths->swap(P);
648 addDeclsFromBasePaths(*Paths);
649 resolveKind();
John McCall6538c932009-10-10 05:48:19 +0000650 setAmbiguous(AmbiguousBaseSubobjectTypes);
John McCall9f3059a2009-10-09 21:13:30 +0000651}
652
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000653void LookupResult::print(raw_ostream &Out) {
John McCall9f3059a2009-10-09 21:13:30 +0000654 Out << Decls.size() << " result(s)";
655 if (isAmbiguous()) Out << ", ambiguous";
656 if (Paths) Out << ", base paths present";
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000657
John McCall9f3059a2009-10-09 21:13:30 +0000658 for (iterator I = begin(), E = end(); I != E; ++I) {
659 Out << "\n";
660 (*I)->print(Out, 2);
661 }
662}
663
Richard Smithba3a4f92016-01-12 21:59:26 +0000664LLVM_DUMP_METHOD void LookupResult::dump() {
665 llvm::errs() << "lookup results for " << getLookupName().getAsString()
666 << ":\n";
667 for (NamedDecl *D : *this)
668 D->dump();
669}
670
Douglas Gregord3a59182010-02-12 05:48:04 +0000671/// \brief Lookup a builtin function, when name lookup would otherwise
672/// fail.
673static bool LookupBuiltin(Sema &S, LookupResult &R) {
674 Sema::LookupNameKind NameKind = R.getLookupKind();
675
676 // If we didn't find a use of this identifier, and if the identifier
677 // corresponds to a compiler builtin, create the decl object for the builtin
678 // now, injecting it into translation unit scope, and return it.
679 if (NameKind == Sema::LookupOrdinaryName ||
680 NameKind == Sema::LookupRedeclarationWithLinkage) {
681 IdentifierInfo *II = R.getLookupName().getAsIdentifierInfo();
682 if (II) {
David Majnemerd9b1a4f2015-11-04 03:40:30 +0000683 if (S.getLangOpts().CPlusPlus && NameKind == Sema::LookupOrdinaryName &&
684 II == S.getASTContext().getMakeIntegerSeqName()) {
685 R.addDecl(S.getASTContext().getMakeIntegerSeqDecl());
686 return true;
687 }
Nico Webere1687c52013-06-20 21:44:55 +0000688
Douglas Gregord3a59182010-02-12 05:48:04 +0000689 // If this is a builtin on this (or all) targets, create the decl.
690 if (unsigned BuiltinID = II->getBuiltinID()) {
Anastasia Stulovab607e0f2016-02-02 11:29:43 +0000691 // In C++ and OpenCL (spec v1.2 s6.9.f), we don't have any predefined
692 // library functions like 'malloc'. Instead, we'll just error.
693 if ((S.getLangOpts().CPlusPlus || S.getLangOpts().OpenCL) &&
Douglas Gregord3a59182010-02-12 05:48:04 +0000694 S.Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID))
695 return false;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000696
697 if (NamedDecl *D = S.LazilyCreateBuiltin((IdentifierInfo *)II,
698 BuiltinID, S.TUScope,
Douglas Gregorbfe022c2011-01-03 09:37:44 +0000699 R.isForRedeclaration(),
700 R.getNameLoc())) {
Douglas Gregord3a59182010-02-12 05:48:04 +0000701 R.addDecl(D);
Douglas Gregorbfe022c2011-01-03 09:37:44 +0000702 return true;
703 }
Douglas Gregord3a59182010-02-12 05:48:04 +0000704 }
705 }
706 }
707
708 return false;
709}
710
Douglas Gregor7454c562010-07-02 20:37:36 +0000711/// \brief Determine whether we can declare a special member function within
712/// the class at this point.
Richard Smith7d125a12012-11-27 21:20:31 +0000713static bool CanDeclareSpecialMemberFunction(const CXXRecordDecl *Class) {
Douglas Gregor7454c562010-07-02 20:37:36 +0000714 // We need to have a definition for the class.
715 if (!Class->getDefinition() || Class->isDependentContext())
716 return false;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000717
Douglas Gregor7454c562010-07-02 20:37:36 +0000718 // We can't be in the middle of defining the class.
Richard Smith7d125a12012-11-27 21:20:31 +0000719 return !Class->isBeingDefined();
Douglas Gregor7454c562010-07-02 20:37:36 +0000720}
721
722void Sema::ForceDeclarationOfImplicitMembers(CXXRecordDecl *Class) {
Richard Smith7d125a12012-11-27 21:20:31 +0000723 if (!CanDeclareSpecialMemberFunction(Class))
Douglas Gregora6d69502010-07-02 23:41:54 +0000724 return;
Douglas Gregor9672f922010-07-03 00:47:00 +0000725
726 // If the default constructor has not yet been declared, do so now.
Alexis Huntea6f0322011-05-11 22:34:38 +0000727 if (Class->needsImplicitDefaultConstructor())
Douglas Gregor9672f922010-07-03 00:47:00 +0000728 DeclareImplicitDefaultConstructor(Class);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000729
Douglas Gregora6d69502010-07-02 23:41:54 +0000730 // If the copy constructor has not yet been declared, do so now.
Richard Smith2be35f52012-12-01 02:35:44 +0000731 if (Class->needsImplicitCopyConstructor())
Douglas Gregora6d69502010-07-02 23:41:54 +0000732 DeclareImplicitCopyConstructor(Class);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000733
Douglas Gregor330b9cf2010-07-02 21:50:04 +0000734 // If the copy assignment operator has not yet been declared, do so now.
Richard Smith2be35f52012-12-01 02:35:44 +0000735 if (Class->needsImplicitCopyAssignment())
Douglas Gregor330b9cf2010-07-02 21:50:04 +0000736 DeclareImplicitCopyAssignment(Class);
737
Richard Smith2bf7fdb2013-01-02 11:42:31 +0000738 if (getLangOpts().CPlusPlus11) {
Sebastian Redl22653ba2011-08-30 19:58:05 +0000739 // If the move constructor has not yet been declared, do so now.
740 if (Class->needsImplicitMoveConstructor())
Richard Smitha87b7662016-05-13 18:48:05 +0000741 DeclareImplicitMoveConstructor(Class);
Sebastian Redl22653ba2011-08-30 19:58:05 +0000742
743 // If the move assignment operator has not yet been declared, do so now.
744 if (Class->needsImplicitMoveAssignment())
Richard Smitha87b7662016-05-13 18:48:05 +0000745 DeclareImplicitMoveAssignment(Class);
Sebastian Redl22653ba2011-08-30 19:58:05 +0000746 }
747
Douglas Gregor7454c562010-07-02 20:37:36 +0000748 // If the destructor has not yet been declared, do so now.
Richard Smith2be35f52012-12-01 02:35:44 +0000749 if (Class->needsImplicitDestructor())
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000750 DeclareImplicitDestructor(Class);
Douglas Gregor7454c562010-07-02 20:37:36 +0000751}
752
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000753/// \brief Determine whether this is the name of an implicitly-declared
Douglas Gregor330b9cf2010-07-02 21:50:04 +0000754/// special member function.
755static bool isImplicitlyDeclaredMemberFunctionName(DeclarationName Name) {
756 switch (Name.getNameKind()) {
Douglas Gregora6d69502010-07-02 23:41:54 +0000757 case DeclarationName::CXXConstructorName:
Douglas Gregor330b9cf2010-07-02 21:50:04 +0000758 case DeclarationName::CXXDestructorName:
759 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000760
Douglas Gregor330b9cf2010-07-02 21:50:04 +0000761 case DeclarationName::CXXOperatorName:
762 return Name.getCXXOverloadedOperator() == OO_Equal;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000763
Douglas Gregor330b9cf2010-07-02 21:50:04 +0000764 default:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000765 break;
Douglas Gregor330b9cf2010-07-02 21:50:04 +0000766 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000767
Douglas Gregor330b9cf2010-07-02 21:50:04 +0000768 return false;
769}
770
771/// \brief If there are any implicit member functions with the given name
772/// that need to be declared in the given declaration context, do so.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000773static void DeclareImplicitMemberFunctionsWithName(Sema &S,
Douglas Gregor330b9cf2010-07-02 21:50:04 +0000774 DeclarationName Name,
775 const DeclContext *DC) {
776 if (!DC)
777 return;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000778
Douglas Gregor330b9cf2010-07-02 21:50:04 +0000779 switch (Name.getNameKind()) {
Douglas Gregora6d69502010-07-02 23:41:54 +0000780 case DeclarationName::CXXConstructorName:
781 if (const CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(DC))
Richard Smith7d125a12012-11-27 21:20:31 +0000782 if (Record->getDefinition() && CanDeclareSpecialMemberFunction(Record)) {
Sebastian Redl22653ba2011-08-30 19:58:05 +0000783 CXXRecordDecl *Class = const_cast<CXXRecordDecl *>(Record);
Alexis Huntea6f0322011-05-11 22:34:38 +0000784 if (Record->needsImplicitDefaultConstructor())
Sebastian Redl22653ba2011-08-30 19:58:05 +0000785 S.DeclareImplicitDefaultConstructor(Class);
Richard Smith2be35f52012-12-01 02:35:44 +0000786 if (Record->needsImplicitCopyConstructor())
Sebastian Redl22653ba2011-08-30 19:58:05 +0000787 S.DeclareImplicitCopyConstructor(Class);
Richard Smith2bf7fdb2013-01-02 11:42:31 +0000788 if (S.getLangOpts().CPlusPlus11 &&
Sebastian Redl22653ba2011-08-30 19:58:05 +0000789 Record->needsImplicitMoveConstructor())
790 S.DeclareImplicitMoveConstructor(Class);
Douglas Gregor9672f922010-07-03 00:47:00 +0000791 }
Douglas Gregora6d69502010-07-02 23:41:54 +0000792 break;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000793
Douglas Gregor330b9cf2010-07-02 21:50:04 +0000794 case DeclarationName::CXXDestructorName:
795 if (const CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(DC))
Richard Smith2be35f52012-12-01 02:35:44 +0000796 if (Record->getDefinition() && Record->needsImplicitDestructor() &&
Richard Smith7d125a12012-11-27 21:20:31 +0000797 CanDeclareSpecialMemberFunction(Record))
Douglas Gregor330b9cf2010-07-02 21:50:04 +0000798 S.DeclareImplicitDestructor(const_cast<CXXRecordDecl *>(Record));
Douglas Gregor330b9cf2010-07-02 21:50:04 +0000799 break;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000800
Douglas Gregor330b9cf2010-07-02 21:50:04 +0000801 case DeclarationName::CXXOperatorName:
802 if (Name.getCXXOverloadedOperator() != OO_Equal)
803 break;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000804
Sebastian Redl22653ba2011-08-30 19:58:05 +0000805 if (const CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(DC)) {
Richard Smith7d125a12012-11-27 21:20:31 +0000806 if (Record->getDefinition() && CanDeclareSpecialMemberFunction(Record)) {
Sebastian Redl22653ba2011-08-30 19:58:05 +0000807 CXXRecordDecl *Class = const_cast<CXXRecordDecl *>(Record);
Richard Smith2be35f52012-12-01 02:35:44 +0000808 if (Record->needsImplicitCopyAssignment())
Sebastian Redl22653ba2011-08-30 19:58:05 +0000809 S.DeclareImplicitCopyAssignment(Class);
Richard Smith2bf7fdb2013-01-02 11:42:31 +0000810 if (S.getLangOpts().CPlusPlus11 &&
Sebastian Redl22653ba2011-08-30 19:58:05 +0000811 Record->needsImplicitMoveAssignment())
812 S.DeclareImplicitMoveAssignment(Class);
813 }
814 }
Douglas Gregor330b9cf2010-07-02 21:50:04 +0000815 break;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000816
Douglas Gregor330b9cf2010-07-02 21:50:04 +0000817 default:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000818 break;
Douglas Gregor330b9cf2010-07-02 21:50:04 +0000819 }
820}
Douglas Gregor7454c562010-07-02 20:37:36 +0000821
John McCall9f3059a2009-10-09 21:13:30 +0000822// Adds all qualifying matches for a name within a decl context to the
823// given lookup result. Returns true if any matches were found.
Douglas Gregord3a59182010-02-12 05:48:04 +0000824static bool LookupDirect(Sema &S, LookupResult &R, const DeclContext *DC) {
John McCall9f3059a2009-10-09 21:13:30 +0000825 bool Found = false;
826
Douglas Gregor7454c562010-07-02 20:37:36 +0000827 // Lazily declare C++ special member functions.
David Blaikiebbafb8a2012-03-11 07:00:24 +0000828 if (S.getLangOpts().CPlusPlus)
Douglas Gregor330b9cf2010-07-02 21:50:04 +0000829 DeclareImplicitMemberFunctionsWithName(S, R.getLookupName(), DC);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000830
Douglas Gregor7454c562010-07-02 20:37:36 +0000831 // Perform lookup into this declaration context.
Richard Smithcf4bdde2015-02-21 02:45:19 +0000832 DeclContext::lookup_result DR = DC->lookup(R.getLookupName());
833 for (DeclContext::lookup_iterator I = DR.begin(), E = DR.end(); I != E;
David Blaikieff7d47a2012-12-19 00:45:41 +0000834 ++I) {
John McCall401982f2010-01-20 21:53:11 +0000835 NamedDecl *D = *I;
Douglas Gregor4a814562011-12-14 16:03:29 +0000836 if ((D = R.getAcceptableDecl(D))) {
John McCall401982f2010-01-20 21:53:11 +0000837 R.addDecl(D);
Douglas Gregorea0a0a92010-01-11 18:40:55 +0000838 Found = true;
839 }
840 }
John McCall9f3059a2009-10-09 21:13:30 +0000841
Douglas Gregord3a59182010-02-12 05:48:04 +0000842 if (!Found && DC->isTranslationUnit() && LookupBuiltin(S, R))
843 return true;
844
Douglas Gregorea0a0a92010-01-11 18:40:55 +0000845 if (R.getLookupName().getNameKind()
Chandler Carruth3a693b72010-01-31 11:44:02 +0000846 != DeclarationName::CXXConversionFunctionName ||
847 R.getLookupName().getCXXNameType()->isDependentType() ||
848 !isa<CXXRecordDecl>(DC))
849 return Found;
850
851 // C++ [temp.mem]p6:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000852 // A specialization of a conversion function template is not found by
Chandler Carruth3a693b72010-01-31 11:44:02 +0000853 // name lookup. Instead, any conversion function templates visible in the
854 // context of the use are considered. [...]
855 const CXXRecordDecl *Record = cast<CXXRecordDecl>(DC);
John McCallf937c022011-10-07 06:10:15 +0000856 if (!Record->isCompleteDefinition())
Chandler Carruth3a693b72010-01-31 11:44:02 +0000857 return Found;
858
Argyrios Kyrtzidisa6567c42012-11-28 03:56:09 +0000859 for (CXXRecordDecl::conversion_iterator U = Record->conversion_begin(),
860 UEnd = Record->conversion_end(); U != UEnd; ++U) {
Chandler Carruth3a693b72010-01-31 11:44:02 +0000861 FunctionTemplateDecl *ConvTemplate = dyn_cast<FunctionTemplateDecl>(*U);
862 if (!ConvTemplate)
863 continue;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000864
Chandler Carruth3a693b72010-01-31 11:44:02 +0000865 // When we're performing lookup for the purposes of redeclaration, just
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000866 // add the conversion function template. When we deduce template
867 // arguments for specializations, we'll end up unifying the return
Chandler Carruth3a693b72010-01-31 11:44:02 +0000868 // type of the new declaration with the type of the function template.
869 if (R.isForRedeclaration()) {
870 R.addDecl(ConvTemplate);
871 Found = true;
872 continue;
873 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000874
Douglas Gregorea0a0a92010-01-11 18:40:55 +0000875 // C++ [temp.mem]p6:
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000876 // [...] For each such operator, if argument deduction succeeds
877 // (14.9.2.3), the resulting specialization is used as if found by
Chandler Carruth3a693b72010-01-31 11:44:02 +0000878 // name lookup.
879 //
880 // When referencing a conversion function for any purpose other than
881 // a redeclaration (such that we'll be building an expression with the
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000882 // result), perform template argument deduction and place the
Chandler Carruth3a693b72010-01-31 11:44:02 +0000883 // specialization into the result set. We do this to avoid forcing all
884 // callers to perform special deduction for conversion functions.
Craig Toppere6706e42012-09-19 02:26:47 +0000885 TemplateDeductionInfo Info(R.getNameLoc());
Craig Topperc3ec1492014-05-26 06:22:03 +0000886 FunctionDecl *Specialization = nullptr;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000887
888 const FunctionProtoType *ConvProto
Chandler Carruth3a693b72010-01-31 11:44:02 +0000889 = ConvTemplate->getTemplatedDecl()->getType()->getAs<FunctionProtoType>();
890 assert(ConvProto && "Nonsensical conversion function template type");
Douglas Gregor3c96a462010-01-12 01:17:50 +0000891
Chandler Carruth3a693b72010-01-31 11:44:02 +0000892 // Compute the type of the function that we would expect the conversion
893 // function to have, if it were to match the name given.
894 // FIXME: Calling convention!
John McCalldb40c7f2010-12-14 08:05:40 +0000895 FunctionProtoType::ExtProtoInfo EPI = ConvProto->getExtProtoInfo();
Reid Kleckner78af0702013-08-27 23:08:25 +0000896 EPI.ExtInfo = EPI.ExtInfo.withCallingConv(CC_C);
Richard Smith8acb4282014-07-31 21:57:55 +0000897 EPI.ExceptionSpec = EST_None;
Chandler Carruth3a693b72010-01-31 11:44:02 +0000898 QualType ExpectedType
899 = R.getSema().Context.getFunctionType(R.getLookupName().getCXXNameType(),
Dmitri Gribenko44ebbd52013-05-05 00:41:58 +0000900 None, EPI);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000901
Chandler Carruth3a693b72010-01-31 11:44:02 +0000902 // Perform template argument deduction against the type that we would
903 // expect the function to have.
Craig Topperc3ec1492014-05-26 06:22:03 +0000904 if (R.getSema().DeduceTemplateArguments(ConvTemplate, nullptr, ExpectedType,
Chandler Carruth3a693b72010-01-31 11:44:02 +0000905 Specialization, Info)
906 == Sema::TDK_Success) {
907 R.addDecl(Specialization);
908 Found = true;
Douglas Gregorea0a0a92010-01-11 18:40:55 +0000909 }
910 }
Chandler Carruth3a693b72010-01-31 11:44:02 +0000911
John McCall9f3059a2009-10-09 21:13:30 +0000912 return Found;
913}
914
John McCallf6c8a4e2009-11-10 07:01:13 +0000915// Performs C++ unqualified lookup into the given file context.
John McCall9f3059a2009-10-09 21:13:30 +0000916static bool
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000917CppNamespaceLookup(Sema &S, LookupResult &R, ASTContext &Context,
Douglas Gregord3a59182010-02-12 05:48:04 +0000918 DeclContext *NS, UnqualUsingDirectiveSet &UDirs) {
Douglas Gregor700792c2009-02-05 19:25:20 +0000919
920 assert(NS && NS->isFileContext() && "CppNamespaceLookup() requires namespace!");
921
John McCallf6c8a4e2009-11-10 07:01:13 +0000922 // Perform direct name lookup into the LookupCtx.
Douglas Gregord3a59182010-02-12 05:48:04 +0000923 bool Found = LookupDirect(S, R, NS);
Douglas Gregor700792c2009-02-05 19:25:20 +0000924
John McCallf6c8a4e2009-11-10 07:01:13 +0000925 // Perform direct name lookup into the namespaces nominated by the
926 // using directives whose common ancestor is this namespace.
Benjamin Kramerb4ef6682015-02-06 17:25:10 +0000927 for (const UnqualUsingEntry &UUE : UDirs.getNamespacesFor(NS))
928 if (LookupDirect(S, R, UUE.getNominatedNamespace()))
John McCallf6c8a4e2009-11-10 07:01:13 +0000929 Found = true;
John McCall9f3059a2009-10-09 21:13:30 +0000930
931 R.resolveKind();
932
933 return Found;
Douglas Gregor700792c2009-02-05 19:25:20 +0000934}
935
936static bool isNamespaceOrTranslationUnitScope(Scope *S) {
Ted Kremenekc37877d2013-10-08 17:08:03 +0000937 if (DeclContext *Ctx = S->getEntity())
Douglas Gregor700792c2009-02-05 19:25:20 +0000938 return Ctx->isFileContext();
939 return false;
Douglas Gregor889ceb72009-02-03 19:21:40 +0000940}
Douglas Gregored8f2882009-01-30 01:04:22 +0000941
Douglas Gregor66230062010-03-15 14:33:29 +0000942// Find the next outer declaration context from this scope. This
943// routine actually returns the semantic outer context, which may
944// differ from the lexical context (encoded directly in the Scope
945// stack) when we are parsing a member of a class template. In this
946// case, the second element of the pair will be true, to indicate that
947// name lookup should continue searching in this semantic context when
948// it leaves the current template parameter scope.
949static std::pair<DeclContext *, bool> findOuterContext(Scope *S) {
Ted Kremenekc37877d2013-10-08 17:08:03 +0000950 DeclContext *DC = S->getEntity();
Craig Topperc3ec1492014-05-26 06:22:03 +0000951 DeclContext *Lexical = nullptr;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000952 for (Scope *OuterS = S->getParent(); OuterS;
Douglas Gregor66230062010-03-15 14:33:29 +0000953 OuterS = OuterS->getParent()) {
954 if (OuterS->getEntity()) {
Ted Kremenekc37877d2013-10-08 17:08:03 +0000955 Lexical = OuterS->getEntity();
Douglas Gregor66230062010-03-15 14:33:29 +0000956 break;
957 }
958 }
959
960 // C++ [temp.local]p8:
961 // In the definition of a member of a class template that appears
962 // outside of the namespace containing the class template
963 // definition, the name of a template-parameter hides the name of
964 // a member of this namespace.
965 //
966 // Example:
967 //
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000968 // namespace N {
969 // class C { };
Douglas Gregor66230062010-03-15 14:33:29 +0000970 //
971 // template<class T> class B {
972 // void f(T);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000973 // };
Douglas Gregor66230062010-03-15 14:33:29 +0000974 // }
975 //
976 // template<class C> void N::B<C>::f(C) {
977 // C b; // C is the template parameter, not N::C
978 // }
979 //
980 // In this example, the lexical context we return is the
981 // TranslationUnit, while the semantic context is the namespace N.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000982 if (!Lexical || !DC || !S->getParent() ||
Douglas Gregor66230062010-03-15 14:33:29 +0000983 !S->getParent()->isTemplateParamScope())
984 return std::make_pair(Lexical, false);
985
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000986 // Find the outermost template parameter scope.
Douglas Gregor66230062010-03-15 14:33:29 +0000987 // For the example, this is the scope for the template parameters of
988 // template<class C>.
989 Scope *OutermostTemplateScope = S->getParent();
990 while (OutermostTemplateScope->getParent() &&
991 OutermostTemplateScope->getParent()->isTemplateParamScope())
992 OutermostTemplateScope = OutermostTemplateScope->getParent();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000993
Douglas Gregor66230062010-03-15 14:33:29 +0000994 // Find the namespace context in which the original scope occurs. In
995 // the example, this is namespace N.
996 DeclContext *Semantic = DC;
997 while (!Semantic->isFileContext())
998 Semantic = Semantic->getParent();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +0000999
Douglas Gregor66230062010-03-15 14:33:29 +00001000 // Find the declaration context just outside of the template
1001 // parameter scope. This is the context in which the template is
1002 // being lexically declaration (a namespace context). In the
1003 // example, this is the global scope.
1004 if (Lexical->isFileContext() && !Lexical->Equals(Semantic) &&
1005 Lexical->Encloses(Semantic))
1006 return std::make_pair(Semantic, true);
1007
1008 return std::make_pair(Lexical, false);
Douglas Gregor7f737c02009-09-10 16:57:35 +00001009}
1010
Richard Smith541b38b2013-09-20 01:15:31 +00001011namespace {
1012/// An RAII object to specify that we want to find block scope extern
1013/// declarations.
1014struct FindLocalExternScope {
1015 FindLocalExternScope(LookupResult &R)
1016 : R(R), OldFindLocalExtern(R.getIdentifierNamespace() &
1017 Decl::IDNS_LocalExtern) {
1018 R.setFindLocalExtern(R.getIdentifierNamespace() & Decl::IDNS_Ordinary);
1019 }
1020 void restore() {
1021 R.setFindLocalExtern(OldFindLocalExtern);
1022 }
1023 ~FindLocalExternScope() {
1024 restore();
1025 }
1026 LookupResult &R;
1027 bool OldFindLocalExtern;
1028};
Hans Wennborgdcfba332015-10-06 23:40:43 +00001029} // end anonymous namespace
Richard Smith541b38b2013-09-20 01:15:31 +00001030
John McCall27b18f82009-11-17 02:14:36 +00001031bool Sema::CppLookupName(LookupResult &R, Scope *S) {
David Blaikiebbafb8a2012-03-11 07:00:24 +00001032 assert(getLangOpts().CPlusPlus && "Can perform only C++ lookup");
John McCall27b18f82009-11-17 02:14:36 +00001033
1034 DeclarationName Name = R.getLookupName();
Richard Smith1c34fb72013-08-13 18:18:50 +00001035 Sema::LookupNameKind NameKind = R.getLookupKind();
John McCall27b18f82009-11-17 02:14:36 +00001036
Douglas Gregor330b9cf2010-07-02 21:50:04 +00001037 // If this is the name of an implicitly-declared special member function,
1038 // go through the scope stack to implicitly declare
1039 if (isImplicitlyDeclaredMemberFunctionName(Name)) {
1040 for (Scope *PreS = S; PreS; PreS = PreS->getParent())
Ted Kremenekc37877d2013-10-08 17:08:03 +00001041 if (DeclContext *DC = PreS->getEntity())
Douglas Gregor330b9cf2010-07-02 21:50:04 +00001042 DeclareImplicitMemberFunctionsWithName(*this, Name, DC);
1043 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001044
Douglas Gregor330b9cf2010-07-02 21:50:04 +00001045 // Implicitly declare member functions with the name we're looking for, if in
1046 // fact we are in a scope where it matters.
1047
Douglas Gregor889ceb72009-02-03 19:21:40 +00001048 Scope *Initial = S;
Mike Stump11289f42009-09-09 15:08:12 +00001049 IdentifierResolver::iterator
Douglas Gregor889ceb72009-02-03 19:21:40 +00001050 I = IdResolver.begin(Name),
1051 IEnd = IdResolver.end();
Douglas Gregored8f2882009-01-30 01:04:22 +00001052
Douglas Gregor889ceb72009-02-03 19:21:40 +00001053 // First we lookup local scope.
Douglas Gregorded2d7b2009-02-04 19:02:06 +00001054 // We don't consider using-directives, as per 7.3.4.p1 [namespace.udir]
Douglas Gregor889ceb72009-02-03 19:21:40 +00001055 // ...During unqualified name lookup (3.4.1), the names appear as if
1056 // they were declared in the nearest enclosing namespace which contains
1057 // both the using-directive and the nominated namespace.
Eli Friedman44b83ee2009-08-05 19:21:58 +00001058 // [Note: in this context, "contains" means "contains directly or
Mike Stump11289f42009-09-09 15:08:12 +00001059 // indirectly".
Douglas Gregor889ceb72009-02-03 19:21:40 +00001060 //
1061 // For example:
1062 // namespace A { int i; }
1063 // void foo() {
1064 // int i;
1065 // {
1066 // using namespace A;
1067 // ++i; // finds local 'i', A::i appears at global scope
1068 // }
1069 // }
Douglas Gregor2ada0482009-02-04 17:27:36 +00001070 //
Douglas Gregorcc9406c2013-04-08 23:11:25 +00001071 UnqualUsingDirectiveSet UDirs;
1072 bool VisitedUsingDirectives = false;
Richard Smith1c34fb72013-08-13 18:18:50 +00001073 bool LeftStartingScope = false;
Craig Topperc3ec1492014-05-26 06:22:03 +00001074 DeclContext *OutsideOfTemplateParamDC = nullptr;
Richard Smith541b38b2013-09-20 01:15:31 +00001075
1076 // When performing a scope lookup, we want to find local extern decls.
1077 FindLocalExternScope FindLocals(R);
1078
Douglas Gregor700792c2009-02-05 19:25:20 +00001079 for (; S && !isNamespaceOrTranslationUnitScope(S); S = S->getParent()) {
Ted Kremenekc37877d2013-10-08 17:08:03 +00001080 DeclContext *Ctx = S->getEntity();
Olivier Goffart12b221982016-06-16 21:39:46 +00001081 bool SearchNamespaceScope = true;
Douglas Gregor889ceb72009-02-03 19:21:40 +00001082 // Check whether the IdResolver has anything in this scope.
John McCall48871652010-08-21 09:40:31 +00001083 for (; I != IEnd && S->isDeclScope(*I); ++I) {
Douglas Gregor4a814562011-12-14 16:03:29 +00001084 if (NamedDecl *ND = R.getAcceptableDecl(*I)) {
Olivier Goffart12b221982016-06-16 21:39:46 +00001085 if (NameKind == LookupRedeclarationWithLinkage &&
1086 !(*I)->isTemplateParameter()) {
1087 // If it's a template parameter, we still find it, so we can diagnose
1088 // the invalid redeclaration.
1089
Richard Smith1c34fb72013-08-13 18:18:50 +00001090 // Determine whether this (or a previous) declaration is
1091 // out-of-scope.
1092 if (!LeftStartingScope && !Initial->isDeclScope(*I))
1093 LeftStartingScope = true;
1094
1095 // If we found something outside of our starting scope that
Olivier Goffart12b221982016-06-16 21:39:46 +00001096 // does not have linkage, skip it.
1097 if (LeftStartingScope && !((*I)->hasLinkage())) {
Richard Smith1c34fb72013-08-13 18:18:50 +00001098 R.setShadowed();
1099 continue;
1100 }
Olivier Goffart12b221982016-06-16 21:39:46 +00001101 } else {
1102 // We found something in this scope, we should not look at the
1103 // namespace scope
1104 SearchNamespaceScope = false;
Richard Smith1c34fb72013-08-13 18:18:50 +00001105 }
Douglas Gregor4a814562011-12-14 16:03:29 +00001106 R.addDecl(ND);
Douglas Gregor889ceb72009-02-03 19:21:40 +00001107 }
1108 }
Olivier Goffart12b221982016-06-16 21:39:46 +00001109 if (!SearchNamespaceScope) {
John McCall9f3059a2009-10-09 21:13:30 +00001110 R.resolveKind();
Douglas Gregor3e51e172010-05-20 20:58:56 +00001111 if (S->isClassScope())
1112 if (CXXRecordDecl *Record = dyn_cast_or_null<CXXRecordDecl>(Ctx))
1113 R.setNamingClass(Record);
John McCall9f3059a2009-10-09 21:13:30 +00001114 return true;
1115 }
1116
Richard Smith1c34fb72013-08-13 18:18:50 +00001117 if (NameKind == LookupLocalFriendName && !S->isClassScope()) {
Richard Smith114394f2013-08-09 04:35:01 +00001118 // C++11 [class.friend]p11:
1119 // If a friend declaration appears in a local class and the name
1120 // specified is an unqualified name, a prior declaration is
1121 // looked up without considering scopes that are outside the
1122 // innermost enclosing non-class scope.
1123 return false;
1124 }
1125
Douglas Gregor66230062010-03-15 14:33:29 +00001126 if (!Ctx && S->isTemplateParamScope() && OutsideOfTemplateParamDC &&
1127 S->getParent() && !S->getParent()->isTemplateParamScope()) {
1128 // We've just searched the last template parameter scope and
Sylvestre Ledru830885c2012-07-23 08:59:39 +00001129 // found nothing, so look into the contexts between the
Douglas Gregor66230062010-03-15 14:33:29 +00001130 // lexical and semantic declaration contexts returned by
1131 // findOuterContext(). This implements the name lookup behavior
1132 // of C++ [temp.local]p8.
1133 Ctx = OutsideOfTemplateParamDC;
Craig Topperc3ec1492014-05-26 06:22:03 +00001134 OutsideOfTemplateParamDC = nullptr;
Douglas Gregor66230062010-03-15 14:33:29 +00001135 }
1136
1137 if (Ctx) {
1138 DeclContext *OuterCtx;
1139 bool SearchAfterTemplateScope;
Benjamin Kramer867ea1d2014-03-02 13:01:17 +00001140 std::tie(OuterCtx, SearchAfterTemplateScope) = findOuterContext(S);
Douglas Gregor66230062010-03-15 14:33:29 +00001141 if (SearchAfterTemplateScope)
1142 OutsideOfTemplateParamDC = OuterCtx;
1143
Douglas Gregorea166062010-03-15 15:26:48 +00001144 for (; Ctx && !Ctx->Equals(OuterCtx); Ctx = Ctx->getLookupParent()) {
Douglas Gregor337caf92010-02-19 16:08:35 +00001145 // We do not directly look into transparent contexts, since
1146 // those entities will be found in the nearest enclosing
1147 // non-transparent context.
1148 if (Ctx->isTransparentContext())
Douglas Gregor7f737c02009-09-10 16:57:35 +00001149 continue;
Douglas Gregor337caf92010-02-19 16:08:35 +00001150
1151 // We do not look directly into function or method contexts,
1152 // since all of the local variables and parameters of the
1153 // function/method are present within the Scope.
1154 if (Ctx->isFunctionOrMethod()) {
1155 // If we have an Objective-C instance method, look for ivars
1156 // in the corresponding interface.
1157 if (ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(Ctx)) {
1158 if (Method->isInstanceMethod() && Name.getAsIdentifierInfo())
1159 if (ObjCInterfaceDecl *Class = Method->getClassInterface()) {
1160 ObjCInterfaceDecl *ClassDeclared;
1161 if (ObjCIvarDecl *Ivar = Class->lookupInstanceVariable(
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001162 Name.getAsIdentifierInfo(),
Douglas Gregor337caf92010-02-19 16:08:35 +00001163 ClassDeclared)) {
Douglas Gregor4a814562011-12-14 16:03:29 +00001164 if (NamedDecl *ND = R.getAcceptableDecl(Ivar)) {
1165 R.addDecl(ND);
Douglas Gregor337caf92010-02-19 16:08:35 +00001166 R.resolveKind();
1167 return true;
1168 }
1169 }
1170 }
1171 }
1172
1173 continue;
1174 }
1175
Douglas Gregorb0d0aa52013-03-27 12:51:49 +00001176 // If this is a file context, we need to perform unqualified name
1177 // lookup considering using directives.
1178 if (Ctx->isFileContext()) {
Douglas Gregorcc9406c2013-04-08 23:11:25 +00001179 // If we haven't handled using directives yet, do so now.
1180 if (!VisitedUsingDirectives) {
1181 // Add using directives from this context up to the top level.
Douglas Gregor8ccbc182013-04-09 01:49:26 +00001182 for (DeclContext *UCtx = Ctx; UCtx; UCtx = UCtx->getParent()) {
1183 if (UCtx->isTransparentContext())
1184 continue;
1185
Douglas Gregorcc9406c2013-04-08 23:11:25 +00001186 UDirs.visit(UCtx, UCtx);
Douglas Gregor8ccbc182013-04-09 01:49:26 +00001187 }
Douglas Gregorcc9406c2013-04-08 23:11:25 +00001188
1189 // Find the innermost file scope, so we can add using directives
1190 // from local scopes.
1191 Scope *InnermostFileScope = S;
1192 while (InnermostFileScope &&
1193 !isNamespaceOrTranslationUnitScope(InnermostFileScope))
1194 InnermostFileScope = InnermostFileScope->getParent();
1195 UDirs.visitScopeChain(Initial, InnermostFileScope);
1196
1197 UDirs.done();
1198
1199 VisitedUsingDirectives = true;
1200 }
Douglas Gregorb0d0aa52013-03-27 12:51:49 +00001201
1202 if (CppNamespaceLookup(*this, R, Context, Ctx, UDirs)) {
1203 R.resolveKind();
1204 return true;
1205 }
1206
1207 continue;
1208 }
1209
Douglas Gregor7f737c02009-09-10 16:57:35 +00001210 // Perform qualified name lookup into this context.
1211 // FIXME: In some cases, we know that every name that could be found by
1212 // this qualified name lookup will also be on the identifier chain. For
1213 // example, inside a class without any base classes, we never need to
1214 // perform qualified lookup because all of the members are on top of the
1215 // identifier chain.
Douglas Gregord0d2ee02010-01-15 01:44:47 +00001216 if (LookupQualifiedName(R, Ctx, /*InUnqualifiedLookup=*/true))
John McCall9f3059a2009-10-09 21:13:30 +00001217 return true;
Douglas Gregorfdca4a72009-03-27 04:21:56 +00001218 }
Douglas Gregor700792c2009-02-05 19:25:20 +00001219 }
Douglas Gregored8f2882009-01-30 01:04:22 +00001220 }
Douglas Gregor889ceb72009-02-03 19:21:40 +00001221
John McCallf6c8a4e2009-11-10 07:01:13 +00001222 // Stop if we ran out of scopes.
1223 // FIXME: This really, really shouldn't be happening.
1224 if (!S) return false;
1225
Argyrios Kyrtzidis706bbf82010-10-29 16:12:50 +00001226 // If we are looking for members, no need to look into global/namespace scope.
Richard Smith1c34fb72013-08-13 18:18:50 +00001227 if (NameKind == LookupMemberName)
Argyrios Kyrtzidis706bbf82010-10-29 16:12:50 +00001228 return false;
1229
Douglas Gregor700792c2009-02-05 19:25:20 +00001230 // Collect UsingDirectiveDecls in all scopes, and recursively all
Douglas Gregor889ceb72009-02-03 19:21:40 +00001231 // nominated namespaces by those using-directives.
John McCallf6c8a4e2009-11-10 07:01:13 +00001232 //
Mike Stump87c57ac2009-05-16 07:39:55 +00001233 // FIXME: Cache this sorted list in Scope structure, and DeclContext, so we
1234 // don't build it for each lookup!
Douglas Gregorcc9406c2013-04-08 23:11:25 +00001235 if (!VisitedUsingDirectives) {
1236 UDirs.visitScopeChain(Initial, S);
1237 UDirs.done();
1238 }
Richard Smith541b38b2013-09-20 01:15:31 +00001239
1240 // If we're not performing redeclaration lookup, do not look for local
1241 // extern declarations outside of a function scope.
1242 if (!R.isForRedeclaration())
1243 FindLocals.restore();
1244
Douglas Gregor700792c2009-02-05 19:25:20 +00001245 // Lookup namespace scope, and global scope.
Douglas Gregor889ceb72009-02-03 19:21:40 +00001246 // Unqualified name lookup in C++ requires looking into scopes
1247 // that aren't strictly lexical, and therefore we walk through the
1248 // context as well as walking through the scopes.
1249 for (; S; S = S->getParent()) {
Douglas Gregor889ceb72009-02-03 19:21:40 +00001250 // Check whether the IdResolver has anything in this scope.
John McCall9f3059a2009-10-09 21:13:30 +00001251 bool Found = false;
John McCall48871652010-08-21 09:40:31 +00001252 for (; I != IEnd && S->isDeclScope(*I); ++I) {
Douglas Gregor4a814562011-12-14 16:03:29 +00001253 if (NamedDecl *ND = R.getAcceptableDecl(*I)) {
Douglas Gregor889ceb72009-02-03 19:21:40 +00001254 // We found something. Look for anything else in our scope
1255 // with this same name and in an acceptable identifier
1256 // namespace, so that we can construct an overload set if we
1257 // need to.
John McCall9f3059a2009-10-09 21:13:30 +00001258 Found = true;
Douglas Gregor4a814562011-12-14 16:03:29 +00001259 R.addDecl(ND);
Douglas Gregor889ceb72009-02-03 19:21:40 +00001260 }
1261 }
1262
Douglas Gregorf3d3ae62010-05-14 04:53:42 +00001263 if (Found && S->isTemplateParamScope()) {
John McCall9f3059a2009-10-09 21:13:30 +00001264 R.resolveKind();
1265 return true;
1266 }
1267
Ted Kremenekc37877d2013-10-08 17:08:03 +00001268 DeclContext *Ctx = S->getEntity();
Douglas Gregorf3d3ae62010-05-14 04:53:42 +00001269 if (!Ctx && S->isTemplateParamScope() && OutsideOfTemplateParamDC &&
1270 S->getParent() && !S->getParent()->isTemplateParamScope()) {
1271 // We've just searched the last template parameter scope and
Sylvestre Ledru830885c2012-07-23 08:59:39 +00001272 // found nothing, so look into the contexts between the
Douglas Gregorf3d3ae62010-05-14 04:53:42 +00001273 // lexical and semantic declaration contexts returned by
1274 // findOuterContext(). This implements the name lookup behavior
1275 // of C++ [temp.local]p8.
1276 Ctx = OutsideOfTemplateParamDC;
Craig Topperc3ec1492014-05-26 06:22:03 +00001277 OutsideOfTemplateParamDC = nullptr;
Douglas Gregorf3d3ae62010-05-14 04:53:42 +00001278 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001279
Douglas Gregorf3d3ae62010-05-14 04:53:42 +00001280 if (Ctx) {
1281 DeclContext *OuterCtx;
1282 bool SearchAfterTemplateScope;
Benjamin Kramer867ea1d2014-03-02 13:01:17 +00001283 std::tie(OuterCtx, SearchAfterTemplateScope) = findOuterContext(S);
Douglas Gregorf3d3ae62010-05-14 04:53:42 +00001284 if (SearchAfterTemplateScope)
1285 OutsideOfTemplateParamDC = OuterCtx;
1286
1287 for (; Ctx && !Ctx->Equals(OuterCtx); Ctx = Ctx->getLookupParent()) {
1288 // We do not directly look into transparent contexts, since
1289 // those entities will be found in the nearest enclosing
1290 // non-transparent context.
1291 if (Ctx->isTransparentContext())
1292 continue;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001293
Douglas Gregorf3d3ae62010-05-14 04:53:42 +00001294 // If we have a context, and it's not a context stashed in the
1295 // template parameter scope for an out-of-line definition, also
1296 // look into that context.
1297 if (!(Found && S && S->isTemplateParamScope())) {
1298 assert(Ctx->isFileContext() &&
1299 "We should have been looking only at file context here already.");
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001300
Douglas Gregorf3d3ae62010-05-14 04:53:42 +00001301 // Look into context considering using-directives.
1302 if (CppNamespaceLookup(*this, R, Context, Ctx, UDirs))
1303 Found = true;
1304 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001305
Douglas Gregorf3d3ae62010-05-14 04:53:42 +00001306 if (Found) {
1307 R.resolveKind();
1308 return true;
1309 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001310
Douglas Gregorf3d3ae62010-05-14 04:53:42 +00001311 if (R.isForRedeclaration() && !Ctx->isTransparentContext())
1312 return false;
1313 }
1314 }
1315
Douglas Gregor3ce74932010-02-05 07:07:10 +00001316 if (R.isForRedeclaration() && Ctx && !Ctx->isTransparentContext())
John McCall9f3059a2009-10-09 21:13:30 +00001317 return false;
Douglas Gregor700792c2009-02-05 19:25:20 +00001318 }
Douglas Gregor889ceb72009-02-03 19:21:40 +00001319
John McCall9f3059a2009-10-09 21:13:30 +00001320 return !R.empty();
Douglas Gregored8f2882009-01-30 01:04:22 +00001321}
1322
Richard Smith0e5d7b82013-07-25 23:08:39 +00001323/// \brief Find the declaration that a class temploid member specialization was
1324/// instantiated from, or the member itself if it is an explicit specialization.
1325static Decl *getInstantiatedFrom(Decl *D, MemberSpecializationInfo *MSInfo) {
1326 return MSInfo->isExplicitSpecialization() ? D : MSInfo->getInstantiatedFrom();
1327}
1328
Richard Smith42413142015-05-15 20:05:43 +00001329Module *Sema::getOwningModule(Decl *Entity) {
1330 // If it's imported, grab its owning module.
1331 Module *M = Entity->getImportedOwningModule();
1332 if (M || !isa<NamedDecl>(Entity) || !cast<NamedDecl>(Entity)->isHidden())
1333 return M;
1334 assert(!Entity->isFromASTFile() &&
1335 "hidden entity from AST file has no owning module");
1336
Richard Smith87bb5692015-06-09 00:35:49 +00001337 if (!getLangOpts().ModulesLocalVisibility) {
1338 // If we're not tracking visibility locally, the only way a declaration
1339 // can be hidden and local is if it's hidden because it's parent is (for
1340 // instance, maybe this is a lazily-declared special member of an imported
1341 // class).
1342 auto *Parent = cast<NamedDecl>(Entity->getDeclContext());
1343 assert(Parent->isHidden() && "unexpectedly hidden decl");
1344 return getOwningModule(Parent);
1345 }
1346
Richard Smith42413142015-05-15 20:05:43 +00001347 // It's local and hidden; grab or compute its owning module.
1348 M = Entity->getLocalOwningModule();
1349 if (M)
1350 return M;
1351
1352 if (auto *Containing =
1353 PP.getModuleContainingLocation(Entity->getLocation())) {
1354 M = Containing;
1355 } else if (Entity->isInvalidDecl() || Entity->getLocation().isInvalid()) {
1356 // Don't bother tracking visibility for invalid declarations with broken
1357 // locations.
1358 cast<NamedDecl>(Entity)->setHidden(false);
1359 } else {
1360 // We need to assign a module to an entity that exists outside of any
1361 // module, so that we can hide it from modules that we textually enter.
1362 // Invent a fake module for all such entities.
1363 if (!CachedFakeTopLevelModule) {
1364 CachedFakeTopLevelModule =
1365 PP.getHeaderSearchInfo().getModuleMap().findOrCreateModule(
1366 "<top-level>", nullptr, false, false).first;
1367
1368 auto &SrcMgr = PP.getSourceManager();
1369 SourceLocation StartLoc =
1370 SrcMgr.getLocForStartOfFile(SrcMgr.getMainFileID());
1371 auto &TopLevel =
1372 VisibleModulesStack.empty() ? VisibleModules : VisibleModulesStack[0];
1373 TopLevel.setVisible(CachedFakeTopLevelModule, StartLoc);
1374 }
1375
1376 M = CachedFakeTopLevelModule;
1377 }
1378
1379 if (M)
1380 Entity->setLocalOwningModule(M);
1381 return M;
1382}
1383
Richard Smithd9ba2242015-05-07 03:54:19 +00001384void Sema::makeMergedDefinitionVisible(NamedDecl *ND, SourceLocation Loc) {
Richard Smith87bb5692015-06-09 00:35:49 +00001385 if (auto *M = PP.getModuleContainingLocation(Loc))
1386 Context.mergeDefinitionIntoModule(ND, M);
1387 else
1388 // We're not building a module; just make the definition visible.
1389 ND->setHidden(false);
Richard Smith63e09bf2015-06-17 20:39:41 +00001390
1391 // If ND is a template declaration, make the template parameters
1392 // visible too. They're not (necessarily) within a mergeable DeclContext.
1393 if (auto *TD = dyn_cast<TemplateDecl>(ND))
1394 for (auto *Param : *TD->getTemplateParameters())
1395 makeMergedDefinitionVisible(Param, Loc);
Richard Smithd9ba2242015-05-07 03:54:19 +00001396}
1397
Richard Smith0e5d7b82013-07-25 23:08:39 +00001398/// \brief Find the module in which the given declaration was defined.
Richard Smith42413142015-05-15 20:05:43 +00001399static Module *getDefiningModule(Sema &S, Decl *Entity) {
Richard Smith0e5d7b82013-07-25 23:08:39 +00001400 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(Entity)) {
1401 // If this function was instantiated from a template, the defining module is
1402 // the module containing the pattern.
1403 if (FunctionDecl *Pattern = FD->getTemplateInstantiationPattern())
1404 Entity = Pattern;
1405 } else if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Entity)) {
Reid Klecknere7367d62014-10-14 20:28:40 +00001406 if (CXXRecordDecl *Pattern = RD->getTemplateInstantiationPattern())
1407 Entity = Pattern;
Richard Smith0e5d7b82013-07-25 23:08:39 +00001408 } else if (EnumDecl *ED = dyn_cast<EnumDecl>(Entity)) {
1409 if (MemberSpecializationInfo *MSInfo = ED->getMemberSpecializationInfo())
1410 Entity = getInstantiatedFrom(ED, MSInfo);
1411 } else if (VarDecl *VD = dyn_cast<VarDecl>(Entity)) {
1412 // FIXME: Map from variable template specializations back to the template.
1413 if (MemberSpecializationInfo *MSInfo = VD->getMemberSpecializationInfo())
1414 Entity = getInstantiatedFrom(VD, MSInfo);
1415 }
1416
1417 // Walk up to the containing context. That might also have been instantiated
1418 // from a template.
1419 DeclContext *Context = Entity->getDeclContext();
1420 if (Context->isFileContext())
Richard Smith42413142015-05-15 20:05:43 +00001421 return S.getOwningModule(Entity);
1422 return getDefiningModule(S, cast<Decl>(Context));
Richard Smith0e5d7b82013-07-25 23:08:39 +00001423}
1424
1425llvm::DenseSet<Module*> &Sema::getLookupModules() {
1426 unsigned N = ActiveTemplateInstantiations.size();
1427 for (unsigned I = ActiveTemplateInstantiationLookupModules.size();
1428 I != N; ++I) {
Richard Smith42413142015-05-15 20:05:43 +00001429 Module *M =
1430 getDefiningModule(*this, ActiveTemplateInstantiations[I].Entity);
Richard Smith0e5d7b82013-07-25 23:08:39 +00001431 if (M && !LookupModulesCache.insert(M).second)
Craig Topperc3ec1492014-05-26 06:22:03 +00001432 M = nullptr;
Richard Smith0e5d7b82013-07-25 23:08:39 +00001433 ActiveTemplateInstantiationLookupModules.push_back(M);
1434 }
1435 return LookupModulesCache;
1436}
1437
Richard Smith42413142015-05-15 20:05:43 +00001438bool Sema::hasVisibleMergedDefinition(NamedDecl *Def) {
1439 for (Module *Merged : Context.getModulesWithMergedDefinition(Def))
1440 if (isModuleVisible(Merged))
1441 return true;
1442 return false;
1443}
1444
Richard Smithe7bd6de2015-06-10 20:30:23 +00001445template<typename ParmDecl>
Richard Smith35c1df52015-06-17 20:16:32 +00001446static bool
1447hasVisibleDefaultArgument(Sema &S, const ParmDecl *D,
1448 llvm::SmallVectorImpl<Module *> *Modules) {
Richard Smithe7bd6de2015-06-10 20:30:23 +00001449 if (!D->hasDefaultArgument())
1450 return false;
1451
1452 while (D) {
1453 auto &DefaultArg = D->getDefaultArgStorage();
1454 if (!DefaultArg.isInherited() && S.isVisible(D))
1455 return true;
1456
Richard Smith63e09bf2015-06-17 20:39:41 +00001457 if (!DefaultArg.isInherited() && Modules) {
1458 auto *NonConstD = const_cast<ParmDecl*>(D);
1459 Modules->push_back(S.getOwningModule(NonConstD));
1460 const auto &Merged = S.Context.getModulesWithMergedDefinition(NonConstD);
1461 Modules->insert(Modules->end(), Merged.begin(), Merged.end());
1462 }
Richard Smith35c1df52015-06-17 20:16:32 +00001463
Richard Smithe7bd6de2015-06-10 20:30:23 +00001464 // If there was a previous default argument, maybe its parameter is visible.
1465 D = DefaultArg.getInheritedFrom();
1466 }
1467 return false;
1468}
1469
Richard Smith35c1df52015-06-17 20:16:32 +00001470bool Sema::hasVisibleDefaultArgument(const NamedDecl *D,
1471 llvm::SmallVectorImpl<Module *> *Modules) {
Richard Smithe7bd6de2015-06-10 20:30:23 +00001472 if (auto *P = dyn_cast<TemplateTypeParmDecl>(D))
Richard Smith35c1df52015-06-17 20:16:32 +00001473 return ::hasVisibleDefaultArgument(*this, P, Modules);
Richard Smithe7bd6de2015-06-10 20:30:23 +00001474 if (auto *P = dyn_cast<NonTypeTemplateParmDecl>(D))
Richard Smith35c1df52015-06-17 20:16:32 +00001475 return ::hasVisibleDefaultArgument(*this, P, Modules);
1476 return ::hasVisibleDefaultArgument(*this, cast<TemplateTemplateParmDecl>(D),
1477 Modules);
Richard Smithe7bd6de2015-06-10 20:30:23 +00001478}
1479
Richard Smith6739a102016-05-05 00:56:12 +00001480bool Sema::hasVisibleMemberSpecialization(
1481 const NamedDecl *D, llvm::SmallVectorImpl<Module *> *Modules) {
1482 assert(isa<CXXRecordDecl>(D->getDeclContext()) &&
1483 "not a member specialization");
1484 for (auto *Redecl : D->redecls()) {
1485 // If the specialization is declared at namespace scope, then it's a member
1486 // specialization declaration. If it's lexically inside the class
1487 // definition then it was instantiated.
1488 //
1489 // FIXME: This is a hack. There should be a better way to determine this.
1490 // FIXME: What about MS-style explicit specializations declared within a
1491 // class definition?
1492 if (Redecl->getLexicalDeclContext()->isFileContext()) {
1493 auto *NonConstR = const_cast<NamedDecl*>(cast<NamedDecl>(Redecl));
1494
1495 if (isVisible(NonConstR))
1496 return true;
1497
1498 if (Modules) {
1499 Modules->push_back(getOwningModule(NonConstR));
1500 const auto &Merged = Context.getModulesWithMergedDefinition(NonConstR);
1501 Modules->insert(Modules->end(), Merged.begin(), Merged.end());
1502 }
1503 }
1504 }
1505
1506 return false;
1507}
1508
Richard Smith0e5d7b82013-07-25 23:08:39 +00001509/// \brief Determine whether a declaration is visible to name lookup.
1510///
1511/// This routine determines whether the declaration D is visible in the current
1512/// lookup context, taking into account the current template instantiation
1513/// stack. During template instantiation, a declaration is visible if it is
1514/// visible from a module containing any entity on the template instantiation
1515/// path (by instantiating a template, you allow it to see the declarations that
1516/// your module can see, including those later on in your module).
1517bool LookupResult::isVisibleSlow(Sema &SemaRef, NamedDecl *D) {
Richard Smithbe3980b2015-03-27 00:41:57 +00001518 assert(D->isHidden() && "should not call this: not in slow case");
Richard Smith5196a172015-08-24 03:38:11 +00001519 Module *DeclModule = nullptr;
1520
1521 if (SemaRef.getLangOpts().ModulesLocalVisibility) {
1522 DeclModule = SemaRef.getOwningModule(D);
1523 if (!DeclModule) {
1524 // getOwningModule() may have decided the declaration should not be hidden.
1525 assert(!D->isHidden() && "hidden decl not from a module");
Richard Smith42413142015-05-15 20:05:43 +00001526 return true;
Richard Smith5196a172015-08-24 03:38:11 +00001527 }
1528
1529 // If the owning module is visible, and the decl is not module private,
1530 // then the decl is visible too. (Module private is ignored within the same
1531 // top-level module.)
1532 if ((!D->isFromASTFile() || !D->isModulePrivate()) &&
1533 (SemaRef.isModuleVisible(DeclModule) ||
1534 SemaRef.hasVisibleMergedDefinition(D)))
Richard Smith42413142015-05-15 20:05:43 +00001535 return true;
1536 }
Richard Smith0e5d7b82013-07-25 23:08:39 +00001537
Richard Smithbe3980b2015-03-27 00:41:57 +00001538 // If this declaration is not at namespace scope nor module-private,
1539 // then it is visible if its lexical parent has a visible definition.
1540 DeclContext *DC = D->getLexicalDeclContext();
1541 if (!D->isModulePrivate() &&
1542 DC && !DC->isFileContext() && !isa<LinkageSpecDecl>(DC)) {
Richard Smithc7d48d12015-05-20 17:50:35 +00001543 // For a parameter, check whether our current template declaration's
1544 // lexical context is visible, not whether there's some other visible
1545 // definition of it, because parameters aren't "within" the definition.
1546 if ((D->isTemplateParameter() || isa<ParmVarDecl>(D))
1547 ? isVisible(SemaRef, cast<NamedDecl>(DC))
1548 : SemaRef.hasVisibleDefinition(cast<NamedDecl>(DC))) {
Richard Smith42413142015-05-15 20:05:43 +00001549 if (SemaRef.ActiveTemplateInstantiations.empty() &&
1550 // FIXME: Do something better in this case.
1551 !SemaRef.getLangOpts().ModulesLocalVisibility) {
Richard Smithbe3980b2015-03-27 00:41:57 +00001552 // Cache the fact that this declaration is implicitly visible because
1553 // its parent has a visible definition.
1554 D->setHidden(false);
1555 }
1556 return true;
1557 }
1558 return false;
1559 }
1560
Richard Smith0e5d7b82013-07-25 23:08:39 +00001561 // Find the extra places where we need to look.
1562 llvm::DenseSet<Module*> &LookupModules = SemaRef.getLookupModules();
1563 if (LookupModules.empty())
1564 return false;
1565
Richard Smith5196a172015-08-24 03:38:11 +00001566 if (!DeclModule) {
1567 DeclModule = SemaRef.getOwningModule(D);
1568 assert(DeclModule && "hidden decl not from a module");
1569 }
1570
Richard Smith0e5d7b82013-07-25 23:08:39 +00001571 // If our lookup set contains the decl's module, it's visible.
1572 if (LookupModules.count(DeclModule))
1573 return true;
1574
1575 // If the declaration isn't exported, it's not visible in any other module.
1576 if (D->isModulePrivate())
1577 return false;
1578
1579 // Check whether DeclModule is transitively exported to an import of
1580 // the lookup set.
Yaron Keren941ad902015-11-23 19:28:42 +00001581 return std::any_of(LookupModules.begin(), LookupModules.end(),
Yaron Keren4c31fcf2015-11-24 20:18:24 +00001582 [&](Module *M) { return M->isModuleVisible(DeclModule); });
Richard Smith0e5d7b82013-07-25 23:08:39 +00001583}
1584
Richard Smith42413142015-05-15 20:05:43 +00001585bool Sema::isVisibleSlow(const NamedDecl *D) {
1586 return LookupResult::isVisible(*this, const_cast<NamedDecl*>(D));
1587}
1588
Richard Smith10568d82015-11-17 03:02:41 +00001589bool Sema::shouldLinkPossiblyHiddenDecl(LookupResult &R, const NamedDecl *New) {
1590 for (auto *D : R) {
1591 if (isVisible(D))
1592 return true;
1593 }
1594 return New->isExternallyVisible();
1595}
1596
Douglas Gregor4a814562011-12-14 16:03:29 +00001597/// \brief Retrieve the visible declaration corresponding to D, if any.
1598///
1599/// This routine determines whether the declaration D is visible in the current
1600/// module, with the current imports. If not, it checks whether any
1601/// redeclaration of D is visible, and if so, returns that declaration.
Richard Smith0e5d7b82013-07-25 23:08:39 +00001602///
Douglas Gregor4a814562011-12-14 16:03:29 +00001603/// \returns D, or a visible previous declaration of D, whichever is more recent
1604/// and visible. If no declaration of D is visible, returns null.
Richard Smithe156254d2013-08-20 20:35:18 +00001605static NamedDecl *findAcceptableDecl(Sema &SemaRef, NamedDecl *D) {
1606 assert(!LookupResult::isVisible(SemaRef, D) && "not in slow case");
Richard Smith0e5d7b82013-07-25 23:08:39 +00001607
Aaron Ballman86c93902014-03-06 23:45:36 +00001608 for (auto RD : D->redecls()) {
Richard Smith4083e032016-02-17 21:52:44 +00001609 // Don't bother with extra checks if we already know this one isn't visible.
1610 if (RD == D)
1611 continue;
1612
Richard Smith6739a102016-05-05 00:56:12 +00001613 auto ND = cast<NamedDecl>(RD);
1614 // FIXME: This is wrong in the case where the previous declaration is not
1615 // visible in the same scope as D. This needs to be done much more
1616 // carefully.
1617 if (LookupResult::isVisible(SemaRef, ND))
1618 return ND;
Douglas Gregor4a814562011-12-14 16:03:29 +00001619 }
Richard Smith0e5d7b82013-07-25 23:08:39 +00001620
Craig Topperc3ec1492014-05-26 06:22:03 +00001621 return nullptr;
Douglas Gregor4a814562011-12-14 16:03:29 +00001622}
1623
Richard Smith6739a102016-05-05 00:56:12 +00001624bool Sema::hasVisibleDeclarationSlow(const NamedDecl *D,
1625 llvm::SmallVectorImpl<Module *> *Modules) {
1626 assert(!isVisible(D) && "not in slow case");
1627
1628 for (auto *Redecl : D->redecls()) {
1629 auto *NonConstR = const_cast<NamedDecl*>(cast<NamedDecl>(Redecl));
1630 if (isVisible(NonConstR))
1631 return true;
1632
1633 if (Modules) {
1634 Modules->push_back(getOwningModule(NonConstR));
1635 const auto &Merged = Context.getModulesWithMergedDefinition(NonConstR);
1636 Modules->insert(Modules->end(), Merged.begin(), Merged.end());
1637 }
1638 }
1639
1640 return false;
1641}
1642
Richard Smithe156254d2013-08-20 20:35:18 +00001643NamedDecl *LookupResult::getAcceptableDeclSlow(NamedDecl *D) const {
Richard Smith4083e032016-02-17 21:52:44 +00001644 if (auto *ND = dyn_cast<NamespaceDecl>(D)) {
1645 // Namespaces are a bit of a special case: we expect there to be a lot of
1646 // redeclarations of some namespaces, all declarations of a namespace are
1647 // essentially interchangeable, all declarations are found by name lookup
1648 // if any is, and namespaces are never looked up during template
1649 // instantiation. So we benefit from caching the check in this case, and
1650 // it is correct to do so.
1651 auto *Key = ND->getCanonicalDecl();
1652 if (auto *Acceptable = getSema().VisibleNamespaceCache.lookup(Key))
1653 return Acceptable;
1654 auto *Acceptable =
1655 isVisible(getSema(), Key) ? Key : findAcceptableDecl(getSema(), Key);
1656 if (Acceptable)
1657 getSema().VisibleNamespaceCache.insert(std::make_pair(Key, Acceptable));
1658 return Acceptable;
1659 }
1660
Kaelyn Takatafc8c61a2014-11-11 23:00:42 +00001661 return findAcceptableDecl(getSema(), D);
Richard Smithe156254d2013-08-20 20:35:18 +00001662}
1663
Douglas Gregor34074322009-01-14 22:20:51 +00001664/// @brief Perform unqualified name lookup starting from a given
1665/// scope.
1666///
1667/// Unqualified name lookup (C++ [basic.lookup.unqual], C99 6.2.1) is
1668/// used to find names within the current scope. For example, 'x' in
1669/// @code
1670/// int x;
1671/// int f() {
1672/// return x; // unqualified name look finds 'x' in the global scope
1673/// }
1674/// @endcode
1675///
1676/// Different lookup criteria can find different names. For example, a
1677/// particular scope can have both a struct and a function of the same
1678/// name, and each can be found by certain lookup criteria. For more
1679/// information about lookup criteria, see the documentation for the
1680/// class LookupCriteria.
1681///
1682/// @param S The scope from which unqualified name lookup will
1683/// begin. If the lookup criteria permits, name lookup may also search
1684/// in the parent scopes.
1685///
James Dennett91738ff2012-06-22 10:32:46 +00001686/// @param [in,out] R Specifies the lookup to perform (e.g., the name to
1687/// look up and the lookup kind), and is updated with the results of lookup
1688/// including zero or more declarations and possibly additional information
1689/// used to diagnose ambiguities.
Douglas Gregor34074322009-01-14 22:20:51 +00001690///
James Dennett91738ff2012-06-22 10:32:46 +00001691/// @returns \c true if lookup succeeded and false otherwise.
John McCall27b18f82009-11-17 02:14:36 +00001692bool Sema::LookupName(LookupResult &R, Scope *S, bool AllowBuiltinCreation) {
1693 DeclarationName Name = R.getLookupName();
John McCall9f3059a2009-10-09 21:13:30 +00001694 if (!Name) return false;
Douglas Gregor34074322009-01-14 22:20:51 +00001695
John McCall27b18f82009-11-17 02:14:36 +00001696 LookupNameKind NameKind = R.getLookupKind();
1697
David Blaikiebbafb8a2012-03-11 07:00:24 +00001698 if (!getLangOpts().CPlusPlus) {
Douglas Gregor34074322009-01-14 22:20:51 +00001699 // Unqualified name lookup in C/Objective-C is purely lexical, so
1700 // search in the declarations attached to the name.
John McCallea305ed2009-12-18 10:40:03 +00001701 if (NameKind == Sema::LookupRedeclarationWithLinkage) {
Douglas Gregoreddf4332009-02-24 20:03:32 +00001702 // Find the nearest non-transparent declaration scope.
1703 while (!(S->getFlags() & Scope::DeclScope) ||
Ted Kremenekc37877d2013-10-08 17:08:03 +00001704 (S->getEntity() && S->getEntity()->isTransparentContext()))
Douglas Gregoreddf4332009-02-24 20:03:32 +00001705 S = S->getParent();
Douglas Gregored8f2882009-01-30 01:04:22 +00001706 }
1707
Richard Smith541b38b2013-09-20 01:15:31 +00001708 // When performing a scope lookup, we want to find local extern decls.
1709 FindLocalExternScope FindLocals(R);
1710
Douglas Gregor34074322009-01-14 22:20:51 +00001711 // Scan up the scope chain looking for a decl that matches this
1712 // identifier that is in the appropriate namespace. This search
1713 // should not take long, as shadowing of names is uncommon, and
1714 // deep shadowing is extremely uncommon.
Douglas Gregoreddf4332009-02-24 20:03:32 +00001715 bool LeftStartingScope = false;
1716
Douglas Gregored8f2882009-01-30 01:04:22 +00001717 for (IdentifierResolver::iterator I = IdResolver.begin(Name),
Mike Stump11289f42009-09-09 15:08:12 +00001718 IEnd = IdResolver.end();
Douglas Gregored8f2882009-01-30 01:04:22 +00001719 I != IEnd; ++I)
Richard Smith0e5d7b82013-07-25 23:08:39 +00001720 if (NamedDecl *D = R.getAcceptableDecl(*I)) {
Douglas Gregoreddf4332009-02-24 20:03:32 +00001721 if (NameKind == LookupRedeclarationWithLinkage) {
1722 // Determine whether this (or a previous) declaration is
1723 // out-of-scope.
John McCall48871652010-08-21 09:40:31 +00001724 if (!LeftStartingScope && !S->isDeclScope(*I))
Douglas Gregoreddf4332009-02-24 20:03:32 +00001725 LeftStartingScope = true;
1726
1727 // If we found something outside of our starting scope that
1728 // does not have linkage, skip it.
Richard Smith1c34fb72013-08-13 18:18:50 +00001729 if (LeftStartingScope && !((*I)->hasLinkage())) {
1730 R.setShadowed();
Douglas Gregoreddf4332009-02-24 20:03:32 +00001731 continue;
Richard Smith1c34fb72013-08-13 18:18:50 +00001732 }
Douglas Gregoreddf4332009-02-24 20:03:32 +00001733 }
Fariborz Jahanian7f4427f2011-07-12 17:16:56 +00001734 else if (NameKind == LookupObjCImplicitSelfParam &&
1735 !isa<ImplicitParamDecl>(*I))
1736 continue;
Richard Smith0e5d7b82013-07-25 23:08:39 +00001737
Douglas Gregor4a814562011-12-14 16:03:29 +00001738 R.addDecl(D);
John McCall9f3059a2009-10-09 21:13:30 +00001739
Douglas Gregorb59643b2012-01-03 23:26:26 +00001740 // Check whether there are any other declarations with the same name
1741 // and in the same scope.
Douglas Gregor9b7b3912012-01-04 16:44:10 +00001742 if (I != IEnd) {
Douglas Gregor81bd0382012-01-13 23:06:53 +00001743 // Find the scope in which this declaration was declared (if it
1744 // actually exists in a Scope).
1745 while (S && !S->isDeclScope(D))
1746 S = S->getParent();
1747
1748 // If the scope containing the declaration is the translation unit,
1749 // then we'll need to perform our checks based on the matching
1750 // DeclContexts rather than matching scopes.
1751 if (S && isNamespaceOrTranslationUnitScope(S))
Craig Topperc3ec1492014-05-26 06:22:03 +00001752 S = nullptr;
Douglas Gregor81bd0382012-01-13 23:06:53 +00001753
1754 // Compute the DeclContext, if we need it.
Craig Topperc3ec1492014-05-26 06:22:03 +00001755 DeclContext *DC = nullptr;
Douglas Gregor81bd0382012-01-13 23:06:53 +00001756 if (!S)
1757 DC = (*I)->getDeclContext()->getRedeclContext();
1758
Douglas Gregor9b7b3912012-01-04 16:44:10 +00001759 IdentifierResolver::iterator LastI = I;
1760 for (++LastI; LastI != IEnd; ++LastI) {
Douglas Gregor81bd0382012-01-13 23:06:53 +00001761 if (S) {
1762 // Match based on scope.
1763 if (!S->isDeclScope(*LastI))
1764 break;
1765 } else {
1766 // Match based on DeclContext.
1767 DeclContext *LastDC
1768 = (*LastI)->getDeclContext()->getRedeclContext();
1769 if (!LastDC->Equals(DC))
1770 break;
1771 }
Richard Smith0e5d7b82013-07-25 23:08:39 +00001772
1773 // If the declaration is in the right namespace and visible, add it.
1774 if (NamedDecl *LastD = R.getAcceptableDecl(*LastI))
1775 R.addDecl(LastD);
Douglas Gregor9b7b3912012-01-04 16:44:10 +00001776 }
Douglas Gregor4e5cbdc2009-02-11 23:02:49 +00001777
Douglas Gregor9b7b3912012-01-04 16:44:10 +00001778 R.resolveKind();
Douglas Gregor4e5cbdc2009-02-11 23:02:49 +00001779 }
Richard Smith541b38b2013-09-20 01:15:31 +00001780
John McCall9f3059a2009-10-09 21:13:30 +00001781 return true;
Douglas Gregor4e5cbdc2009-02-11 23:02:49 +00001782 }
Douglas Gregor34074322009-01-14 22:20:51 +00001783 } else {
Douglas Gregor889ceb72009-02-03 19:21:40 +00001784 // Perform C++ unqualified name lookup.
John McCall27b18f82009-11-17 02:14:36 +00001785 if (CppLookupName(R, S))
John McCall9f3059a2009-10-09 21:13:30 +00001786 return true;
Douglas Gregor34074322009-01-14 22:20:51 +00001787 }
1788
1789 // If we didn't find a use of this identifier, and if the identifier
1790 // corresponds to a compiler builtin, create the decl object for the builtin
1791 // now, injecting it into translation unit scope, and return it.
Axel Naumann43dec142011-04-13 13:19:46 +00001792 if (AllowBuiltinCreation && LookupBuiltin(*this, R))
1793 return true;
Douglas Gregorb9063fc2009-02-13 23:20:09 +00001794
Axel Naumann016538a2011-02-24 16:47:47 +00001795 // If we didn't find a use of this identifier, the ExternalSource
1796 // may be able to handle the situation.
1797 // Note: some lookup failures are expected!
1798 // See e.g. R.isForRedeclaration().
1799 return (ExternalSource && ExternalSource->LookupUnqualified(R, S));
Douglas Gregor34074322009-01-14 22:20:51 +00001800}
1801
John McCall6538c932009-10-10 05:48:19 +00001802/// @brief Perform qualified name lookup in the namespaces nominated by
1803/// using directives by the given context.
1804///
1805/// C++98 [namespace.qual]p2:
James Dennett51a8d8b2012-06-19 21:05:49 +00001806/// Given X::m (where X is a user-declared namespace), or given \::m
John McCall6538c932009-10-10 05:48:19 +00001807/// (where X is the global namespace), let S be the set of all
1808/// declarations of m in X and in the transitive closure of all
1809/// namespaces nominated by using-directives in X and its used
1810/// namespaces, except that using-directives are ignored in any
1811/// namespace, including X, directly containing one or more
1812/// declarations of m. No namespace is searched more than once in
1813/// the lookup of a name. If S is the empty set, the program is
1814/// ill-formed. Otherwise, if S has exactly one member, or if the
1815/// context of the reference is a using-declaration
1816/// (namespace.udecl), S is the required set of declarations of
1817/// m. Otherwise if the use of m is not one that allows a unique
1818/// declaration to be chosen from S, the program is ill-formed.
James Dennett51a8d8b2012-06-19 21:05:49 +00001819///
John McCall6538c932009-10-10 05:48:19 +00001820/// C++98 [namespace.qual]p5:
1821/// During the lookup of a qualified namespace member name, if the
1822/// lookup finds more than one declaration of the member, and if one
1823/// declaration introduces a class name or enumeration name and the
1824/// other declarations either introduce the same object, the same
1825/// enumerator or a set of functions, the non-type name hides the
1826/// class or enumeration name if and only if the declarations are
1827/// from the same namespace; otherwise (the declarations are from
1828/// different namespaces), the program is ill-formed.
Douglas Gregord3a59182010-02-12 05:48:04 +00001829static bool LookupQualifiedNameInUsingDirectives(Sema &S, LookupResult &R,
John McCall27b18f82009-11-17 02:14:36 +00001830 DeclContext *StartDC) {
John McCall6538c932009-10-10 05:48:19 +00001831 assert(StartDC->isFileContext() && "start context is not a file context");
1832
Aaron Ballman804a7fb2014-03-17 17:14:12 +00001833 DeclContext::udir_range UsingDirectives = StartDC->using_directives();
1834 if (UsingDirectives.begin() == UsingDirectives.end()) return false;
John McCall6538c932009-10-10 05:48:19 +00001835
1836 // We have at least added all these contexts to the queue.
Benjamin Kramer3adbe1c2012-02-23 16:06:01 +00001837 llvm::SmallPtrSet<DeclContext*, 8> Visited;
John McCall6538c932009-10-10 05:48:19 +00001838 Visited.insert(StartDC);
1839
1840 // We have not yet looked into these namespaces, much less added
1841 // their "using-children" to the queue.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00001842 SmallVector<NamespaceDecl*, 8> Queue;
John McCall6538c932009-10-10 05:48:19 +00001843
1844 // We have already looked into the initial namespace; seed the queue
1845 // with its using-children.
Aaron Ballman804a7fb2014-03-17 17:14:12 +00001846 for (auto *I : UsingDirectives) {
1847 NamespaceDecl *ND = I->getNominatedNamespace()->getOriginalNamespace();
David Blaikie82e95a32014-11-19 07:49:47 +00001848 if (Visited.insert(ND).second)
John McCall6538c932009-10-10 05:48:19 +00001849 Queue.push_back(ND);
1850 }
1851
1852 // The easiest way to implement the restriction in [namespace.qual]p5
1853 // is to check whether any of the individual results found a tag
1854 // and, if so, to declare an ambiguity if the final result is not
1855 // a tag.
1856 bool FoundTag = false;
1857 bool FoundNonTag = false;
1858
John McCall5cebab12009-11-18 07:57:50 +00001859 LookupResult LocalR(LookupResult::Temporary, R);
John McCall6538c932009-10-10 05:48:19 +00001860
1861 bool Found = false;
1862 while (!Queue.empty()) {
Robert Wilhelm25284cc2013-08-23 16:11:15 +00001863 NamespaceDecl *ND = Queue.pop_back_val();
John McCall6538c932009-10-10 05:48:19 +00001864
1865 // We go through some convolutions here to avoid copying results
1866 // between LookupResults.
1867 bool UseLocal = !R.empty();
John McCall5cebab12009-11-18 07:57:50 +00001868 LookupResult &DirectR = UseLocal ? LocalR : R;
Douglas Gregord3a59182010-02-12 05:48:04 +00001869 bool FoundDirect = LookupDirect(S, DirectR, ND);
John McCall6538c932009-10-10 05:48:19 +00001870
1871 if (FoundDirect) {
1872 // First do any local hiding.
1873 DirectR.resolveKind();
1874
1875 // If the local result is a tag, remember that.
1876 if (DirectR.isSingleTagDecl())
1877 FoundTag = true;
1878 else
1879 FoundNonTag = true;
1880
1881 // Append the local results to the total results if necessary.
1882 if (UseLocal) {
1883 R.addAllDecls(LocalR);
1884 LocalR.clear();
1885 }
1886 }
1887
1888 // If we find names in this namespace, ignore its using directives.
1889 if (FoundDirect) {
1890 Found = true;
1891 continue;
1892 }
1893
Aaron Ballman804a7fb2014-03-17 17:14:12 +00001894 for (auto I : ND->using_directives()) {
Aaron Ballman63ab7602014-03-07 13:44:44 +00001895 NamespaceDecl *Nom = I->getNominatedNamespace();
David Blaikie82e95a32014-11-19 07:49:47 +00001896 if (Visited.insert(Nom).second)
John McCall6538c932009-10-10 05:48:19 +00001897 Queue.push_back(Nom);
1898 }
1899 }
1900
1901 if (Found) {
1902 if (FoundTag && FoundNonTag)
1903 R.setAmbiguousQualifiedTagHiding();
1904 else
1905 R.resolveKind();
1906 }
1907
1908 return Found;
1909}
1910
Douglas Gregor39982192010-08-15 06:18:01 +00001911/// \brief Callback that looks for any member of a class with the given name.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001912static bool LookupAnyMember(const CXXBaseSpecifier *Specifier,
Benjamin Kramer6e4f6e12015-07-25 15:07:25 +00001913 CXXBasePath &Path, DeclarationName Name) {
Douglas Gregor39982192010-08-15 06:18:01 +00001914 RecordDecl *BaseRecord = Specifier->getType()->getAs<RecordType>()->getDecl();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001915
Benjamin Kramer6e4f6e12015-07-25 15:07:25 +00001916 Path.Decls = BaseRecord->lookup(Name);
David Blaikieff7d47a2012-12-19 00:45:41 +00001917 return !Path.Decls.empty();
Douglas Gregor39982192010-08-15 06:18:01 +00001918}
1919
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001920/// \brief Determine whether the given set of member declarations contains only
Douglas Gregorc0d24902010-10-22 22:08:47 +00001921/// static members, nested types, and enumerators.
1922template<typename InputIterator>
1923static bool HasOnlyStaticMembers(InputIterator First, InputIterator Last) {
1924 Decl *D = (*First)->getUnderlyingDecl();
1925 if (isa<VarDecl>(D) || isa<TypeDecl>(D) || isa<EnumConstantDecl>(D))
1926 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001927
Douglas Gregorc0d24902010-10-22 22:08:47 +00001928 if (isa<CXXMethodDecl>(D)) {
1929 // Determine whether all of the methods are static.
1930 bool AllMethodsAreStatic = true;
1931 for(; First != Last; ++First) {
1932 D = (*First)->getUnderlyingDecl();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001933
Douglas Gregorc0d24902010-10-22 22:08:47 +00001934 if (!isa<CXXMethodDecl>(D)) {
1935 assert(isa<TagDecl>(D) && "Non-function must be a tag decl");
1936 break;
1937 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001938
Douglas Gregorc0d24902010-10-22 22:08:47 +00001939 if (!cast<CXXMethodDecl>(D)->isStatic()) {
1940 AllMethodsAreStatic = false;
1941 break;
1942 }
1943 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001944
Douglas Gregorc0d24902010-10-22 22:08:47 +00001945 if (AllMethodsAreStatic)
1946 return true;
1947 }
1948
1949 return false;
1950}
1951
Douglas Gregord0d2ee02010-01-15 01:44:47 +00001952/// \brief Perform qualified name lookup into a given context.
Douglas Gregor34074322009-01-14 22:20:51 +00001953///
1954/// Qualified name lookup (C++ [basic.lookup.qual]) is used to find
1955/// names when the context of those names is explicit specified, e.g.,
Douglas Gregord0d2ee02010-01-15 01:44:47 +00001956/// "std::vector" or "x->member", or as part of unqualified name lookup.
Douglas Gregor34074322009-01-14 22:20:51 +00001957///
1958/// Different lookup criteria can find different names. For example, a
1959/// particular scope can have both a struct and a function of the same
1960/// name, and each can be found by certain lookup criteria. For more
1961/// information about lookup criteria, see the documentation for the
1962/// class LookupCriteria.
1963///
Douglas Gregord0d2ee02010-01-15 01:44:47 +00001964/// \param R captures both the lookup criteria and any lookup results found.
1965///
1966/// \param LookupCtx The context in which qualified name lookup will
Douglas Gregor34074322009-01-14 22:20:51 +00001967/// search. If the lookup criteria permits, name lookup may also search
1968/// in the parent contexts or (for C++ classes) base classes.
1969///
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00001970/// \param InUnqualifiedLookup true if this is qualified name lookup that
Douglas Gregord0d2ee02010-01-15 01:44:47 +00001971/// occurs as part of unqualified name lookup.
Douglas Gregor34074322009-01-14 22:20:51 +00001972///
Douglas Gregord0d2ee02010-01-15 01:44:47 +00001973/// \returns true if lookup succeeded, false if it failed.
1974bool Sema::LookupQualifiedName(LookupResult &R, DeclContext *LookupCtx,
1975 bool InUnqualifiedLookup) {
Douglas Gregor34074322009-01-14 22:20:51 +00001976 assert(LookupCtx && "Sema::LookupQualifiedName requires a lookup context");
Mike Stump11289f42009-09-09 15:08:12 +00001977
John McCall27b18f82009-11-17 02:14:36 +00001978 if (!R.getLookupName())
John McCall9f3059a2009-10-09 21:13:30 +00001979 return false;
Mike Stump11289f42009-09-09 15:08:12 +00001980
Douglas Gregorb7bfe792009-09-02 22:59:36 +00001981 // Make sure that the declaration context is complete.
1982 assert((!isa<TagDecl>(LookupCtx) ||
1983 LookupCtx->isDependentContext() ||
John McCallf937c022011-10-07 06:10:15 +00001984 cast<TagDecl>(LookupCtx)->isCompleteDefinition() ||
Richard Smith7d137e32012-03-23 03:33:32 +00001985 cast<TagDecl>(LookupCtx)->isBeingDefined()) &&
Douglas Gregorb7bfe792009-09-02 22:59:36 +00001986 "Declaration context must already be complete!");
Mike Stump11289f42009-09-09 15:08:12 +00001987
Eugene Leviant0d8103e2015-11-18 12:48:05 +00001988 struct QualifiedLookupInScope {
1989 bool oldVal;
1990 DeclContext *Context;
1991 // Set flag in DeclContext informing debugger that we're looking for qualified name
1992 QualifiedLookupInScope(DeclContext *ctx) : Context(ctx) {
1993 oldVal = ctx->setUseQualifiedLookup();
1994 }
1995 ~QualifiedLookupInScope() {
1996 Context->setUseQualifiedLookup(oldVal);
1997 }
1998 } QL(LookupCtx);
1999
Douglas Gregord3a59182010-02-12 05:48:04 +00002000 if (LookupDirect(*this, R, LookupCtx)) {
John McCall9f3059a2009-10-09 21:13:30 +00002001 R.resolveKind();
John McCall553c0792010-01-23 00:46:32 +00002002 if (isa<CXXRecordDecl>(LookupCtx))
2003 R.setNamingClass(cast<CXXRecordDecl>(LookupCtx));
John McCall9f3059a2009-10-09 21:13:30 +00002004 return true;
2005 }
Douglas Gregor34074322009-01-14 22:20:51 +00002006
John McCall6538c932009-10-10 05:48:19 +00002007 // Don't descend into implied contexts for redeclarations.
2008 // C++98 [namespace.qual]p6:
2009 // In a declaration for a namespace member in which the
2010 // declarator-id is a qualified-id, given that the qualified-id
2011 // for the namespace member has the form
2012 // nested-name-specifier unqualified-id
2013 // the unqualified-id shall name a member of the namespace
2014 // designated by the nested-name-specifier.
2015 // See also [class.mfct]p5 and [class.static.data]p2.
John McCall27b18f82009-11-17 02:14:36 +00002016 if (R.isForRedeclaration())
John McCall6538c932009-10-10 05:48:19 +00002017 return false;
2018
John McCall27b18f82009-11-17 02:14:36 +00002019 // If this is a namespace, look it up in the implied namespaces.
John McCall6538c932009-10-10 05:48:19 +00002020 if (LookupCtx->isFileContext())
Douglas Gregord3a59182010-02-12 05:48:04 +00002021 return LookupQualifiedNameInUsingDirectives(*this, R, LookupCtx);
John McCall6538c932009-10-10 05:48:19 +00002022
Douglas Gregorb7bfe792009-09-02 22:59:36 +00002023 // If this isn't a C++ class, we aren't allowed to look into base
Douglas Gregorcc2427c2009-09-11 22:57:37 +00002024 // classes, we're done.
Douglas Gregord0d2ee02010-01-15 01:44:47 +00002025 CXXRecordDecl *LookupRec = dyn_cast<CXXRecordDecl>(LookupCtx);
Douglas Gregor5a5fcd82010-07-01 00:21:21 +00002026 if (!LookupRec || !LookupRec->getDefinition())
John McCall9f3059a2009-10-09 21:13:30 +00002027 return false;
Douglas Gregor960b5bc2009-01-15 00:26:24 +00002028
Douglas Gregord0d2ee02010-01-15 01:44:47 +00002029 // If we're performing qualified name lookup into a dependent class,
2030 // then we are actually looking into a current instantiation. If we have any
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002031 // dependent base classes, then we either have to delay lookup until
Douglas Gregord0d2ee02010-01-15 01:44:47 +00002032 // template instantiation time (at which point all bases will be available)
2033 // or we have to fail.
2034 if (!InUnqualifiedLookup && LookupRec->isDependentContext() &&
2035 LookupRec->hasAnyDependentBases()) {
2036 R.setNotFoundInCurrentInstantiation();
2037 return false;
2038 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002039
Douglas Gregor960b5bc2009-01-15 00:26:24 +00002040 // Perform lookup into our base classes.
Douglas Gregor36d1b142009-10-06 17:59:45 +00002041 CXXBasePaths Paths;
2042 Paths.setOrigin(LookupRec);
Douglas Gregor960b5bc2009-01-15 00:26:24 +00002043
2044 // Look for this member in our base classes
Benjamin Kramer6e4f6e12015-07-25 15:07:25 +00002045 bool (*BaseCallback)(const CXXBaseSpecifier *Specifier, CXXBasePath &Path,
2046 DeclarationName Name) = nullptr;
John McCall27b18f82009-11-17 02:14:36 +00002047 switch (R.getLookupKind()) {
Fariborz Jahanian7f4427f2011-07-12 17:16:56 +00002048 case LookupObjCImplicitSelfParam:
Douglas Gregor36d1b142009-10-06 17:59:45 +00002049 case LookupOrdinaryName:
2050 case LookupMemberName:
2051 case LookupRedeclarationWithLinkage:
Richard Smith114394f2013-08-09 04:35:01 +00002052 case LookupLocalFriendName:
Douglas Gregor36d1b142009-10-06 17:59:45 +00002053 BaseCallback = &CXXRecordDecl::FindOrdinaryMember;
2054 break;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002055
Douglas Gregor36d1b142009-10-06 17:59:45 +00002056 case LookupTagName:
2057 BaseCallback = &CXXRecordDecl::FindTagMember;
2058 break;
John McCall84d87672009-12-10 09:41:52 +00002059
Douglas Gregor39982192010-08-15 06:18:01 +00002060 case LookupAnyName:
2061 BaseCallback = &LookupAnyMember;
2062 break;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002063
Alexey Bataev94a4f0c2016-03-03 05:21:39 +00002064 case LookupOMPReductionName:
2065 BaseCallback = &CXXRecordDecl::FindOMPReductionMember;
2066 break;
2067
John McCall84d87672009-12-10 09:41:52 +00002068 case LookupUsingDeclName:
2069 // This lookup is for redeclarations only.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002070
Douglas Gregor36d1b142009-10-06 17:59:45 +00002071 case LookupOperatorName:
2072 case LookupNamespaceName:
2073 case LookupObjCProtocolName:
Chris Lattnerebb5c6c2011-02-18 01:27:55 +00002074 case LookupLabel:
Douglas Gregor36d1b142009-10-06 17:59:45 +00002075 // These lookups will never find a member in a C++ class (or base class).
John McCall9f3059a2009-10-09 21:13:30 +00002076 return false;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002077
Douglas Gregor36d1b142009-10-06 17:59:45 +00002078 case LookupNestedNameSpecifierName:
2079 BaseCallback = &CXXRecordDecl::FindNestedNameSpecifierMember;
2080 break;
2081 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002082
Benjamin Kramer6e4f6e12015-07-25 15:07:25 +00002083 DeclarationName Name = R.getLookupName();
2084 if (!LookupRec->lookupInBases(
2085 [=](const CXXBaseSpecifier *Specifier, CXXBasePath &Path) {
2086 return BaseCallback(Specifier, Path, Name);
2087 },
2088 Paths))
John McCall9f3059a2009-10-09 21:13:30 +00002089 return false;
Douglas Gregor960b5bc2009-01-15 00:26:24 +00002090
John McCall553c0792010-01-23 00:46:32 +00002091 R.setNamingClass(LookupRec);
2092
Douglas Gregor960b5bc2009-01-15 00:26:24 +00002093 // C++ [class.member.lookup]p2:
2094 // [...] If the resulting set of declarations are not all from
2095 // sub-objects of the same type, or the set has a nonstatic member
2096 // and includes members from distinct sub-objects, there is an
2097 // ambiguity and the program is ill-formed. Otherwise that set is
2098 // the result of the lookup.
Douglas Gregor960b5bc2009-01-15 00:26:24 +00002099 QualType SubobjectType;
Daniel Dunbar435bbe02009-01-15 18:32:35 +00002100 int SubobjectNumber = 0;
John McCalla332b952010-03-18 23:49:19 +00002101 AccessSpecifier SubobjectAccess = AS_none;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002102
Douglas Gregor36d1b142009-10-06 17:59:45 +00002103 for (CXXBasePaths::paths_iterator Path = Paths.begin(), PathEnd = Paths.end();
Douglas Gregor960b5bc2009-01-15 00:26:24 +00002104 Path != PathEnd; ++Path) {
Douglas Gregor36d1b142009-10-06 17:59:45 +00002105 const CXXBasePathElement &PathElement = Path->back();
Douglas Gregor960b5bc2009-01-15 00:26:24 +00002106
John McCall401982f2010-01-20 21:53:11 +00002107 // Pick the best (i.e. most permissive i.e. numerically lowest) access
2108 // across all paths.
2109 SubobjectAccess = std::min(SubobjectAccess, Path->Access);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002110
Douglas Gregor960b5bc2009-01-15 00:26:24 +00002111 // Determine whether we're looking at a distinct sub-object or not.
2112 if (SubobjectType.isNull()) {
John McCall9f3059a2009-10-09 21:13:30 +00002113 // This is the first subobject we've looked at. Record its type.
Douglas Gregor960b5bc2009-01-15 00:26:24 +00002114 SubobjectType = Context.getCanonicalType(PathElement.Base->getType());
2115 SubobjectNumber = PathElement.SubobjectNumber;
Douglas Gregorc0d24902010-10-22 22:08:47 +00002116 continue;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002117 }
2118
Douglas Gregorc0d24902010-10-22 22:08:47 +00002119 if (SubobjectType
Douglas Gregor960b5bc2009-01-15 00:26:24 +00002120 != Context.getCanonicalType(PathElement.Base->getType())) {
2121 // We found members of the given name in two subobjects of
Douglas Gregorc0d24902010-10-22 22:08:47 +00002122 // different types. If the declaration sets aren't the same, this
Nikola Smiljanic1c125682014-07-09 05:42:35 +00002123 // lookup is ambiguous.
David Blaikieff7d47a2012-12-19 00:45:41 +00002124 if (HasOnlyStaticMembers(Path->Decls.begin(), Path->Decls.end())) {
Douglas Gregorc0d24902010-10-22 22:08:47 +00002125 CXXBasePaths::paths_iterator FirstPath = Paths.begin();
David Blaikieff7d47a2012-12-19 00:45:41 +00002126 DeclContext::lookup_iterator FirstD = FirstPath->Decls.begin();
2127 DeclContext::lookup_iterator CurrentD = Path->Decls.begin();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002128
David Blaikieff7d47a2012-12-19 00:45:41 +00002129 while (FirstD != FirstPath->Decls.end() &&
2130 CurrentD != Path->Decls.end()) {
Douglas Gregorc0d24902010-10-22 22:08:47 +00002131 if ((*FirstD)->getUnderlyingDecl()->getCanonicalDecl() !=
2132 (*CurrentD)->getUnderlyingDecl()->getCanonicalDecl())
2133 break;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002134
Douglas Gregorc0d24902010-10-22 22:08:47 +00002135 ++FirstD;
2136 ++CurrentD;
2137 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002138
David Blaikieff7d47a2012-12-19 00:45:41 +00002139 if (FirstD == FirstPath->Decls.end() &&
2140 CurrentD == Path->Decls.end())
Douglas Gregorc0d24902010-10-22 22:08:47 +00002141 continue;
2142 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002143
John McCall9f3059a2009-10-09 21:13:30 +00002144 R.setAmbiguousBaseSubobjectTypes(Paths);
2145 return true;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002146 }
2147
Douglas Gregorc0d24902010-10-22 22:08:47 +00002148 if (SubobjectNumber != PathElement.SubobjectNumber) {
Douglas Gregor960b5bc2009-01-15 00:26:24 +00002149 // We have a different subobject of the same type.
2150
2151 // C++ [class.member.lookup]p5:
2152 // A static member, a nested type or an enumerator defined in
2153 // a base class T can unambiguously be found even if an object
Mike Stump11289f42009-09-09 15:08:12 +00002154 // has more than one base class subobject of type T.
David Blaikieff7d47a2012-12-19 00:45:41 +00002155 if (HasOnlyStaticMembers(Path->Decls.begin(), Path->Decls.end()))
Douglas Gregor960b5bc2009-01-15 00:26:24 +00002156 continue;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002157
Douglas Gregor960b5bc2009-01-15 00:26:24 +00002158 // We have found a nonstatic member name in multiple, distinct
2159 // subobjects. Name lookup is ambiguous.
John McCall9f3059a2009-10-09 21:13:30 +00002160 R.setAmbiguousBaseSubobjects(Paths);
2161 return true;
Douglas Gregor960b5bc2009-01-15 00:26:24 +00002162 }
2163 }
2164
2165 // Lookup in a base class succeeded; return these results.
2166
Aaron Ballman1e606f42014-07-15 22:03:49 +00002167 for (auto *D : Paths.front().Decls) {
John McCall553c0792010-01-23 00:46:32 +00002168 AccessSpecifier AS = CXXRecordDecl::MergeAccess(SubobjectAccess,
2169 D->getAccess());
2170 R.addDecl(D, AS);
2171 }
John McCall9f3059a2009-10-09 21:13:30 +00002172 R.resolveKind();
2173 return true;
Douglas Gregor34074322009-01-14 22:20:51 +00002174}
2175
Nikola Smiljanicfce370e2014-12-01 23:15:01 +00002176/// \brief Performs qualified name lookup or special type of lookup for
2177/// "__super::" scope specifier.
2178///
2179/// This routine is a convenience overload meant to be called from contexts
2180/// that need to perform a qualified name lookup with an optional C++ scope
2181/// specifier that might require special kind of lookup.
2182///
2183/// \param R captures both the lookup criteria and any lookup results found.
2184///
2185/// \param LookupCtx The context in which qualified name lookup will
2186/// search.
2187///
2188/// \param SS An optional C++ scope-specifier.
2189///
2190/// \returns true if lookup succeeded, false if it failed.
2191bool Sema::LookupQualifiedName(LookupResult &R, DeclContext *LookupCtx,
2192 CXXScopeSpec &SS) {
2193 auto *NNS = SS.getScopeRep();
2194 if (NNS && NNS->getKind() == NestedNameSpecifier::Super)
2195 return LookupInSuper(R, NNS->getAsRecordDecl());
2196 else
2197
2198 return LookupQualifiedName(R, LookupCtx);
2199}
2200
Douglas Gregor34074322009-01-14 22:20:51 +00002201/// @brief Performs name lookup for a name that was parsed in the
2202/// source code, and may contain a C++ scope specifier.
2203///
2204/// This routine is a convenience routine meant to be called from
2205/// contexts that receive a name and an optional C++ scope specifier
2206/// (e.g., "N::M::x"). It will then perform either qualified or
2207/// unqualified name lookup (with LookupQualifiedName or LookupName,
Nikola Smiljanic905bfda2014-10-04 10:17:57 +00002208/// respectively) on the given name and return those results. It will
2209/// perform a special type of lookup for "__super::" scope specifier.
Douglas Gregor34074322009-01-14 22:20:51 +00002210///
2211/// @param S The scope from which unqualified name lookup will
2212/// begin.
Mike Stump11289f42009-09-09 15:08:12 +00002213///
Douglas Gregore861bac2009-08-25 22:51:20 +00002214/// @param SS An optional C++ scope-specifier, e.g., "::N::M".
Douglas Gregor34074322009-01-14 22:20:51 +00002215///
Douglas Gregore861bac2009-08-25 22:51:20 +00002216/// @param EnteringContext Indicates whether we are going to enter the
2217/// context of the scope-specifier SS (if present).
2218///
John McCall9f3059a2009-10-09 21:13:30 +00002219/// @returns True if any decls were found (but possibly ambiguous)
Jeffrey Yasskinc76498d2010-04-08 16:38:48 +00002220bool Sema::LookupParsedName(LookupResult &R, Scope *S, CXXScopeSpec *SS,
John McCall27b18f82009-11-17 02:14:36 +00002221 bool AllowBuiltinCreation, bool EnteringContext) {
Douglas Gregore861bac2009-08-25 22:51:20 +00002222 if (SS && SS->isInvalid()) {
2223 // When the scope specifier is invalid, don't even look for
Douglas Gregorc9f9b862009-05-11 19:58:34 +00002224 // anything.
John McCall9f3059a2009-10-09 21:13:30 +00002225 return false;
Douglas Gregore861bac2009-08-25 22:51:20 +00002226 }
Mike Stump11289f42009-09-09 15:08:12 +00002227
Douglas Gregore861bac2009-08-25 22:51:20 +00002228 if (SS && SS->isSet()) {
Nikola Smiljanic905bfda2014-10-04 10:17:57 +00002229 NestedNameSpecifier *NNS = SS->getScopeRep();
2230 if (NNS->getKind() == NestedNameSpecifier::Super)
2231 return LookupInSuper(R, NNS->getAsRecordDecl());
2232
Douglas Gregore861bac2009-08-25 22:51:20 +00002233 if (DeclContext *DC = computeDeclContext(*SS, EnteringContext)) {
Mike Stump11289f42009-09-09 15:08:12 +00002234 // We have resolved the scope specifier to a particular declaration
Douglas Gregore861bac2009-08-25 22:51:20 +00002235 // contex, and will perform name lookup in that context.
John McCall0b66eb32010-05-01 00:40:08 +00002236 if (!DC->isDependentContext() && RequireCompleteDeclContext(*SS, DC))
John McCall9f3059a2009-10-09 21:13:30 +00002237 return false;
Mike Stump11289f42009-09-09 15:08:12 +00002238
John McCall27b18f82009-11-17 02:14:36 +00002239 R.setContextRange(SS->getRange());
John McCall27b18f82009-11-17 02:14:36 +00002240 return LookupQualifiedName(R, DC);
Douglas Gregor52537682009-03-19 00:18:19 +00002241 }
Douglas Gregorc9f9b862009-05-11 19:58:34 +00002242
Douglas Gregore861bac2009-08-25 22:51:20 +00002243 // We could not resolve the scope specified to a specific declaration
Mike Stump11289f42009-09-09 15:08:12 +00002244 // context, which means that SS refers to an unknown specialization.
Douglas Gregore861bac2009-08-25 22:51:20 +00002245 // Name lookup can't find anything in this case.
Douglas Gregor89ab56d2011-10-24 22:24:50 +00002246 R.setNotFoundInCurrentInstantiation();
2247 R.setContextRange(SS->getRange());
John McCall9f3059a2009-10-09 21:13:30 +00002248 return false;
Douglas Gregored8f2882009-01-30 01:04:22 +00002249 }
2250
Mike Stump11289f42009-09-09 15:08:12 +00002251 // Perform unqualified name lookup starting in the given scope.
John McCall27b18f82009-11-17 02:14:36 +00002252 return LookupName(R, S, AllowBuiltinCreation);
Douglas Gregor34074322009-01-14 22:20:51 +00002253}
2254
Nikola Smiljanic67860242014-09-26 00:28:20 +00002255/// \brief Perform qualified name lookup into all base classes of the given
2256/// class.
2257///
2258/// \param R captures both the lookup criteria and any lookup results found.
2259///
2260/// \param Class The context in which qualified name lookup will
2261/// search. Name lookup will search in all base classes merging the results.
Nikola Smiljanic905bfda2014-10-04 10:17:57 +00002262///
2263/// @returns True if any decls were found (but possibly ambiguous)
2264bool Sema::LookupInSuper(LookupResult &R, CXXRecordDecl *Class) {
John McCallf4a1b772015-09-09 23:04:17 +00002265 // The access-control rules we use here are essentially the rules for
2266 // doing a lookup in Class that just magically skipped the direct
2267 // members of Class itself. That is, the naming class is Class, and the
2268 // access includes the access of the base.
Nikola Smiljanic67860242014-09-26 00:28:20 +00002269 for (const auto &BaseSpec : Class->bases()) {
2270 CXXRecordDecl *RD = cast<CXXRecordDecl>(
2271 BaseSpec.getType()->castAs<RecordType>()->getDecl());
2272 LookupResult Result(*this, R.getLookupNameInfo(), R.getLookupKind());
2273 Result.setBaseObjectType(Context.getRecordType(Class));
2274 LookupQualifiedName(Result, RD);
John McCallf4a1b772015-09-09 23:04:17 +00002275
2276 // Copy the lookup results into the target, merging the base's access into
2277 // the path access.
2278 for (auto I = Result.begin(), E = Result.end(); I != E; ++I) {
2279 R.addDecl(I.getDecl(),
2280 CXXRecordDecl::MergeAccess(BaseSpec.getAccessSpecifier(),
2281 I.getAccess()));
2282 }
2283
2284 Result.suppressDiagnostics();
Nikola Smiljanic67860242014-09-26 00:28:20 +00002285 }
2286
2287 R.resolveKind();
John McCallf4a1b772015-09-09 23:04:17 +00002288 R.setNamingClass(Class);
Nikola Smiljanic905bfda2014-10-04 10:17:57 +00002289
2290 return !R.empty();
Nikola Smiljanic67860242014-09-26 00:28:20 +00002291}
Douglas Gregor889ceb72009-02-03 19:21:40 +00002292
James Dennett41725122012-06-22 10:16:05 +00002293/// \brief Produce a diagnostic describing the ambiguity that resulted
Douglas Gregor960b5bc2009-01-15 00:26:24 +00002294/// from name lookup.
2295///
James Dennett41725122012-06-22 10:16:05 +00002296/// \param Result The result of the ambiguous lookup to be diagnosed.
Serge Pavlov99292092013-08-29 07:23:24 +00002297void Sema::DiagnoseAmbiguousLookup(LookupResult &Result) {
Douglas Gregor960b5bc2009-01-15 00:26:24 +00002298 assert(Result.isAmbiguous() && "Lookup result must be ambiguous");
2299
John McCall27b18f82009-11-17 02:14:36 +00002300 DeclarationName Name = Result.getLookupName();
2301 SourceLocation NameLoc = Result.getNameLoc();
2302 SourceRange LookupRange = Result.getContextRange();
2303
John McCall6538c932009-10-10 05:48:19 +00002304 switch (Result.getAmbiguityKind()) {
2305 case LookupResult::AmbiguousBaseSubobjects: {
2306 CXXBasePaths *Paths = Result.getBasePaths();
2307 QualType SubobjectType = Paths->front().back().Base->getType();
2308 Diag(NameLoc, diag::err_ambiguous_member_multiple_subobjects)
2309 << Name << SubobjectType << getAmbiguousPathsDisplayString(*Paths)
2310 << LookupRange;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002311
David Blaikieff7d47a2012-12-19 00:45:41 +00002312 DeclContext::lookup_iterator Found = Paths->front().Decls.begin();
John McCall6538c932009-10-10 05:48:19 +00002313 while (isa<CXXMethodDecl>(*Found) &&
2314 cast<CXXMethodDecl>(*Found)->isStatic())
2315 ++Found;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002316
John McCall6538c932009-10-10 05:48:19 +00002317 Diag((*Found)->getLocation(), diag::note_ambiguous_member_found);
Serge Pavlov99292092013-08-29 07:23:24 +00002318 break;
John McCall6538c932009-10-10 05:48:19 +00002319 }
Douglas Gregor1c846b02009-01-16 00:38:09 +00002320
John McCall6538c932009-10-10 05:48:19 +00002321 case LookupResult::AmbiguousBaseSubobjectTypes: {
Douglas Gregor889ceb72009-02-03 19:21:40 +00002322 Diag(NameLoc, diag::err_ambiguous_member_multiple_subobject_types)
2323 << Name << LookupRange;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002324
John McCall6538c932009-10-10 05:48:19 +00002325 CXXBasePaths *Paths = Result.getBasePaths();
Douglas Gregor889ceb72009-02-03 19:21:40 +00002326 std::set<Decl *> DeclsPrinted;
John McCall6538c932009-10-10 05:48:19 +00002327 for (CXXBasePaths::paths_iterator Path = Paths->begin(),
2328 PathEnd = Paths->end();
Douglas Gregor889ceb72009-02-03 19:21:40 +00002329 Path != PathEnd; ++Path) {
David Blaikieff7d47a2012-12-19 00:45:41 +00002330 Decl *D = Path->Decls.front();
Douglas Gregor889ceb72009-02-03 19:21:40 +00002331 if (DeclsPrinted.insert(D).second)
2332 Diag(D->getLocation(), diag::note_ambiguous_member_found);
2333 }
Serge Pavlov99292092013-08-29 07:23:24 +00002334 break;
Douglas Gregor1c846b02009-01-16 00:38:09 +00002335 }
2336
John McCall6538c932009-10-10 05:48:19 +00002337 case LookupResult::AmbiguousTagHiding: {
2338 Diag(NameLoc, diag::err_ambiguous_tag_hiding) << Name << LookupRange;
Douglas Gregorf23311d2009-01-17 01:13:24 +00002339
Nick Lewycky4b81fc872015-10-18 20:32:12 +00002340 llvm::SmallPtrSet<NamedDecl*, 8> TagDecls;
John McCall6538c932009-10-10 05:48:19 +00002341
Aaron Ballman1e606f42014-07-15 22:03:49 +00002342 for (auto *D : Result)
2343 if (TagDecl *TD = dyn_cast<TagDecl>(D)) {
John McCall6538c932009-10-10 05:48:19 +00002344 TagDecls.insert(TD);
2345 Diag(TD->getLocation(), diag::note_hidden_tag);
2346 }
2347
Aaron Ballman1e606f42014-07-15 22:03:49 +00002348 for (auto *D : Result)
2349 if (!isa<TagDecl>(D))
2350 Diag(D->getLocation(), diag::note_hiding_object);
John McCall6538c932009-10-10 05:48:19 +00002351
2352 // For recovery purposes, go ahead and implement the hiding.
John McCallad371252010-01-20 00:46:10 +00002353 LookupResult::Filter F = Result.makeFilter();
2354 while (F.hasNext()) {
2355 if (TagDecls.count(F.next()))
2356 F.erase();
2357 }
2358 F.done();
Serge Pavlov99292092013-08-29 07:23:24 +00002359 break;
John McCall6538c932009-10-10 05:48:19 +00002360 }
2361
2362 case LookupResult::AmbiguousReference: {
2363 Diag(NameLoc, diag::err_ambiguous_reference) << Name << LookupRange;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002364
Aaron Ballman1e606f42014-07-15 22:03:49 +00002365 for (auto *D : Result)
2366 Diag(D->getLocation(), diag::note_ambiguous_candidate) << D;
Serge Pavlov99292092013-08-29 07:23:24 +00002367 break;
John McCall6538c932009-10-10 05:48:19 +00002368 }
Serge Pavlov99292092013-08-29 07:23:24 +00002369 }
Douglas Gregor960b5bc2009-01-15 00:26:24 +00002370}
Douglas Gregore254f902009-02-04 00:32:51 +00002371
John McCallf24d7bb2010-05-28 18:45:08 +00002372namespace {
2373 struct AssociatedLookup {
John McCall7d8b0412012-08-24 20:38:34 +00002374 AssociatedLookup(Sema &S, SourceLocation InstantiationLoc,
John McCallf24d7bb2010-05-28 18:45:08 +00002375 Sema::AssociatedNamespaceSet &Namespaces,
2376 Sema::AssociatedClassSet &Classes)
John McCall7d8b0412012-08-24 20:38:34 +00002377 : S(S), Namespaces(Namespaces), Classes(Classes),
2378 InstantiationLoc(InstantiationLoc) {
John McCallf24d7bb2010-05-28 18:45:08 +00002379 }
2380
2381 Sema &S;
2382 Sema::AssociatedNamespaceSet &Namespaces;
2383 Sema::AssociatedClassSet &Classes;
John McCall7d8b0412012-08-24 20:38:34 +00002384 SourceLocation InstantiationLoc;
John McCallf24d7bb2010-05-28 18:45:08 +00002385 };
Hans Wennborgdcfba332015-10-06 23:40:43 +00002386} // end anonymous namespace
John McCallf24d7bb2010-05-28 18:45:08 +00002387
Mike Stump11289f42009-09-09 15:08:12 +00002388static void
John McCallf24d7bb2010-05-28 18:45:08 +00002389addAssociatedClassesAndNamespaces(AssociatedLookup &Result, QualType T);
John McCallc7e8e792009-08-07 22:18:02 +00002390
Douglas Gregor8b895222010-04-30 07:08:38 +00002391static void CollectEnclosingNamespace(Sema::AssociatedNamespaceSet &Namespaces,
2392 DeclContext *Ctx) {
2393 // Add the associated namespace for this class.
2394
2395 // We don't use DeclContext::getEnclosingNamespaceContext() as this may
2396 // be a locally scoped record.
2397
Sebastian Redlbd595762010-08-31 20:53:31 +00002398 // We skip out of inline namespaces. The innermost non-inline namespace
2399 // contains all names of all its nested inline namespaces anyway, so we can
2400 // replace the entire inline namespace tree with its root.
2401 while (Ctx->isRecord() || Ctx->isTransparentContext() ||
2402 Ctx->isInlineNamespace())
Douglas Gregor8b895222010-04-30 07:08:38 +00002403 Ctx = Ctx->getParent();
2404
John McCallc7e8e792009-08-07 22:18:02 +00002405 if (Ctx->isFileContext())
Douglas Gregor8b895222010-04-30 07:08:38 +00002406 Namespaces.insert(Ctx->getPrimaryContext());
John McCallc7e8e792009-08-07 22:18:02 +00002407}
Douglas Gregor197e5f72009-07-08 07:51:57 +00002408
Mike Stump11289f42009-09-09 15:08:12 +00002409// \brief Add the associated classes and namespaces for argument-dependent
Douglas Gregor197e5f72009-07-08 07:51:57 +00002410// lookup that involves a template argument (C++ [basic.lookup.koenig]p2).
Mike Stump11289f42009-09-09 15:08:12 +00002411static void
John McCallf24d7bb2010-05-28 18:45:08 +00002412addAssociatedClassesAndNamespaces(AssociatedLookup &Result,
2413 const TemplateArgument &Arg) {
Douglas Gregor197e5f72009-07-08 07:51:57 +00002414 // C++ [basic.lookup.koenig]p2, last bullet:
Mike Stump11289f42009-09-09 15:08:12 +00002415 // -- [...] ;
Douglas Gregor197e5f72009-07-08 07:51:57 +00002416 switch (Arg.getKind()) {
2417 case TemplateArgument::Null:
2418 break;
Mike Stump11289f42009-09-09 15:08:12 +00002419
Douglas Gregor197e5f72009-07-08 07:51:57 +00002420 case TemplateArgument::Type:
2421 // [...] the namespaces and classes associated with the types of the
2422 // template arguments provided for template type parameters (excluding
2423 // template template parameters)
John McCallf24d7bb2010-05-28 18:45:08 +00002424 addAssociatedClassesAndNamespaces(Result, Arg.getAsType());
Douglas Gregor197e5f72009-07-08 07:51:57 +00002425 break;
Mike Stump11289f42009-09-09 15:08:12 +00002426
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002427 case TemplateArgument::Template:
Douglas Gregore4ff4b52011-01-05 18:58:31 +00002428 case TemplateArgument::TemplateExpansion: {
Mike Stump11289f42009-09-09 15:08:12 +00002429 // [...] the namespaces in which any template template arguments are
2430 // defined; and the classes in which any member templates used as
Douglas Gregor197e5f72009-07-08 07:51:57 +00002431 // template template arguments are defined.
Douglas Gregore4ff4b52011-01-05 18:58:31 +00002432 TemplateName Template = Arg.getAsTemplateOrTemplatePattern();
Mike Stump11289f42009-09-09 15:08:12 +00002433 if (ClassTemplateDecl *ClassTemplate
Douglas Gregor9167f8b2009-11-11 01:00:40 +00002434 = dyn_cast<ClassTemplateDecl>(Template.getAsTemplateDecl())) {
Douglas Gregor197e5f72009-07-08 07:51:57 +00002435 DeclContext *Ctx = ClassTemplate->getDeclContext();
2436 if (CXXRecordDecl *EnclosingClass = dyn_cast<CXXRecordDecl>(Ctx))
John McCallf24d7bb2010-05-28 18:45:08 +00002437 Result.Classes.insert(EnclosingClass);
Douglas Gregor197e5f72009-07-08 07:51:57 +00002438 // Add the associated namespace for this class.
John McCallf24d7bb2010-05-28 18:45:08 +00002439 CollectEnclosingNamespace(Result.Namespaces, Ctx);
Douglas Gregor197e5f72009-07-08 07:51:57 +00002440 }
2441 break;
Douglas Gregor9167f8b2009-11-11 01:00:40 +00002442 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002443
Douglas Gregor9167f8b2009-11-11 01:00:40 +00002444 case TemplateArgument::Declaration:
Douglas Gregor197e5f72009-07-08 07:51:57 +00002445 case TemplateArgument::Integral:
2446 case TemplateArgument::Expression:
Eli Friedmanb826a002012-09-26 02:36:12 +00002447 case TemplateArgument::NullPtr:
Mike Stump11289f42009-09-09 15:08:12 +00002448 // [Note: non-type template arguments do not contribute to the set of
Douglas Gregor197e5f72009-07-08 07:51:57 +00002449 // associated namespaces. ]
2450 break;
Mike Stump11289f42009-09-09 15:08:12 +00002451
Douglas Gregor197e5f72009-07-08 07:51:57 +00002452 case TemplateArgument::Pack:
Aaron Ballman2a89e852014-07-15 21:32:31 +00002453 for (const auto &P : Arg.pack_elements())
2454 addAssociatedClassesAndNamespaces(Result, P);
Douglas Gregor197e5f72009-07-08 07:51:57 +00002455 break;
2456 }
2457}
2458
Douglas Gregore254f902009-02-04 00:32:51 +00002459// \brief Add the associated classes and namespaces for
Mike Stump11289f42009-09-09 15:08:12 +00002460// argument-dependent lookup with an argument of class type
2461// (C++ [basic.lookup.koenig]p2).
2462static void
John McCallf24d7bb2010-05-28 18:45:08 +00002463addAssociatedClassesAndNamespaces(AssociatedLookup &Result,
2464 CXXRecordDecl *Class) {
2465
2466 // Just silently ignore anything whose name is __va_list_tag.
2467 if (Class->getDeclName() == Result.S.VAListTagName)
2468 return;
2469
Douglas Gregore254f902009-02-04 00:32:51 +00002470 // C++ [basic.lookup.koenig]p2:
2471 // [...]
2472 // -- If T is a class type (including unions), its associated
2473 // classes are: the class itself; the class of which it is a
2474 // member, if any; and its direct and indirect base
2475 // classes. Its associated namespaces are the namespaces in
Mike Stump11289f42009-09-09 15:08:12 +00002476 // which its associated classes are defined.
Douglas Gregore254f902009-02-04 00:32:51 +00002477
2478 // Add the class of which it is a member, if any.
2479 DeclContext *Ctx = Class->getDeclContext();
2480 if (CXXRecordDecl *EnclosingClass = dyn_cast<CXXRecordDecl>(Ctx))
John McCallf24d7bb2010-05-28 18:45:08 +00002481 Result.Classes.insert(EnclosingClass);
Douglas Gregore254f902009-02-04 00:32:51 +00002482 // Add the associated namespace for this class.
John McCallf24d7bb2010-05-28 18:45:08 +00002483 CollectEnclosingNamespace(Result.Namespaces, Ctx);
Mike Stump11289f42009-09-09 15:08:12 +00002484
Douglas Gregore254f902009-02-04 00:32:51 +00002485 // Add the class itself. If we've already seen this class, we don't
2486 // need to visit base classes.
Richard Smith594461f2014-03-14 22:07:27 +00002487 //
2488 // FIXME: That's not correct, we may have added this class only because it
2489 // was the enclosing class of another class, and in that case we won't have
2490 // added its base classes yet.
Richard Smith6642bb32016-03-24 19:12:22 +00002491 if (!Result.Classes.insert(Class))
Douglas Gregore254f902009-02-04 00:32:51 +00002492 return;
2493
Mike Stump11289f42009-09-09 15:08:12 +00002494 // -- If T is a template-id, its associated namespaces and classes are
2495 // the namespace in which the template is defined; for member
NAKAMURA Takumi7c288862011-01-27 07:09:49 +00002496 // templates, the member template's class; the namespaces and classes
Mike Stump11289f42009-09-09 15:08:12 +00002497 // associated with the types of the template arguments provided for
Douglas Gregor197e5f72009-07-08 07:51:57 +00002498 // template type parameters (excluding template template parameters); the
Mike Stump11289f42009-09-09 15:08:12 +00002499 // namespaces in which any template template arguments are defined; and
2500 // the classes in which any member templates used as template template
2501 // arguments are defined. [Note: non-type template arguments do not
Douglas Gregor197e5f72009-07-08 07:51:57 +00002502 // contribute to the set of associated namespaces. ]
Mike Stump11289f42009-09-09 15:08:12 +00002503 if (ClassTemplateSpecializationDecl *Spec
Douglas Gregor197e5f72009-07-08 07:51:57 +00002504 = dyn_cast<ClassTemplateSpecializationDecl>(Class)) {
2505 DeclContext *Ctx = Spec->getSpecializedTemplate()->getDeclContext();
2506 if (CXXRecordDecl *EnclosingClass = dyn_cast<CXXRecordDecl>(Ctx))
John McCallf24d7bb2010-05-28 18:45:08 +00002507 Result.Classes.insert(EnclosingClass);
Douglas Gregor197e5f72009-07-08 07:51:57 +00002508 // Add the associated namespace for this class.
John McCallf24d7bb2010-05-28 18:45:08 +00002509 CollectEnclosingNamespace(Result.Namespaces, Ctx);
Mike Stump11289f42009-09-09 15:08:12 +00002510
Douglas Gregor197e5f72009-07-08 07:51:57 +00002511 const TemplateArgumentList &TemplateArgs = Spec->getTemplateArgs();
2512 for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I)
John McCallf24d7bb2010-05-28 18:45:08 +00002513 addAssociatedClassesAndNamespaces(Result, TemplateArgs[I]);
Douglas Gregor197e5f72009-07-08 07:51:57 +00002514 }
Mike Stump11289f42009-09-09 15:08:12 +00002515
John McCall67da35c2010-02-04 22:26:26 +00002516 // Only recurse into base classes for complete types.
Richard Smithdb0ac552015-12-18 22:40:25 +00002517 if (!Result.S.isCompleteType(Result.InstantiationLoc,
2518 Result.S.Context.getRecordType(Class)))
Richard Smith594461f2014-03-14 22:07:27 +00002519 return;
John McCall67da35c2010-02-04 22:26:26 +00002520
Douglas Gregore254f902009-02-04 00:32:51 +00002521 // Add direct and indirect base classes along with their associated
2522 // namespaces.
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002523 SmallVector<CXXRecordDecl *, 32> Bases;
Douglas Gregore254f902009-02-04 00:32:51 +00002524 Bases.push_back(Class);
2525 while (!Bases.empty()) {
2526 // Pop this class off the stack.
Robert Wilhelm25284cc2013-08-23 16:11:15 +00002527 Class = Bases.pop_back_val();
Douglas Gregore254f902009-02-04 00:32:51 +00002528
2529 // Visit the base classes.
Aaron Ballman574705e2014-03-13 15:41:46 +00002530 for (const auto &Base : Class->bases()) {
2531 const RecordType *BaseType = Base.getType()->getAs<RecordType>();
Sebastian Redlc45c03c2009-10-25 09:35:33 +00002532 // In dependent contexts, we do ADL twice, and the first time around,
2533 // the base type might be a dependent TemplateSpecializationType, or a
2534 // TemplateTypeParmType. If that happens, simply ignore it.
2535 // FIXME: If we want to support export, we probably need to add the
2536 // namespace of the template in a TemplateSpecializationType, or even
2537 // the classes and namespaces of known non-dependent arguments.
2538 if (!BaseType)
2539 continue;
Douglas Gregore254f902009-02-04 00:32:51 +00002540 CXXRecordDecl *BaseDecl = cast<CXXRecordDecl>(BaseType->getDecl());
Richard Smith6642bb32016-03-24 19:12:22 +00002541 if (Result.Classes.insert(BaseDecl)) {
Douglas Gregore254f902009-02-04 00:32:51 +00002542 // Find the associated namespace for this base class.
2543 DeclContext *BaseCtx = BaseDecl->getDeclContext();
John McCallf24d7bb2010-05-28 18:45:08 +00002544 CollectEnclosingNamespace(Result.Namespaces, BaseCtx);
Douglas Gregore254f902009-02-04 00:32:51 +00002545
2546 // Make sure we visit the bases of this base class.
2547 if (BaseDecl->bases_begin() != BaseDecl->bases_end())
2548 Bases.push_back(BaseDecl);
2549 }
2550 }
2551 }
2552}
2553
2554// \brief Add the associated classes and namespaces for
2555// argument-dependent lookup with an argument of type T
Mike Stump11289f42009-09-09 15:08:12 +00002556// (C++ [basic.lookup.koenig]p2).
2557static void
John McCallf24d7bb2010-05-28 18:45:08 +00002558addAssociatedClassesAndNamespaces(AssociatedLookup &Result, QualType Ty) {
Douglas Gregore254f902009-02-04 00:32:51 +00002559 // C++ [basic.lookup.koenig]p2:
2560 //
2561 // For each argument type T in the function call, there is a set
2562 // of zero or more associated namespaces and a set of zero or more
2563 // associated classes to be considered. The sets of namespaces and
2564 // classes is determined entirely by the types of the function
2565 // arguments (and the namespace of any template template
2566 // argument). Typedef names and using-declarations used to specify
2567 // the types do not contribute to this set. The sets of namespaces
2568 // and classes are determined in the following way:
Douglas Gregore254f902009-02-04 00:32:51 +00002569
Chris Lattner0e62c1c2011-07-23 10:55:15 +00002570 SmallVector<const Type *, 16> Queue;
John McCall0af3d3b2010-05-28 06:08:54 +00002571 const Type *T = Ty->getCanonicalTypeInternal().getTypePtr();
2572
Douglas Gregore254f902009-02-04 00:32:51 +00002573 while (true) {
John McCall0af3d3b2010-05-28 06:08:54 +00002574 switch (T->getTypeClass()) {
2575
2576#define TYPE(Class, Base)
2577#define DEPENDENT_TYPE(Class, Base) case Type::Class:
2578#define NON_CANONICAL_TYPE(Class, Base) case Type::Class:
2579#define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(Class, Base) case Type::Class:
2580#define ABSTRACT_TYPE(Class, Base)
2581#include "clang/AST/TypeNodes.def"
2582 // T is canonical. We can also ignore dependent types because
2583 // we don't need to do ADL at the definition point, but if we
2584 // wanted to implement template export (or if we find some other
2585 // use for associated classes and namespaces...) this would be
2586 // wrong.
Douglas Gregore254f902009-02-04 00:32:51 +00002587 break;
Douglas Gregore254f902009-02-04 00:32:51 +00002588
John McCall0af3d3b2010-05-28 06:08:54 +00002589 // -- If T is a pointer to U or an array of U, its associated
2590 // namespaces and classes are those associated with U.
2591 case Type::Pointer:
2592 T = cast<PointerType>(T)->getPointeeType().getTypePtr();
2593 continue;
2594 case Type::ConstantArray:
2595 case Type::IncompleteArray:
2596 case Type::VariableArray:
2597 T = cast<ArrayType>(T)->getElementType().getTypePtr();
2598 continue;
Douglas Gregore254f902009-02-04 00:32:51 +00002599
John McCall0af3d3b2010-05-28 06:08:54 +00002600 // -- If T is a fundamental type, its associated sets of
2601 // namespaces and classes are both empty.
2602 case Type::Builtin:
2603 break;
2604
2605 // -- If T is a class type (including unions), its associated
2606 // classes are: the class itself; the class of which it is a
2607 // member, if any; and its direct and indirect base
2608 // classes. Its associated namespaces are the namespaces in
2609 // which its associated classes are defined.
2610 case Type::Record: {
Richard Smith82b8d4e2015-12-18 22:19:11 +00002611 CXXRecordDecl *Class =
2612 cast<CXXRecordDecl>(cast<RecordType>(T)->getDecl());
John McCallf24d7bb2010-05-28 18:45:08 +00002613 addAssociatedClassesAndNamespaces(Result, Class);
John McCall0af3d3b2010-05-28 06:08:54 +00002614 break;
Douglas Gregor89ee6822009-02-28 01:32:25 +00002615 }
Douglas Gregorfe60c142010-05-20 02:26:51 +00002616
John McCall0af3d3b2010-05-28 06:08:54 +00002617 // -- If T is an enumeration type, its associated namespace is
2618 // the namespace in which it is defined. If it is class
NAKAMURA Takumi7c288862011-01-27 07:09:49 +00002619 // member, its associated class is the member's class; else
John McCall0af3d3b2010-05-28 06:08:54 +00002620 // it has no associated class.
2621 case Type::Enum: {
2622 EnumDecl *Enum = cast<EnumType>(T)->getDecl();
Douglas Gregore254f902009-02-04 00:32:51 +00002623
John McCall0af3d3b2010-05-28 06:08:54 +00002624 DeclContext *Ctx = Enum->getDeclContext();
2625 if (CXXRecordDecl *EnclosingClass = dyn_cast<CXXRecordDecl>(Ctx))
John McCallf24d7bb2010-05-28 18:45:08 +00002626 Result.Classes.insert(EnclosingClass);
Douglas Gregore254f902009-02-04 00:32:51 +00002627
John McCall0af3d3b2010-05-28 06:08:54 +00002628 // Add the associated namespace for this class.
John McCallf24d7bb2010-05-28 18:45:08 +00002629 CollectEnclosingNamespace(Result.Namespaces, Ctx);
Douglas Gregore254f902009-02-04 00:32:51 +00002630
John McCall0af3d3b2010-05-28 06:08:54 +00002631 break;
2632 }
2633
2634 // -- If T is a function type, its associated namespaces and
2635 // classes are those associated with the function parameter
2636 // types and those associated with the return type.
2637 case Type::FunctionProto: {
2638 const FunctionProtoType *Proto = cast<FunctionProtoType>(T);
Aaron Ballman40bd0aa2014-03-17 15:23:01 +00002639 for (const auto &Arg : Proto->param_types())
2640 Queue.push_back(Arg.getTypePtr());
John McCall0af3d3b2010-05-28 06:08:54 +00002641 // fallthrough
2642 }
2643 case Type::FunctionNoProto: {
2644 const FunctionType *FnType = cast<FunctionType>(T);
Alp Toker314cc812014-01-25 16:55:45 +00002645 T = FnType->getReturnType().getTypePtr();
John McCall0af3d3b2010-05-28 06:08:54 +00002646 continue;
2647 }
2648
2649 // -- If T is a pointer to a member function of a class X, its
2650 // associated namespaces and classes are those associated
2651 // with the function parameter types and return type,
2652 // together with those associated with X.
2653 //
2654 // -- If T is a pointer to a data member of class X, its
2655 // associated namespaces and classes are those associated
2656 // with the member type together with those associated with
2657 // X.
2658 case Type::MemberPointer: {
2659 const MemberPointerType *MemberPtr = cast<MemberPointerType>(T);
2660
2661 // Queue up the class type into which this points.
2662 Queue.push_back(MemberPtr->getClass());
2663
2664 // And directly continue with the pointee type.
2665 T = MemberPtr->getPointeeType().getTypePtr();
2666 continue;
2667 }
2668
2669 // As an extension, treat this like a normal pointer.
2670 case Type::BlockPointer:
2671 T = cast<BlockPointerType>(T)->getPointeeType().getTypePtr();
2672 continue;
2673
2674 // References aren't covered by the standard, but that's such an
2675 // obvious defect that we cover them anyway.
2676 case Type::LValueReference:
2677 case Type::RValueReference:
2678 T = cast<ReferenceType>(T)->getPointeeType().getTypePtr();
2679 continue;
2680
2681 // These are fundamental types.
2682 case Type::Vector:
2683 case Type::ExtVector:
2684 case Type::Complex:
2685 break;
2686
Richard Smith27d807c2013-04-30 13:56:41 +00002687 // Non-deduced auto types only get here for error cases.
2688 case Type::Auto:
2689 break;
2690
Douglas Gregor8e936662011-04-12 01:02:45 +00002691 // If T is an Objective-C object or interface type, or a pointer to an
2692 // object or interface type, the associated namespace is the global
2693 // namespace.
John McCall0af3d3b2010-05-28 06:08:54 +00002694 case Type::ObjCObject:
2695 case Type::ObjCInterface:
2696 case Type::ObjCObjectPointer:
Douglas Gregor8e936662011-04-12 01:02:45 +00002697 Result.Namespaces.insert(Result.S.Context.getTranslationUnitDecl());
John McCall0af3d3b2010-05-28 06:08:54 +00002698 break;
Eli Friedman0dfb8892011-10-06 23:00:33 +00002699
2700 // Atomic types are just wrappers; use the associations of the
2701 // contained type.
2702 case Type::Atomic:
2703 T = cast<AtomicType>(T)->getValueType().getTypePtr();
2704 continue;
Xiuli Pan9c14e282016-01-09 12:53:17 +00002705 case Type::Pipe:
2706 T = cast<PipeType>(T)->getElementType().getTypePtr();
2707 continue;
John McCall0af3d3b2010-05-28 06:08:54 +00002708 }
2709
Robert Wilhelm25284cc2013-08-23 16:11:15 +00002710 if (Queue.empty())
2711 break;
2712 T = Queue.pop_back_val();
Douglas Gregore254f902009-02-04 00:32:51 +00002713 }
Douglas Gregore254f902009-02-04 00:32:51 +00002714}
2715
2716/// \brief Find the associated classes and namespaces for
2717/// argument-dependent lookup for a call with the given set of
2718/// arguments.
2719///
2720/// This routine computes the sets of associated classes and associated
Mike Stump11289f42009-09-09 15:08:12 +00002721/// namespaces searched by argument-dependent lookup
Douglas Gregore254f902009-02-04 00:32:51 +00002722/// (C++ [basic.lookup.argdep]) for a given set of arguments.
Robert Wilhelm16e94b92013-08-09 18:02:13 +00002723void Sema::FindAssociatedClassesAndNamespaces(
2724 SourceLocation InstantiationLoc, ArrayRef<Expr *> Args,
2725 AssociatedNamespaceSet &AssociatedNamespaces,
2726 AssociatedClassSet &AssociatedClasses) {
Douglas Gregore254f902009-02-04 00:32:51 +00002727 AssociatedNamespaces.clear();
2728 AssociatedClasses.clear();
2729
John McCall7d8b0412012-08-24 20:38:34 +00002730 AssociatedLookup Result(*this, InstantiationLoc,
2731 AssociatedNamespaces, AssociatedClasses);
John McCallf24d7bb2010-05-28 18:45:08 +00002732
Douglas Gregore254f902009-02-04 00:32:51 +00002733 // C++ [basic.lookup.koenig]p2:
2734 // For each argument type T in the function call, there is a set
2735 // of zero or more associated namespaces and a set of zero or more
2736 // associated classes to be considered. The sets of namespaces and
2737 // classes is determined entirely by the types of the function
2738 // arguments (and the namespace of any template template
Mike Stump11289f42009-09-09 15:08:12 +00002739 // argument).
Ahmed Charlesb24b9aa2012-02-25 11:00:22 +00002740 for (unsigned ArgIdx = 0; ArgIdx != Args.size(); ++ArgIdx) {
Douglas Gregore254f902009-02-04 00:32:51 +00002741 Expr *Arg = Args[ArgIdx];
2742
2743 if (Arg->getType() != Context.OverloadTy) {
John McCallf24d7bb2010-05-28 18:45:08 +00002744 addAssociatedClassesAndNamespaces(Result, Arg->getType());
Douglas Gregore254f902009-02-04 00:32:51 +00002745 continue;
2746 }
2747
2748 // [...] In addition, if the argument is the name or address of a
2749 // set of overloaded functions and/or function templates, its
2750 // associated classes and namespaces are the union of those
2751 // associated with each of the members of the set: the namespace
2752 // in which the function or function template is defined and the
2753 // classes and namespaces associated with its (non-dependent)
2754 // parameter types and return type.
Douglas Gregorbe759252009-07-08 10:57:20 +00002755 Arg = Arg->IgnoreParens();
John McCalld14a8642009-11-21 08:51:07 +00002756 if (UnaryOperator *unaryOp = dyn_cast<UnaryOperator>(Arg))
John McCalle3027922010-08-25 11:45:40 +00002757 if (unaryOp->getOpcode() == UO_AddrOf)
John McCalld14a8642009-11-21 08:51:07 +00002758 Arg = unaryOp->getSubExpr();
Mike Stump11289f42009-09-09 15:08:12 +00002759
John McCallf24d7bb2010-05-28 18:45:08 +00002760 UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(Arg);
2761 if (!ULE) continue;
John McCalld14a8642009-11-21 08:51:07 +00002762
Aaron Ballman1e606f42014-07-15 22:03:49 +00002763 for (const auto *D : ULE->decls()) {
Chandler Carruthc25c6ee2009-12-29 06:17:27 +00002764 // Look through any using declarations to find the underlying function.
Aaron Ballman1e606f42014-07-15 22:03:49 +00002765 const FunctionDecl *FDecl = D->getUnderlyingDecl()->getAsFunction();
Douglas Gregore254f902009-02-04 00:32:51 +00002766
2767 // Add the classes and namespaces associated with the parameter
2768 // types and return type of this function.
John McCallf24d7bb2010-05-28 18:45:08 +00002769 addAssociatedClassesAndNamespaces(Result, FDecl->getType());
Douglas Gregore254f902009-02-04 00:32:51 +00002770 }
2771 }
2772}
Douglas Gregord2b7ef62009-03-13 00:33:25 +00002773
John McCall5cebab12009-11-18 07:57:50 +00002774NamedDecl *Sema::LookupSingleName(Scope *S, DeclarationName Name,
Douglas Gregorb2ccf012010-04-15 22:33:43 +00002775 SourceLocation Loc,
John McCall5cebab12009-11-18 07:57:50 +00002776 LookupNameKind NameKind,
2777 RedeclarationKind Redecl) {
Douglas Gregorb2ccf012010-04-15 22:33:43 +00002778 LookupResult R(*this, Name, Loc, NameKind, Redecl);
John McCall5cebab12009-11-18 07:57:50 +00002779 LookupName(R, S);
John McCall67c00872009-12-02 08:25:40 +00002780 return R.getAsSingle<NamedDecl>();
John McCall5cebab12009-11-18 07:57:50 +00002781}
2782
Douglas Gregorde9f17e2009-04-23 23:18:26 +00002783/// \brief Find the protocol with the given name, if any.
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00002784ObjCProtocolDecl *Sema::LookupProtocol(IdentifierInfo *II,
Douglas Gregor32c17572012-01-01 20:30:41 +00002785 SourceLocation IdLoc,
2786 RedeclarationKind Redecl) {
Douglas Gregorb2ccf012010-04-15 22:33:43 +00002787 Decl *D = LookupSingleName(TUScope, II, IdLoc,
Douglas Gregor32c17572012-01-01 20:30:41 +00002788 LookupObjCProtocolName, Redecl);
Douglas Gregorde9f17e2009-04-23 23:18:26 +00002789 return cast_or_null<ObjCProtocolDecl>(D);
2790}
2791
Douglas Gregord2b7ef62009-03-13 00:33:25 +00002792void Sema::LookupOverloadedOperatorName(OverloadedOperatorKind Op, Scope *S,
Mike Stump11289f42009-09-09 15:08:12 +00002793 QualType T1, QualType T2,
John McCall4c4c1df2010-01-26 03:27:55 +00002794 UnresolvedSetImpl &Functions) {
Douglas Gregord2b7ef62009-03-13 00:33:25 +00002795 // C++ [over.match.oper]p3:
2796 // -- The set of non-member candidates is the result of the
2797 // unqualified lookup of operator@ in the context of the
2798 // expression according to the usual rules for name lookup in
2799 // unqualified function calls (3.4.2) except that all member
Richard Smith100b24a2014-04-17 01:52:14 +00002800 // functions are ignored.
Douglas Gregord2b7ef62009-03-13 00:33:25 +00002801 DeclarationName OpName = Context.DeclarationNames.getCXXOperatorName(Op);
John McCall27b18f82009-11-17 02:14:36 +00002802 LookupResult Operators(*this, OpName, SourceLocation(), LookupOperatorName);
2803 LookupName(Operators, S);
Mike Stump11289f42009-09-09 15:08:12 +00002804
Douglas Gregord2b7ef62009-03-13 00:33:25 +00002805 assert(!Operators.isAmbiguous() && "Operator lookup cannot be ambiguous");
Richard Smith100b24a2014-04-17 01:52:14 +00002806 Functions.append(Operators.begin(), Operators.end());
Douglas Gregord2b7ef62009-03-13 00:33:25 +00002807}
2808
Alexis Hunt1da39282011-06-24 02:11:39 +00002809Sema::SpecialMemberOverloadResult *Sema::LookupSpecialMember(CXXRecordDecl *RD,
Alexis Hunt4ac55e32011-06-04 04:32:43 +00002810 CXXSpecialMember SM,
2811 bool ConstArg,
2812 bool VolatileArg,
2813 bool RValueThis,
2814 bool ConstThis,
2815 bool VolatileThis) {
Richard Smith7d125a12012-11-27 21:20:31 +00002816 assert(CanDeclareSpecialMemberFunction(RD) &&
Alexis Hunt4ac55e32011-06-04 04:32:43 +00002817 "doing special member lookup into record that isn't fully complete");
Richard Smith7d125a12012-11-27 21:20:31 +00002818 RD = RD->getDefinition();
Alexis Hunt4ac55e32011-06-04 04:32:43 +00002819 if (RValueThis || ConstThis || VolatileThis)
2820 assert((SM == CXXCopyAssignment || SM == CXXMoveAssignment) &&
2821 "constructors and destructors always have unqualified lvalue this");
2822 if (ConstArg || VolatileArg)
2823 assert((SM != CXXDefaultConstructor && SM != CXXDestructor) &&
2824 "parameter-less special members can't have qualified arguments");
2825
2826 llvm::FoldingSetNodeID ID;
Alexis Hunt1da39282011-06-24 02:11:39 +00002827 ID.AddPointer(RD);
Alexis Hunt4ac55e32011-06-04 04:32:43 +00002828 ID.AddInteger(SM);
2829 ID.AddInteger(ConstArg);
2830 ID.AddInteger(VolatileArg);
2831 ID.AddInteger(RValueThis);
2832 ID.AddInteger(ConstThis);
2833 ID.AddInteger(VolatileThis);
2834
2835 void *InsertPoint;
2836 SpecialMemberOverloadResult *Result =
2837 SpecialMemberCache.FindNodeOrInsertPos(ID, InsertPoint);
2838
2839 // This was already cached
2840 if (Result)
2841 return Result;
2842
Alexis Huntba8e18d2011-06-07 00:11:58 +00002843 Result = BumpAlloc.Allocate<SpecialMemberOverloadResult>();
2844 Result = new (Result) SpecialMemberOverloadResult(ID);
Alexis Hunt4ac55e32011-06-04 04:32:43 +00002845 SpecialMemberCache.InsertNode(Result, InsertPoint);
2846
2847 if (SM == CXXDestructor) {
Richard Smith2be35f52012-12-01 02:35:44 +00002848 if (RD->needsImplicitDestructor())
Alexis Hunt1da39282011-06-24 02:11:39 +00002849 DeclareImplicitDestructor(RD);
2850 CXXDestructorDecl *DD = RD->getDestructor();
Alexis Hunt4ac55e32011-06-04 04:32:43 +00002851 assert(DD && "record without a destructor");
2852 Result->setMethod(DD);
Richard Smith852265f2012-03-30 20:53:28 +00002853 Result->setKind(DD->isDeleted() ?
2854 SpecialMemberOverloadResult::NoMemberOrDeleted :
Richard Smith83c478d2012-04-20 18:46:14 +00002855 SpecialMemberOverloadResult::Success);
Alexis Hunt4ac55e32011-06-04 04:32:43 +00002856 return Result;
2857 }
2858
Alexis Hunteef8ee02011-06-10 03:50:41 +00002859 // Prepare for overload resolution. Here we construct a synthetic argument
2860 // if necessary and make sure that implicit functions are declared.
Alexis Hunt1da39282011-06-24 02:11:39 +00002861 CanQualType CanTy = Context.getCanonicalType(Context.getTagDeclType(RD));
Alexis Hunteef8ee02011-06-10 03:50:41 +00002862 DeclarationName Name;
Craig Topperc3ec1492014-05-26 06:22:03 +00002863 Expr *Arg = nullptr;
Alexis Hunteef8ee02011-06-10 03:50:41 +00002864 unsigned NumArgs;
2865
Richard Smith83c478d2012-04-20 18:46:14 +00002866 QualType ArgType = CanTy;
2867 ExprValueKind VK = VK_LValue;
2868
Alexis Hunteef8ee02011-06-10 03:50:41 +00002869 if (SM == CXXDefaultConstructor) {
2870 Name = Context.DeclarationNames.getCXXConstructorName(CanTy);
2871 NumArgs = 0;
Alexis Hunt1da39282011-06-24 02:11:39 +00002872 if (RD->needsImplicitDefaultConstructor())
2873 DeclareImplicitDefaultConstructor(RD);
Alexis Hunteef8ee02011-06-10 03:50:41 +00002874 } else {
2875 if (SM == CXXCopyConstructor || SM == CXXMoveConstructor) {
2876 Name = Context.DeclarationNames.getCXXConstructorName(CanTy);
Richard Smith2be35f52012-12-01 02:35:44 +00002877 if (RD->needsImplicitCopyConstructor())
Alexis Hunt1da39282011-06-24 02:11:39 +00002878 DeclareImplicitCopyConstructor(RD);
Richard Smith2bf7fdb2013-01-02 11:42:31 +00002879 if (getLangOpts().CPlusPlus11 && RD->needsImplicitMoveConstructor())
Sebastian Redl22653ba2011-08-30 19:58:05 +00002880 DeclareImplicitMoveConstructor(RD);
Alexis Hunteef8ee02011-06-10 03:50:41 +00002881 } else {
2882 Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal);
Richard Smith2be35f52012-12-01 02:35:44 +00002883 if (RD->needsImplicitCopyAssignment())
Alexis Hunt1da39282011-06-24 02:11:39 +00002884 DeclareImplicitCopyAssignment(RD);
Richard Smith2bf7fdb2013-01-02 11:42:31 +00002885 if (getLangOpts().CPlusPlus11 && RD->needsImplicitMoveAssignment())
Sebastian Redl22653ba2011-08-30 19:58:05 +00002886 DeclareImplicitMoveAssignment(RD);
Alexis Hunteef8ee02011-06-10 03:50:41 +00002887 }
2888
Alexis Hunteef8ee02011-06-10 03:50:41 +00002889 if (ConstArg)
2890 ArgType.addConst();
2891 if (VolatileArg)
2892 ArgType.addVolatile();
2893
2894 // This isn't /really/ specified by the standard, but it's implied
2895 // we should be working from an RValue in the case of move to ensure
2896 // that we prefer to bind to rvalue references, and an LValue in the
2897 // case of copy to ensure we don't bind to rvalue references.
2898 // Possibly an XValue is actually correct in the case of move, but
2899 // there is no semantic difference for class types in this restricted
2900 // case.
Alexis Hunt46d1ce22011-06-22 22:13:13 +00002901 if (SM == CXXCopyConstructor || SM == CXXCopyAssignment)
Alexis Hunteef8ee02011-06-10 03:50:41 +00002902 VK = VK_LValue;
2903 else
2904 VK = VK_RValue;
Richard Smith83c478d2012-04-20 18:46:14 +00002905 }
Alexis Hunteef8ee02011-06-10 03:50:41 +00002906
Richard Smith83c478d2012-04-20 18:46:14 +00002907 OpaqueValueExpr FakeArg(SourceLocation(), ArgType, VK);
2908
2909 if (SM != CXXDefaultConstructor) {
Alexis Hunteef8ee02011-06-10 03:50:41 +00002910 NumArgs = 1;
Richard Smith83c478d2012-04-20 18:46:14 +00002911 Arg = &FakeArg;
Alexis Hunteef8ee02011-06-10 03:50:41 +00002912 }
2913
2914 // Create the object argument
2915 QualType ThisTy = CanTy;
2916 if (ConstThis)
2917 ThisTy.addConst();
2918 if (VolatileThis)
2919 ThisTy.addVolatile();
Alexis Hunt080709f2011-06-23 00:26:20 +00002920 Expr::Classification Classification =
Richard Smith83c478d2012-04-20 18:46:14 +00002921 OpaqueValueExpr(SourceLocation(), ThisTy,
2922 RValueThis ? VK_RValue : VK_LValue).Classify(Context);
Alexis Hunteef8ee02011-06-10 03:50:41 +00002923
2924 // Now we perform lookup on the name we computed earlier and do overload
2925 // resolution. Lookup is only performed directly into the class since there
2926 // will always be a (possibly implicit) declaration to shadow any others.
Richard Smith100b24a2014-04-17 01:52:14 +00002927 OverloadCandidateSet OCS(RD->getLocation(), OverloadCandidateSet::CSK_Normal);
David Blaikieff7d47a2012-12-19 00:45:41 +00002928 DeclContext::lookup_result R = RD->lookup(Name);
Richard Smith8c37ab52015-02-11 01:48:47 +00002929
2930 if (R.empty()) {
2931 // We might have no default constructor because we have a lambda's closure
2932 // type, rather than because there's some other declared constructor.
2933 // Every class has a copy/move constructor, copy/move assignment, and
2934 // destructor.
2935 assert(SM == CXXDefaultConstructor &&
2936 "lookup for a constructor or assignment operator was empty");
2937 Result->setMethod(nullptr);
2938 Result->setKind(SpecialMemberOverloadResult::NoMemberOrDeleted);
2939 return Result;
2940 }
Chandler Carruth7deaae72013-08-18 07:20:52 +00002941
2942 // Copy the candidates as our processing of them may load new declarations
2943 // from an external source and invalidate lookup_result.
2944 SmallVector<NamedDecl *, 8> Candidates(R.begin(), R.end());
2945
Aaron Ballman1e606f42014-07-15 22:03:49 +00002946 for (auto *Cand : Candidates) {
Alexis Hunt1da39282011-06-24 02:11:39 +00002947 if (Cand->isInvalidDecl())
Alexis Hunteef8ee02011-06-10 03:50:41 +00002948 continue;
2949
Alexis Hunt1da39282011-06-24 02:11:39 +00002950 if (UsingShadowDecl *U = dyn_cast<UsingShadowDecl>(Cand)) {
2951 // FIXME: [namespace.udecl]p15 says that we should only consider a
2952 // using declaration here if it does not match a declaration in the
2953 // derived class. We do not implement this correctly in other cases
2954 // either.
2955 Cand = U->getTargetDecl();
2956
2957 if (Cand->isInvalidDecl())
2958 continue;
2959 }
2960
2961 if (CXXMethodDecl *M = dyn_cast<CXXMethodDecl>(Cand)) {
Alexis Hunt080709f2011-06-23 00:26:20 +00002962 if (SM == CXXCopyAssignment || SM == CXXMoveAssignment)
Alexis Hunt1da39282011-06-24 02:11:39 +00002963 AddMethodCandidate(M, DeclAccessPair::make(M, AS_public), RD, ThisTy,
Ahmed Charlesb24b9aa2012-02-25 11:00:22 +00002964 Classification, llvm::makeArrayRef(&Arg, NumArgs),
2965 OCS, true);
Alexis Hunt080709f2011-06-23 00:26:20 +00002966 else
Ahmed Charlesb24b9aa2012-02-25 11:00:22 +00002967 AddOverloadCandidate(M, DeclAccessPair::make(M, AS_public),
2968 llvm::makeArrayRef(&Arg, NumArgs), OCS, true);
Alexis Hunt2949f022011-06-22 02:58:46 +00002969 } else if (FunctionTemplateDecl *Tmpl =
Alexis Hunt1da39282011-06-24 02:11:39 +00002970 dyn_cast<FunctionTemplateDecl>(Cand)) {
Alexis Hunt080709f2011-06-23 00:26:20 +00002971 if (SM == CXXCopyAssignment || SM == CXXMoveAssignment)
2972 AddMethodTemplateCandidate(Tmpl, DeclAccessPair::make(Tmpl, AS_public),
Craig Topperc3ec1492014-05-26 06:22:03 +00002973 RD, nullptr, ThisTy, Classification,
Ahmed Charlesb24b9aa2012-02-25 11:00:22 +00002974 llvm::makeArrayRef(&Arg, NumArgs),
Alexis Hunt080709f2011-06-23 00:26:20 +00002975 OCS, true);
2976 else
2977 AddTemplateOverloadCandidate(Tmpl, DeclAccessPair::make(Tmpl, AS_public),
Craig Topperc3ec1492014-05-26 06:22:03 +00002978 nullptr, llvm::makeArrayRef(&Arg, NumArgs),
Ahmed Charlesb24b9aa2012-02-25 11:00:22 +00002979 OCS, true);
Alexis Hunt1da39282011-06-24 02:11:39 +00002980 } else {
2981 assert(isa<UsingDecl>(Cand) && "illegal Kind of operator = Decl");
Alexis Hunteef8ee02011-06-10 03:50:41 +00002982 }
2983 }
2984
2985 OverloadCandidateSet::iterator Best;
2986 switch (OCS.BestViableFunction(*this, SourceLocation(), Best)) {
2987 case OR_Success:
2988 Result->setMethod(cast<CXXMethodDecl>(Best->Function));
Richard Smith83c478d2012-04-20 18:46:14 +00002989 Result->setKind(SpecialMemberOverloadResult::Success);
Alexis Hunteef8ee02011-06-10 03:50:41 +00002990 break;
2991
2992 case OR_Deleted:
2993 Result->setMethod(cast<CXXMethodDecl>(Best->Function));
Richard Smith852265f2012-03-30 20:53:28 +00002994 Result->setKind(SpecialMemberOverloadResult::NoMemberOrDeleted);
Alexis Hunteef8ee02011-06-10 03:50:41 +00002995 break;
2996
2997 case OR_Ambiguous:
Craig Topperc3ec1492014-05-26 06:22:03 +00002998 Result->setMethod(nullptr);
Richard Smith852265f2012-03-30 20:53:28 +00002999 Result->setKind(SpecialMemberOverloadResult::Ambiguous);
3000 break;
3001
Alexis Hunteef8ee02011-06-10 03:50:41 +00003002 case OR_No_Viable_Function:
Craig Topperc3ec1492014-05-26 06:22:03 +00003003 Result->setMethod(nullptr);
Richard Smith852265f2012-03-30 20:53:28 +00003004 Result->setKind(SpecialMemberOverloadResult::NoMemberOrDeleted);
Alexis Hunteef8ee02011-06-10 03:50:41 +00003005 break;
3006 }
3007
3008 return Result;
3009}
3010
3011/// \brief Look up the default constructor for the given class.
3012CXXConstructorDecl *Sema::LookupDefaultConstructor(CXXRecordDecl *Class) {
Alexis Hunt899bd442011-06-10 04:44:37 +00003013 SpecialMemberOverloadResult *Result =
Alexis Hunteef8ee02011-06-10 03:50:41 +00003014 LookupSpecialMember(Class, CXXDefaultConstructor, false, false, false,
3015 false, false);
3016
3017 return cast_or_null<CXXConstructorDecl>(Result->getMethod());
Alexis Hunt4ac55e32011-06-04 04:32:43 +00003018}
3019
Alexis Hunt491ec602011-06-21 23:42:56 +00003020/// \brief Look up the copying constructor for the given class.
3021CXXConstructorDecl *Sema::LookupCopyingConstructor(CXXRecordDecl *Class,
Richard Smith83c478d2012-04-20 18:46:14 +00003022 unsigned Quals) {
Alexis Hunt899bd442011-06-10 04:44:37 +00003023 assert(!(Quals & ~(Qualifiers::Const | Qualifiers::Volatile)) &&
3024 "non-const, non-volatile qualifiers for copy ctor arg");
3025 SpecialMemberOverloadResult *Result =
3026 LookupSpecialMember(Class, CXXCopyConstructor, Quals & Qualifiers::Const,
3027 Quals & Qualifiers::Volatile, false, false, false);
3028
Alexis Hunt899bd442011-06-10 04:44:37 +00003029 return cast_or_null<CXXConstructorDecl>(Result->getMethod());
3030}
3031
Sebastian Redl22653ba2011-08-30 19:58:05 +00003032/// \brief Look up the moving constructor for the given class.
Richard Smith1c6461e2012-07-18 03:36:00 +00003033CXXConstructorDecl *Sema::LookupMovingConstructor(CXXRecordDecl *Class,
3034 unsigned Quals) {
Sebastian Redl22653ba2011-08-30 19:58:05 +00003035 SpecialMemberOverloadResult *Result =
Richard Smith1c6461e2012-07-18 03:36:00 +00003036 LookupSpecialMember(Class, CXXMoveConstructor, Quals & Qualifiers::Const,
3037 Quals & Qualifiers::Volatile, false, false, false);
Sebastian Redl22653ba2011-08-30 19:58:05 +00003038
3039 return cast_or_null<CXXConstructorDecl>(Result->getMethod());
3040}
3041
Douglas Gregor52b72822010-07-02 23:12:18 +00003042/// \brief Look up the constructors for the given class.
3043DeclContext::lookup_result Sema::LookupConstructors(CXXRecordDecl *Class) {
Alexis Hunteef8ee02011-06-10 03:50:41 +00003044 // If the implicit constructors have not yet been declared, do so now.
Richard Smith7d125a12012-11-27 21:20:31 +00003045 if (CanDeclareSpecialMemberFunction(Class)) {
Alexis Huntea6f0322011-05-11 22:34:38 +00003046 if (Class->needsImplicitDefaultConstructor())
Douglas Gregor9672f922010-07-03 00:47:00 +00003047 DeclareImplicitDefaultConstructor(Class);
Richard Smith2be35f52012-12-01 02:35:44 +00003048 if (Class->needsImplicitCopyConstructor())
Douglas Gregor9672f922010-07-03 00:47:00 +00003049 DeclareImplicitCopyConstructor(Class);
Richard Smith2bf7fdb2013-01-02 11:42:31 +00003050 if (getLangOpts().CPlusPlus11 && Class->needsImplicitMoveConstructor())
Sebastian Redl22653ba2011-08-30 19:58:05 +00003051 DeclareImplicitMoveConstructor(Class);
Douglas Gregor9672f922010-07-03 00:47:00 +00003052 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003053
Douglas Gregor52b72822010-07-02 23:12:18 +00003054 CanQualType T = Context.getCanonicalType(Context.getTypeDeclType(Class));
3055 DeclarationName Name = Context.DeclarationNames.getCXXConstructorName(T);
3056 return Class->lookup(Name);
3057}
3058
Alexis Hunt491ec602011-06-21 23:42:56 +00003059/// \brief Look up the copying assignment operator for the given class.
3060CXXMethodDecl *Sema::LookupCopyingAssignment(CXXRecordDecl *Class,
3061 unsigned Quals, bool RValueThis,
Richard Smith83c478d2012-04-20 18:46:14 +00003062 unsigned ThisQuals) {
Alexis Hunt491ec602011-06-21 23:42:56 +00003063 assert(!(Quals & ~(Qualifiers::Const | Qualifiers::Volatile)) &&
3064 "non-const, non-volatile qualifiers for copy assignment arg");
3065 assert(!(ThisQuals & ~(Qualifiers::Const | Qualifiers::Volatile)) &&
3066 "non-const, non-volatile qualifiers for copy assignment this");
3067 SpecialMemberOverloadResult *Result =
3068 LookupSpecialMember(Class, CXXCopyAssignment, Quals & Qualifiers::Const,
3069 Quals & Qualifiers::Volatile, RValueThis,
3070 ThisQuals & Qualifiers::Const,
3071 ThisQuals & Qualifiers::Volatile);
3072
Alexis Hunt491ec602011-06-21 23:42:56 +00003073 return Result->getMethod();
3074}
3075
Sebastian Redl22653ba2011-08-30 19:58:05 +00003076/// \brief Look up the moving assignment operator for the given class.
3077CXXMethodDecl *Sema::LookupMovingAssignment(CXXRecordDecl *Class,
Richard Smith1c6461e2012-07-18 03:36:00 +00003078 unsigned Quals,
Sebastian Redl22653ba2011-08-30 19:58:05 +00003079 bool RValueThis,
3080 unsigned ThisQuals) {
3081 assert(!(ThisQuals & ~(Qualifiers::Const | Qualifiers::Volatile)) &&
3082 "non-const, non-volatile qualifiers for copy assignment this");
3083 SpecialMemberOverloadResult *Result =
Richard Smith1c6461e2012-07-18 03:36:00 +00003084 LookupSpecialMember(Class, CXXMoveAssignment, Quals & Qualifiers::Const,
3085 Quals & Qualifiers::Volatile, RValueThis,
Sebastian Redl22653ba2011-08-30 19:58:05 +00003086 ThisQuals & Qualifiers::Const,
3087 ThisQuals & Qualifiers::Volatile);
3088
3089 return Result->getMethod();
3090}
3091
Douglas Gregore71edda2010-07-01 22:47:18 +00003092/// \brief Look for the destructor of the given class.
3093///
Alexis Hunt967ea7c2011-06-03 21:10:40 +00003094/// During semantic analysis, this routine should be used in lieu of
3095/// CXXRecordDecl::getDestructor().
Douglas Gregore71edda2010-07-01 22:47:18 +00003096///
3097/// \returns The destructor for this class.
3098CXXDestructorDecl *Sema::LookupDestructor(CXXRecordDecl *Class) {
Alexis Hunt4ac55e32011-06-04 04:32:43 +00003099 return cast<CXXDestructorDecl>(LookupSpecialMember(Class, CXXDestructor,
3100 false, false, false,
3101 false, false)->getMethod());
Douglas Gregore71edda2010-07-01 22:47:18 +00003102}
3103
Richard Smithbcc22fc2012-03-09 08:00:36 +00003104/// LookupLiteralOperator - Determine which literal operator should be used for
3105/// a user-defined literal, per C++11 [lex.ext].
3106///
3107/// Normal overload resolution is not used to select which literal operator to
3108/// call for a user-defined literal. Look up the provided literal operator name,
3109/// and filter the results to the appropriate set for the given argument types.
3110Sema::LiteralOperatorLookupResult
3111Sema::LookupLiteralOperator(Scope *S, LookupResult &R,
3112 ArrayRef<QualType> ArgTys,
Richard Smithb8b41d32013-10-07 19:57:58 +00003113 bool AllowRaw, bool AllowTemplate,
3114 bool AllowStringTemplate) {
Richard Smithbcc22fc2012-03-09 08:00:36 +00003115 LookupName(R, S);
3116 assert(R.getResultKind() != LookupResult::Ambiguous &&
3117 "literal operator lookup can't be ambiguous");
3118
3119 // Filter the lookup results appropriately.
3120 LookupResult::Filter F = R.makeFilter();
3121
Richard Smithbcc22fc2012-03-09 08:00:36 +00003122 bool FoundRaw = false;
Richard Smithb8b41d32013-10-07 19:57:58 +00003123 bool FoundTemplate = false;
3124 bool FoundStringTemplate = false;
Richard Smithbcc22fc2012-03-09 08:00:36 +00003125 bool FoundExactMatch = false;
3126
3127 while (F.hasNext()) {
3128 Decl *D = F.next();
3129 if (UsingShadowDecl *USD = dyn_cast<UsingShadowDecl>(D))
3130 D = USD->getTargetDecl();
3131
Douglas Gregorc1970572013-04-10 05:18:00 +00003132 // If the declaration we found is invalid, skip it.
3133 if (D->isInvalidDecl()) {
3134 F.erase();
3135 continue;
3136 }
3137
Richard Smithb8b41d32013-10-07 19:57:58 +00003138 bool IsRaw = false;
3139 bool IsTemplate = false;
3140 bool IsStringTemplate = false;
3141 bool IsExactMatch = false;
3142
Richard Smithbcc22fc2012-03-09 08:00:36 +00003143 if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
3144 if (FD->getNumParams() == 1 &&
3145 FD->getParamDecl(0)->getType()->getAs<PointerType>())
3146 IsRaw = true;
Richard Smith550de452013-01-15 07:12:59 +00003147 else if (FD->getNumParams() == ArgTys.size()) {
Richard Smithbcc22fc2012-03-09 08:00:36 +00003148 IsExactMatch = true;
3149 for (unsigned ArgIdx = 0; ArgIdx != ArgTys.size(); ++ArgIdx) {
3150 QualType ParamTy = FD->getParamDecl(ArgIdx)->getType();
3151 if (!Context.hasSameUnqualifiedType(ArgTys[ArgIdx], ParamTy)) {
3152 IsExactMatch = false;
3153 break;
3154 }
3155 }
3156 }
3157 }
Richard Smithb8b41d32013-10-07 19:57:58 +00003158 if (FunctionTemplateDecl *FD = dyn_cast<FunctionTemplateDecl>(D)) {
3159 TemplateParameterList *Params = FD->getTemplateParameters();
3160 if (Params->size() == 1)
3161 IsTemplate = true;
3162 else
3163 IsStringTemplate = true;
3164 }
Richard Smithbcc22fc2012-03-09 08:00:36 +00003165
3166 if (IsExactMatch) {
3167 FoundExactMatch = true;
Richard Smithb8b41d32013-10-07 19:57:58 +00003168 AllowRaw = false;
3169 AllowTemplate = false;
3170 AllowStringTemplate = false;
3171 if (FoundRaw || FoundTemplate || FoundStringTemplate) {
Richard Smithbcc22fc2012-03-09 08:00:36 +00003172 // Go through again and remove the raw and template decls we've
3173 // already found.
3174 F.restart();
Richard Smithb8b41d32013-10-07 19:57:58 +00003175 FoundRaw = FoundTemplate = FoundStringTemplate = false;
Richard Smithbcc22fc2012-03-09 08:00:36 +00003176 }
Richard Smithb8b41d32013-10-07 19:57:58 +00003177 } else if (AllowRaw && IsRaw) {
3178 FoundRaw = true;
3179 } else if (AllowTemplate && IsTemplate) {
3180 FoundTemplate = true;
3181 } else if (AllowStringTemplate && IsStringTemplate) {
3182 FoundStringTemplate = true;
Richard Smithbcc22fc2012-03-09 08:00:36 +00003183 } else {
3184 F.erase();
3185 }
3186 }
3187
3188 F.done();
3189
3190 // C++11 [lex.ext]p3, p4: If S contains a literal operator with a matching
3191 // parameter type, that is used in preference to a raw literal operator
3192 // or literal operator template.
3193 if (FoundExactMatch)
3194 return LOLR_Cooked;
3195
3196 // C++11 [lex.ext]p3, p4: S shall contain a raw literal operator or a literal
3197 // operator template, but not both.
3198 if (FoundRaw && FoundTemplate) {
3199 Diag(R.getNameLoc(), diag::err_ovl_ambiguous_call) << R.getLookupName();
Alp Tokera2794f92014-01-22 07:29:52 +00003200 for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I)
Richard Smithc2bebe92016-05-11 20:37:46 +00003201 NoteOverloadCandidate(*I, (*I)->getUnderlyingDecl()->getAsFunction());
Richard Smithbcc22fc2012-03-09 08:00:36 +00003202 return LOLR_Error;
3203 }
3204
3205 if (FoundRaw)
3206 return LOLR_Raw;
3207
3208 if (FoundTemplate)
3209 return LOLR_Template;
3210
Richard Smithb8b41d32013-10-07 19:57:58 +00003211 if (FoundStringTemplate)
3212 return LOLR_StringTemplate;
3213
Richard Smithbcc22fc2012-03-09 08:00:36 +00003214 // Didn't find anything we could use.
3215 Diag(R.getNameLoc(), diag::err_ovl_no_viable_literal_operator)
3216 << R.getLookupName() << (int)ArgTys.size() << ArgTys[0]
Richard Smithb8b41d32013-10-07 19:57:58 +00003217 << (ArgTys.size() == 2 ? ArgTys[1] : QualType()) << AllowRaw
3218 << (AllowTemplate || AllowStringTemplate);
Richard Smithbcc22fc2012-03-09 08:00:36 +00003219 return LOLR_Error;
3220}
3221
John McCall8fe68082010-01-26 07:16:45 +00003222void ADLResult::insert(NamedDecl *New) {
3223 NamedDecl *&Old = Decls[cast<NamedDecl>(New->getCanonicalDecl())];
3224
3225 // If we haven't yet seen a decl for this key, or the last decl
3226 // was exactly this one, we're done.
Craig Topperc3ec1492014-05-26 06:22:03 +00003227 if (Old == nullptr || Old == New) {
John McCall8fe68082010-01-26 07:16:45 +00003228 Old = New;
3229 return;
3230 }
3231
3232 // Otherwise, decide which is a more recent redeclaration.
Alp Tokera2794f92014-01-22 07:29:52 +00003233 FunctionDecl *OldFD = Old->getAsFunction();
3234 FunctionDecl *NewFD = New->getAsFunction();
John McCall8fe68082010-01-26 07:16:45 +00003235
3236 FunctionDecl *Cursor = NewFD;
3237 while (true) {
Douglas Gregorec9fd132012-01-14 16:38:05 +00003238 Cursor = Cursor->getPreviousDecl();
John McCall8fe68082010-01-26 07:16:45 +00003239
3240 // If we got to the end without finding OldFD, OldFD is the newer
3241 // declaration; leave things as they are.
3242 if (!Cursor) return;
3243
3244 // If we do find OldFD, then NewFD is newer.
3245 if (Cursor == OldFD) break;
3246
3247 // Otherwise, keep looking.
3248 }
3249
3250 Old = New;
3251}
3252
Richard Smith100b24a2014-04-17 01:52:14 +00003253void Sema::ArgumentDependentLookup(DeclarationName Name, SourceLocation Loc,
3254 ArrayRef<Expr *> Args, ADLResult &Result) {
Douglas Gregord2b7ef62009-03-13 00:33:25 +00003255 // Find all of the associated namespaces and classes based on the
3256 // arguments we have.
3257 AssociatedNamespaceSet AssociatedNamespaces;
3258 AssociatedClassSet AssociatedClasses;
John McCall7d8b0412012-08-24 20:38:34 +00003259 FindAssociatedClassesAndNamespaces(Loc, Args,
John McCallc7e8e792009-08-07 22:18:02 +00003260 AssociatedNamespaces,
3261 AssociatedClasses);
Douglas Gregord2b7ef62009-03-13 00:33:25 +00003262
3263 // C++ [basic.lookup.argdep]p3:
Douglas Gregord2b7ef62009-03-13 00:33:25 +00003264 // Let X be the lookup set produced by unqualified lookup (3.4.1)
3265 // and let Y be the lookup set produced by argument dependent
3266 // lookup (defined as follows). If X contains [...] then Y is
3267 // empty. Otherwise Y is the set of declarations found in the
3268 // namespaces associated with the argument types as described
3269 // below. The set of declarations found by the lookup of the name
3270 // is the union of X and Y.
3271 //
3272 // Here, we compute Y and add its members to the overloaded
3273 // candidate set.
Aaron Ballman1e606f42014-07-15 22:03:49 +00003274 for (auto *NS : AssociatedNamespaces) {
Douglas Gregord2b7ef62009-03-13 00:33:25 +00003275 // When considering an associated namespace, the lookup is the
3276 // same as the lookup performed when the associated namespace is
3277 // used as a qualifier (3.4.3.2) except that:
3278 //
3279 // -- Any using-directives in the associated namespace are
3280 // ignored.
3281 //
John McCallc7e8e792009-08-07 22:18:02 +00003282 // -- Any namespace-scope friend functions declared in
Douglas Gregord2b7ef62009-03-13 00:33:25 +00003283 // associated classes are visible within their respective
3284 // namespaces even if they are not visible during an ordinary
3285 // lookup (11.4).
Aaron Ballman1e606f42014-07-15 22:03:49 +00003286 DeclContext::lookup_result R = NS->lookup(Name);
3287 for (auto *D : R) {
John McCallaa74a0c2009-08-28 07:59:38 +00003288 // If the only declaration here is an ordinary friend, consider
3289 // it only if it was declared in an associated classes.
Richard Smith541b38b2013-09-20 01:15:31 +00003290 if ((D->getIdentifierNamespace() & Decl::IDNS_Ordinary) == 0) {
3291 // If it's neither ordinarily visible nor a friend, we can't find it.
3292 if ((D->getIdentifierNamespace() & Decl::IDNS_OrdinaryFriend) == 0)
3293 continue;
3294
Richard Smith64017682013-07-17 23:53:16 +00003295 bool DeclaredInAssociatedClass = false;
3296 for (Decl *DI = D; DI; DI = DI->getPreviousDecl()) {
3297 DeclContext *LexDC = DI->getLexicalDeclContext();
3298 if (isa<CXXRecordDecl>(LexDC) &&
Richard Smith82b8d4e2015-12-18 22:19:11 +00003299 AssociatedClasses.count(cast<CXXRecordDecl>(LexDC)) &&
3300 isVisible(cast<NamedDecl>(DI))) {
Richard Smith64017682013-07-17 23:53:16 +00003301 DeclaredInAssociatedClass = true;
3302 break;
3303 }
3304 }
3305 if (!DeclaredInAssociatedClass)
John McCalld1e9d832009-08-11 06:59:38 +00003306 continue;
3307 }
Mike Stump11289f42009-09-09 15:08:12 +00003308
John McCall91f61fc2010-01-26 06:04:06 +00003309 if (isa<UsingShadowDecl>(D))
3310 D = cast<UsingShadowDecl>(D)->getTargetDecl();
John McCall4c4c1df2010-01-26 03:27:55 +00003311
Richard Smith100b24a2014-04-17 01:52:14 +00003312 if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D))
John McCall8fe68082010-01-26 07:16:45 +00003313 continue;
3314
Richard Smitha1431072015-06-12 01:32:13 +00003315 if (!isVisible(D) && !(D = findAcceptableDecl(*this, D)))
3316 continue;
3317
John McCall8fe68082010-01-26 07:16:45 +00003318 Result.insert(D);
Douglas Gregor6127ca42009-06-23 20:14:09 +00003319 }
3320 }
Douglas Gregord2b7ef62009-03-13 00:33:25 +00003321}
Douglas Gregor2d435302009-12-30 17:04:44 +00003322
3323//----------------------------------------------------------------------------
3324// Search for all visible declarations.
3325//----------------------------------------------------------------------------
Angel Garcia Gomez637d1e62015-10-20 13:23:58 +00003326VisibleDeclConsumer::~VisibleDeclConsumer() { }
Douglas Gregor2d435302009-12-30 17:04:44 +00003327
Richard Smithe156254d2013-08-20 20:35:18 +00003328bool VisibleDeclConsumer::includeHiddenDecls() const { return false; }
3329
Douglas Gregor2d435302009-12-30 17:04:44 +00003330namespace {
3331
3332class ShadowContextRAII;
3333
3334class VisibleDeclsRecord {
3335public:
3336 /// \brief An entry in the shadow map, which is optimized to store a
3337 /// single declaration (the common case) but can also store a list
3338 /// of declarations.
Chris Lattner83cfc7c2011-07-18 01:54:02 +00003339 typedef llvm::TinyPtrVector<NamedDecl*> ShadowMapEntry;
Douglas Gregor2d435302009-12-30 17:04:44 +00003340
3341private:
3342 /// \brief A mapping from declaration names to the declarations that have
3343 /// this name within a particular scope.
3344 typedef llvm::DenseMap<DeclarationName, ShadowMapEntry> ShadowMap;
3345
3346 /// \brief A list of shadow maps, which is used to model name hiding.
3347 std::list<ShadowMap> ShadowMaps;
3348
3349 /// \brief The declaration contexts we have already visited.
3350 llvm::SmallPtrSet<DeclContext *, 8> VisitedContexts;
3351
3352 friend class ShadowContextRAII;
3353
3354public:
3355 /// \brief Determine whether we have already visited this context
3356 /// (and, if not, note that we are going to visit that context now).
3357 bool visitedContext(DeclContext *Ctx) {
David Blaikie82e95a32014-11-19 07:49:47 +00003358 return !VisitedContexts.insert(Ctx).second;
Douglas Gregor2d435302009-12-30 17:04:44 +00003359 }
3360
Douglas Gregor39982192010-08-15 06:18:01 +00003361 bool alreadyVisitedContext(DeclContext *Ctx) {
3362 return VisitedContexts.count(Ctx);
3363 }
3364
Douglas Gregor2d435302009-12-30 17:04:44 +00003365 /// \brief Determine whether the given declaration is hidden in the
3366 /// current scope.
3367 ///
3368 /// \returns the declaration that hides the given declaration, or
3369 /// NULL if no such declaration exists.
3370 NamedDecl *checkHidden(NamedDecl *ND);
3371
3372 /// \brief Add a declaration to the current shadow map.
Chris Lattner83cfc7c2011-07-18 01:54:02 +00003373 void add(NamedDecl *ND) {
3374 ShadowMaps.back()[ND->getDeclName()].push_back(ND);
3375 }
Douglas Gregor2d435302009-12-30 17:04:44 +00003376};
3377
3378/// \brief RAII object that records when we've entered a shadow context.
3379class ShadowContextRAII {
3380 VisibleDeclsRecord &Visible;
3381
3382 typedef VisibleDeclsRecord::ShadowMap ShadowMap;
3383
3384public:
3385 ShadowContextRAII(VisibleDeclsRecord &Visible) : Visible(Visible) {
Benjamin Kramer3204b152015-05-29 19:42:19 +00003386 Visible.ShadowMaps.emplace_back();
Douglas Gregor2d435302009-12-30 17:04:44 +00003387 }
3388
3389 ~ShadowContextRAII() {
Douglas Gregor2d435302009-12-30 17:04:44 +00003390 Visible.ShadowMaps.pop_back();
3391 }
3392};
3393
3394} // end anonymous namespace
3395
Douglas Gregor2d435302009-12-30 17:04:44 +00003396NamedDecl *VisibleDeclsRecord::checkHidden(NamedDecl *ND) {
3397 unsigned IDNS = ND->getIdentifierNamespace();
3398 std::list<ShadowMap>::reverse_iterator SM = ShadowMaps.rbegin();
3399 for (std::list<ShadowMap>::reverse_iterator SMEnd = ShadowMaps.rend();
3400 SM != SMEnd; ++SM) {
3401 ShadowMap::iterator Pos = SM->find(ND->getDeclName());
3402 if (Pos == SM->end())
3403 continue;
3404
Aaron Ballman1e606f42014-07-15 22:03:49 +00003405 for (auto *D : Pos->second) {
Douglas Gregor2d435302009-12-30 17:04:44 +00003406 // A tag declaration does not hide a non-tag declaration.
Aaron Ballman1e606f42014-07-15 22:03:49 +00003407 if (D->hasTagIdentifierNamespace() &&
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003408 (IDNS & (Decl::IDNS_Member | Decl::IDNS_Ordinary |
Douglas Gregor2d435302009-12-30 17:04:44 +00003409 Decl::IDNS_ObjCProtocol)))
3410 continue;
3411
3412 // Protocols are in distinct namespaces from everything else.
Aaron Ballman1e606f42014-07-15 22:03:49 +00003413 if (((D->getIdentifierNamespace() & Decl::IDNS_ObjCProtocol)
Douglas Gregor2d435302009-12-30 17:04:44 +00003414 || (IDNS & Decl::IDNS_ObjCProtocol)) &&
Aaron Ballman1e606f42014-07-15 22:03:49 +00003415 D->getIdentifierNamespace() != IDNS)
Douglas Gregor2d435302009-12-30 17:04:44 +00003416 continue;
3417
Douglas Gregor09bbc652010-01-14 15:47:35 +00003418 // Functions and function templates in the same scope overload
3419 // rather than hide. FIXME: Look for hiding based on function
3420 // signatures!
Aaron Ballman1e606f42014-07-15 22:03:49 +00003421 if (D->getUnderlyingDecl()->isFunctionOrFunctionTemplate() &&
Alp Tokera2794f92014-01-22 07:29:52 +00003422 ND->getUnderlyingDecl()->isFunctionOrFunctionTemplate() &&
Douglas Gregor09bbc652010-01-14 15:47:35 +00003423 SM == ShadowMaps.rbegin())
Douglas Gregor200c99d2010-01-14 03:35:48 +00003424 continue;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003425
Douglas Gregor2d435302009-12-30 17:04:44 +00003426 // We've found a declaration that hides this one.
Aaron Ballman1e606f42014-07-15 22:03:49 +00003427 return D;
Douglas Gregor2d435302009-12-30 17:04:44 +00003428 }
3429 }
3430
Craig Topperc3ec1492014-05-26 06:22:03 +00003431 return nullptr;
Douglas Gregor2d435302009-12-30 17:04:44 +00003432}
3433
3434static void LookupVisibleDecls(DeclContext *Ctx, LookupResult &Result,
3435 bool QualifiedNameLookup,
Douglas Gregor09bbc652010-01-14 15:47:35 +00003436 bool InBaseClass,
Douglas Gregor2d435302009-12-30 17:04:44 +00003437 VisibleDeclConsumer &Consumer,
3438 VisibleDeclsRecord &Visited) {
Douglas Gregor0c8a1722010-02-04 23:42:48 +00003439 if (!Ctx)
3440 return;
3441
Douglas Gregor2d435302009-12-30 17:04:44 +00003442 // Make sure we don't visit the same context twice.
3443 if (Visited.visitedContext(Ctx->getPrimaryContext()))
3444 return;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003445
Richard Smith9e2341d2015-03-23 03:25:59 +00003446 // Outside C++, lookup results for the TU live on identifiers.
3447 if (isa<TranslationUnitDecl>(Ctx) &&
3448 !Result.getSema().getLangOpts().CPlusPlus) {
3449 auto &S = Result.getSema();
3450 auto &Idents = S.Context.Idents;
3451
3452 // Ensure all external identifiers are in the identifier table.
3453 if (IdentifierInfoLookup *External = Idents.getExternalIdentifierLookup()) {
3454 std::unique_ptr<IdentifierIterator> Iter(External->getIdentifiers());
3455 for (StringRef Name = Iter->Next(); !Name.empty(); Name = Iter->Next())
3456 Idents.get(Name);
3457 }
3458
3459 // Walk all lookup results in the TU for each identifier.
3460 for (const auto &Ident : Idents) {
3461 for (auto I = S.IdResolver.begin(Ident.getValue()),
3462 E = S.IdResolver.end();
3463 I != E; ++I) {
3464 if (S.IdResolver.isDeclInScope(*I, Ctx)) {
3465 if (NamedDecl *ND = Result.getAcceptableDecl(*I)) {
3466 Consumer.FoundDecl(ND, Visited.checkHidden(ND), Ctx, InBaseClass);
3467 Visited.add(ND);
3468 }
3469 }
3470 }
3471 }
3472
3473 return;
3474 }
3475
Douglas Gregor7454c562010-07-02 20:37:36 +00003476 if (CXXRecordDecl *Class = dyn_cast<CXXRecordDecl>(Ctx))
3477 Result.getSema().ForceDeclarationOfImplicitMembers(Class);
3478
Douglas Gregor2d435302009-12-30 17:04:44 +00003479 // Enumerate all of the results in this context.
Richard Trieu20abd6b2015-04-15 03:48:48 +00003480 for (DeclContextLookupResult R : Ctx->lookups()) {
Richard Smith9e2341d2015-03-23 03:25:59 +00003481 for (auto *D : R) {
3482 if (auto *ND = Result.getAcceptableDecl(D)) {
3483 Consumer.FoundDecl(ND, Visited.checkHidden(ND), Ctx, InBaseClass);
3484 Visited.add(ND);
Douglas Gregora3b23b02010-12-09 21:44:02 +00003485 }
Douglas Gregor2d435302009-12-30 17:04:44 +00003486 }
3487 }
3488
3489 // Traverse using directives for qualified name lookup.
3490 if (QualifiedNameLookup) {
3491 ShadowContextRAII Shadow(Visited);
Aaron Ballman804a7fb2014-03-17 17:14:12 +00003492 for (auto I : Ctx->using_directives()) {
Aaron Ballman63ab7602014-03-07 13:44:44 +00003493 LookupVisibleDecls(I->getNominatedNamespace(), Result,
Douglas Gregor09bbc652010-01-14 15:47:35 +00003494 QualifiedNameLookup, InBaseClass, Consumer, Visited);
Douglas Gregor2d435302009-12-30 17:04:44 +00003495 }
3496 }
3497
Douglas Gregor35b0bac2010-01-03 18:01:57 +00003498 // Traverse the contexts of inherited C++ classes.
Douglas Gregor2d435302009-12-30 17:04:44 +00003499 if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Ctx)) {
John McCall67da35c2010-02-04 22:26:26 +00003500 if (!Record->hasDefinition())
3501 return;
3502
Aaron Ballman574705e2014-03-13 15:41:46 +00003503 for (const auto &B : Record->bases()) {
3504 QualType BaseType = B.getType();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003505
Douglas Gregor2d435302009-12-30 17:04:44 +00003506 // Don't look into dependent bases, because name lookup can't look
3507 // there anyway.
3508 if (BaseType->isDependentType())
3509 continue;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003510
Douglas Gregor2d435302009-12-30 17:04:44 +00003511 const RecordType *Record = BaseType->getAs<RecordType>();
3512 if (!Record)
3513 continue;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003514
Douglas Gregor2d435302009-12-30 17:04:44 +00003515 // FIXME: It would be nice to be able to determine whether referencing
3516 // a particular member would be ambiguous. For example, given
3517 //
3518 // struct A { int member; };
3519 // struct B { int member; };
3520 // struct C : A, B { };
3521 //
3522 // void f(C *c) { c->### }
3523 //
3524 // accessing 'member' would result in an ambiguity. However, we
3525 // could be smart enough to qualify the member with the base
3526 // class, e.g.,
3527 //
3528 // c->B::member
3529 //
3530 // or
3531 //
3532 // c->A::member
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003533
Douglas Gregor2d435302009-12-30 17:04:44 +00003534 // Find results in this base class (and its bases).
3535 ShadowContextRAII Shadow(Visited);
3536 LookupVisibleDecls(Record->getDecl(), Result, QualifiedNameLookup,
Douglas Gregor09bbc652010-01-14 15:47:35 +00003537 true, Consumer, Visited);
Douglas Gregor2d435302009-12-30 17:04:44 +00003538 }
3539 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003540
Douglas Gregor35b0bac2010-01-03 18:01:57 +00003541 // Traverse the contexts of Objective-C classes.
3542 if (ObjCInterfaceDecl *IFace = dyn_cast<ObjCInterfaceDecl>(Ctx)) {
3543 // Traverse categories.
Aaron Ballman3fe486a2014-03-13 21:23:55 +00003544 for (auto *Cat : IFace->visible_categories()) {
Douglas Gregor35b0bac2010-01-03 18:01:57 +00003545 ShadowContextRAII Shadow(Visited);
Aaron Ballman3fe486a2014-03-13 21:23:55 +00003546 LookupVisibleDecls(Cat, Result, QualifiedNameLookup, false,
Douglas Gregor09bbc652010-01-14 15:47:35 +00003547 Consumer, Visited);
Douglas Gregor35b0bac2010-01-03 18:01:57 +00003548 }
3549
3550 // Traverse protocols.
Aaron Ballmana9f49e32014-03-13 20:55:22 +00003551 for (auto *I : IFace->all_referenced_protocols()) {
Douglas Gregor35b0bac2010-01-03 18:01:57 +00003552 ShadowContextRAII Shadow(Visited);
Aaron Ballmana9f49e32014-03-13 20:55:22 +00003553 LookupVisibleDecls(I, Result, QualifiedNameLookup, false, Consumer,
Douglas Gregor09bbc652010-01-14 15:47:35 +00003554 Visited);
Douglas Gregor35b0bac2010-01-03 18:01:57 +00003555 }
3556
3557 // Traverse the superclass.
3558 if (IFace->getSuperClass()) {
3559 ShadowContextRAII Shadow(Visited);
3560 LookupVisibleDecls(IFace->getSuperClass(), Result, QualifiedNameLookup,
Douglas Gregor09bbc652010-01-14 15:47:35 +00003561 true, Consumer, Visited);
Douglas Gregor35b0bac2010-01-03 18:01:57 +00003562 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003563
Douglas Gregor0b59e802010-04-19 18:02:19 +00003564 // If there is an implementation, traverse it. We do this to find
3565 // synthesized ivars.
3566 if (IFace->getImplementation()) {
3567 ShadowContextRAII Shadow(Visited);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003568 LookupVisibleDecls(IFace->getImplementation(), Result,
Nick Lewycky13668f22012-04-03 20:26:45 +00003569 QualifiedNameLookup, InBaseClass, Consumer, Visited);
Douglas Gregor0b59e802010-04-19 18:02:19 +00003570 }
Douglas Gregor35b0bac2010-01-03 18:01:57 +00003571 } else if (ObjCProtocolDecl *Protocol = dyn_cast<ObjCProtocolDecl>(Ctx)) {
Aaron Ballman0f6e64d2014-03-13 22:58:06 +00003572 for (auto *I : Protocol->protocols()) {
Douglas Gregor35b0bac2010-01-03 18:01:57 +00003573 ShadowContextRAII Shadow(Visited);
Aaron Ballman0f6e64d2014-03-13 22:58:06 +00003574 LookupVisibleDecls(I, Result, QualifiedNameLookup, false, Consumer,
Douglas Gregor09bbc652010-01-14 15:47:35 +00003575 Visited);
Douglas Gregor35b0bac2010-01-03 18:01:57 +00003576 }
3577 } else if (ObjCCategoryDecl *Category = dyn_cast<ObjCCategoryDecl>(Ctx)) {
Aaron Ballman19a41762014-03-14 12:55:57 +00003578 for (auto *I : Category->protocols()) {
Douglas Gregor35b0bac2010-01-03 18:01:57 +00003579 ShadowContextRAII Shadow(Visited);
Aaron Ballman19a41762014-03-14 12:55:57 +00003580 LookupVisibleDecls(I, Result, QualifiedNameLookup, false, Consumer,
Douglas Gregor09bbc652010-01-14 15:47:35 +00003581 Visited);
Douglas Gregor35b0bac2010-01-03 18:01:57 +00003582 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003583
Douglas Gregor0b59e802010-04-19 18:02:19 +00003584 // If there is an implementation, traverse it.
3585 if (Category->getImplementation()) {
3586 ShadowContextRAII Shadow(Visited);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003587 LookupVisibleDecls(Category->getImplementation(), Result,
Douglas Gregor0b59e802010-04-19 18:02:19 +00003588 QualifiedNameLookup, true, Consumer, Visited);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003589 }
Douglas Gregor35b0bac2010-01-03 18:01:57 +00003590 }
Douglas Gregor2d435302009-12-30 17:04:44 +00003591}
3592
3593static void LookupVisibleDecls(Scope *S, LookupResult &Result,
3594 UnqualUsingDirectiveSet &UDirs,
3595 VisibleDeclConsumer &Consumer,
3596 VisibleDeclsRecord &Visited) {
3597 if (!S)
3598 return;
3599
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003600 if (!S->getEntity() ||
3601 (!S->getParent() &&
Ted Kremenekc37877d2013-10-08 17:08:03 +00003602 !Visited.alreadyVisitedContext(S->getEntity())) ||
3603 (S->getEntity())->isFunctionOrMethod()) {
Richard Smith541b38b2013-09-20 01:15:31 +00003604 FindLocalExternScope FindLocals(Result);
Douglas Gregor712dcfe2010-01-07 00:31:29 +00003605 // Walk through the declarations in this Scope.
Aaron Ballman35c54952014-03-17 16:55:25 +00003606 for (auto *D : S->decls()) {
3607 if (NamedDecl *ND = dyn_cast<NamedDecl>(D))
Douglas Gregor4a814562011-12-14 16:03:29 +00003608 if ((ND = Result.getAcceptableDecl(ND))) {
Craig Topperc3ec1492014-05-26 06:22:03 +00003609 Consumer.FoundDecl(ND, Visited.checkHidden(ND), nullptr, false);
Douglas Gregor712dcfe2010-01-07 00:31:29 +00003610 Visited.add(ND);
3611 }
3612 }
3613 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003614
Douglas Gregor66230062010-03-15 14:33:29 +00003615 // FIXME: C++ [temp.local]p8
Craig Topperc3ec1492014-05-26 06:22:03 +00003616 DeclContext *Entity = nullptr;
Douglas Gregor4f248632010-01-01 17:44:25 +00003617 if (S->getEntity()) {
Douglas Gregor2d435302009-12-30 17:04:44 +00003618 // Look into this scope's declaration context, along with any of its
3619 // parent lookup contexts (e.g., enclosing classes), up to the point
3620 // where we hit the context stored in the next outer scope.
Ted Kremenekc37877d2013-10-08 17:08:03 +00003621 Entity = S->getEntity();
Douglas Gregor66230062010-03-15 14:33:29 +00003622 DeclContext *OuterCtx = findOuterContext(S).first; // FIXME
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003623
Douglas Gregorea166062010-03-15 15:26:48 +00003624 for (DeclContext *Ctx = Entity; Ctx && !Ctx->Equals(OuterCtx);
Douglas Gregor2d435302009-12-30 17:04:44 +00003625 Ctx = Ctx->getLookupParent()) {
Douglas Gregor35b0bac2010-01-03 18:01:57 +00003626 if (ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(Ctx)) {
3627 if (Method->isInstanceMethod()) {
3628 // For instance methods, look for ivars in the method's interface.
3629 LookupResult IvarResult(Result.getSema(), Result.getLookupName(),
3630 Result.getNameLoc(), Sema::LookupMemberName);
Douglas Gregor05fcf842010-11-02 20:36:02 +00003631 if (ObjCInterfaceDecl *IFace = Method->getClassInterface()) {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003632 LookupVisibleDecls(IFace, IvarResult, /*QualifiedNameLookup=*/false,
Richard Smithe156254d2013-08-20 20:35:18 +00003633 /*InBaseClass=*/false, Consumer, Visited);
Douglas Gregor05fcf842010-11-02 20:36:02 +00003634 }
Douglas Gregor35b0bac2010-01-03 18:01:57 +00003635 }
3636
3637 // We've already performed all of the name lookup that we need
3638 // to for Objective-C methods; the next context will be the
3639 // outer scope.
3640 break;
3641 }
3642
Douglas Gregor2d435302009-12-30 17:04:44 +00003643 if (Ctx->isFunctionOrMethod())
3644 continue;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003645
3646 LookupVisibleDecls(Ctx, Result, /*QualifiedNameLookup=*/false,
Douglas Gregor09bbc652010-01-14 15:47:35 +00003647 /*InBaseClass=*/false, Consumer, Visited);
Douglas Gregor2d435302009-12-30 17:04:44 +00003648 }
3649 } else if (!S->getParent()) {
3650 // Look into the translation unit scope. We walk through the translation
3651 // unit's declaration context, because the Scope itself won't have all of
3652 // the declarations if we loaded a precompiled header.
3653 // FIXME: We would like the translation unit's Scope object to point to the
3654 // translation unit, so we don't need this special "if" branch. However,
3655 // doing so would force the normal C++ name-lookup code to look into the
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003656 // translation unit decl when the IdentifierInfo chains would suffice.
Douglas Gregor2d435302009-12-30 17:04:44 +00003657 // Once we fix that problem (which is part of a more general "don't look
Douglas Gregor712dcfe2010-01-07 00:31:29 +00003658 // in DeclContexts unless we have to" optimization), we can eliminate this.
Douglas Gregor2d435302009-12-30 17:04:44 +00003659 Entity = Result.getSema().Context.getTranslationUnitDecl();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003660 LookupVisibleDecls(Entity, Result, /*QualifiedNameLookup=*/false,
Douglas Gregor09bbc652010-01-14 15:47:35 +00003661 /*InBaseClass=*/false, Consumer, Visited);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003662 }
3663
Douglas Gregor2d435302009-12-30 17:04:44 +00003664 if (Entity) {
3665 // Lookup visible declarations in any namespaces found by using
3666 // directives.
Benjamin Kramerb4ef6682015-02-06 17:25:10 +00003667 for (const UnqualUsingEntry &UUE : UDirs.getNamespacesFor(Entity))
3668 LookupVisibleDecls(const_cast<DeclContext *>(UUE.getNominatedNamespace()),
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003669 Result, /*QualifiedNameLookup=*/false,
Douglas Gregor09bbc652010-01-14 15:47:35 +00003670 /*InBaseClass=*/false, Consumer, Visited);
Douglas Gregor2d435302009-12-30 17:04:44 +00003671 }
3672
3673 // Lookup names in the parent scope.
3674 ShadowContextRAII Shadow(Visited);
3675 LookupVisibleDecls(S->getParent(), Result, UDirs, Consumer, Visited);
3676}
3677
3678void Sema::LookupVisibleDecls(Scope *S, LookupNameKind Kind,
Douglas Gregor39982192010-08-15 06:18:01 +00003679 VisibleDeclConsumer &Consumer,
3680 bool IncludeGlobalScope) {
Douglas Gregor2d435302009-12-30 17:04:44 +00003681 // Determine the set of using directives available during
3682 // unqualified name lookup.
3683 Scope *Initial = S;
3684 UnqualUsingDirectiveSet UDirs;
David Blaikiebbafb8a2012-03-11 07:00:24 +00003685 if (getLangOpts().CPlusPlus) {
Douglas Gregor2d435302009-12-30 17:04:44 +00003686 // Find the first namespace or translation-unit scope.
3687 while (S && !isNamespaceOrTranslationUnitScope(S))
3688 S = S->getParent();
3689
3690 UDirs.visitScopeChain(Initial, S);
3691 }
3692 UDirs.done();
3693
3694 // Look for visible declarations.
3695 LookupResult Result(*this, DeclarationName(), SourceLocation(), Kind);
Richard Smithe156254d2013-08-20 20:35:18 +00003696 Result.setAllowHidden(Consumer.includeHiddenDecls());
Douglas Gregor2d435302009-12-30 17:04:44 +00003697 VisibleDeclsRecord Visited;
Douglas Gregor39982192010-08-15 06:18:01 +00003698 if (!IncludeGlobalScope)
3699 Visited.visitedContext(Context.getTranslationUnitDecl());
Douglas Gregor2d435302009-12-30 17:04:44 +00003700 ShadowContextRAII Shadow(Visited);
3701 ::LookupVisibleDecls(Initial, Result, UDirs, Consumer, Visited);
3702}
3703
3704void Sema::LookupVisibleDecls(DeclContext *Ctx, LookupNameKind Kind,
Douglas Gregor39982192010-08-15 06:18:01 +00003705 VisibleDeclConsumer &Consumer,
3706 bool IncludeGlobalScope) {
Douglas Gregor2d435302009-12-30 17:04:44 +00003707 LookupResult Result(*this, DeclarationName(), SourceLocation(), Kind);
Richard Smithe156254d2013-08-20 20:35:18 +00003708 Result.setAllowHidden(Consumer.includeHiddenDecls());
Douglas Gregor2d435302009-12-30 17:04:44 +00003709 VisibleDeclsRecord Visited;
Douglas Gregor39982192010-08-15 06:18:01 +00003710 if (!IncludeGlobalScope)
3711 Visited.visitedContext(Context.getTranslationUnitDecl());
Douglas Gregor2d435302009-12-30 17:04:44 +00003712 ShadowContextRAII Shadow(Visited);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003713 ::LookupVisibleDecls(Ctx, Result, /*QualifiedNameLookup=*/true,
Douglas Gregor09bbc652010-01-14 15:47:35 +00003714 /*InBaseClass=*/false, Consumer, Visited);
Douglas Gregor2d435302009-12-30 17:04:44 +00003715}
3716
Chris Lattner43e7f312011-02-18 02:08:43 +00003717/// LookupOrCreateLabel - Do a name lookup of a label with the specified name.
Abramo Bagnara1c3af962011-03-05 18:21:20 +00003718/// If GnuLabelLoc is a valid source location, then this is a definition
3719/// of an __label__ label name, otherwise it is a normal label definition
3720/// or use.
Chris Lattner43e7f312011-02-18 02:08:43 +00003721LabelDecl *Sema::LookupOrCreateLabel(IdentifierInfo *II, SourceLocation Loc,
Abramo Bagnara1c3af962011-03-05 18:21:20 +00003722 SourceLocation GnuLabelLoc) {
Chris Lattnerebb5c6c2011-02-18 01:27:55 +00003723 // Do a lookup to see if we have a label with this name already.
Craig Topperc3ec1492014-05-26 06:22:03 +00003724 NamedDecl *Res = nullptr;
Abramo Bagnara1c3af962011-03-05 18:21:20 +00003725
3726 if (GnuLabelLoc.isValid()) {
3727 // Local label definitions always shadow existing labels.
3728 Res = LabelDecl::Create(Context, CurContext, Loc, II, GnuLabelLoc);
3729 Scope *S = CurScope;
3730 PushOnScopeChains(Res, S, true);
3731 return cast<LabelDecl>(Res);
3732 }
3733
3734 // Not a GNU local label.
3735 Res = LookupSingleName(CurScope, II, Loc, LookupLabel, NotForRedeclaration);
3736 // If we found a label, check to see if it is in the same context as us.
3737 // When in a Block, we don't want to reuse a label in an enclosing function.
Chris Lattnerebb5c6c2011-02-18 01:27:55 +00003738 if (Res && Res->getDeclContext() != CurContext)
Craig Topperc3ec1492014-05-26 06:22:03 +00003739 Res = nullptr;
3740 if (!Res) {
Chris Lattnerebb5c6c2011-02-18 01:27:55 +00003741 // If not forward referenced or defined already, create the backing decl.
Abramo Bagnara1c3af962011-03-05 18:21:20 +00003742 Res = LabelDecl::Create(Context, CurContext, Loc, II);
3743 Scope *S = CurScope->getFnParent();
Chris Lattner9ba479b2011-02-18 21:16:39 +00003744 assert(S && "Not in a function?");
3745 PushOnScopeChains(Res, S, true);
Chris Lattnerebb5c6c2011-02-18 01:27:55 +00003746 }
Chris Lattnerebb5c6c2011-02-18 01:27:55 +00003747 return cast<LabelDecl>(Res);
3748}
3749
3750//===----------------------------------------------------------------------===//
Douglas Gregor2d435302009-12-30 17:04:44 +00003751// Typo correction
Chris Lattnerebb5c6c2011-02-18 01:27:55 +00003752//===----------------------------------------------------------------------===//
Douglas Gregor2d435302009-12-30 17:04:44 +00003753
Kaelyn Takata0fc75192014-06-11 18:06:56 +00003754static bool isCandidateViable(CorrectionCandidateCallback &CCC,
3755 TypoCorrection &Candidate) {
3756 Candidate.setCallbackDistance(CCC.RankCandidate(Candidate));
3757 return Candidate.getEditDistance(false) != TypoCorrection::InvalidDistance;
3758}
3759
3760static void LookupPotentialTypoResult(Sema &SemaRef,
3761 LookupResult &Res,
3762 IdentifierInfo *Name,
3763 Scope *S, CXXScopeSpec *SS,
3764 DeclContext *MemberContext,
3765 bool EnteringContext,
3766 bool isObjCIvarLookup,
3767 bool FindHidden);
3768
Kaelyn Takata9ab7fb62014-10-27 18:07:40 +00003769/// \brief Check whether the declarations found for a typo correction are
3770/// visible, and if none of them are, convert the correction to an 'import
3771/// a module' correction.
3772static void checkCorrectionVisibility(Sema &SemaRef, TypoCorrection &TC) {
3773 if (TC.begin() == TC.end())
3774 return;
3775
3776 TypoCorrection::decl_iterator DI = TC.begin(), DE = TC.end();
3777
3778 for (/**/; DI != DE; ++DI)
3779 if (!LookupResult::isVisible(SemaRef, *DI))
3780 break;
3781 // Nothing to do if all decls are visible.
3782 if (DI == DE)
3783 return;
3784
3785 llvm::SmallVector<NamedDecl*, 4> NewDecls(TC.begin(), DI);
3786 bool AnyVisibleDecls = !NewDecls.empty();
3787
3788 for (/**/; DI != DE; ++DI) {
3789 NamedDecl *VisibleDecl = *DI;
3790 if (!LookupResult::isVisible(SemaRef, *DI))
3791 VisibleDecl = findAcceptableDecl(SemaRef, *DI);
3792
3793 if (VisibleDecl) {
3794 if (!AnyVisibleDecls) {
3795 // Found a visible decl, discard all hidden ones.
3796 AnyVisibleDecls = true;
3797 NewDecls.clear();
3798 }
3799 NewDecls.push_back(VisibleDecl);
3800 } else if (!AnyVisibleDecls && !(*DI)->isModulePrivate())
3801 NewDecls.push_back(*DI);
3802 }
3803
3804 if (NewDecls.empty())
3805 TC = TypoCorrection();
3806 else {
3807 TC.setCorrectionDecls(NewDecls);
3808 TC.setRequiresImport(!AnyVisibleDecls);
3809 }
3810}
3811
Kaelyn Takata0fc75192014-06-11 18:06:56 +00003812// Fill the supplied vector with the IdentifierInfo pointers for each piece of
3813// the given NestedNameSpecifier (i.e. given a NestedNameSpecifier "foo::bar::",
3814// fill the vector with the IdentifierInfo pointers for "foo" and "bar").
3815static void getNestedNameSpecifierIdentifiers(
3816 NestedNameSpecifier *NNS,
3817 SmallVectorImpl<const IdentifierInfo*> &Identifiers) {
3818 if (NestedNameSpecifier *Prefix = NNS->getPrefix())
3819 getNestedNameSpecifierIdentifiers(Prefix, Identifiers);
3820 else
3821 Identifiers.clear();
3822
3823 const IdentifierInfo *II = nullptr;
3824
3825 switch (NNS->getKind()) {
3826 case NestedNameSpecifier::Identifier:
3827 II = NNS->getAsIdentifier();
3828 break;
3829
3830 case NestedNameSpecifier::Namespace:
3831 if (NNS->getAsNamespace()->isAnonymousNamespace())
3832 return;
3833 II = NNS->getAsNamespace()->getIdentifier();
3834 break;
3835
3836 case NestedNameSpecifier::NamespaceAlias:
3837 II = NNS->getAsNamespaceAlias()->getIdentifier();
3838 break;
3839
3840 case NestedNameSpecifier::TypeSpecWithTemplate:
3841 case NestedNameSpecifier::TypeSpec:
3842 II = QualType(NNS->getAsType(), 0).getBaseTypeIdentifier();
3843 break;
3844
3845 case NestedNameSpecifier::Global:
Nikola Smiljanic67860242014-09-26 00:28:20 +00003846 case NestedNameSpecifier::Super:
Kaelyn Takata0fc75192014-06-11 18:06:56 +00003847 return;
3848 }
3849
3850 if (II)
3851 Identifiers.push_back(II);
3852}
3853
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003854void TypoCorrectionConsumer::FoundDecl(NamedDecl *ND, NamedDecl *Hiding,
Erik Verbruggen2e657ff2011-10-06 07:27:49 +00003855 DeclContext *Ctx, bool InBaseClass) {
Douglas Gregor2d435302009-12-30 17:04:44 +00003856 // Don't consider hidden names for typo correction.
3857 if (Hiding)
3858 return;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003859
Douglas Gregor2d435302009-12-30 17:04:44 +00003860 // Only consider entities with identifiers for names, ignoring
3861 // special names (constructors, overloaded operators, selectors,
3862 // etc.).
3863 IdentifierInfo *Name = ND->getIdentifier();
3864 if (!Name)
3865 return;
3866
Richard Smithe156254d2013-08-20 20:35:18 +00003867 // Only consider visible declarations and declarations from modules with
3868 // names that exactly match.
Kaelyn Takata68fdd592014-06-11 18:07:01 +00003869 if (!LookupResult::isVisible(SemaRef, ND) && Name != Typo &&
Richard Smithe156254d2013-08-20 20:35:18 +00003870 !findAcceptableDecl(SemaRef, ND))
3871 return;
3872
Douglas Gregor57756ea2010-10-14 22:11:03 +00003873 FoundName(Name->getName());
3874}
3875
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003876void TypoCorrectionConsumer::FoundName(StringRef Name) {
Kaelyn Uhrain653ff242013-10-02 18:26:35 +00003877 // Compute the edit distance between the typo and the name of this
3878 // entity, and add the identifier to the list of results.
Craig Topperc3ec1492014-05-26 06:22:03 +00003879 addName(Name, nullptr);
Kaelyn Uhrain653ff242013-10-02 18:26:35 +00003880}
3881
3882void TypoCorrectionConsumer::addKeywordResult(StringRef Keyword) {
3883 // Compute the edit distance between the typo and this keyword,
3884 // and add the keyword to the list of results.
Craig Topperc3ec1492014-05-26 06:22:03 +00003885 addName(Keyword, nullptr, nullptr, true);
Kaelyn Uhrain653ff242013-10-02 18:26:35 +00003886}
3887
3888void TypoCorrectionConsumer::addName(StringRef Name, NamedDecl *ND,
3889 NestedNameSpecifier *NNS, bool isKeyword) {
Douglas Gregor93910a52010-10-19 19:39:10 +00003890 // Use a simple length-based heuristic to determine the minimum possible
3891 // edit distance. If the minimum isn't good enough, bail out early.
Kaelyn Takata68fdd592014-06-11 18:07:01 +00003892 StringRef TypoStr = Typo->getName();
3893 unsigned MinED = abs((int)Name.size() - (int)TypoStr.size());
3894 if (MinED && TypoStr.size() / MinED < 3)
Douglas Gregor93910a52010-10-19 19:39:10 +00003895 return;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003896
Douglas Gregorc1fb15e2010-10-19 22:14:33 +00003897 // Compute an upper bound on the allowable edit distance, so that the
3898 // edit-distance algorithm can short-circuit.
Kaelyn Takata68fdd592014-06-11 18:07:01 +00003899 unsigned UpperBound = (TypoStr.size() + 2) / 3 + 1;
3900 unsigned ED = TypoStr.edit_distance(Name, true, UpperBound);
Kaelyn Uhrain653ff242013-10-02 18:26:35 +00003901 if (ED >= UpperBound) return;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00003902
Kaelyn Uhrain653ff242013-10-02 18:26:35 +00003903 TypoCorrection TC(&SemaRef.Context.Idents.get(Name), ND, NNS, ED);
Kaelyn Uhrainacbdc572011-08-03 20:36:05 +00003904 if (isKeyword) TC.makeKeyword();
Kaelyn Takata0a313022014-11-20 22:06:26 +00003905 TC.setCorrectionRange(nullptr, Result.getLookupNameInfo());
Kaelyn Uhrainacbdc572011-08-03 20:36:05 +00003906 addCorrection(TC);
Douglas Gregorc2fa1692011-06-28 16:20:02 +00003907}
3908
Kaelyn Takatad2287c32014-10-27 18:07:13 +00003909static const unsigned MaxTypoDistanceResultSets = 5;
3910
Douglas Gregorc2fa1692011-06-28 16:20:02 +00003911void TypoCorrectionConsumer::addCorrection(TypoCorrection Correction) {
Kaelyn Takata68fdd592014-06-11 18:07:01 +00003912 StringRef TypoStr = Typo->getName();
Chris Lattner0e62c1c2011-07-23 10:55:15 +00003913 StringRef Name = Correction.getCorrectionAsIdentifierInfo()->getName();
Kaelyn Takata68fdd592014-06-11 18:07:01 +00003914
3915 // For very short typos, ignore potential corrections that have a different
3916 // base identifier from the typo or which have a normalized edit distance
3917 // longer than the typo itself.
3918 if (TypoStr.size() < 3 &&
3919 (Name != TypoStr || Correction.getEditDistance(true) > TypoStr.size()))
3920 return;
3921
3922 // If the correction is resolved but is not viable, ignore it.
Kaelyn Takata9ab7fb62014-10-27 18:07:40 +00003923 if (Correction.isResolved()) {
3924 checkCorrectionVisibility(SemaRef, Correction);
3925 if (!Correction || !isCandidateViable(*CorrectionValidator, Correction))
3926 return;
3927 }
Kaelyn Takata68fdd592014-06-11 18:07:01 +00003928
Kaelyn Uhrainba896f12012-06-01 18:11:16 +00003929 TypoResultList &CList =
3930 CorrectionResults[Correction.getEditDistance(false)][Name];
Chandler Carruth7d85c9b2011-06-28 22:48:40 +00003931
Kaelyn Uhrainba896f12012-06-01 18:11:16 +00003932 if (!CList.empty() && !CList.back().isResolved())
3933 CList.pop_back();
3934 if (NamedDecl *NewND = Correction.getCorrectionDecl()) {
3935 std::string CorrectionStr = Correction.getAsString(SemaRef.getLangOpts());
3936 for (TypoResultList::iterator RI = CList.begin(), RIEnd = CList.end();
3937 RI != RIEnd; ++RI) {
3938 // If the Correction refers to a decl already in the result list,
3939 // replace the existing result if the string representation of Correction
3940 // comes before the current result alphabetically, then stop as there is
3941 // nothing more to be done to add Correction to the candidate set.
3942 if (RI->getCorrectionDecl() == NewND) {
3943 if (CorrectionStr < RI->getAsString(SemaRef.getLangOpts()))
3944 *RI = Correction;
3945 return;
3946 }
3947 }
3948 }
3949 if (CList.empty() || Correction.isResolved())
3950 CList.push_back(Correction);
Douglas Gregorc2fa1692011-06-28 16:20:02 +00003951
Kaelyn Uhrain34fab552012-05-31 23:32:58 +00003952 while (CorrectionResults.size() > MaxTypoDistanceResultSets)
Kaelyn Takata68fdd592014-06-11 18:07:01 +00003953 CorrectionResults.erase(std::prev(CorrectionResults.end()));
3954}
3955
3956void TypoCorrectionConsumer::addNamespaces(
3957 const llvm::MapVector<NamespaceDecl *, bool> &KnownNamespaces) {
3958 SearchNamespaces = true;
3959
3960 for (auto KNPair : KnownNamespaces)
3961 Namespaces.addNameSpecifier(KNPair.first);
3962
3963 bool SSIsTemplate = false;
3964 if (NestedNameSpecifier *NNS =
3965 (SS && SS->isValid()) ? SS->getScopeRep() : nullptr) {
3966 if (const Type *T = NNS->getAsType())
3967 SSIsTemplate = T->getTypeClass() == Type::TemplateSpecialization;
3968 }
Richard Smith2a40fb72015-11-18 01:19:02 +00003969 // Do not transform this into an iterator-based loop. The loop body can
3970 // trigger the creation of further types (through lazy deserialization) and
3971 // invalide iterators into this list.
3972 auto &Types = SemaRef.getASTContext().getTypes();
3973 for (unsigned I = 0; I != Types.size(); ++I) {
3974 const auto *TI = Types[I];
Kaelyn Takata68fdd592014-06-11 18:07:01 +00003975 if (CXXRecordDecl *CD = TI->getAsCXXRecordDecl()) {
3976 CD = CD->getCanonicalDecl();
3977 if (!CD->isDependentType() && !CD->isAnonymousStructOrUnion() &&
3978 !CD->isUnion() && CD->getIdentifier() &&
3979 (SSIsTemplate || !isa<ClassTemplateSpecializationDecl>(CD)) &&
3980 (CD->isBeingDefined() || CD->isCompleteDefinition()))
3981 Namespaces.addNameSpecifier(CD);
3982 }
3983 }
3984}
3985
Kaelyn Takata0d6a3ed2014-10-27 18:07:34 +00003986const TypoCorrection &TypoCorrectionConsumer::getNextCorrection() {
3987 if (++CurrentTCIndex < ValidatedCorrections.size())
3988 return ValidatedCorrections[CurrentTCIndex];
3989
3990 CurrentTCIndex = ValidatedCorrections.size();
Kaelyn Takata68fdd592014-06-11 18:07:01 +00003991 while (!CorrectionResults.empty()) {
3992 auto DI = CorrectionResults.begin();
3993 if (DI->second.empty()) {
3994 CorrectionResults.erase(DI);
3995 continue;
3996 }
3997
3998 auto RI = DI->second.begin();
3999 if (RI->second.empty()) {
4000 DI->second.erase(RI);
4001 performQualifiedLookups();
4002 continue;
4003 }
4004
4005 TypoCorrection TC = RI->second.pop_back_val();
Kaelyn Takata9ab7fb62014-10-27 18:07:40 +00004006 if (TC.isResolved() || TC.requiresImport() || resolveCorrection(TC)) {
Kaelyn Takata0d6a3ed2014-10-27 18:07:34 +00004007 ValidatedCorrections.push_back(TC);
4008 return ValidatedCorrections[CurrentTCIndex];
4009 }
Kaelyn Takata68fdd592014-06-11 18:07:01 +00004010 }
Kaelyn Takata0d6a3ed2014-10-27 18:07:34 +00004011 return ValidatedCorrections[0]; // The empty correction.
Kaelyn Takata68fdd592014-06-11 18:07:01 +00004012}
4013
4014bool TypoCorrectionConsumer::resolveCorrection(TypoCorrection &Candidate) {
4015 IdentifierInfo *Name = Candidate.getCorrectionAsIdentifierInfo();
4016 DeclContext *TempMemberContext = MemberContext;
Kaelyn Takata6c759512014-10-27 18:07:37 +00004017 CXXScopeSpec *TempSS = SS.get();
Kaelyn Takata68fdd592014-06-11 18:07:01 +00004018retry_lookup:
4019 LookupPotentialTypoResult(SemaRef, Result, Name, S, TempSS, TempMemberContext,
4020 EnteringContext,
Kaelyn Takata89c881b2014-10-27 18:07:29 +00004021 CorrectionValidator->IsObjCIvarLookup,
Kaelyn Takata68fdd592014-06-11 18:07:01 +00004022 Name == Typo && !Candidate.WillReplaceSpecifier());
4023 switch (Result.getResultKind()) {
4024 case LookupResult::NotFound:
4025 case LookupResult::NotFoundInCurrentInstantiation:
4026 case LookupResult::FoundUnresolvedValue:
4027 if (TempSS) {
4028 // Immediately retry the lookup without the given CXXScopeSpec
4029 TempSS = nullptr;
4030 Candidate.WillReplaceSpecifier(true);
4031 goto retry_lookup;
4032 }
4033 if (TempMemberContext) {
4034 if (SS && !TempSS)
Kaelyn Takata6c759512014-10-27 18:07:37 +00004035 TempSS = SS.get();
Kaelyn Takata68fdd592014-06-11 18:07:01 +00004036 TempMemberContext = nullptr;
4037 goto retry_lookup;
4038 }
4039 if (SearchNamespaces)
4040 QualifiedResults.push_back(Candidate);
4041 break;
4042
4043 case LookupResult::Ambiguous:
4044 // We don't deal with ambiguities.
4045 break;
4046
4047 case LookupResult::Found:
4048 case LookupResult::FoundOverloaded:
4049 // Store all of the Decls for overloaded symbols
4050 for (auto *TRD : Result)
4051 Candidate.addCorrectionDecl(TRD);
Kaelyn Takata9ab7fb62014-10-27 18:07:40 +00004052 checkCorrectionVisibility(SemaRef, Candidate);
Kaelyn Takata89c881b2014-10-27 18:07:29 +00004053 if (!isCandidateViable(*CorrectionValidator, Candidate)) {
Kaelyn Takata68fdd592014-06-11 18:07:01 +00004054 if (SearchNamespaces)
4055 QualifiedResults.push_back(Candidate);
4056 break;
4057 }
Kaelyn Takata20deb1d2015-01-28 00:46:09 +00004058 Candidate.setCorrectionRange(SS.get(), Result.getLookupNameInfo());
Kaelyn Takata68fdd592014-06-11 18:07:01 +00004059 return true;
4060 }
4061 return false;
4062}
4063
4064void TypoCorrectionConsumer::performQualifiedLookups() {
4065 unsigned TypoLen = Typo->getName().size();
Benjamin Kramer2e018ef2016-05-27 13:36:58 +00004066 for (const TypoCorrection &QR : QualifiedResults) {
4067 for (const auto &NSI : Namespaces) {
Kaelyn Takata68fdd592014-06-11 18:07:01 +00004068 DeclContext *Ctx = NSI.DeclCtx;
4069 const Type *NSType = NSI.NameSpecifier->getAsType();
4070
4071 // If the current NestedNameSpecifier refers to a class and the
4072 // current correction candidate is the name of that class, then skip
4073 // it as it is unlikely a qualified version of the class' constructor
4074 // is an appropriate correction.
Hans Wennborgdcfba332015-10-06 23:40:43 +00004075 if (CXXRecordDecl *NSDecl = NSType ? NSType->getAsCXXRecordDecl() :
4076 nullptr) {
Kaelyn Takata68fdd592014-06-11 18:07:01 +00004077 if (NSDecl->getIdentifier() == QR.getCorrectionAsIdentifierInfo())
4078 continue;
4079 }
4080
4081 TypoCorrection TC(QR);
4082 TC.ClearCorrectionDecls();
4083 TC.setCorrectionSpecifier(NSI.NameSpecifier);
4084 TC.setQualifierDistance(NSI.EditDistance);
4085 TC.setCallbackDistance(0); // Reset the callback distance
4086
4087 // If the current correction candidate and namespace combination are
4088 // too far away from the original typo based on the normalized edit
4089 // distance, then skip performing a qualified name lookup.
4090 unsigned TmpED = TC.getEditDistance(true);
4091 if (QR.getCorrectionAsIdentifierInfo() != Typo && TmpED &&
4092 TypoLen / TmpED < 3)
4093 continue;
4094
4095 Result.clear();
4096 Result.setLookupName(QR.getCorrectionAsIdentifierInfo());
4097 if (!SemaRef.LookupQualifiedName(Result, Ctx))
4098 continue;
4099
4100 // Any corrections added below will be validated in subsequent
4101 // iterations of the main while() loop over the Consumer's contents.
4102 switch (Result.getResultKind()) {
4103 case LookupResult::Found:
4104 case LookupResult::FoundOverloaded: {
4105 if (SS && SS->isValid()) {
4106 std::string NewQualified = TC.getAsString(SemaRef.getLangOpts());
4107 std::string OldQualified;
4108 llvm::raw_string_ostream OldOStream(OldQualified);
4109 SS->getScopeRep()->print(OldOStream, SemaRef.getPrintingPolicy());
4110 OldOStream << Typo->getName();
4111 // If correction candidate would be an identical written qualified
4112 // identifer, then the existing CXXScopeSpec probably included a
4113 // typedef that didn't get accounted for properly.
4114 if (OldOStream.str() == NewQualified)
4115 break;
4116 }
4117 for (LookupResult::iterator TRD = Result.begin(), TRDEnd = Result.end();
4118 TRD != TRDEnd; ++TRD) {
4119 if (SemaRef.CheckMemberAccess(TC.getCorrectionRange().getBegin(),
4120 NSType ? NSType->getAsCXXRecordDecl()
4121 : nullptr,
4122 TRD.getPair()) == Sema::AR_accessible)
4123 TC.addCorrectionDecl(*TRD);
4124 }
Kaelyn Takata0a313022014-11-20 22:06:26 +00004125 if (TC.isResolved()) {
4126 TC.setCorrectionRange(SS.get(), Result.getLookupNameInfo());
Kaelyn Takata68fdd592014-06-11 18:07:01 +00004127 addCorrection(TC);
Kaelyn Takata0a313022014-11-20 22:06:26 +00004128 }
Kaelyn Takata68fdd592014-06-11 18:07:01 +00004129 break;
4130 }
4131 case LookupResult::NotFound:
4132 case LookupResult::NotFoundInCurrentInstantiation:
4133 case LookupResult::Ambiguous:
4134 case LookupResult::FoundUnresolvedValue:
4135 break;
4136 }
4137 }
4138 }
4139 QualifiedResults.clear();
Douglas Gregorc2fa1692011-06-28 16:20:02 +00004140}
4141
Kaelyn Takatacd7c3a92014-06-11 18:33:46 +00004142TypoCorrectionConsumer::NamespaceSpecifierSet::NamespaceSpecifierSet(
4143 ASTContext &Context, DeclContext *CurContext, CXXScopeSpec *CurScopeSpec)
Benjamin Kramer15537272015-03-13 16:10:42 +00004144 : Context(Context), CurContextChain(buildContextChain(CurContext)) {
Kaelyn Takatacd7c3a92014-06-11 18:33:46 +00004145 if (NestedNameSpecifier *NNS =
4146 CurScopeSpec ? CurScopeSpec->getScopeRep() : nullptr) {
4147 llvm::raw_string_ostream SpecifierOStream(CurNameSpecifier);
4148 NNS->print(SpecifierOStream, Context.getPrintingPolicy());
4149
4150 getNestedNameSpecifierIdentifiers(NNS, CurNameSpecifierIdentifiers);
4151 }
4152 // Build the list of identifiers that would be used for an absolute
4153 // (from the global context) NestedNameSpecifier referring to the current
4154 // context.
4155 for (DeclContextList::reverse_iterator C = CurContextChain.rbegin(),
4156 CEnd = CurContextChain.rend();
4157 C != CEnd; ++C) {
4158 if (NamespaceDecl *ND = dyn_cast_or_null<NamespaceDecl>(*C))
4159 CurContextIdentifiers.push_back(ND->getIdentifier());
4160 }
4161
4162 // Add the global context as a NestedNameSpecifier
Hans Wennborg66010132014-06-11 21:24:13 +00004163 SpecifierInfo SI = {cast<DeclContext>(Context.getTranslationUnitDecl()),
4164 NestedNameSpecifier::GlobalSpecifier(Context), 1};
4165 DistanceMap[1].push_back(SI);
Kaelyn Takatacd7c3a92014-06-11 18:33:46 +00004166}
4167
Kaelyn Takata7dcc0e62014-06-11 18:07:08 +00004168auto TypoCorrectionConsumer::NamespaceSpecifierSet::buildContextChain(
4169 DeclContext *Start) -> DeclContextList {
Nick Lewycky0d9b3192013-04-08 21:55:21 +00004170 assert(Start && "Building a context chain from a null context");
Douglas Gregorc2fa1692011-06-28 16:20:02 +00004171 DeclContextList Chain;
Craig Topperc3ec1492014-05-26 06:22:03 +00004172 for (DeclContext *DC = Start->getPrimaryContext(); DC != nullptr;
Douglas Gregorc2fa1692011-06-28 16:20:02 +00004173 DC = DC->getLookupParent()) {
4174 NamespaceDecl *ND = dyn_cast_or_null<NamespaceDecl>(DC);
4175 if (!DC->isInlineNamespace() && !DC->isTransparentContext() &&
4176 !(ND && ND->isAnonymousNamespace()))
4177 Chain.push_back(DC->getPrimaryContext());
4178 }
4179 return Chain;
4180}
4181
Kaelyn Takataa5bdbc82014-06-11 18:07:05 +00004182unsigned
4183TypoCorrectionConsumer::NamespaceSpecifierSet::buildNestedNameSpecifier(
4184 DeclContextList &DeclChain, NestedNameSpecifier *&NNS) {
Kaelyn Uhrainf7b63e32013-10-19 00:04:52 +00004185 unsigned NumSpecifiers = 0;
4186 for (DeclContextList::reverse_iterator C = DeclChain.rbegin(),
4187 CEnd = DeclChain.rend();
4188 C != CEnd; ++C) {
4189 if (NamespaceDecl *ND = dyn_cast_or_null<NamespaceDecl>(*C)) {
4190 NNS = NestedNameSpecifier::Create(Context, NNS, ND);
4191 ++NumSpecifiers;
4192 } else if (RecordDecl *RD = dyn_cast_or_null<RecordDecl>(*C)) {
4193 NNS = NestedNameSpecifier::Create(Context, NNS, RD->isTemplateDecl(),
4194 RD->getTypeForDecl());
4195 ++NumSpecifiers;
4196 }
4197 }
4198 return NumSpecifiers;
4199}
4200
Kaelyn Takataa5bdbc82014-06-11 18:07:05 +00004201void TypoCorrectionConsumer::NamespaceSpecifierSet::addNameSpecifier(
4202 DeclContext *Ctx) {
Craig Topperc3ec1492014-05-26 06:22:03 +00004203 NestedNameSpecifier *NNS = nullptr;
Kaelyn Uhrain95995be2013-09-26 19:10:29 +00004204 unsigned NumSpecifiers = 0;
Kaelyn Takata0fc75192014-06-11 18:06:56 +00004205 DeclContextList NamespaceDeclChain(buildContextChain(Ctx));
Kaelyn Uhrain95995be2013-09-26 19:10:29 +00004206 DeclContextList FullNamespaceDeclChain(NamespaceDeclChain);
4207
4208 // Eliminate common elements from the two DeclContext chains.
4209 for (DeclContextList::reverse_iterator C = CurContextChain.rbegin(),
4210 CEnd = CurContextChain.rend();
4211 C != CEnd && !NamespaceDeclChain.empty() &&
4212 NamespaceDeclChain.back() == *C; ++C) {
4213 NamespaceDeclChain.pop_back();
4214 }
4215
Kaelyn Uhrainf7b63e32013-10-19 00:04:52 +00004216 // Build the NestedNameSpecifier from what is left of the NamespaceDeclChain
Kaelyn Takataa5bdbc82014-06-11 18:07:05 +00004217 NumSpecifiers = buildNestedNameSpecifier(NamespaceDeclChain, NNS);
Kaelyn Uhrainf7b63e32013-10-19 00:04:52 +00004218
Kaelyn Uhrain95995be2013-09-26 19:10:29 +00004219 // Add an explicit leading '::' specifier if needed.
4220 if (NamespaceDeclChain.empty()) {
Kaelyn Uhrainf7b63e32013-10-19 00:04:52 +00004221 // Rebuild the NestedNameSpecifier as a globally-qualified specifier.
Kaelyn Uhrain95995be2013-09-26 19:10:29 +00004222 NNS = NestedNameSpecifier::GlobalSpecifier(Context);
Kaelyn Uhrainf7b63e32013-10-19 00:04:52 +00004223 NumSpecifiers =
Kaelyn Takataa5bdbc82014-06-11 18:07:05 +00004224 buildNestedNameSpecifier(FullNamespaceDeclChain, NNS);
Kaelyn Uhrain653ff242013-10-02 18:26:35 +00004225 } else if (NamedDecl *ND =
4226 dyn_cast_or_null<NamedDecl>(NamespaceDeclChain.back())) {
Kaelyn Uhrain95995be2013-09-26 19:10:29 +00004227 IdentifierInfo *Name = ND->getIdentifier();
Kaelyn Uhrainf7b63e32013-10-19 00:04:52 +00004228 bool SameNameSpecifier = false;
4229 if (std::find(CurNameSpecifierIdentifiers.begin(),
Kaelyn Uhrain95995be2013-09-26 19:10:29 +00004230 CurNameSpecifierIdentifiers.end(),
4231 Name) != CurNameSpecifierIdentifiers.end()) {
Kaelyn Uhrainf7b63e32013-10-19 00:04:52 +00004232 std::string NewNameSpecifier;
4233 llvm::raw_string_ostream SpecifierOStream(NewNameSpecifier);
4234 SmallVector<const IdentifierInfo *, 4> NewNameSpecifierIdentifiers;
4235 getNestedNameSpecifierIdentifiers(NNS, NewNameSpecifierIdentifiers);
4236 NNS->print(SpecifierOStream, Context.getPrintingPolicy());
4237 SpecifierOStream.flush();
4238 SameNameSpecifier = NewNameSpecifier == CurNameSpecifier;
Kaelyn Uhrain95995be2013-09-26 19:10:29 +00004239 }
Kaelyn Uhrainf7b63e32013-10-19 00:04:52 +00004240 if (SameNameSpecifier ||
4241 std::find(CurContextIdentifiers.begin(), CurContextIdentifiers.end(),
4242 Name) != CurContextIdentifiers.end()) {
4243 // Rebuild the NestedNameSpecifier as a globally-qualified specifier.
4244 NNS = NestedNameSpecifier::GlobalSpecifier(Context);
4245 NumSpecifiers =
Kaelyn Takataa5bdbc82014-06-11 18:07:05 +00004246 buildNestedNameSpecifier(FullNamespaceDeclChain, NNS);
Kaelyn Uhrain95995be2013-09-26 19:10:29 +00004247 }
4248 }
4249
4250 // If the built NestedNameSpecifier would be replacing an existing
4251 // NestedNameSpecifier, use the number of component identifiers that
4252 // would need to be changed as the edit distance instead of the number
4253 // of components in the built NestedNameSpecifier.
4254 if (NNS && !CurNameSpecifierIdentifiers.empty()) {
4255 SmallVector<const IdentifierInfo*, 4> NewNameSpecifierIdentifiers;
4256 getNestedNameSpecifierIdentifiers(NNS, NewNameSpecifierIdentifiers);
4257 NumSpecifiers = llvm::ComputeEditDistance(
Craig Topper8c2a2a02014-08-30 16:55:39 +00004258 llvm::makeArrayRef(CurNameSpecifierIdentifiers),
4259 llvm::makeArrayRef(NewNameSpecifierIdentifiers));
Kaelyn Uhrain95995be2013-09-26 19:10:29 +00004260 }
4261
Hans Wennborg66010132014-06-11 21:24:13 +00004262 SpecifierInfo SI = {Ctx, NNS, NumSpecifiers};
4263 DistanceMap[NumSpecifiers].push_back(SI);
Kaelyn Uhrain95995be2013-09-26 19:10:29 +00004264}
4265
Douglas Gregord507d772010-10-20 03:06:34 +00004266/// \brief Perform name lookup for a possible result for typo correction.
4267static void LookupPotentialTypoResult(Sema &SemaRef,
4268 LookupResult &Res,
4269 IdentifierInfo *Name,
4270 Scope *S, CXXScopeSpec *SS,
4271 DeclContext *MemberContext,
4272 bool EnteringContext,
Richard Smithe156254d2013-08-20 20:35:18 +00004273 bool isObjCIvarLookup,
4274 bool FindHidden) {
Douglas Gregord507d772010-10-20 03:06:34 +00004275 Res.suppressDiagnostics();
4276 Res.clear();
4277 Res.setLookupName(Name);
Richard Smithe156254d2013-08-20 20:35:18 +00004278 Res.setAllowHidden(FindHidden);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004279 if (MemberContext) {
Douglas Gregord507d772010-10-20 03:06:34 +00004280 if (ObjCInterfaceDecl *Class = dyn_cast<ObjCInterfaceDecl>(MemberContext)) {
Kaelyn Uhrain2d317ed2012-01-11 19:37:46 +00004281 if (isObjCIvarLookup) {
Douglas Gregord507d772010-10-20 03:06:34 +00004282 if (ObjCIvarDecl *Ivar = Class->lookupInstanceVariable(Name)) {
4283 Res.addDecl(Ivar);
4284 Res.resolveKind();
4285 return;
4286 }
4287 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004288
Manman Ren5b786402016-01-28 18:49:28 +00004289 if (ObjCPropertyDecl *Prop = Class->FindPropertyDeclaration(
4290 Name, ObjCPropertyQueryKind::OBJC_PR_query_instance)) {
Douglas Gregord507d772010-10-20 03:06:34 +00004291 Res.addDecl(Prop);
4292 Res.resolveKind();
4293 return;
4294 }
4295 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004296
Douglas Gregord507d772010-10-20 03:06:34 +00004297 SemaRef.LookupQualifiedName(Res, MemberContext);
4298 return;
4299 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004300
4301 SemaRef.LookupParsedName(Res, S, SS, /*AllowBuiltinCreation=*/false,
Douglas Gregord507d772010-10-20 03:06:34 +00004302 EnteringContext);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004303
Douglas Gregord507d772010-10-20 03:06:34 +00004304 // Fake ivar lookup; this should really be part of
4305 // LookupParsedName.
4306 if (ObjCMethodDecl *Method = SemaRef.getCurMethodDecl()) {
4307 if (Method->isInstanceMethod() && Method->getClassInterface() &&
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004308 (Res.empty() ||
Douglas Gregord507d772010-10-20 03:06:34 +00004309 (Res.isSingleResult() &&
4310 Res.getFoundDecl()->isDefinedOutsideFunctionOrMethod()))) {
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004311 if (ObjCIvarDecl *IV
Douglas Gregord507d772010-10-20 03:06:34 +00004312 = Method->getClassInterface()->lookupInstanceVariable(Name)) {
4313 Res.addDecl(IV);
4314 Res.resolveKind();
4315 }
4316 }
4317 }
4318}
4319
Douglas Gregorc2fa1692011-06-28 16:20:02 +00004320/// \brief Add keywords to the consumer as possible typo corrections.
4321static void AddKeywordsToConsumer(Sema &SemaRef,
4322 TypoCorrectionConsumer &Consumer,
Richard Smithb3a1df02012-06-08 21:35:42 +00004323 Scope *S, CorrectionCandidateCallback &CCC,
4324 bool AfterNestedNameSpecifier) {
4325 if (AfterNestedNameSpecifier) {
4326 // For 'X::', we know exactly which keywords can appear next.
4327 Consumer.addKeywordResult("template");
4328 if (CCC.WantExpressionKeywords)
4329 Consumer.addKeywordResult("operator");
4330 return;
4331 }
4332
Kaelyn Uhrain2d317ed2012-01-11 19:37:46 +00004333 if (CCC.WantObjCSuper)
4334 Consumer.addKeywordResult("super");
Douglas Gregorc2fa1692011-06-28 16:20:02 +00004335
Kaelyn Uhrain2d317ed2012-01-11 19:37:46 +00004336 if (CCC.WantTypeSpecifiers) {
Douglas Gregorc2fa1692011-06-28 16:20:02 +00004337 // Add type-specifier keywords to the set of results.
Craig Topperd6d31ac2013-07-15 08:24:27 +00004338 static const char *const CTypeSpecs[] = {
Douglas Gregorc2fa1692011-06-28 16:20:02 +00004339 "char", "const", "double", "enum", "float", "int", "long", "short",
Douglas Gregor3b22a882011-07-01 21:27:45 +00004340 "signed", "struct", "union", "unsigned", "void", "volatile",
Douglas Gregorc2fa1692011-06-28 16:20:02 +00004341 "_Complex", "_Imaginary",
4342 // storage-specifiers as well
4343 "extern", "inline", "static", "typedef"
4344 };
4345
Craig Toppere5ce8312013-07-15 03:38:40 +00004346 const unsigned NumCTypeSpecs = llvm::array_lengthof(CTypeSpecs);
Douglas Gregorc2fa1692011-06-28 16:20:02 +00004347 for (unsigned I = 0; I != NumCTypeSpecs; ++I)
4348 Consumer.addKeywordResult(CTypeSpecs[I]);
4349
David Blaikiebbafb8a2012-03-11 07:00:24 +00004350 if (SemaRef.getLangOpts().C99)
Douglas Gregorc2fa1692011-06-28 16:20:02 +00004351 Consumer.addKeywordResult("restrict");
David Blaikiebbafb8a2012-03-11 07:00:24 +00004352 if (SemaRef.getLangOpts().Bool || SemaRef.getLangOpts().CPlusPlus)
Douglas Gregorc2fa1692011-06-28 16:20:02 +00004353 Consumer.addKeywordResult("bool");
David Blaikiebbafb8a2012-03-11 07:00:24 +00004354 else if (SemaRef.getLangOpts().C99)
Douglas Gregor3b22a882011-07-01 21:27:45 +00004355 Consumer.addKeywordResult("_Bool");
4356
David Blaikiebbafb8a2012-03-11 07:00:24 +00004357 if (SemaRef.getLangOpts().CPlusPlus) {
Douglas Gregorc2fa1692011-06-28 16:20:02 +00004358 Consumer.addKeywordResult("class");
4359 Consumer.addKeywordResult("typename");
4360 Consumer.addKeywordResult("wchar_t");
4361
Richard Smith2bf7fdb2013-01-02 11:42:31 +00004362 if (SemaRef.getLangOpts().CPlusPlus11) {
Douglas Gregorc2fa1692011-06-28 16:20:02 +00004363 Consumer.addKeywordResult("char16_t");
4364 Consumer.addKeywordResult("char32_t");
4365 Consumer.addKeywordResult("constexpr");
4366 Consumer.addKeywordResult("decltype");
4367 Consumer.addKeywordResult("thread_local");
4368 }
4369 }
4370
David Blaikiebbafb8a2012-03-11 07:00:24 +00004371 if (SemaRef.getLangOpts().GNUMode)
Douglas Gregorc2fa1692011-06-28 16:20:02 +00004372 Consumer.addKeywordResult("typeof");
Kaelyn Takatab04846b2014-07-28 18:14:02 +00004373 } else if (CCC.WantFunctionLikeCasts) {
4374 static const char *const CastableTypeSpecs[] = {
4375 "char", "double", "float", "int", "long", "short",
4376 "signed", "unsigned", "void"
4377 };
4378 for (auto *kw : CastableTypeSpecs)
4379 Consumer.addKeywordResult(kw);
Douglas Gregorc2fa1692011-06-28 16:20:02 +00004380 }
4381
David Blaikiebbafb8a2012-03-11 07:00:24 +00004382 if (CCC.WantCXXNamedCasts && SemaRef.getLangOpts().CPlusPlus) {
Douglas Gregorc2fa1692011-06-28 16:20:02 +00004383 Consumer.addKeywordResult("const_cast");
4384 Consumer.addKeywordResult("dynamic_cast");
4385 Consumer.addKeywordResult("reinterpret_cast");
4386 Consumer.addKeywordResult("static_cast");
4387 }
4388
Kaelyn Uhrain2d317ed2012-01-11 19:37:46 +00004389 if (CCC.WantExpressionKeywords) {
Douglas Gregorc2fa1692011-06-28 16:20:02 +00004390 Consumer.addKeywordResult("sizeof");
David Blaikiebbafb8a2012-03-11 07:00:24 +00004391 if (SemaRef.getLangOpts().Bool || SemaRef.getLangOpts().CPlusPlus) {
Douglas Gregorc2fa1692011-06-28 16:20:02 +00004392 Consumer.addKeywordResult("false");
4393 Consumer.addKeywordResult("true");
4394 }
4395
David Blaikiebbafb8a2012-03-11 07:00:24 +00004396 if (SemaRef.getLangOpts().CPlusPlus) {
Craig Topperd6d31ac2013-07-15 08:24:27 +00004397 static const char *const CXXExprs[] = {
Douglas Gregorc2fa1692011-06-28 16:20:02 +00004398 "delete", "new", "operator", "throw", "typeid"
4399 };
Craig Toppere5ce8312013-07-15 03:38:40 +00004400 const unsigned NumCXXExprs = llvm::array_lengthof(CXXExprs);
Douglas Gregorc2fa1692011-06-28 16:20:02 +00004401 for (unsigned I = 0; I != NumCXXExprs; ++I)
4402 Consumer.addKeywordResult(CXXExprs[I]);
4403
4404 if (isa<CXXMethodDecl>(SemaRef.CurContext) &&
4405 cast<CXXMethodDecl>(SemaRef.CurContext)->isInstance())
4406 Consumer.addKeywordResult("this");
4407
Richard Smith2bf7fdb2013-01-02 11:42:31 +00004408 if (SemaRef.getLangOpts().CPlusPlus11) {
Douglas Gregorc2fa1692011-06-28 16:20:02 +00004409 Consumer.addKeywordResult("alignof");
4410 Consumer.addKeywordResult("nullptr");
4411 }
4412 }
Jordan Rose58d54722012-06-30 21:33:57 +00004413
4414 if (SemaRef.getLangOpts().C11) {
4415 // FIXME: We should not suggest _Alignof if the alignof macro
4416 // is present.
4417 Consumer.addKeywordResult("_Alignof");
4418 }
Douglas Gregorc2fa1692011-06-28 16:20:02 +00004419 }
4420
Kaelyn Uhrain2d317ed2012-01-11 19:37:46 +00004421 if (CCC.WantRemainingKeywords) {
Douglas Gregorc2fa1692011-06-28 16:20:02 +00004422 if (SemaRef.getCurFunctionOrMethodDecl() || SemaRef.getCurBlock()) {
4423 // Statements.
Craig Topperd6d31ac2013-07-15 08:24:27 +00004424 static const char *const CStmts[] = {
Douglas Gregorc2fa1692011-06-28 16:20:02 +00004425 "do", "else", "for", "goto", "if", "return", "switch", "while" };
Craig Toppere5ce8312013-07-15 03:38:40 +00004426 const unsigned NumCStmts = llvm::array_lengthof(CStmts);
Douglas Gregorc2fa1692011-06-28 16:20:02 +00004427 for (unsigned I = 0; I != NumCStmts; ++I)
4428 Consumer.addKeywordResult(CStmts[I]);
4429
David Blaikiebbafb8a2012-03-11 07:00:24 +00004430 if (SemaRef.getLangOpts().CPlusPlus) {
Douglas Gregorc2fa1692011-06-28 16:20:02 +00004431 Consumer.addKeywordResult("catch");
4432 Consumer.addKeywordResult("try");
4433 }
4434
4435 if (S && S->getBreakParent())
4436 Consumer.addKeywordResult("break");
4437
4438 if (S && S->getContinueParent())
4439 Consumer.addKeywordResult("continue");
4440
4441 if (!SemaRef.getCurFunction()->SwitchStack.empty()) {
4442 Consumer.addKeywordResult("case");
4443 Consumer.addKeywordResult("default");
4444 }
4445 } else {
David Blaikiebbafb8a2012-03-11 07:00:24 +00004446 if (SemaRef.getLangOpts().CPlusPlus) {
Douglas Gregorc2fa1692011-06-28 16:20:02 +00004447 Consumer.addKeywordResult("namespace");
4448 Consumer.addKeywordResult("template");
4449 }
4450
4451 if (S && S->isClassScope()) {
4452 Consumer.addKeywordResult("explicit");
4453 Consumer.addKeywordResult("friend");
4454 Consumer.addKeywordResult("mutable");
4455 Consumer.addKeywordResult("private");
4456 Consumer.addKeywordResult("protected");
4457 Consumer.addKeywordResult("public");
4458 Consumer.addKeywordResult("virtual");
4459 }
4460 }
4461
David Blaikiebbafb8a2012-03-11 07:00:24 +00004462 if (SemaRef.getLangOpts().CPlusPlus) {
Douglas Gregorc2fa1692011-06-28 16:20:02 +00004463 Consumer.addKeywordResult("using");
4464
Richard Smith2bf7fdb2013-01-02 11:42:31 +00004465 if (SemaRef.getLangOpts().CPlusPlus11)
Douglas Gregorc2fa1692011-06-28 16:20:02 +00004466 Consumer.addKeywordResult("static_assert");
4467 }
4468 }
4469}
4470
Kaelyn Takata6c759512014-10-27 18:07:37 +00004471std::unique_ptr<TypoCorrectionConsumer> Sema::makeTypoCorrectionConsumer(
4472 const DeclarationNameInfo &TypoName, Sema::LookupNameKind LookupKind,
4473 Scope *S, CXXScopeSpec *SS,
4474 std::unique_ptr<CorrectionCandidateCallback> CCC,
4475 DeclContext *MemberContext, bool EnteringContext,
Nick Lewycky24653262014-12-16 21:39:02 +00004476 const ObjCObjectPointerType *OPT, bool ErrorRecovery) {
Kaelyn Takata6c759512014-10-27 18:07:37 +00004477
4478 if (Diags.hasFatalErrorOccurred() || !getLangOpts().SpellChecking ||
4479 DisableTypoCorrection)
4480 return nullptr;
4481
4482 // In Microsoft mode, don't perform typo correction in a template member
4483 // function dependent context because it interferes with the "lookup into
4484 // dependent bases of class templates" feature.
4485 if (getLangOpts().MSVCCompat && CurContext->isDependentContext() &&
4486 isa<CXXMethodDecl>(CurContext))
4487 return nullptr;
4488
4489 // We only attempt to correct typos for identifiers.
4490 IdentifierInfo *Typo = TypoName.getName().getAsIdentifierInfo();
4491 if (!Typo)
4492 return nullptr;
4493
4494 // If the scope specifier itself was invalid, don't try to correct
4495 // typos.
4496 if (SS && SS->isInvalid())
4497 return nullptr;
4498
4499 // Never try to correct typos during template deduction or
4500 // instantiation.
4501 if (!ActiveTemplateInstantiations.empty())
4502 return nullptr;
4503
4504 // Don't try to correct 'super'.
4505 if (S && S->isInObjcMethodScope() && Typo == getSuperIdentifier())
4506 return nullptr;
4507
4508 // Abort if typo correction already failed for this specific typo.
4509 IdentifierSourceLocations::iterator locs = TypoCorrectionFailures.find(Typo);
4510 if (locs != TypoCorrectionFailures.end() &&
4511 locs->second.count(TypoName.getLoc()))
4512 return nullptr;
4513
4514 // Don't try to correct the identifier "vector" when in AltiVec mode.
4515 // TODO: Figure out why typo correction misbehaves in this case, fix it, and
4516 // remove this workaround.
Ulrich Weigand3c5038a2015-07-30 14:08:36 +00004517 if ((getLangOpts().AltiVec || getLangOpts().ZVector) && Typo->isStr("vector"))
Kaelyn Takata6c759512014-10-27 18:07:37 +00004518 return nullptr;
4519
Nick Lewycky24653262014-12-16 21:39:02 +00004520 // Provide a stop gap for files that are just seriously broken. Trying
4521 // to correct all typos can turn into a HUGE performance penalty, causing
4522 // some files to take minutes to get rejected by the parser.
4523 unsigned Limit = getDiagnostics().getDiagnosticOptions().SpellCheckingLimit;
4524 if (Limit && TyposCorrected >= Limit)
4525 return nullptr;
4526 ++TyposCorrected;
4527
Kaelyn Takata6c759512014-10-27 18:07:37 +00004528 // If we're handling a missing symbol error, using modules, and the
4529 // special search all modules option is used, look for a missing import.
4530 if (ErrorRecovery && getLangOpts().Modules &&
4531 getLangOpts().ModulesSearchAll) {
4532 // The following has the side effect of loading the missing module.
4533 getModuleLoader().lookupMissingImports(Typo->getName(),
4534 TypoName.getLocStart());
4535 }
4536
4537 CorrectionCandidateCallback &CCCRef = *CCC;
4538 auto Consumer = llvm::make_unique<TypoCorrectionConsumer>(
4539 *this, TypoName, LookupKind, S, SS, std::move(CCC), MemberContext,
4540 EnteringContext);
4541
Kaelyn Takata6c759512014-10-27 18:07:37 +00004542 // Perform name lookup to find visible, similarly-named entities.
Nick Lewycky24653262014-12-16 21:39:02 +00004543 bool IsUnqualifiedLookup = false;
Kaelyn Takata6c759512014-10-27 18:07:37 +00004544 DeclContext *QualifiedDC = MemberContext;
4545 if (MemberContext) {
4546 LookupVisibleDecls(MemberContext, LookupKind, *Consumer);
4547
4548 // Look in qualified interfaces.
4549 if (OPT) {
4550 for (auto *I : OPT->quals())
4551 LookupVisibleDecls(I, LookupKind, *Consumer);
4552 }
4553 } else if (SS && SS->isSet()) {
4554 QualifiedDC = computeDeclContext(*SS, EnteringContext);
4555 if (!QualifiedDC)
4556 return nullptr;
4557
Kaelyn Takata6c759512014-10-27 18:07:37 +00004558 LookupVisibleDecls(QualifiedDC, LookupKind, *Consumer);
4559 } else {
4560 IsUnqualifiedLookup = true;
Kaelyn Takata6c759512014-10-27 18:07:37 +00004561 }
4562
4563 // Determine whether we are going to search in the various namespaces for
4564 // corrections.
4565 bool SearchNamespaces
4566 = getLangOpts().CPlusPlus &&
4567 (IsUnqualifiedLookup || (SS && SS->isSet()));
4568
4569 if (IsUnqualifiedLookup || SearchNamespaces) {
4570 // For unqualified lookup, look through all of the names that we have
4571 // seen in this translation unit.
4572 // FIXME: Re-add the ability to skip very unlikely potential corrections.
4573 for (const auto &I : Context.Idents)
4574 Consumer->FoundName(I.getKey());
4575
4576 // Walk through identifiers in external identifier sources.
4577 // FIXME: Re-add the ability to skip very unlikely potential corrections.
4578 if (IdentifierInfoLookup *External
4579 = Context.Idents.getExternalIdentifierLookup()) {
4580 std::unique_ptr<IdentifierIterator> Iter(External->getIdentifiers());
4581 do {
4582 StringRef Name = Iter->Next();
4583 if (Name.empty())
4584 break;
4585
4586 Consumer->FoundName(Name);
4587 } while (true);
4588 }
4589 }
4590
4591 AddKeywordsToConsumer(*this, *Consumer, S, CCCRef, SS && SS->isNotEmpty());
4592
4593 // Build the NestedNameSpecifiers for the KnownNamespaces, if we're going
4594 // to search those namespaces.
4595 if (SearchNamespaces) {
4596 // Load any externally-known namespaces.
4597 if (ExternalSource && !LoadedExternalKnownNamespaces) {
4598 SmallVector<NamespaceDecl *, 4> ExternalKnownNamespaces;
4599 LoadedExternalKnownNamespaces = true;
4600 ExternalSource->ReadKnownNamespaces(ExternalKnownNamespaces);
4601 for (auto *N : ExternalKnownNamespaces)
4602 KnownNamespaces[N] = true;
4603 }
4604
4605 Consumer->addNamespaces(KnownNamespaces);
4606 }
4607
4608 return Consumer;
4609}
4610
Douglas Gregor2d435302009-12-30 17:04:44 +00004611/// \brief Try to "correct" a typo in the source code by finding
4612/// visible declarations whose names are similar to the name that was
4613/// present in the source code.
4614///
Douglas Gregorc2fa1692011-06-28 16:20:02 +00004615/// \param TypoName the \c DeclarationNameInfo structure that contains
4616/// the name that was present in the source code along with its location.
4617///
4618/// \param LookupKind the name-lookup criteria used to search for the name.
Douglas Gregor2d435302009-12-30 17:04:44 +00004619///
4620/// \param S the scope in which name lookup occurs.
4621///
4622/// \param SS the nested-name-specifier that precedes the name we're
4623/// looking for, if present.
4624///
Kaelyn Uhrain2d317ed2012-01-11 19:37:46 +00004625/// \param CCC A CorrectionCandidateCallback object that provides further
4626/// validation of typo correction candidates. It also provides flags for
4627/// determining the set of keywords permitted.
4628///
Douglas Gregoraf2bd472009-12-31 07:42:17 +00004629/// \param MemberContext if non-NULL, the context in which to look for
4630/// a member access expression.
4631///
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004632/// \param EnteringContext whether we're entering the context described by
Douglas Gregor598b08f2009-12-31 05:20:13 +00004633/// the nested-name-specifier SS.
4634///
Douglas Gregor35b0bac2010-01-03 18:01:57 +00004635/// \param OPT when non-NULL, the search for visible declarations will
4636/// also walk the protocols in the qualified interfaces of \p OPT.
4637///
Douglas Gregorc2fa1692011-06-28 16:20:02 +00004638/// \returns a \c TypoCorrection containing the corrected name if the typo
4639/// along with information such as the \c NamedDecl where the corrected name
4640/// was declared, and any additional \c NestedNameSpecifier needed to access
4641/// it (C++ only). The \c TypoCorrection is empty if there is no correction.
4642TypoCorrection Sema::CorrectTypo(const DeclarationNameInfo &TypoName,
4643 Sema::LookupNameKind LookupKind,
4644 Scope *S, CXXScopeSpec *SS,
Kaelyn Takata89c881b2014-10-27 18:07:29 +00004645 std::unique_ptr<CorrectionCandidateCallback> CCC,
John Thompson2255f2c2014-04-23 12:57:01 +00004646 CorrectTypoKind Mode,
Douglas Gregorc2fa1692011-06-28 16:20:02 +00004647 DeclContext *MemberContext,
4648 bool EnteringContext,
Kaelyn Uhrain0e238442013-09-27 19:40:08 +00004649 const ObjCObjectPointerType *OPT,
4650 bool RecordFailure) {
Kaelyn Takata89c881b2014-10-27 18:07:29 +00004651 assert(CCC && "CorrectTypo requires a CorrectionCandidateCallback");
4652
Kaelyn Uhrainf0aabda2013-08-12 19:54:38 +00004653 // Always let the ExternalSource have the first chance at correction, even
4654 // if we would otherwise have given up.
4655 if (ExternalSource) {
4656 if (TypoCorrection Correction = ExternalSource->CorrectTypo(
Kaelyn Takata89c881b2014-10-27 18:07:29 +00004657 TypoName, LookupKind, S, SS, *CCC, MemberContext, EnteringContext, OPT))
Kaelyn Uhrainf0aabda2013-08-12 19:54:38 +00004658 return Correction;
4659 }
4660
Kaelyn Takata6c759512014-10-27 18:07:37 +00004661 // Ugly hack equivalent to CTC == CTC_ObjCMessageReceiver;
4662 // WantObjCSuper is only true for CTC_ObjCMessageReceiver and for
4663 // some instances of CTC_Unknown, while WantRemainingKeywords is true
4664 // for CTC_Unknown but not for CTC_ObjCMessageReceiver.
4665 bool ObjCMessageReceiver = CCC->WantObjCSuper && !CCC->WantRemainingKeywords;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004666
Kaelyn Takata6c759512014-10-27 18:07:37 +00004667 IdentifierInfo *Typo = TypoName.getName().getAsIdentifierInfo();
Kaelyn Takata6c759512014-10-27 18:07:37 +00004668 auto Consumer = makeTypoCorrectionConsumer(
4669 TypoName, LookupKind, S, SS, std::move(CCC), MemberContext,
Nick Lewycky24653262014-12-16 21:39:02 +00004670 EnteringContext, OPT, Mode == CTK_ErrorRecovery);
Douglas Gregor35b0bac2010-01-03 18:01:57 +00004671
Kaelyn Takata6c759512014-10-27 18:07:37 +00004672 if (!Consumer)
4673 return TypoCorrection();
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004674
Douglas Gregor280e1ee2010-04-14 20:04:41 +00004675 // If we haven't found anything, we're done.
Kaelyn Takata6c759512014-10-27 18:07:37 +00004676 if (Consumer->empty())
Nick Lewycky24653262014-12-16 21:39:02 +00004677 return FailedCorrection(Typo, TypoName.getLoc(), RecordFailure);
Douglas Gregor2d435302009-12-30 17:04:44 +00004678
Kaelyn Uhrain493ea632012-06-06 20:54:51 +00004679 // Make sure the best edit distance (prior to adding any namespace qualifiers)
4680 // is not more that about a third of the length of the typo's identifier.
Kaelyn Takata6c759512014-10-27 18:07:37 +00004681 unsigned ED = Consumer->getBestEditDistance(true);
4682 unsigned TypoLen = Typo->getName().size();
Kaelyn Uhrain653ff242013-10-02 18:26:35 +00004683 if (ED > 0 && TypoLen / ED < 3)
Nick Lewycky24653262014-12-16 21:39:02 +00004684 return FailedCorrection(Typo, TypoName.getLoc(), RecordFailure);
Douglas Gregorc2fa1692011-06-28 16:20:02 +00004685
Kaelyn Takata6c759512014-10-27 18:07:37 +00004686 TypoCorrection BestTC = Consumer->getNextCorrection();
4687 TypoCorrection SecondBestTC = Consumer->getNextCorrection();
Kaelyn Takata68fdd592014-06-11 18:07:01 +00004688 if (!BestTC)
Kaelyn Uhrain0e238442013-09-27 19:40:08 +00004689 return FailedCorrection(Typo, TypoName.getLoc(), RecordFailure);
Douglas Gregorc2fa1692011-06-28 16:20:02 +00004690
Kaelyn Takata68fdd592014-06-11 18:07:01 +00004691 ED = BestTC.getEditDistance();
Douglas Gregorc2fa1692011-06-28 16:20:02 +00004692
Kaelyn Takata6c759512014-10-27 18:07:37 +00004693 if (TypoLen >= 3 && ED > 0 && TypoLen / ED < 3) {
Kaelyn Uhraincb7a0402012-01-23 20:18:59 +00004694 // If this was an unqualified lookup and we believe the callback
4695 // object wouldn't have filtered out possible corrections, note
4696 // that no correction was found.
Nick Lewycky24653262014-12-16 21:39:02 +00004697 return FailedCorrection(Typo, TypoName.getLoc(), RecordFailure);
Douglas Gregorc2fa1692011-06-28 16:20:02 +00004698 }
4699
Douglas Gregor0afa7f62010-10-14 20:34:08 +00004700 // If only a single name remains, return that result.
Kaelyn Takata68fdd592014-06-11 18:07:01 +00004701 if (!SecondBestTC ||
4702 SecondBestTC.getEditDistance(false) > BestTC.getEditDistance(false)) {
4703 const TypoCorrection &Result = BestTC;
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004704
Douglas Gregor2a1d72d2010-10-26 17:18:00 +00004705 // Don't correct to a keyword that's the same as the typo; the keyword
4706 // wasn't actually in scope.
Kaelyn Uhrain0e238442013-09-27 19:40:08 +00004707 if (ED == 0 && Result.isKeyword())
4708 return FailedCorrection(Typo, TypoName.getLoc(), RecordFailure);
Douglas Gregorc2fa1692011-06-28 16:20:02 +00004709
David Blaikie04ea41c2012-10-12 20:00:44 +00004710 TypoCorrection TC = Result;
4711 TC.setCorrectionRange(SS, TypoName);
Kaelyn Takataa95ebc62014-06-17 23:47:29 +00004712 checkCorrectionVisibility(*this, TC);
David Blaikie04ea41c2012-10-12 20:00:44 +00004713 return TC;
Kaelyn Takata6c759512014-10-27 18:07:37 +00004714 } else if (SecondBestTC && ObjCMessageReceiver) {
Douglas Gregorc2fa1692011-06-28 16:20:02 +00004715 // Prefer 'super' when we're completing in a message-receiver
4716 // context.
4717
Kaelyn Takata68fdd592014-06-11 18:07:01 +00004718 if (BestTC.getCorrection().getAsString() != "super") {
4719 if (SecondBestTC.getCorrection().getAsString() == "super")
4720 BestTC = SecondBestTC;
Kaelyn Takata6c759512014-10-27 18:07:37 +00004721 else if ((*Consumer)["super"].front().isKeyword())
4722 BestTC = (*Consumer)["super"].front();
Kaelyn Takata68fdd592014-06-11 18:07:01 +00004723 }
Douglas Gregorc2fa1692011-06-28 16:20:02 +00004724 // Don't correct to a keyword that's the same as the typo; the keyword
4725 // wasn't actually in scope.
Kaelyn Takata68fdd592014-06-11 18:07:01 +00004726 if (BestTC.getEditDistance() == 0 ||
4727 BestTC.getCorrection().getAsString() != "super")
Kaelyn Uhrain0e238442013-09-27 19:40:08 +00004728 return FailedCorrection(Typo, TypoName.getLoc(), RecordFailure);
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004729
Kaelyn Takata68fdd592014-06-11 18:07:01 +00004730 BestTC.setCorrectionRange(SS, TypoName);
4731 return BestTC;
Douglas Gregoraf9eb592010-10-15 13:35:25 +00004732 }
NAKAMURA Takumif9cbcc42011-01-27 07:10:08 +00004733
Kaelyn Takata73429fd2014-06-10 21:03:49 +00004734 // Record the failure's location if needed and return an empty correction. If
4735 // this was an unqualified lookup and we believe the callback object did not
4736 // filter out possible corrections, also cache the failure for the typo.
Kaelyn Takataae9e97c2015-01-16 22:11:04 +00004737 return FailedCorrection(Typo, TypoName.getLoc(), RecordFailure && !SecondBestTC);
Douglas Gregorc2fa1692011-06-28 16:20:02 +00004738}
4739
Kaelyn Takata6c759512014-10-27 18:07:37 +00004740/// \brief Try to "correct" a typo in the source code by finding
4741/// visible declarations whose names are similar to the name that was
4742/// present in the source code.
4743///
4744/// \param TypoName the \c DeclarationNameInfo structure that contains
4745/// the name that was present in the source code along with its location.
4746///
4747/// \param LookupKind the name-lookup criteria used to search for the name.
4748///
4749/// \param S the scope in which name lookup occurs.
4750///
4751/// \param SS the nested-name-specifier that precedes the name we're
4752/// looking for, if present.
4753///
4754/// \param CCC A CorrectionCandidateCallback object that provides further
4755/// validation of typo correction candidates. It also provides flags for
4756/// determining the set of keywords permitted.
4757///
4758/// \param TDG A TypoDiagnosticGenerator functor that will be used to print
4759/// diagnostics when the actual typo correction is attempted.
4760///
Kaelyn Takata8363f042014-10-27 18:07:42 +00004761/// \param TRC A TypoRecoveryCallback functor that will be used to build an
4762/// Expr from a typo correction candidate.
4763///
Kaelyn Takata6c759512014-10-27 18:07:37 +00004764/// \param MemberContext if non-NULL, the context in which to look for
4765/// a member access expression.
4766///
4767/// \param EnteringContext whether we're entering the context described by
4768/// the nested-name-specifier SS.
4769///
4770/// \param OPT when non-NULL, the search for visible declarations will
4771/// also walk the protocols in the qualified interfaces of \p OPT.
4772///
4773/// \returns a new \c TypoExpr that will later be replaced in the AST with an
4774/// Expr representing the result of performing typo correction, or nullptr if
4775/// typo correction is not possible. If nullptr is returned, no diagnostics will
4776/// be emitted and it is the responsibility of the caller to emit any that are
4777/// needed.
4778TypoExpr *Sema::CorrectTypoDelayed(
4779 const DeclarationNameInfo &TypoName, Sema::LookupNameKind LookupKind,
4780 Scope *S, CXXScopeSpec *SS,
4781 std::unique_ptr<CorrectionCandidateCallback> CCC,
Kaelyn Takata8363f042014-10-27 18:07:42 +00004782 TypoDiagnosticGenerator TDG, TypoRecoveryCallback TRC, CorrectTypoKind Mode,
Kaelyn Takata6c759512014-10-27 18:07:37 +00004783 DeclContext *MemberContext, bool EnteringContext,
4784 const ObjCObjectPointerType *OPT) {
4785 assert(CCC && "CorrectTypoDelayed requires a CorrectionCandidateCallback");
4786
Kaelyn Takata6c759512014-10-27 18:07:37 +00004787 auto Consumer = makeTypoCorrectionConsumer(
4788 TypoName, LookupKind, S, SS, std::move(CCC), MemberContext,
Kaelyn Takataae9e97c2015-01-16 22:11:04 +00004789 EnteringContext, OPT, Mode == CTK_ErrorRecovery);
Kaelyn Takata6c759512014-10-27 18:07:37 +00004790
Benjamin Kramerb8727332016-05-19 10:46:10 +00004791 // Give the external sema source a chance to correct the typo.
4792 TypoCorrection ExternalTypo;
4793 if (ExternalSource && Consumer) {
4794 ExternalTypo = ExternalSource->CorrectTypo(
Benjamin Kramer97d7a662016-05-19 21:53:33 +00004795 TypoName, LookupKind, S, SS, *Consumer->getCorrectionValidator(),
4796 MemberContext, EnteringContext, OPT);
Benjamin Kramerb8727332016-05-19 10:46:10 +00004797 if (ExternalTypo)
4798 Consumer->addCorrection(ExternalTypo);
4799 }
4800
Kaelyn Takata6c759512014-10-27 18:07:37 +00004801 if (!Consumer || Consumer->empty())
4802 return nullptr;
4803
4804 // Make sure the best edit distance (prior to adding any namespace qualifiers)
4805 // is not more that about a third of the length of the typo's identifier.
4806 unsigned ED = Consumer->getBestEditDistance(true);
4807 IdentifierInfo *Typo = TypoName.getName().getAsIdentifierInfo();
Benjamin Kramerb8727332016-05-19 10:46:10 +00004808 if (!ExternalTypo && ED > 0 && Typo->getName().size() / ED < 3)
Kaelyn Takata6c759512014-10-27 18:07:37 +00004809 return nullptr;
4810
4811 ExprEvalContexts.back().NumTypos++;
Kaelyn Takata8363f042014-10-27 18:07:42 +00004812 return createDelayedTypo(std::move(Consumer), std::move(TDG), std::move(TRC));
Kaelyn Takata6c759512014-10-27 18:07:37 +00004813}
4814
Kaelyn Uhrainacbdc572011-08-03 20:36:05 +00004815void TypoCorrection::addCorrectionDecl(NamedDecl *CDecl) {
4816 if (!CDecl) return;
4817
4818 if (isKeyword())
4819 CorrectionDecls.clear();
4820
Richard Smithde6d6c42015-12-29 19:43:10 +00004821 CorrectionDecls.push_back(CDecl);
Kaelyn Uhrainacbdc572011-08-03 20:36:05 +00004822
4823 if (!CorrectionName)
4824 CorrectionName = CDecl->getDeclName();
4825}
4826
Douglas Gregorc2fa1692011-06-28 16:20:02 +00004827std::string TypoCorrection::getAsString(const LangOptions &LO) const {
4828 if (CorrectionNameSpec) {
4829 std::string tmpBuffer;
4830 llvm::raw_string_ostream PrefixOStream(tmpBuffer);
4831 CorrectionNameSpec->print(PrefixOStream, PrintingPolicy(LO));
David Blaikied4da8722013-05-14 21:04:00 +00004832 PrefixOStream << CorrectionName;
Benjamin Kramer73faad62012-04-14 08:26:28 +00004833 return PrefixOStream.str();
Douglas Gregorc2fa1692011-06-28 16:20:02 +00004834 }
4835
4836 return CorrectionName.getAsString();
Douglas Gregor2d435302009-12-30 17:04:44 +00004837}
Kaelyn Uhrain989b7ca2013-04-03 16:59:49 +00004838
Nico Weberb58e51c2014-11-19 05:21:39 +00004839bool CorrectionCandidateCallback::ValidateCandidate(
4840 const TypoCorrection &candidate) {
Kaelyn Uhrain989b7ca2013-04-03 16:59:49 +00004841 if (!candidate.isResolved())
4842 return true;
4843
4844 if (candidate.isKeyword())
4845 return WantTypeSpecifiers || WantExpressionKeywords || WantCXXNamedCasts ||
4846 WantRemainingKeywords || WantObjCSuper;
4847
Nick Lewycky9ea8efa2014-06-23 22:57:51 +00004848 bool HasNonType = false;
4849 bool HasStaticMethod = false;
4850 bool HasNonStaticMethod = false;
4851 for (Decl *D : candidate) {
4852 if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(D))
4853 D = FTD->getTemplatedDecl();
4854 if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) {
4855 if (Method->isStatic())
4856 HasStaticMethod = true;
4857 else
4858 HasNonStaticMethod = true;
4859 }
4860 if (!isa<TypeDecl>(D))
4861 HasNonType = true;
Kaelyn Uhrain989b7ca2013-04-03 16:59:49 +00004862 }
4863
Nick Lewycky9ea8efa2014-06-23 22:57:51 +00004864 if (IsAddressOfOperand && HasNonStaticMethod && !HasStaticMethod &&
4865 !candidate.getCorrectionSpecifier())
4866 return false;
4867
4868 return WantTypeSpecifiers || HasNonType;
Kaelyn Uhrain989b7ca2013-04-03 16:59:49 +00004869}
Kaelyn Uhrain53e72192013-07-08 23:13:39 +00004870
4871FunctionCallFilterCCC::FunctionCallFilterCCC(Sema &SemaRef, unsigned NumArgs,
Kaelyn Uhrainb4b14752014-02-28 18:12:42 +00004872 bool HasExplicitTemplateArgs,
Kaelyn Takatafb271f02014-04-04 22:16:30 +00004873 MemberExpr *ME)
Kaelyn Uhrainb4b14752014-02-28 18:12:42 +00004874 : NumArgs(NumArgs), HasExplicitTemplateArgs(HasExplicitTemplateArgs),
Kaelyn Takatafb271f02014-04-04 22:16:30 +00004875 CurContext(SemaRef.CurContext), MemberFn(ME) {
Kaelyn Takatab04846b2014-07-28 18:14:02 +00004876 WantTypeSpecifiers = false;
4877 WantFunctionLikeCasts = SemaRef.getLangOpts().CPlusPlus && NumArgs == 1;
Kaelyn Uhrain53e72192013-07-08 23:13:39 +00004878 WantRemainingKeywords = false;
4879}
4880
4881bool FunctionCallFilterCCC::ValidateCandidate(const TypoCorrection &candidate) {
4882 if (!candidate.getCorrectionDecl())
4883 return candidate.isKeyword();
4884
Aaron Ballman1e606f42014-07-15 22:03:49 +00004885 for (auto *C : candidate) {
Craig Topperc3ec1492014-05-26 06:22:03 +00004886 FunctionDecl *FD = nullptr;
Aaron Ballman1e606f42014-07-15 22:03:49 +00004887 NamedDecl *ND = C->getUnderlyingDecl();
Kaelyn Uhrain53e72192013-07-08 23:13:39 +00004888 if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(ND))
4889 FD = FTD->getTemplatedDecl();
4890 if (!HasExplicitTemplateArgs && !FD) {
4891 if (!(FD = dyn_cast<FunctionDecl>(ND)) && isa<ValueDecl>(ND)) {
4892 // If the Decl is neither a function nor a template function,
4893 // determine if it is a pointer or reference to a function. If so,
4894 // check against the number of arguments expected for the pointee.
4895 QualType ValType = cast<ValueDecl>(ND)->getType();
4896 if (ValType->isAnyPointerType() || ValType->isReferenceType())
4897 ValType = ValType->getPointeeType();
4898 if (const FunctionProtoType *FPT = ValType->getAs<FunctionProtoType>())
Alp Toker9cacbab2014-01-20 20:26:09 +00004899 if (FPT->getNumParams() == NumArgs)
Kaelyn Uhrain53e72192013-07-08 23:13:39 +00004900 return true;
4901 }
4902 }
Kaelyn Uhrainb4b14752014-02-28 18:12:42 +00004903
4904 // Skip the current candidate if it is not a FunctionDecl or does not accept
4905 // the current number of arguments.
4906 if (!FD || !(FD->getNumParams() >= NumArgs &&
4907 FD->getMinRequiredArguments() <= NumArgs))
4908 continue;
4909
Kaelyn Takatafb271f02014-04-04 22:16:30 +00004910 // If the current candidate is a non-static C++ method, skip the candidate
4911 // unless the method being corrected--or the current DeclContext, if the
4912 // function being corrected is not a method--is a method in the same class
4913 // or a descendent class of the candidate's parent class.
Kaelyn Uhrainb4b14752014-02-28 18:12:42 +00004914 if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) {
Kaelyn Takatafb271f02014-04-04 22:16:30 +00004915 if (MemberFn || !MD->isStatic()) {
4916 CXXMethodDecl *CurMD =
4917 MemberFn
4918 ? dyn_cast_or_null<CXXMethodDecl>(MemberFn->getMemberDecl())
4919 : dyn_cast_or_null<CXXMethodDecl>(CurContext);
Kaelyn Uhrainb4b14752014-02-28 18:12:42 +00004920 CXXRecordDecl *CurRD =
Craig Topperc3ec1492014-05-26 06:22:03 +00004921 CurMD ? CurMD->getParent()->getCanonicalDecl() : nullptr;
Kaelyn Uhrainb4b14752014-02-28 18:12:42 +00004922 CXXRecordDecl *RD = MD->getParent()->getCanonicalDecl();
4923 if (!CurRD || (CurRD != RD && !CurRD->isDerivedFrom(RD)))
4924 continue;
4925 }
4926 }
4927 return true;
Kaelyn Uhrain53e72192013-07-08 23:13:39 +00004928 }
4929 return false;
4930}
Richard Smithf9b15102013-08-17 00:46:16 +00004931
4932void Sema::diagnoseTypo(const TypoCorrection &Correction,
4933 const PartialDiagnostic &TypoDiag,
4934 bool ErrorRecovery) {
4935 diagnoseTypo(Correction, TypoDiag, PDiag(diag::note_previous_decl),
4936 ErrorRecovery);
4937}
4938
Richard Smithe156254d2013-08-20 20:35:18 +00004939/// Find which declaration we should import to provide the definition of
4940/// the given declaration.
Richard Smith42413142015-05-15 20:05:43 +00004941static NamedDecl *getDefinitionToImport(NamedDecl *D) {
4942 if (VarDecl *VD = dyn_cast<VarDecl>(D))
Richard Smithe156254d2013-08-20 20:35:18 +00004943 return VD->getDefinition();
4944 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D))
Richard Smith42413142015-05-15 20:05:43 +00004945 return FD->isDefined(FD) ? const_cast<FunctionDecl*>(FD) : nullptr;
4946 if (TagDecl *TD = dyn_cast<TagDecl>(D))
Richard Smithe156254d2013-08-20 20:35:18 +00004947 return TD->getDefinition();
Richard Smith42413142015-05-15 20:05:43 +00004948 if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(D))
Richard Smithe156254d2013-08-20 20:35:18 +00004949 return ID->getDefinition();
Richard Smith42413142015-05-15 20:05:43 +00004950 if (ObjCProtocolDecl *PD = dyn_cast<ObjCProtocolDecl>(D))
Richard Smithe156254d2013-08-20 20:35:18 +00004951 return PD->getDefinition();
Richard Smith42413142015-05-15 20:05:43 +00004952 if (TemplateDecl *TD = dyn_cast<TemplateDecl>(D))
Richard Smithe156254d2013-08-20 20:35:18 +00004953 return getDefinitionToImport(TD->getTemplatedDecl());
Craig Topperc3ec1492014-05-26 06:22:03 +00004954 return nullptr;
Richard Smithe156254d2013-08-20 20:35:18 +00004955}
4956
Richard Smithf2b1eb92015-06-15 20:15:48 +00004957void Sema::diagnoseMissingImport(SourceLocation Loc, NamedDecl *Decl,
Richard Smith6739a102016-05-05 00:56:12 +00004958 MissingImportKind MIK, bool Recover) {
Richard Smithf2b1eb92015-06-15 20:15:48 +00004959 assert(!isVisible(Decl) && "missing import for non-hidden decl?");
4960
4961 // Suggest importing a module providing the definition of this entity, if
4962 // possible.
4963 NamedDecl *Def = getDefinitionToImport(Decl);
4964 if (!Def)
4965 Def = Decl;
4966
Richard Smithf2b1eb92015-06-15 20:15:48 +00004967 Module *Owner = getOwningModule(Decl);
4968 assert(Owner && "definition of hidden declaration is not in a module");
4969
Richard Smith35c1df52015-06-17 20:16:32 +00004970 llvm::SmallVector<Module*, 8> OwningModules;
4971 OwningModules.push_back(Owner);
Richard Smithf2b1eb92015-06-15 20:15:48 +00004972 auto Merged = Context.getModulesWithMergedDefinition(Decl);
Richard Smith35c1df52015-06-17 20:16:32 +00004973 OwningModules.insert(OwningModules.end(), Merged.begin(), Merged.end());
4974
Richard Smith6739a102016-05-05 00:56:12 +00004975 diagnoseMissingImport(Loc, Decl, Decl->getLocation(), OwningModules, MIK,
Richard Smith35c1df52015-06-17 20:16:32 +00004976 Recover);
4977}
4978
Richard Smith4eb83932016-04-27 21:57:05 +00004979/// \brief Get a "quoted.h" or <angled.h> include path to use in a diagnostic
4980/// suggesting the addition of a #include of the specified file.
4981static std::string getIncludeStringForHeader(Preprocessor &PP,
4982 const FileEntry *E) {
4983 bool IsSystem;
4984 auto Path =
4985 PP.getHeaderSearchInfo().suggestPathToFileForDiagnostics(E, &IsSystem);
4986 return (IsSystem ? '<' : '"') + Path + (IsSystem ? '>' : '"');
4987}
4988
Richard Smith35c1df52015-06-17 20:16:32 +00004989void Sema::diagnoseMissingImport(SourceLocation UseLoc, NamedDecl *Decl,
4990 SourceLocation DeclLoc,
4991 ArrayRef<Module *> Modules,
4992 MissingImportKind MIK, bool Recover) {
4993 assert(!Modules.empty());
4994
4995 if (Modules.size() > 1) {
Richard Smithf2b1eb92015-06-15 20:15:48 +00004996 std::string ModuleList;
Richard Smithf2b1eb92015-06-15 20:15:48 +00004997 unsigned N = 0;
Richard Smith35c1df52015-06-17 20:16:32 +00004998 for (Module *M : Modules) {
Richard Smithf2b1eb92015-06-15 20:15:48 +00004999 ModuleList += "\n ";
Richard Smith35c1df52015-06-17 20:16:32 +00005000 if (++N == 5 && N != Modules.size()) {
Richard Smithf2b1eb92015-06-15 20:15:48 +00005001 ModuleList += "[...]";
5002 break;
5003 }
5004 ModuleList += M->getFullModuleName();
5005 }
5006
Richard Smith35c1df52015-06-17 20:16:32 +00005007 Diag(UseLoc, diag::err_module_unimported_use_multiple)
5008 << (int)MIK << Decl << ModuleList;
Richard Smith4eb83932016-04-27 21:57:05 +00005009 } else if (const FileEntry *E =
5010 PP.getModuleHeaderToIncludeForDiagnostics(UseLoc, DeclLoc)) {
5011 // The right way to make the declaration visible is to include a header;
5012 // suggest doing so.
5013 //
5014 // FIXME: Find a smart place to suggest inserting a #include, and add
5015 // a FixItHint there.
5016 Diag(UseLoc, diag::err_module_unimported_use_header)
5017 << (int)MIK << Decl << Modules[0]->getFullModuleName()
5018 << getIncludeStringForHeader(PP, E);
Richard Smithf2b1eb92015-06-15 20:15:48 +00005019 } else {
Richard Smithacef17a2016-05-05 02:14:06 +00005020 // FIXME: Add a FixItHint that imports the corresponding module.
Richard Smith35c1df52015-06-17 20:16:32 +00005021 Diag(UseLoc, diag::err_module_unimported_use)
5022 << (int)MIK << Decl << Modules[0]->getFullModuleName();
Richard Smithf2b1eb92015-06-15 20:15:48 +00005023 }
Richard Smith35c1df52015-06-17 20:16:32 +00005024
5025 unsigned DiagID;
5026 switch (MIK) {
5027 case MissingImportKind::Declaration:
5028 DiagID = diag::note_previous_declaration;
5029 break;
5030 case MissingImportKind::Definition:
5031 DiagID = diag::note_previous_definition;
5032 break;
5033 case MissingImportKind::DefaultArgument:
5034 DiagID = diag::note_default_argument_declared_here;
5035 break;
Richard Smith6739a102016-05-05 00:56:12 +00005036 case MissingImportKind::ExplicitSpecialization:
5037 DiagID = diag::note_explicit_specialization_declared_here;
5038 break;
5039 case MissingImportKind::PartialSpecialization:
5040 DiagID = diag::note_partial_specialization_declared_here;
5041 break;
Richard Smith35c1df52015-06-17 20:16:32 +00005042 }
5043 Diag(DeclLoc, DiagID);
Richard Smithf2b1eb92015-06-15 20:15:48 +00005044
5045 // Try to recover by implicitly importing this module.
5046 if (Recover)
Richard Smith35c1df52015-06-17 20:16:32 +00005047 createImplicitModuleImportForErrorRecovery(UseLoc, Modules[0]);
Richard Smithf2b1eb92015-06-15 20:15:48 +00005048}
5049
Richard Smithf9b15102013-08-17 00:46:16 +00005050/// \brief Diagnose a successfully-corrected typo. Separated from the correction
5051/// itself to allow external validation of the result, etc.
5052///
5053/// \param Correction The result of performing typo correction.
5054/// \param TypoDiag The diagnostic to produce. This will have the corrected
5055/// string added to it (and usually also a fixit).
5056/// \param PrevNote A note to use when indicating the location of the entity to
5057/// which we are correcting. Will have the correction string added to it.
5058/// \param ErrorRecovery If \c true (the default), the caller is going to
5059/// recover from the typo as if the corrected string had been typed.
5060/// In this case, \c PDiag must be an error, and we will attach a fixit
5061/// to it.
5062void Sema::diagnoseTypo(const TypoCorrection &Correction,
5063 const PartialDiagnostic &TypoDiag,
5064 const PartialDiagnostic &PrevNote,
5065 bool ErrorRecovery) {
5066 std::string CorrectedStr = Correction.getAsString(getLangOpts());
5067 std::string CorrectedQuotedStr = Correction.getQuoted(getLangOpts());
5068 FixItHint FixTypo = FixItHint::CreateReplacement(
5069 Correction.getCorrectionRange(), CorrectedStr);
5070
Richard Smithe156254d2013-08-20 20:35:18 +00005071 // Maybe we're just missing a module import.
5072 if (Correction.requiresImport()) {
Richard Smithde6d6c42015-12-29 19:43:10 +00005073 NamedDecl *Decl = Correction.getFoundDecl();
Richard Smithe156254d2013-08-20 20:35:18 +00005074 assert(Decl && "import required but no declaration to import");
5075
Richard Smithf2b1eb92015-06-15 20:15:48 +00005076 diagnoseMissingImport(Correction.getCorrectionRange().getBegin(), Decl,
Richard Smith6739a102016-05-05 00:56:12 +00005077 MissingImportKind::Declaration, ErrorRecovery);
Richard Smithe156254d2013-08-20 20:35:18 +00005078 return;
5079 }
5080
Richard Smithf9b15102013-08-17 00:46:16 +00005081 Diag(Correction.getCorrectionRange().getBegin(), TypoDiag)
5082 << CorrectedQuotedStr << (ErrorRecovery ? FixTypo : FixItHint());
5083
5084 NamedDecl *ChosenDecl =
Richard Smithde6d6c42015-12-29 19:43:10 +00005085 Correction.isKeyword() ? nullptr : Correction.getFoundDecl();
Richard Smithf9b15102013-08-17 00:46:16 +00005086 if (PrevNote.getDiagID() && ChosenDecl)
5087 Diag(ChosenDecl->getLocation(), PrevNote)
5088 << CorrectedQuotedStr << (ErrorRecovery ? FixItHint() : FixTypo);
5089}
Kaelyn Takata6c759512014-10-27 18:07:37 +00005090
Kaelyn Takata8363f042014-10-27 18:07:42 +00005091TypoExpr *Sema::createDelayedTypo(std::unique_ptr<TypoCorrectionConsumer> TCC,
5092 TypoDiagnosticGenerator TDG,
5093 TypoRecoveryCallback TRC) {
Kaelyn Takata6c759512014-10-27 18:07:37 +00005094 assert(TCC && "createDelayedTypo requires a valid TypoCorrectionConsumer");
5095 auto TE = new (Context) TypoExpr(Context.DependentTy);
5096 auto &State = DelayedTypos[TE];
5097 State.Consumer = std::move(TCC);
5098 State.DiagHandler = std::move(TDG);
Kaelyn Takata8363f042014-10-27 18:07:42 +00005099 State.RecoveryHandler = std::move(TRC);
Kaelyn Takata6c759512014-10-27 18:07:37 +00005100 return TE;
5101}
5102
5103const Sema::TypoExprState &Sema::getTypoExprState(TypoExpr *TE) const {
5104 auto Entry = DelayedTypos.find(TE);
5105 assert(Entry != DelayedTypos.end() &&
5106 "Failed to get the state for a TypoExpr!");
5107 return Entry->second;
5108}
5109
5110void Sema::clearDelayedTypo(TypoExpr *TE) {
5111 DelayedTypos.erase(TE);
5112}
Richard Smithba3a4f92016-01-12 21:59:26 +00005113
5114void Sema::ActOnPragmaDump(Scope *S, SourceLocation IILoc, IdentifierInfo *II) {
5115 DeclarationNameInfo Name(II, IILoc);
5116 LookupResult R(*this, Name, LookupAnyName, Sema::NotForRedeclaration);
5117 R.suppressDiagnostics();
5118 R.setHideTags(false);
5119 LookupName(R, S);
5120 R.dump();
5121}