Nick Lewycky | 4b81fc87 | 2015-10-18 20:32:12 +0000 | [diff] [blame] | 1 | //===--------------------- SemaLookup.cpp - Name Lookup ------------------===// |
Douglas Gregor | 3407432 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file implements name lookup for C, C++, Objective-C, and |
| 11 | // Objective-C++. |
| 12 | // |
| 13 | //===----------------------------------------------------------------------===// |
Hans Wennborg | dcfba33 | 2015-10-06 23:40:43 +0000 | [diff] [blame] | 14 | |
Douglas Gregor | c3a6ade | 2010-08-12 20:07:10 +0000 | [diff] [blame] | 15 | #include "clang/Sema/Lookup.h" |
Douglas Gregor | 960b5bc | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 16 | #include "clang/AST/ASTContext.h" |
Richard Smith | d9ba224 | 2015-05-07 03:54:19 +0000 | [diff] [blame] | 17 | #include "clang/AST/ASTMutationListener.h" |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 18 | #include "clang/AST/CXXInheritance.h" |
Douglas Gregor | 3407432 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 19 | #include "clang/AST/Decl.h" |
| 20 | #include "clang/AST/DeclCXX.h" |
Nick Lewycky | c392148 | 2012-04-03 21:44:08 +0000 | [diff] [blame] | 21 | #include "clang/AST/DeclLookups.h" |
Douglas Gregor | 3407432 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 22 | #include "clang/AST/DeclObjC.h" |
Douglas Gregor | c9f9b86 | 2009-05-11 19:58:34 +0000 | [diff] [blame] | 23 | #include "clang/AST/DeclTemplate.h" |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 24 | #include "clang/AST/Expr.h" |
Douglas Gregor | be75925 | 2009-07-08 10:57:20 +0000 | [diff] [blame] | 25 | #include "clang/AST/ExprCXX.h" |
Chris Lattner | 15ba949 | 2009-06-14 01:54:56 +0000 | [diff] [blame] | 26 | #include "clang/Basic/Builtins.h" |
Douglas Gregor | 3407432 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 27 | #include "clang/Basic/LangOptions.h" |
Richard Smith | 4241314 | 2015-05-15 20:05:43 +0000 | [diff] [blame] | 28 | #include "clang/Lex/HeaderSearch.h" |
Alp Toker | b6cc592 | 2014-05-03 03:45:55 +0000 | [diff] [blame] | 29 | #include "clang/Lex/ModuleLoader.h" |
Richard Smith | 4caa449 | 2015-05-15 02:34:32 +0000 | [diff] [blame] | 30 | #include "clang/Lex/Preprocessor.h" |
Chandler Carruth | 3a02247 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 31 | #include "clang/Sema/DeclSpec.h" |
Chandler Carruth | 3a02247 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 32 | #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 Gregor | 3407432 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 39 | #include "llvm/ADT/STLExtras.h" |
Chandler Carruth | 3a02247 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 40 | #include "llvm/ADT/SetVector.h" |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 41 | #include "llvm/ADT/SmallPtrSet.h" |
Douglas Gregor | 0afa7f6 | 2010-10-14 20:34:08 +0000 | [diff] [blame] | 42 | #include "llvm/ADT/StringMap.h" |
Chris Lattner | 83cfc7c | 2011-07-18 01:54:02 +0000 | [diff] [blame] | 43 | #include "llvm/ADT/TinyPtrVector.h" |
Kaelyn Uhrain | 5986c3e | 2012-02-15 22:14:18 +0000 | [diff] [blame] | 44 | #include "llvm/ADT/edit_distance.h" |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 45 | #include "llvm/Support/ErrorHandling.h" |
Nick Lewycky | 13668f2 | 2012-04-03 20:26:45 +0000 | [diff] [blame] | 46 | #include <algorithm> |
| 47 | #include <iterator> |
Douglas Gregor | 0afa7f6 | 2010-10-14 20:34:08 +0000 | [diff] [blame] | 48 | #include <limits> |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 49 | #include <list> |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 50 | #include <map> |
Nick Lewycky | 13668f2 | 2012-04-03 20:26:45 +0000 | [diff] [blame] | 51 | #include <set> |
| 52 | #include <utility> |
| 53 | #include <vector> |
Douglas Gregor | 3407432 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 54 | |
| 55 | using namespace clang; |
John McCall | 19c1bfd | 2010-08-25 05:32:35 +0000 | [diff] [blame] | 56 | using namespace sema; |
Douglas Gregor | 3407432 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 57 | |
John McCall | f6c8a4e | 2009-11-10 07:01:13 +0000 | [diff] [blame] | 58 | namespace { |
| 59 | class UnqualUsingEntry { |
| 60 | const DeclContext *Nominated; |
| 61 | const DeclContext *CommonAncestor; |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 62 | |
John McCall | f6c8a4e | 2009-11-10 07:01:13 +0000 | [diff] [blame] | 63 | public: |
| 64 | UnqualUsingEntry(const DeclContext *Nominated, |
| 65 | const DeclContext *CommonAncestor) |
| 66 | : Nominated(Nominated), CommonAncestor(CommonAncestor) { |
| 67 | } |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 68 | |
John McCall | f6c8a4e | 2009-11-10 07:01:13 +0000 | [diff] [blame] | 69 | const DeclContext *getCommonAncestor() const { |
| 70 | return CommonAncestor; |
| 71 | } |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 72 | |
John McCall | f6c8a4e | 2009-11-10 07:01:13 +0000 | [diff] [blame] | 73 | const DeclContext *getNominatedNamespace() const { |
| 74 | return Nominated; |
| 75 | } |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 76 | |
John McCall | f6c8a4e | 2009-11-10 07:01:13 +0000 | [diff] [blame] | 77 | // 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 Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 82 | |
John McCall | f6c8a4e | 2009-11-10 07:01:13 +0000 | [diff] [blame] | 83 | bool operator()(const UnqualUsingEntry &E, const DeclContext *DC) { |
| 84 | return E.getCommonAncestor() < DC; |
| 85 | } |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 86 | |
John McCall | f6c8a4e | 2009-11-10 07:01:13 +0000 | [diff] [blame] | 87 | bool operator()(const DeclContext *DC, const UnqualUsingEntry &E) { |
| 88 | return DC < E.getCommonAncestor(); |
| 89 | } |
| 90 | }; |
| 91 | }; |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 92 | |
John McCall | f6c8a4e | 2009-11-10 07:01:13 +0000 | [diff] [blame] | 93 | /// A collection of using directives, as used by C++ unqualified |
| 94 | /// lookup. |
| 95 | class UnqualUsingDirectiveSet { |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 96 | typedef SmallVector<UnqualUsingEntry, 8> ListTy; |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 97 | |
John McCall | f6c8a4e | 2009-11-10 07:01:13 +0000 | [diff] [blame] | 98 | ListTy list; |
| 99 | llvm::SmallPtrSet<DeclContext*, 8> visited; |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 100 | |
John McCall | f6c8a4e | 2009-11-10 07:01:13 +0000 | [diff] [blame] | 101 | public: |
| 102 | UnqualUsingDirectiveSet() {} |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 103 | |
John McCall | f6c8a4e | 2009-11-10 07:01:13 +0000 | [diff] [blame] | 104 | void visitScopeChain(Scope *S, Scope *InnermostFileScope) { |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 105 | // C++ [namespace.udir]p1: |
John McCall | f6c8a4e | 2009-11-10 07:01:13 +0000 | [diff] [blame] | 106 | // 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 Kremenek | c37877d | 2013-10-08 17:08:03 +0000 | [diff] [blame] | 109 | DeclContext *InnermostFileDC = InnermostFileScope->getEntity(); |
John McCall | f6c8a4e | 2009-11-10 07:01:13 +0000 | [diff] [blame] | 110 | assert(InnermostFileDC && InnermostFileDC->isFileContext()); |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 111 | |
John McCall | f6c8a4e | 2009-11-10 07:01:13 +0000 | [diff] [blame] | 112 | for (; S; S = S->getParent()) { |
Nick Lewycky | 2bd636f | 2012-03-13 04:12:34 +0000 | [diff] [blame] | 113 | // 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 Kremenek | c37877d | 2013-10-08 17:08:03 +0000 | [diff] [blame] | 116 | DeclContext *Ctx = S->getEntity(); |
Nick Lewycky | 2bd636f | 2012-03-13 04:12:34 +0000 | [diff] [blame] | 117 | if (Ctx && Ctx->isFileContext()) { |
| 118 | visit(Ctx, Ctx); |
| 119 | } else if (!Ctx || Ctx->isFunctionOrMethod()) { |
Aaron Ballman | 5df6aa4 | 2014-03-17 17:03:37 +0000 | [diff] [blame] | 120 | for (auto *I : S->using_directives()) |
| 121 | visit(I, InnermostFileDC); |
John McCall | f6c8a4e | 2009-11-10 07:01:13 +0000 | [diff] [blame] | 122 | } |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 123 | } |
| 124 | } |
John McCall | f6c8a4e | 2009-11-10 07:01:13 +0000 | [diff] [blame] | 125 | |
| 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 Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 134 | if (!visited.insert(DC).second) |
John McCall | f6c8a4e | 2009-11-10 07:01:13 +0000 | [diff] [blame] | 135 | 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 Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 145 | if (!visited.insert(NS).second) |
John McCall | f6c8a4e | 2009-11-10 07:01:13 +0000 | [diff] [blame] | 146 | 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 Lewycky | 4b81fc87 | 2015-10-18 20:32:12 +0000 | [diff] [blame] | 156 | SmallVector<DeclContext*, 4> queue; |
John McCall | f6c8a4e | 2009-11-10 07:01:13 +0000 | [diff] [blame] | 157 | while (true) { |
Aaron Ballman | 804a7fb | 2014-03-17 17:14:12 +0000 | [diff] [blame] | 158 | for (auto UD : DC->using_directives()) { |
John McCall | f6c8a4e | 2009-11-10 07:01:13 +0000 | [diff] [blame] | 159 | DeclContext *NS = UD->getNominatedNamespace(); |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 160 | if (visited.insert(NS).second) { |
John McCall | f6c8a4e | 2009-11-10 07:01:13 +0000 | [diff] [blame] | 161 | addUsingDirective(UD, EffectiveDC); |
| 162 | queue.push_back(NS); |
| 163 | } |
| 164 | } |
| 165 | |
| 166 | if (queue.empty()) |
| 167 | return; |
| 168 | |
Robert Wilhelm | 25284cc | 2013-08-23 16:11:15 +0000 | [diff] [blame] | 169 | DC = queue.pop_back_val(); |
John McCall | f6c8a4e | 2009-11-10 07:01:13 +0000 | [diff] [blame] | 170 | } |
| 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 McCall | 9757d03 | 2009-11-10 09:20:04 +0000 | [diff] [blame] | 186 | Common = Common->getPrimaryContext(); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 187 | |
John McCall | f6c8a4e | 2009-11-10 07:01:13 +0000 | [diff] [blame] | 188 | list.push_back(UnqualUsingEntry(UD->getNominatedNamespace(), Common)); |
| 189 | } |
| 190 | |
| 191 | void done() { |
| 192 | std::sort(list.begin(), list.end(), UnqualUsingEntry::Comparator()); |
| 193 | } |
| 194 | |
John McCall | f6c8a4e | 2009-11-10 07:01:13 +0000 | [diff] [blame] | 195 | typedef ListTy::const_iterator const_iterator; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 196 | |
John McCall | f6c8a4e | 2009-11-10 07:01:13 +0000 | [diff] [blame] | 197 | const_iterator begin() const { return list.begin(); } |
| 198 | const_iterator end() const { return list.end(); } |
| 199 | |
Benjamin Kramer | b4ef668 | 2015-02-06 17:25:10 +0000 | [diff] [blame] | 200 | llvm::iterator_range<const_iterator> |
John McCall | f6c8a4e | 2009-11-10 07:01:13 +0000 | [diff] [blame] | 201 | getNamespacesFor(DeclContext *DC) const { |
Benjamin Kramer | b4ef668 | 2015-02-06 17:25:10 +0000 | [diff] [blame] | 202 | return llvm::make_range(std::equal_range(begin(), end(), |
| 203 | DC->getPrimaryContext(), |
| 204 | UnqualUsingEntry::Comparator())); |
John McCall | f6c8a4e | 2009-11-10 07:01:13 +0000 | [diff] [blame] | 205 | } |
| 206 | }; |
Hans Wennborg | dcfba33 | 2015-10-06 23:40:43 +0000 | [diff] [blame] | 207 | } // end anonymous namespace |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 208 | |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 209 | // Retrieve the set of identifier namespaces that correspond to a |
| 210 | // specific kind of name lookup. |
John McCall | ea305ed | 2009-12-18 10:40:03 +0000 | [diff] [blame] | 211 | static inline unsigned getIDNS(Sema::LookupNameKind NameKind, |
| 212 | bool CPlusPlus, |
| 213 | bool Redeclaration) { |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 214 | unsigned IDNS = 0; |
| 215 | switch (NameKind) { |
Fariborz Jahanian | 7f4427f | 2011-07-12 17:16:56 +0000 | [diff] [blame] | 216 | case Sema::LookupObjCImplicitSelfParam: |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 217 | case Sema::LookupOrdinaryName: |
Douglas Gregor | eddf433 | 2009-02-24 20:03:32 +0000 | [diff] [blame] | 218 | case Sema::LookupRedeclarationWithLinkage: |
Richard Smith | 114394f | 2013-08-09 04:35:01 +0000 | [diff] [blame] | 219 | case Sema::LookupLocalFriendName: |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 220 | IDNS = Decl::IDNS_Ordinary; |
John McCall | ea305ed | 2009-12-18 10:40:03 +0000 | [diff] [blame] | 221 | if (CPlusPlus) { |
John McCall | e87beb2 | 2010-04-23 18:46:30 +0000 | [diff] [blame] | 222 | IDNS |= Decl::IDNS_Tag | Decl::IDNS_Member | Decl::IDNS_Namespace; |
Chris Lattner | ebb5c6c | 2011-02-18 01:27:55 +0000 | [diff] [blame] | 223 | if (Redeclaration) |
| 224 | IDNS |= Decl::IDNS_TagFriend | Decl::IDNS_OrdinaryFriend; |
John McCall | ea305ed | 2009-12-18 10:40:03 +0000 | [diff] [blame] | 225 | } |
Richard Smith | 541b38b | 2013-09-20 01:15:31 +0000 | [diff] [blame] | 226 | if (Redeclaration) |
| 227 | IDNS |= Decl::IDNS_LocalExtern; |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 228 | break; |
| 229 | |
John McCall | b9467b6 | 2010-04-24 01:30:58 +0000 | [diff] [blame] | 230 | 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 Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 237 | case Sema::LookupTagName: |
John McCall | e87beb2 | 2010-04-23 18:46:30 +0000 | [diff] [blame] | 238 | 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 Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 251 | break; |
Richard Smith | 83e78f5 | 2014-04-11 01:03:38 +0000 | [diff] [blame] | 252 | |
Chris Lattner | ebb5c6c | 2011-02-18 01:27:55 +0000 | [diff] [blame] | 253 | case Sema::LookupLabel: |
| 254 | IDNS = Decl::IDNS_Label; |
| 255 | break; |
Richard Smith | 83e78f5 | 2014-04-11 01:03:38 +0000 | [diff] [blame] | 256 | |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 257 | case Sema::LookupMemberName: |
| 258 | IDNS = Decl::IDNS_Member; |
| 259 | if (CPlusPlus) |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 260 | IDNS |= Decl::IDNS_Tag | Decl::IDNS_Ordinary; |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 261 | break; |
| 262 | |
| 263 | case Sema::LookupNestedNameSpecifierName: |
John McCall | e87beb2 | 2010-04-23 18:46:30 +0000 | [diff] [blame] | 264 | IDNS = Decl::IDNS_Type | Decl::IDNS_Namespace; |
| 265 | break; |
| 266 | |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 267 | case Sema::LookupNamespaceName: |
John McCall | e87beb2 | 2010-04-23 18:46:30 +0000 | [diff] [blame] | 268 | IDNS = Decl::IDNS_Namespace; |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 269 | break; |
Douglas Gregor | de9f17e | 2009-04-23 23:18:26 +0000 | [diff] [blame] | 270 | |
John McCall | 84d8767 | 2009-12-10 09:41:52 +0000 | [diff] [blame] | 271 | case Sema::LookupUsingDeclName: |
Richard Smith | 83e78f5 | 2014-04-11 01:03:38 +0000 | [diff] [blame] | 272 | 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 McCall | 84d8767 | 2009-12-10 09:41:52 +0000 | [diff] [blame] | 276 | break; |
| 277 | |
Douglas Gregor | 79947a2 | 2009-04-24 00:11:27 +0000 | [diff] [blame] | 278 | case Sema::LookupObjCProtocolName: |
| 279 | IDNS = Decl::IDNS_ObjCProtocol; |
| 280 | break; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 281 | |
Alexey Bataev | 94a4f0c | 2016-03-03 05:21:39 +0000 | [diff] [blame] | 282 | case Sema::LookupOMPReductionName: |
| 283 | IDNS = Decl::IDNS_OMPReduction; |
| 284 | break; |
| 285 | |
Douglas Gregor | 3998219 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 286 | case Sema::LookupAnyName: |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 287 | IDNS = Decl::IDNS_Ordinary | Decl::IDNS_Tag | Decl::IDNS_Member |
Douglas Gregor | 3998219 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 288 | | Decl::IDNS_Using | Decl::IDNS_Namespace | Decl::IDNS_ObjCProtocol |
| 289 | | Decl::IDNS_Type; |
| 290 | break; |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 291 | } |
| 292 | return IDNS; |
| 293 | } |
| 294 | |
John McCall | ea305ed | 2009-12-18 10:40:03 +0000 | [diff] [blame] | 295 | void LookupResult::configure() { |
Kaelyn Takata | fc8c61a | 2014-11-11 23:00:42 +0000 | [diff] [blame] | 296 | IDNS = getIDNS(LookupKind, getSema().getLangOpts().CPlusPlus, |
John McCall | ea305ed | 2009-12-18 10:40:03 +0000 | [diff] [blame] | 297 | isForRedeclaration()); |
Douglas Gregor | bcf0a47 | 2010-03-24 05:07:21 +0000 | [diff] [blame] | 298 | |
Richard Smith | bdd1464 | 2014-02-04 01:14:30 +0000 | [diff] [blame] | 299 | // 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 Takata | fc8c61a | 2014-11-11 23:00:42 +0000 | [diff] [blame] | 307 | getSema().DeclareGlobalNewDelete(); |
Richard Smith | bdd1464 | 2014-02-04 01:14:30 +0000 | [diff] [blame] | 308 | break; |
Douglas Gregor | bcf0a47 | 2010-03-24 05:07:21 +0000 | [diff] [blame] | 309 | |
Richard Smith | bdd1464 | 2014-02-04 01:14:30 +0000 | [diff] [blame] | 310 | default: |
| 311 | break; |
| 312 | } |
Douglas Gregor | 1519766 | 2013-04-03 23:06:26 +0000 | [diff] [blame] | 313 | |
Richard Smith | bdd1464 | 2014-02-04 01:14:30 +0000 | [diff] [blame] | 314 | // 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 Takata | fc8c61a | 2014-11-11 23:00:42 +0000 | [diff] [blame] | 318 | if (!getSema().Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID)) |
Richard Smith | bdd1464 | 2014-02-04 01:14:30 +0000 | [diff] [blame] | 319 | AllowHidden = true; |
Douglas Gregor | 1519766 | 2013-04-03 23:06:26 +0000 | [diff] [blame] | 320 | } |
Douglas Gregor | bcf0a47 | 2010-03-24 05:07:21 +0000 | [diff] [blame] | 321 | } |
John McCall | ea305ed | 2009-12-18 10:40:03 +0000 | [diff] [blame] | 322 | } |
| 323 | |
Alp Toker | c108676 | 2013-12-07 13:51:35 +0000 | [diff] [blame] | 324 | bool LookupResult::sanity() const { |
Richard Smith | f97ad22 | 2014-04-01 18:33:50 +0000 | [diff] [blame] | 325 | // This function is never called by NDEBUG builds. |
John McCall | 19c1bfd | 2010-08-25 05:32:35 +0000 | [diff] [blame] | 326 | 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 Gregor | c0d2490 | 2010-10-22 22:08:47 +0000 | [diff] [blame] | 333 | (Decls.size() == 1 && (Ambiguity == AmbiguousBaseSubobjects || |
| 334 | Ambiguity == AmbiguousBaseSubobjectTypes))); |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 335 | assert((Paths != nullptr) == (ResultKind == Ambiguous && |
| 336 | (Ambiguity == AmbiguousBaseSubobjectTypes || |
| 337 | Ambiguity == AmbiguousBaseSubobjects))); |
Alp Toker | c108676 | 2013-12-07 13:51:35 +0000 | [diff] [blame] | 338 | return true; |
John McCall | 19c1bfd | 2010-08-25 05:32:35 +0000 | [diff] [blame] | 339 | } |
John McCall | 19c1bfd | 2010-08-25 05:32:35 +0000 | [diff] [blame] | 340 | |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 341 | // Necessary because CXXBasePaths is not complete in Sema.h |
John McCall | 5cebab1 | 2009-11-18 07:57:50 +0000 | [diff] [blame] | 342 | void LookupResult::deletePaths(CXXBasePaths *Paths) { |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 343 | delete Paths; |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 344 | } |
| 345 | |
Richard Smith | 3876cc8 | 2013-10-30 01:02:04 +0000 | [diff] [blame] | 346 | /// 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 Kramer | fc58b04 | 2013-11-01 11:50:55 +0000 | [diff] [blame] | 348 | static DeclContext *getContextForScopeMatching(Decl *D) { |
Richard Smith | 3876cc8 | 2013-10-30 01:02:04 +0000 | [diff] [blame] | 349 | // 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 Smith | 826711d | 2015-07-29 23:38:25 +0000 | [diff] [blame] | 361 | /// \brief Determine whether \p D is a better lookup result than \p Existing, |
| 362 | /// given that they declare the same entity. |
Richard Smith | cd31b85 | 2015-08-22 21:37:34 +0000 | [diff] [blame] | 363 | static bool isPreferredLookupResult(Sema &S, Sema::LookupNameKind Kind, |
Richard Smith | 826711d | 2015-07-29 23:38:25 +0000 | [diff] [blame] | 364 | 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 Smith | 990668b | 2015-11-12 22:04:34 +0000 | [diff] [blame] | 374 | // 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 Smith | 826711d | 2015-07-29 23:38:25 +0000 | [diff] [blame] | 380 | if (DUnderlying->getCanonicalDecl() != EUnderlying->getCanonicalDecl()) { |
| 381 | assert(isa<TypeDecl>(DUnderlying) && isa<TypeDecl>(EUnderlying)); |
Richard Smith | 990668b | 2015-11-12 22:04:34 +0000 | [diff] [blame] | 382 | bool HaveTag = isa<TagDecl>(EUnderlying); |
| 383 | bool WantTag = Kind == Sema::LookupTagName; |
| 384 | return HaveTag != WantTag; |
Richard Smith | 826711d | 2015-07-29 23:38:25 +0000 | [diff] [blame] | 385 | } |
| 386 | |
Richard Smith | cd31b85 | 2015-08-22 21:37:34 +0000 | [diff] [blame] | 387 | // 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 Smith | 535ff80 | 2015-09-11 22:39:35 +0000 | [diff] [blame] | 398 | // FIXME: When we track visibility for default function arguments, check |
| 399 | // that we pick the declaration with more visible default arguments. |
Richard Smith | cd31b85 | 2015-08-22 21:37:34 +0000 | [diff] [blame] | 400 | } |
| 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 Smith | 535ff80 | 2015-09-11 22:39:35 +0000 | [diff] [blame] | 407 | // 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 Smith | cd31b85 | 2015-08-22 21:37:34 +0000 | [diff] [blame] | 410 | if (DMin != EMin) |
| 411 | return DMin < EMin; |
Richard Smith | 535ff80 | 2015-09-11 22:39:35 +0000 | [diff] [blame] | 412 | // 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 Smith | cd31b85 | 2015-08-22 21:37:34 +0000 | [diff] [blame] | 423 | } |
| 424 | |
Vassil Vassilev | 4d75e8d | 2016-02-28 19:08:24 +0000 | [diff] [blame] | 425 | // 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 Smith | cd31b85 | 2015-08-22 21:37:34 +0000 | [diff] [blame] | 437 | // 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 Smith | 826711d | 2015-07-29 23:38:25 +0000 | [diff] [blame] | 445 | for (Decl *Prev = DUnderlying->getPreviousDecl(); Prev; |
| 446 | Prev = Prev->getPreviousDecl()) |
| 447 | if (Prev == EUnderlying) |
| 448 | return true; |
Richard Smith | 826711d | 2015-07-29 23:38:25 +0000 | [diff] [blame] | 449 | return false; |
| 450 | } |
| 451 | |
Richard Smith | 990668b | 2015-11-12 22:04:34 +0000 | [diff] [blame] | 452 | /// Determine whether \p D can hide a tag declaration. |
| 453 | static 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 McCall | 283b901 | 2009-11-22 00:44:51 +0000 | [diff] [blame] | 469 | /// Resolves the result kind of this lookup. |
John McCall | 5cebab1 | 2009-11-18 07:57:50 +0000 | [diff] [blame] | 470 | void LookupResult::resolveKind() { |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 471 | unsigned N = Decls.size(); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 472 | |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 473 | // Fast case: no possible ambiguity. |
John McCall | 1f82f24 | 2009-11-18 22:49:29 +0000 | [diff] [blame] | 474 | if (N == 0) { |
Richard Smith | 826711d | 2015-07-29 23:38:25 +0000 | [diff] [blame] | 475 | assert(ResultKind == NotFound || |
| 476 | ResultKind == NotFoundInCurrentInstantiation); |
John McCall | 1f82f24 | 2009-11-18 22:49:29 +0000 | [diff] [blame] | 477 | return; |
| 478 | } |
| 479 | |
John McCall | 283b901 | 2009-11-22 00:44:51 +0000 | [diff] [blame] | 480 | // If there's a single decl, we need to examine it to decide what |
| 481 | // kind of lookup this is. |
John McCall | e61f2ba | 2009-11-18 02:36:19 +0000 | [diff] [blame] | 482 | if (N == 1) { |
Douglas Gregor | 516d672 | 2010-04-25 21:15:30 +0000 | [diff] [blame] | 483 | NamedDecl *D = (*Decls.begin())->getUnderlyingDecl(); |
| 484 | if (isa<FunctionTemplateDecl>(D)) |
John McCall | 283b901 | 2009-11-22 00:44:51 +0000 | [diff] [blame] | 485 | ResultKind = FoundOverloaded; |
Douglas Gregor | 516d672 | 2010-04-25 21:15:30 +0000 | [diff] [blame] | 486 | else if (isa<UnresolvedUsingValueDecl>(D)) |
John McCall | e61f2ba | 2009-11-18 02:36:19 +0000 | [diff] [blame] | 487 | ResultKind = FoundUnresolvedValue; |
| 488 | return; |
| 489 | } |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 490 | |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 491 | // Don't do any extra resolution if we've already resolved as ambiguous. |
John McCall | 27b18f8 | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 492 | if (ResultKind == Ambiguous) return; |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 493 | |
Richard Smith | a534a31 | 2015-07-21 23:54:07 +0000 | [diff] [blame] | 494 | llvm::SmallDenseMap<NamedDecl*, unsigned, 16> Unique; |
Richard Smith | 826711d | 2015-07-29 23:38:25 +0000 | [diff] [blame] | 495 | llvm::SmallDenseMap<QualType, unsigned, 16> UniqueTypes; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 496 | |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 497 | bool Ambiguous = false; |
Richard Smith | 2dbe404 | 2015-11-04 19:26:32 +0000 | [diff] [blame] | 498 | bool HasTag = false, HasFunction = false; |
John McCall | 283b901 | 2009-11-22 00:44:51 +0000 | [diff] [blame] | 499 | bool HasFunctionTemplate = false, HasUnresolved = false; |
Richard Smith | 2dbe404 | 2015-11-04 19:26:32 +0000 | [diff] [blame] | 500 | NamedDecl *HasNonFunction = nullptr; |
| 501 | |
| 502 | llvm::SmallVector<NamedDecl*, 4> EquivalentNonFunctions; |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 503 | |
| 504 | unsigned UniqueTagIndex = 0; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 505 | |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 506 | unsigned I = 0; |
| 507 | while (I < N) { |
John McCall | f0f1cf0 | 2009-11-17 07:50:12 +0000 | [diff] [blame] | 508 | NamedDecl *D = Decls[I]->getUnderlyingDecl(); |
| 509 | D = cast<NamedDecl>(D->getCanonicalDecl()); |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 510 | |
Argyrios Kyrtzidis | 1fcd7fd | 2013-02-22 06:58:37 +0000 | [diff] [blame] | 511 | // Ignore an invalid declaration unless it's the only one left. |
Richard Smith | 5cd86f8 | 2015-11-03 03:13:11 +0000 | [diff] [blame] | 512 | if (D->isInvalidDecl() && !(I == 0 && N == 1)) { |
Argyrios Kyrtzidis | 1fcd7fd | 2013-02-22 06:58:37 +0000 | [diff] [blame] | 513 | Decls[I] = Decls[--N]; |
| 514 | continue; |
| 515 | } |
| 516 | |
Richard Smith | 826711d | 2015-07-29 23:38:25 +0000 | [diff] [blame] | 517 | llvm::Optional<unsigned> ExistingI; |
| 518 | |
Douglas Gregor | 13e6587 | 2010-08-11 14:45:53 +0000 | [diff] [blame] | 519 | // 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 Smith | 990668b | 2015-11-12 22:04:34 +0000 | [diff] [blame] | 524 | 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 Gregor | 13e6587 | 2010-08-11 14:45:53 +0000 | [diff] [blame] | 530 | } |
| 531 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 532 | |
Richard Smith | 826711d | 2015-07-29 23:38:25 +0000 | [diff] [blame] | 533 | // 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 Smith | a534a31 | 2015-07-21 23:54:07 +0000 | [diff] [blame] | 540 | } |
Richard Smith | 826711d | 2015-07-29 23:38:25 +0000 | [diff] [blame] | 541 | } |
| 542 | |
| 543 | if (ExistingI) { |
| 544 | // This is not a unique lookup result. Pick one of the results and |
| 545 | // discard the other. |
Richard Smith | cd31b85 | 2015-08-22 21:37:34 +0000 | [diff] [blame] | 546 | if (isPreferredLookupResult(getSema(), getLookupKind(), Decls[I], |
Richard Smith | 826711d | 2015-07-29 23:38:25 +0000 | [diff] [blame] | 547 | Decls[*ExistingI])) |
| 548 | Decls[*ExistingI] = Decls[I]; |
| 549 | Decls[I] = Decls[--N]; |
Douglas Gregor | 13e6587 | 2010-08-11 14:45:53 +0000 | [diff] [blame] | 550 | continue; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 551 | } |
| 552 | |
Douglas Gregor | 13e6587 | 2010-08-11 14:45:53 +0000 | [diff] [blame] | 553 | // Otherwise, do some decl type analysis and then continue. |
John McCall | e61f2ba | 2009-11-18 02:36:19 +0000 | [diff] [blame] | 554 | |
Douglas Gregor | 13e6587 | 2010-08-11 14:45:53 +0000 | [diff] [blame] | 555 | 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 Smith | 2dbe404 | 2015-11-04 19:26:32 +0000 | [diff] [blame] | 568 | 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 Gregor | 13e6587 | 2010-08-11 14:45:53 +0000 | [diff] [blame] | 580 | Ambiguous = true; |
Richard Smith | 2dbe404 | 2015-11-04 19:26:32 +0000 | [diff] [blame] | 581 | } |
| 582 | HasNonFunction = D; |
Douglas Gregor | 960b5bc | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 583 | } |
Douglas Gregor | 13e6587 | 2010-08-11 14:45:53 +0000 | [diff] [blame] | 584 | I++; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 585 | } |
Douglas Gregor | 38feed8 | 2009-04-24 02:57:34 +0000 | [diff] [blame] | 586 | |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 587 | // 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 Smith | 990668b | 2015-11-12 22:04:34 +0000 | [diff] [blame] | 596 | if (N > 1 && HideTags && HasTag && !Ambiguous && |
Douglas Gregor | e63d087 | 2010-10-23 16:06:17 +0000 | [diff] [blame] | 597 | (HasFunction || HasNonFunction || HasUnresolved)) { |
Richard Smith | 990668b | 2015-11-12 22:04:34 +0000 | [diff] [blame] | 598 | 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 Gregor | e63d087 | 2010-10-23 16:06:17 +0000 | [diff] [blame] | 603 | Decls[UniqueTagIndex] = Decls[--N]; |
| 604 | else |
| 605 | Ambiguous = true; |
| 606 | } |
Anders Carlsson | 8d0f6b7 | 2009-06-26 03:37:05 +0000 | [diff] [blame] | 607 | |
Richard Smith | 2dbe404 | 2015-11-04 19:26:32 +0000 | [diff] [blame] | 608 | // 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 McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 614 | Decls.set_size(N); |
Douglas Gregor | 960b5bc | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 615 | |
John McCall | 8005382 | 2009-12-03 00:58:24 +0000 | [diff] [blame] | 616 | if (HasNonFunction && (HasFunction || HasUnresolved)) |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 617 | Ambiguous = true; |
Douglas Gregor | f23311d | 2009-01-17 01:13:24 +0000 | [diff] [blame] | 618 | |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 619 | if (Ambiguous) |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 620 | setAmbiguous(LookupResult::AmbiguousReference); |
John McCall | e61f2ba | 2009-11-18 02:36:19 +0000 | [diff] [blame] | 621 | else if (HasUnresolved) |
| 622 | ResultKind = LookupResult::FoundUnresolvedValue; |
John McCall | 283b901 | 2009-11-22 00:44:51 +0000 | [diff] [blame] | 623 | else if (N > 1 || HasFunctionTemplate) |
John McCall | 27b18f8 | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 624 | ResultKind = LookupResult::FoundOverloaded; |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 625 | else |
John McCall | 27b18f8 | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 626 | ResultKind = LookupResult::Found; |
Douglas Gregor | 3407432 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 627 | } |
| 628 | |
John McCall | 5cebab1 | 2009-11-18 07:57:50 +0000 | [diff] [blame] | 629 | void LookupResult::addDeclsFromBasePaths(const CXXBasePaths &P) { |
John McCall | 5b0829a | 2010-02-10 09:31:12 +0000 | [diff] [blame] | 630 | CXXBasePaths::const_paths_iterator I, E; |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 631 | for (I = P.begin(), E = P.end(); I != E; ++I) |
David Blaikie | ff7d47a | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 632 | for (DeclContext::lookup_iterator DI = I->Decls.begin(), |
| 633 | DE = I->Decls.end(); DI != DE; ++DI) |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 634 | addDecl(*DI); |
Douglas Gregor | fe3d7d0 | 2009-04-01 21:51:26 +0000 | [diff] [blame] | 635 | } |
| 636 | |
John McCall | 5cebab1 | 2009-11-18 07:57:50 +0000 | [diff] [blame] | 637 | void LookupResult::setAmbiguousBaseSubobjects(CXXBasePaths &P) { |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 638 | Paths = new CXXBasePaths; |
| 639 | Paths->swap(P); |
| 640 | addDeclsFromBasePaths(*Paths); |
| 641 | resolveKind(); |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 642 | setAmbiguous(AmbiguousBaseSubobjects); |
Douglas Gregor | 0e8fc3c | 2009-02-02 21:35:47 +0000 | [diff] [blame] | 643 | } |
| 644 | |
John McCall | 5cebab1 | 2009-11-18 07:57:50 +0000 | [diff] [blame] | 645 | void LookupResult::setAmbiguousBaseSubobjectTypes(CXXBasePaths &P) { |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 646 | Paths = new CXXBasePaths; |
| 647 | Paths->swap(P); |
| 648 | addDeclsFromBasePaths(*Paths); |
| 649 | resolveKind(); |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 650 | setAmbiguous(AmbiguousBaseSubobjectTypes); |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 651 | } |
| 652 | |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 653 | void LookupResult::print(raw_ostream &Out) { |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 654 | Out << Decls.size() << " result(s)"; |
| 655 | if (isAmbiguous()) Out << ", ambiguous"; |
| 656 | if (Paths) Out << ", base paths present"; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 657 | |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 658 | for (iterator I = begin(), E = end(); I != E; ++I) { |
| 659 | Out << "\n"; |
| 660 | (*I)->print(Out, 2); |
| 661 | } |
| 662 | } |
| 663 | |
Richard Smith | ba3a4f9 | 2016-01-12 21:59:26 +0000 | [diff] [blame] | 664 | LLVM_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 Gregor | d3a5918 | 2010-02-12 05:48:04 +0000 | [diff] [blame] | 671 | /// \brief Lookup a builtin function, when name lookup would otherwise |
| 672 | /// fail. |
| 673 | static 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 Majnemer | d9b1a4f | 2015-11-04 03:40:30 +0000 | [diff] [blame] | 683 | if (S.getLangOpts().CPlusPlus && NameKind == Sema::LookupOrdinaryName && |
| 684 | II == S.getASTContext().getMakeIntegerSeqName()) { |
| 685 | R.addDecl(S.getASTContext().getMakeIntegerSeqDecl()); |
| 686 | return true; |
| 687 | } |
Nico Weber | e1687c5 | 2013-06-20 21:44:55 +0000 | [diff] [blame] | 688 | |
Douglas Gregor | d3a5918 | 2010-02-12 05:48:04 +0000 | [diff] [blame] | 689 | // If this is a builtin on this (or all) targets, create the decl. |
| 690 | if (unsigned BuiltinID = II->getBuiltinID()) { |
Anastasia Stulova | b607e0f | 2016-02-02 11:29:43 +0000 | [diff] [blame] | 691 | // 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 Gregor | d3a5918 | 2010-02-12 05:48:04 +0000 | [diff] [blame] | 694 | S.Context.BuiltinInfo.isPredefinedLibFunction(BuiltinID)) |
| 695 | return false; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 696 | |
| 697 | if (NamedDecl *D = S.LazilyCreateBuiltin((IdentifierInfo *)II, |
| 698 | BuiltinID, S.TUScope, |
Douglas Gregor | bfe022c | 2011-01-03 09:37:44 +0000 | [diff] [blame] | 699 | R.isForRedeclaration(), |
| 700 | R.getNameLoc())) { |
Douglas Gregor | d3a5918 | 2010-02-12 05:48:04 +0000 | [diff] [blame] | 701 | R.addDecl(D); |
Douglas Gregor | bfe022c | 2011-01-03 09:37:44 +0000 | [diff] [blame] | 702 | return true; |
| 703 | } |
Douglas Gregor | d3a5918 | 2010-02-12 05:48:04 +0000 | [diff] [blame] | 704 | } |
| 705 | } |
| 706 | } |
| 707 | |
| 708 | return false; |
| 709 | } |
| 710 | |
Douglas Gregor | 7454c56 | 2010-07-02 20:37:36 +0000 | [diff] [blame] | 711 | /// \brief Determine whether we can declare a special member function within |
| 712 | /// the class at this point. |
Richard Smith | 7d125a1 | 2012-11-27 21:20:31 +0000 | [diff] [blame] | 713 | static bool CanDeclareSpecialMemberFunction(const CXXRecordDecl *Class) { |
Douglas Gregor | 7454c56 | 2010-07-02 20:37:36 +0000 | [diff] [blame] | 714 | // We need to have a definition for the class. |
| 715 | if (!Class->getDefinition() || Class->isDependentContext()) |
| 716 | return false; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 717 | |
Douglas Gregor | 7454c56 | 2010-07-02 20:37:36 +0000 | [diff] [blame] | 718 | // We can't be in the middle of defining the class. |
Richard Smith | 7d125a1 | 2012-11-27 21:20:31 +0000 | [diff] [blame] | 719 | return !Class->isBeingDefined(); |
Douglas Gregor | 7454c56 | 2010-07-02 20:37:36 +0000 | [diff] [blame] | 720 | } |
| 721 | |
| 722 | void Sema::ForceDeclarationOfImplicitMembers(CXXRecordDecl *Class) { |
Richard Smith | 7d125a1 | 2012-11-27 21:20:31 +0000 | [diff] [blame] | 723 | if (!CanDeclareSpecialMemberFunction(Class)) |
Douglas Gregor | a6d6950 | 2010-07-02 23:41:54 +0000 | [diff] [blame] | 724 | return; |
Douglas Gregor | 9672f92 | 2010-07-03 00:47:00 +0000 | [diff] [blame] | 725 | |
| 726 | // If the default constructor has not yet been declared, do so now. |
Alexis Hunt | ea6f032 | 2011-05-11 22:34:38 +0000 | [diff] [blame] | 727 | if (Class->needsImplicitDefaultConstructor()) |
Douglas Gregor | 9672f92 | 2010-07-03 00:47:00 +0000 | [diff] [blame] | 728 | DeclareImplicitDefaultConstructor(Class); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 729 | |
Douglas Gregor | a6d6950 | 2010-07-02 23:41:54 +0000 | [diff] [blame] | 730 | // If the copy constructor has not yet been declared, do so now. |
Richard Smith | 2be35f5 | 2012-12-01 02:35:44 +0000 | [diff] [blame] | 731 | if (Class->needsImplicitCopyConstructor()) |
Douglas Gregor | a6d6950 | 2010-07-02 23:41:54 +0000 | [diff] [blame] | 732 | DeclareImplicitCopyConstructor(Class); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 733 | |
Douglas Gregor | 330b9cf | 2010-07-02 21:50:04 +0000 | [diff] [blame] | 734 | // If the copy assignment operator has not yet been declared, do so now. |
Richard Smith | 2be35f5 | 2012-12-01 02:35:44 +0000 | [diff] [blame] | 735 | if (Class->needsImplicitCopyAssignment()) |
Douglas Gregor | 330b9cf | 2010-07-02 21:50:04 +0000 | [diff] [blame] | 736 | DeclareImplicitCopyAssignment(Class); |
| 737 | |
Richard Smith | 2bf7fdb | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 738 | if (getLangOpts().CPlusPlus11) { |
Sebastian Redl | 22653ba | 2011-08-30 19:58:05 +0000 | [diff] [blame] | 739 | // If the move constructor has not yet been declared, do so now. |
| 740 | if (Class->needsImplicitMoveConstructor()) |
Richard Smith | a87b766 | 2016-05-13 18:48:05 +0000 | [diff] [blame] | 741 | DeclareImplicitMoveConstructor(Class); |
Sebastian Redl | 22653ba | 2011-08-30 19:58:05 +0000 | [diff] [blame] | 742 | |
| 743 | // If the move assignment operator has not yet been declared, do so now. |
| 744 | if (Class->needsImplicitMoveAssignment()) |
Richard Smith | a87b766 | 2016-05-13 18:48:05 +0000 | [diff] [blame] | 745 | DeclareImplicitMoveAssignment(Class); |
Sebastian Redl | 22653ba | 2011-08-30 19:58:05 +0000 | [diff] [blame] | 746 | } |
| 747 | |
Douglas Gregor | 7454c56 | 2010-07-02 20:37:36 +0000 | [diff] [blame] | 748 | // If the destructor has not yet been declared, do so now. |
Richard Smith | 2be35f5 | 2012-12-01 02:35:44 +0000 | [diff] [blame] | 749 | if (Class->needsImplicitDestructor()) |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 750 | DeclareImplicitDestructor(Class); |
Douglas Gregor | 7454c56 | 2010-07-02 20:37:36 +0000 | [diff] [blame] | 751 | } |
| 752 | |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 753 | /// \brief Determine whether this is the name of an implicitly-declared |
Douglas Gregor | 330b9cf | 2010-07-02 21:50:04 +0000 | [diff] [blame] | 754 | /// special member function. |
| 755 | static bool isImplicitlyDeclaredMemberFunctionName(DeclarationName Name) { |
| 756 | switch (Name.getNameKind()) { |
Douglas Gregor | a6d6950 | 2010-07-02 23:41:54 +0000 | [diff] [blame] | 757 | case DeclarationName::CXXConstructorName: |
Douglas Gregor | 330b9cf | 2010-07-02 21:50:04 +0000 | [diff] [blame] | 758 | case DeclarationName::CXXDestructorName: |
| 759 | return true; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 760 | |
Douglas Gregor | 330b9cf | 2010-07-02 21:50:04 +0000 | [diff] [blame] | 761 | case DeclarationName::CXXOperatorName: |
| 762 | return Name.getCXXOverloadedOperator() == OO_Equal; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 763 | |
Douglas Gregor | 330b9cf | 2010-07-02 21:50:04 +0000 | [diff] [blame] | 764 | default: |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 765 | break; |
Douglas Gregor | 330b9cf | 2010-07-02 21:50:04 +0000 | [diff] [blame] | 766 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 767 | |
Douglas Gregor | 330b9cf | 2010-07-02 21:50:04 +0000 | [diff] [blame] | 768 | 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 Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 773 | static void DeclareImplicitMemberFunctionsWithName(Sema &S, |
Douglas Gregor | 330b9cf | 2010-07-02 21:50:04 +0000 | [diff] [blame] | 774 | DeclarationName Name, |
| 775 | const DeclContext *DC) { |
| 776 | if (!DC) |
| 777 | return; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 778 | |
Douglas Gregor | 330b9cf | 2010-07-02 21:50:04 +0000 | [diff] [blame] | 779 | switch (Name.getNameKind()) { |
Douglas Gregor | a6d6950 | 2010-07-02 23:41:54 +0000 | [diff] [blame] | 780 | case DeclarationName::CXXConstructorName: |
| 781 | if (const CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(DC)) |
Richard Smith | 7d125a1 | 2012-11-27 21:20:31 +0000 | [diff] [blame] | 782 | if (Record->getDefinition() && CanDeclareSpecialMemberFunction(Record)) { |
Sebastian Redl | 22653ba | 2011-08-30 19:58:05 +0000 | [diff] [blame] | 783 | CXXRecordDecl *Class = const_cast<CXXRecordDecl *>(Record); |
Alexis Hunt | ea6f032 | 2011-05-11 22:34:38 +0000 | [diff] [blame] | 784 | if (Record->needsImplicitDefaultConstructor()) |
Sebastian Redl | 22653ba | 2011-08-30 19:58:05 +0000 | [diff] [blame] | 785 | S.DeclareImplicitDefaultConstructor(Class); |
Richard Smith | 2be35f5 | 2012-12-01 02:35:44 +0000 | [diff] [blame] | 786 | if (Record->needsImplicitCopyConstructor()) |
Sebastian Redl | 22653ba | 2011-08-30 19:58:05 +0000 | [diff] [blame] | 787 | S.DeclareImplicitCopyConstructor(Class); |
Richard Smith | 2bf7fdb | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 788 | if (S.getLangOpts().CPlusPlus11 && |
Sebastian Redl | 22653ba | 2011-08-30 19:58:05 +0000 | [diff] [blame] | 789 | Record->needsImplicitMoveConstructor()) |
| 790 | S.DeclareImplicitMoveConstructor(Class); |
Douglas Gregor | 9672f92 | 2010-07-03 00:47:00 +0000 | [diff] [blame] | 791 | } |
Douglas Gregor | a6d6950 | 2010-07-02 23:41:54 +0000 | [diff] [blame] | 792 | break; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 793 | |
Douglas Gregor | 330b9cf | 2010-07-02 21:50:04 +0000 | [diff] [blame] | 794 | case DeclarationName::CXXDestructorName: |
| 795 | if (const CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(DC)) |
Richard Smith | 2be35f5 | 2012-12-01 02:35:44 +0000 | [diff] [blame] | 796 | if (Record->getDefinition() && Record->needsImplicitDestructor() && |
Richard Smith | 7d125a1 | 2012-11-27 21:20:31 +0000 | [diff] [blame] | 797 | CanDeclareSpecialMemberFunction(Record)) |
Douglas Gregor | 330b9cf | 2010-07-02 21:50:04 +0000 | [diff] [blame] | 798 | S.DeclareImplicitDestructor(const_cast<CXXRecordDecl *>(Record)); |
Douglas Gregor | 330b9cf | 2010-07-02 21:50:04 +0000 | [diff] [blame] | 799 | break; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 800 | |
Douglas Gregor | 330b9cf | 2010-07-02 21:50:04 +0000 | [diff] [blame] | 801 | case DeclarationName::CXXOperatorName: |
| 802 | if (Name.getCXXOverloadedOperator() != OO_Equal) |
| 803 | break; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 804 | |
Sebastian Redl | 22653ba | 2011-08-30 19:58:05 +0000 | [diff] [blame] | 805 | if (const CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(DC)) { |
Richard Smith | 7d125a1 | 2012-11-27 21:20:31 +0000 | [diff] [blame] | 806 | if (Record->getDefinition() && CanDeclareSpecialMemberFunction(Record)) { |
Sebastian Redl | 22653ba | 2011-08-30 19:58:05 +0000 | [diff] [blame] | 807 | CXXRecordDecl *Class = const_cast<CXXRecordDecl *>(Record); |
Richard Smith | 2be35f5 | 2012-12-01 02:35:44 +0000 | [diff] [blame] | 808 | if (Record->needsImplicitCopyAssignment()) |
Sebastian Redl | 22653ba | 2011-08-30 19:58:05 +0000 | [diff] [blame] | 809 | S.DeclareImplicitCopyAssignment(Class); |
Richard Smith | 2bf7fdb | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 810 | if (S.getLangOpts().CPlusPlus11 && |
Sebastian Redl | 22653ba | 2011-08-30 19:58:05 +0000 | [diff] [blame] | 811 | Record->needsImplicitMoveAssignment()) |
| 812 | S.DeclareImplicitMoveAssignment(Class); |
| 813 | } |
| 814 | } |
Douglas Gregor | 330b9cf | 2010-07-02 21:50:04 +0000 | [diff] [blame] | 815 | break; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 816 | |
Douglas Gregor | 330b9cf | 2010-07-02 21:50:04 +0000 | [diff] [blame] | 817 | default: |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 818 | break; |
Douglas Gregor | 330b9cf | 2010-07-02 21:50:04 +0000 | [diff] [blame] | 819 | } |
| 820 | } |
Douglas Gregor | 7454c56 | 2010-07-02 20:37:36 +0000 | [diff] [blame] | 821 | |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 822 | // 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 Gregor | d3a5918 | 2010-02-12 05:48:04 +0000 | [diff] [blame] | 824 | static bool LookupDirect(Sema &S, LookupResult &R, const DeclContext *DC) { |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 825 | bool Found = false; |
| 826 | |
Douglas Gregor | 7454c56 | 2010-07-02 20:37:36 +0000 | [diff] [blame] | 827 | // Lazily declare C++ special member functions. |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 828 | if (S.getLangOpts().CPlusPlus) |
Douglas Gregor | 330b9cf | 2010-07-02 21:50:04 +0000 | [diff] [blame] | 829 | DeclareImplicitMemberFunctionsWithName(S, R.getLookupName(), DC); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 830 | |
Douglas Gregor | 7454c56 | 2010-07-02 20:37:36 +0000 | [diff] [blame] | 831 | // Perform lookup into this declaration context. |
Richard Smith | cf4bdde | 2015-02-21 02:45:19 +0000 | [diff] [blame] | 832 | DeclContext::lookup_result DR = DC->lookup(R.getLookupName()); |
| 833 | for (DeclContext::lookup_iterator I = DR.begin(), E = DR.end(); I != E; |
David Blaikie | ff7d47a | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 834 | ++I) { |
John McCall | 401982f | 2010-01-20 21:53:11 +0000 | [diff] [blame] | 835 | NamedDecl *D = *I; |
Douglas Gregor | 4a81456 | 2011-12-14 16:03:29 +0000 | [diff] [blame] | 836 | if ((D = R.getAcceptableDecl(D))) { |
John McCall | 401982f | 2010-01-20 21:53:11 +0000 | [diff] [blame] | 837 | R.addDecl(D); |
Douglas Gregor | ea0a0a9 | 2010-01-11 18:40:55 +0000 | [diff] [blame] | 838 | Found = true; |
| 839 | } |
| 840 | } |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 841 | |
Douglas Gregor | d3a5918 | 2010-02-12 05:48:04 +0000 | [diff] [blame] | 842 | if (!Found && DC->isTranslationUnit() && LookupBuiltin(S, R)) |
| 843 | return true; |
| 844 | |
Douglas Gregor | ea0a0a9 | 2010-01-11 18:40:55 +0000 | [diff] [blame] | 845 | if (R.getLookupName().getNameKind() |
Chandler Carruth | 3a693b7 | 2010-01-31 11:44:02 +0000 | [diff] [blame] | 846 | != DeclarationName::CXXConversionFunctionName || |
| 847 | R.getLookupName().getCXXNameType()->isDependentType() || |
| 848 | !isa<CXXRecordDecl>(DC)) |
| 849 | return Found; |
| 850 | |
| 851 | // C++ [temp.mem]p6: |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 852 | // A specialization of a conversion function template is not found by |
Chandler Carruth | 3a693b7 | 2010-01-31 11:44:02 +0000 | [diff] [blame] | 853 | // 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 McCall | f937c02 | 2011-10-07 06:10:15 +0000 | [diff] [blame] | 856 | if (!Record->isCompleteDefinition()) |
Chandler Carruth | 3a693b7 | 2010-01-31 11:44:02 +0000 | [diff] [blame] | 857 | return Found; |
| 858 | |
Argyrios Kyrtzidis | a6567c4 | 2012-11-28 03:56:09 +0000 | [diff] [blame] | 859 | for (CXXRecordDecl::conversion_iterator U = Record->conversion_begin(), |
| 860 | UEnd = Record->conversion_end(); U != UEnd; ++U) { |
Chandler Carruth | 3a693b7 | 2010-01-31 11:44:02 +0000 | [diff] [blame] | 861 | FunctionTemplateDecl *ConvTemplate = dyn_cast<FunctionTemplateDecl>(*U); |
| 862 | if (!ConvTemplate) |
| 863 | continue; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 864 | |
Chandler Carruth | 3a693b7 | 2010-01-31 11:44:02 +0000 | [diff] [blame] | 865 | // When we're performing lookup for the purposes of redeclaration, just |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 866 | // add the conversion function template. When we deduce template |
| 867 | // arguments for specializations, we'll end up unifying the return |
Chandler Carruth | 3a693b7 | 2010-01-31 11:44:02 +0000 | [diff] [blame] | 868 | // 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 Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 874 | |
Douglas Gregor | ea0a0a9 | 2010-01-11 18:40:55 +0000 | [diff] [blame] | 875 | // C++ [temp.mem]p6: |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 876 | // [...] For each such operator, if argument deduction succeeds |
| 877 | // (14.9.2.3), the resulting specialization is used as if found by |
Chandler Carruth | 3a693b7 | 2010-01-31 11:44:02 +0000 | [diff] [blame] | 878 | // 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 Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 882 | // result), perform template argument deduction and place the |
Chandler Carruth | 3a693b7 | 2010-01-31 11:44:02 +0000 | [diff] [blame] | 883 | // specialization into the result set. We do this to avoid forcing all |
| 884 | // callers to perform special deduction for conversion functions. |
Craig Topper | e6706e4 | 2012-09-19 02:26:47 +0000 | [diff] [blame] | 885 | TemplateDeductionInfo Info(R.getNameLoc()); |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 886 | FunctionDecl *Specialization = nullptr; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 887 | |
| 888 | const FunctionProtoType *ConvProto |
Chandler Carruth | 3a693b7 | 2010-01-31 11:44:02 +0000 | [diff] [blame] | 889 | = ConvTemplate->getTemplatedDecl()->getType()->getAs<FunctionProtoType>(); |
| 890 | assert(ConvProto && "Nonsensical conversion function template type"); |
Douglas Gregor | 3c96a46 | 2010-01-12 01:17:50 +0000 | [diff] [blame] | 891 | |
Chandler Carruth | 3a693b7 | 2010-01-31 11:44:02 +0000 | [diff] [blame] | 892 | // 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 McCall | db40c7f | 2010-12-14 08:05:40 +0000 | [diff] [blame] | 895 | FunctionProtoType::ExtProtoInfo EPI = ConvProto->getExtProtoInfo(); |
Reid Kleckner | 78af070 | 2013-08-27 23:08:25 +0000 | [diff] [blame] | 896 | EPI.ExtInfo = EPI.ExtInfo.withCallingConv(CC_C); |
Richard Smith | 8acb428 | 2014-07-31 21:57:55 +0000 | [diff] [blame] | 897 | EPI.ExceptionSpec = EST_None; |
Chandler Carruth | 3a693b7 | 2010-01-31 11:44:02 +0000 | [diff] [blame] | 898 | QualType ExpectedType |
| 899 | = R.getSema().Context.getFunctionType(R.getLookupName().getCXXNameType(), |
Dmitri Gribenko | 44ebbd5 | 2013-05-05 00:41:58 +0000 | [diff] [blame] | 900 | None, EPI); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 901 | |
Chandler Carruth | 3a693b7 | 2010-01-31 11:44:02 +0000 | [diff] [blame] | 902 | // Perform template argument deduction against the type that we would |
| 903 | // expect the function to have. |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 904 | if (R.getSema().DeduceTemplateArguments(ConvTemplate, nullptr, ExpectedType, |
Chandler Carruth | 3a693b7 | 2010-01-31 11:44:02 +0000 | [diff] [blame] | 905 | Specialization, Info) |
| 906 | == Sema::TDK_Success) { |
| 907 | R.addDecl(Specialization); |
| 908 | Found = true; |
Douglas Gregor | ea0a0a9 | 2010-01-11 18:40:55 +0000 | [diff] [blame] | 909 | } |
| 910 | } |
Chandler Carruth | 3a693b7 | 2010-01-31 11:44:02 +0000 | [diff] [blame] | 911 | |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 912 | return Found; |
| 913 | } |
| 914 | |
John McCall | f6c8a4e | 2009-11-10 07:01:13 +0000 | [diff] [blame] | 915 | // Performs C++ unqualified lookup into the given file context. |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 916 | static bool |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 917 | CppNamespaceLookup(Sema &S, LookupResult &R, ASTContext &Context, |
Douglas Gregor | d3a5918 | 2010-02-12 05:48:04 +0000 | [diff] [blame] | 918 | DeclContext *NS, UnqualUsingDirectiveSet &UDirs) { |
Douglas Gregor | 700792c | 2009-02-05 19:25:20 +0000 | [diff] [blame] | 919 | |
| 920 | assert(NS && NS->isFileContext() && "CppNamespaceLookup() requires namespace!"); |
| 921 | |
John McCall | f6c8a4e | 2009-11-10 07:01:13 +0000 | [diff] [blame] | 922 | // Perform direct name lookup into the LookupCtx. |
Douglas Gregor | d3a5918 | 2010-02-12 05:48:04 +0000 | [diff] [blame] | 923 | bool Found = LookupDirect(S, R, NS); |
Douglas Gregor | 700792c | 2009-02-05 19:25:20 +0000 | [diff] [blame] | 924 | |
John McCall | f6c8a4e | 2009-11-10 07:01:13 +0000 | [diff] [blame] | 925 | // Perform direct name lookup into the namespaces nominated by the |
| 926 | // using directives whose common ancestor is this namespace. |
Benjamin Kramer | b4ef668 | 2015-02-06 17:25:10 +0000 | [diff] [blame] | 927 | for (const UnqualUsingEntry &UUE : UDirs.getNamespacesFor(NS)) |
| 928 | if (LookupDirect(S, R, UUE.getNominatedNamespace())) |
John McCall | f6c8a4e | 2009-11-10 07:01:13 +0000 | [diff] [blame] | 929 | Found = true; |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 930 | |
| 931 | R.resolveKind(); |
| 932 | |
| 933 | return Found; |
Douglas Gregor | 700792c | 2009-02-05 19:25:20 +0000 | [diff] [blame] | 934 | } |
| 935 | |
| 936 | static bool isNamespaceOrTranslationUnitScope(Scope *S) { |
Ted Kremenek | c37877d | 2013-10-08 17:08:03 +0000 | [diff] [blame] | 937 | if (DeclContext *Ctx = S->getEntity()) |
Douglas Gregor | 700792c | 2009-02-05 19:25:20 +0000 | [diff] [blame] | 938 | return Ctx->isFileContext(); |
| 939 | return false; |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 940 | } |
Douglas Gregor | ed8f288 | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 941 | |
Douglas Gregor | 6623006 | 2010-03-15 14:33:29 +0000 | [diff] [blame] | 942 | // 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. |
| 949 | static std::pair<DeclContext *, bool> findOuterContext(Scope *S) { |
Ted Kremenek | c37877d | 2013-10-08 17:08:03 +0000 | [diff] [blame] | 950 | DeclContext *DC = S->getEntity(); |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 951 | DeclContext *Lexical = nullptr; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 952 | for (Scope *OuterS = S->getParent(); OuterS; |
Douglas Gregor | 6623006 | 2010-03-15 14:33:29 +0000 | [diff] [blame] | 953 | OuterS = OuterS->getParent()) { |
| 954 | if (OuterS->getEntity()) { |
Ted Kremenek | c37877d | 2013-10-08 17:08:03 +0000 | [diff] [blame] | 955 | Lexical = OuterS->getEntity(); |
Douglas Gregor | 6623006 | 2010-03-15 14:33:29 +0000 | [diff] [blame] | 956 | 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 Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 968 | // namespace N { |
| 969 | // class C { }; |
Douglas Gregor | 6623006 | 2010-03-15 14:33:29 +0000 | [diff] [blame] | 970 | // |
| 971 | // template<class T> class B { |
| 972 | // void f(T); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 973 | // }; |
Douglas Gregor | 6623006 | 2010-03-15 14:33:29 +0000 | [diff] [blame] | 974 | // } |
| 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 Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 982 | if (!Lexical || !DC || !S->getParent() || |
Douglas Gregor | 6623006 | 2010-03-15 14:33:29 +0000 | [diff] [blame] | 983 | !S->getParent()->isTemplateParamScope()) |
| 984 | return std::make_pair(Lexical, false); |
| 985 | |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 986 | // Find the outermost template parameter scope. |
Douglas Gregor | 6623006 | 2010-03-15 14:33:29 +0000 | [diff] [blame] | 987 | // 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 Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 993 | |
Douglas Gregor | 6623006 | 2010-03-15 14:33:29 +0000 | [diff] [blame] | 994 | // 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 Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 999 | |
Douglas Gregor | 6623006 | 2010-03-15 14:33:29 +0000 | [diff] [blame] | 1000 | // 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 Gregor | 7f737c0 | 2009-09-10 16:57:35 +0000 | [diff] [blame] | 1009 | } |
| 1010 | |
Richard Smith | 541b38b | 2013-09-20 01:15:31 +0000 | [diff] [blame] | 1011 | namespace { |
| 1012 | /// An RAII object to specify that we want to find block scope extern |
| 1013 | /// declarations. |
| 1014 | struct 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 Wennborg | dcfba33 | 2015-10-06 23:40:43 +0000 | [diff] [blame] | 1029 | } // end anonymous namespace |
Richard Smith | 541b38b | 2013-09-20 01:15:31 +0000 | [diff] [blame] | 1030 | |
John McCall | 27b18f8 | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 1031 | bool Sema::CppLookupName(LookupResult &R, Scope *S) { |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1032 | assert(getLangOpts().CPlusPlus && "Can perform only C++ lookup"); |
John McCall | 27b18f8 | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 1033 | |
| 1034 | DeclarationName Name = R.getLookupName(); |
Richard Smith | 1c34fb7 | 2013-08-13 18:18:50 +0000 | [diff] [blame] | 1035 | Sema::LookupNameKind NameKind = R.getLookupKind(); |
John McCall | 27b18f8 | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 1036 | |
Douglas Gregor | 330b9cf | 2010-07-02 21:50:04 +0000 | [diff] [blame] | 1037 | // 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 Kremenek | c37877d | 2013-10-08 17:08:03 +0000 | [diff] [blame] | 1041 | if (DeclContext *DC = PreS->getEntity()) |
Douglas Gregor | 330b9cf | 2010-07-02 21:50:04 +0000 | [diff] [blame] | 1042 | DeclareImplicitMemberFunctionsWithName(*this, Name, DC); |
| 1043 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1044 | |
Douglas Gregor | 330b9cf | 2010-07-02 21:50:04 +0000 | [diff] [blame] | 1045 | // 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 Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 1048 | Scope *Initial = S; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1049 | IdentifierResolver::iterator |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 1050 | I = IdResolver.begin(Name), |
| 1051 | IEnd = IdResolver.end(); |
Douglas Gregor | ed8f288 | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 1052 | |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 1053 | // First we lookup local scope. |
Douglas Gregor | ded2d7b | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 1054 | // We don't consider using-directives, as per 7.3.4.p1 [namespace.udir] |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 1055 | // ...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 Friedman | 44b83ee | 2009-08-05 19:21:58 +0000 | [diff] [blame] | 1058 | // [Note: in this context, "contains" means "contains directly or |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1059 | // indirectly". |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 1060 | // |
| 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 Gregor | 2ada048 | 2009-02-04 17:27:36 +0000 | [diff] [blame] | 1070 | // |
Douglas Gregor | cc9406c | 2013-04-08 23:11:25 +0000 | [diff] [blame] | 1071 | UnqualUsingDirectiveSet UDirs; |
| 1072 | bool VisitedUsingDirectives = false; |
Richard Smith | 1c34fb7 | 2013-08-13 18:18:50 +0000 | [diff] [blame] | 1073 | bool LeftStartingScope = false; |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1074 | DeclContext *OutsideOfTemplateParamDC = nullptr; |
Richard Smith | 541b38b | 2013-09-20 01:15:31 +0000 | [diff] [blame] | 1075 | |
| 1076 | // When performing a scope lookup, we want to find local extern decls. |
| 1077 | FindLocalExternScope FindLocals(R); |
| 1078 | |
Douglas Gregor | 700792c | 2009-02-05 19:25:20 +0000 | [diff] [blame] | 1079 | for (; S && !isNamespaceOrTranslationUnitScope(S); S = S->getParent()) { |
Ted Kremenek | c37877d | 2013-10-08 17:08:03 +0000 | [diff] [blame] | 1080 | DeclContext *Ctx = S->getEntity(); |
Olivier Goffart | 12b22198 | 2016-06-16 21:39:46 +0000 | [diff] [blame] | 1081 | bool SearchNamespaceScope = true; |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 1082 | // Check whether the IdResolver has anything in this scope. |
John McCall | 4887165 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 1083 | for (; I != IEnd && S->isDeclScope(*I); ++I) { |
Douglas Gregor | 4a81456 | 2011-12-14 16:03:29 +0000 | [diff] [blame] | 1084 | if (NamedDecl *ND = R.getAcceptableDecl(*I)) { |
Olivier Goffart | 12b22198 | 2016-06-16 21:39:46 +0000 | [diff] [blame] | 1085 | 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 Smith | 1c34fb7 | 2013-08-13 18:18:50 +0000 | [diff] [blame] | 1090 | // 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 Goffart | 12b22198 | 2016-06-16 21:39:46 +0000 | [diff] [blame] | 1096 | // does not have linkage, skip it. |
| 1097 | if (LeftStartingScope && !((*I)->hasLinkage())) { |
Richard Smith | 1c34fb7 | 2013-08-13 18:18:50 +0000 | [diff] [blame] | 1098 | R.setShadowed(); |
| 1099 | continue; |
| 1100 | } |
Olivier Goffart | 12b22198 | 2016-06-16 21:39:46 +0000 | [diff] [blame] | 1101 | } else { |
| 1102 | // We found something in this scope, we should not look at the |
| 1103 | // namespace scope |
| 1104 | SearchNamespaceScope = false; |
Richard Smith | 1c34fb7 | 2013-08-13 18:18:50 +0000 | [diff] [blame] | 1105 | } |
Douglas Gregor | 4a81456 | 2011-12-14 16:03:29 +0000 | [diff] [blame] | 1106 | R.addDecl(ND); |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 1107 | } |
| 1108 | } |
Olivier Goffart | 12b22198 | 2016-06-16 21:39:46 +0000 | [diff] [blame] | 1109 | if (!SearchNamespaceScope) { |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1110 | R.resolveKind(); |
Douglas Gregor | 3e51e17 | 2010-05-20 20:58:56 +0000 | [diff] [blame] | 1111 | if (S->isClassScope()) |
| 1112 | if (CXXRecordDecl *Record = dyn_cast_or_null<CXXRecordDecl>(Ctx)) |
| 1113 | R.setNamingClass(Record); |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1114 | return true; |
| 1115 | } |
| 1116 | |
Richard Smith | 1c34fb7 | 2013-08-13 18:18:50 +0000 | [diff] [blame] | 1117 | if (NameKind == LookupLocalFriendName && !S->isClassScope()) { |
Richard Smith | 114394f | 2013-08-09 04:35:01 +0000 | [diff] [blame] | 1118 | // 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 Gregor | 6623006 | 2010-03-15 14:33:29 +0000 | [diff] [blame] | 1126 | if (!Ctx && S->isTemplateParamScope() && OutsideOfTemplateParamDC && |
| 1127 | S->getParent() && !S->getParent()->isTemplateParamScope()) { |
| 1128 | // We've just searched the last template parameter scope and |
Sylvestre Ledru | 830885c | 2012-07-23 08:59:39 +0000 | [diff] [blame] | 1129 | // found nothing, so look into the contexts between the |
Douglas Gregor | 6623006 | 2010-03-15 14:33:29 +0000 | [diff] [blame] | 1130 | // 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 Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1134 | OutsideOfTemplateParamDC = nullptr; |
Douglas Gregor | 6623006 | 2010-03-15 14:33:29 +0000 | [diff] [blame] | 1135 | } |
| 1136 | |
| 1137 | if (Ctx) { |
| 1138 | DeclContext *OuterCtx; |
| 1139 | bool SearchAfterTemplateScope; |
Benjamin Kramer | 867ea1d | 2014-03-02 13:01:17 +0000 | [diff] [blame] | 1140 | std::tie(OuterCtx, SearchAfterTemplateScope) = findOuterContext(S); |
Douglas Gregor | 6623006 | 2010-03-15 14:33:29 +0000 | [diff] [blame] | 1141 | if (SearchAfterTemplateScope) |
| 1142 | OutsideOfTemplateParamDC = OuterCtx; |
| 1143 | |
Douglas Gregor | ea16606 | 2010-03-15 15:26:48 +0000 | [diff] [blame] | 1144 | for (; Ctx && !Ctx->Equals(OuterCtx); Ctx = Ctx->getLookupParent()) { |
Douglas Gregor | 337caf9 | 2010-02-19 16:08:35 +0000 | [diff] [blame] | 1145 | // 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 Gregor | 7f737c0 | 2009-09-10 16:57:35 +0000 | [diff] [blame] | 1149 | continue; |
Douglas Gregor | 337caf9 | 2010-02-19 16:08:35 +0000 | [diff] [blame] | 1150 | |
| 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 Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1162 | Name.getAsIdentifierInfo(), |
Douglas Gregor | 337caf9 | 2010-02-19 16:08:35 +0000 | [diff] [blame] | 1163 | ClassDeclared)) { |
Douglas Gregor | 4a81456 | 2011-12-14 16:03:29 +0000 | [diff] [blame] | 1164 | if (NamedDecl *ND = R.getAcceptableDecl(Ivar)) { |
| 1165 | R.addDecl(ND); |
Douglas Gregor | 337caf9 | 2010-02-19 16:08:35 +0000 | [diff] [blame] | 1166 | R.resolveKind(); |
| 1167 | return true; |
| 1168 | } |
| 1169 | } |
| 1170 | } |
| 1171 | } |
| 1172 | |
| 1173 | continue; |
| 1174 | } |
| 1175 | |
Douglas Gregor | b0d0aa5 | 2013-03-27 12:51:49 +0000 | [diff] [blame] | 1176 | // If this is a file context, we need to perform unqualified name |
| 1177 | // lookup considering using directives. |
| 1178 | if (Ctx->isFileContext()) { |
Douglas Gregor | cc9406c | 2013-04-08 23:11:25 +0000 | [diff] [blame] | 1179 | // 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 Gregor | 8ccbc18 | 2013-04-09 01:49:26 +0000 | [diff] [blame] | 1182 | for (DeclContext *UCtx = Ctx; UCtx; UCtx = UCtx->getParent()) { |
| 1183 | if (UCtx->isTransparentContext()) |
| 1184 | continue; |
| 1185 | |
Douglas Gregor | cc9406c | 2013-04-08 23:11:25 +0000 | [diff] [blame] | 1186 | UDirs.visit(UCtx, UCtx); |
Douglas Gregor | 8ccbc18 | 2013-04-09 01:49:26 +0000 | [diff] [blame] | 1187 | } |
Douglas Gregor | cc9406c | 2013-04-08 23:11:25 +0000 | [diff] [blame] | 1188 | |
| 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 Gregor | b0d0aa5 | 2013-03-27 12:51:49 +0000 | [diff] [blame] | 1201 | |
| 1202 | if (CppNamespaceLookup(*this, R, Context, Ctx, UDirs)) { |
| 1203 | R.resolveKind(); |
| 1204 | return true; |
| 1205 | } |
| 1206 | |
| 1207 | continue; |
| 1208 | } |
| 1209 | |
Douglas Gregor | 7f737c0 | 2009-09-10 16:57:35 +0000 | [diff] [blame] | 1210 | // 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 Gregor | d0d2ee0 | 2010-01-15 01:44:47 +0000 | [diff] [blame] | 1216 | if (LookupQualifiedName(R, Ctx, /*InUnqualifiedLookup=*/true)) |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1217 | return true; |
Douglas Gregor | fdca4a7 | 2009-03-27 04:21:56 +0000 | [diff] [blame] | 1218 | } |
Douglas Gregor | 700792c | 2009-02-05 19:25:20 +0000 | [diff] [blame] | 1219 | } |
Douglas Gregor | ed8f288 | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 1220 | } |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 1221 | |
John McCall | f6c8a4e | 2009-11-10 07:01:13 +0000 | [diff] [blame] | 1222 | // Stop if we ran out of scopes. |
| 1223 | // FIXME: This really, really shouldn't be happening. |
| 1224 | if (!S) return false; |
| 1225 | |
Argyrios Kyrtzidis | 706bbf8 | 2010-10-29 16:12:50 +0000 | [diff] [blame] | 1226 | // If we are looking for members, no need to look into global/namespace scope. |
Richard Smith | 1c34fb7 | 2013-08-13 18:18:50 +0000 | [diff] [blame] | 1227 | if (NameKind == LookupMemberName) |
Argyrios Kyrtzidis | 706bbf8 | 2010-10-29 16:12:50 +0000 | [diff] [blame] | 1228 | return false; |
| 1229 | |
Douglas Gregor | 700792c | 2009-02-05 19:25:20 +0000 | [diff] [blame] | 1230 | // Collect UsingDirectiveDecls in all scopes, and recursively all |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 1231 | // nominated namespaces by those using-directives. |
John McCall | f6c8a4e | 2009-11-10 07:01:13 +0000 | [diff] [blame] | 1232 | // |
Mike Stump | 87c57ac | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 1233 | // FIXME: Cache this sorted list in Scope structure, and DeclContext, so we |
| 1234 | // don't build it for each lookup! |
Douglas Gregor | cc9406c | 2013-04-08 23:11:25 +0000 | [diff] [blame] | 1235 | if (!VisitedUsingDirectives) { |
| 1236 | UDirs.visitScopeChain(Initial, S); |
| 1237 | UDirs.done(); |
| 1238 | } |
Richard Smith | 541b38b | 2013-09-20 01:15:31 +0000 | [diff] [blame] | 1239 | |
| 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 Gregor | 700792c | 2009-02-05 19:25:20 +0000 | [diff] [blame] | 1245 | // Lookup namespace scope, and global scope. |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 1246 | // 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 Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 1250 | // Check whether the IdResolver has anything in this scope. |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1251 | bool Found = false; |
John McCall | 4887165 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 1252 | for (; I != IEnd && S->isDeclScope(*I); ++I) { |
Douglas Gregor | 4a81456 | 2011-12-14 16:03:29 +0000 | [diff] [blame] | 1253 | if (NamedDecl *ND = R.getAcceptableDecl(*I)) { |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 1254 | // 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 McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1258 | Found = true; |
Douglas Gregor | 4a81456 | 2011-12-14 16:03:29 +0000 | [diff] [blame] | 1259 | R.addDecl(ND); |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 1260 | } |
| 1261 | } |
| 1262 | |
Douglas Gregor | f3d3ae6 | 2010-05-14 04:53:42 +0000 | [diff] [blame] | 1263 | if (Found && S->isTemplateParamScope()) { |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1264 | R.resolveKind(); |
| 1265 | return true; |
| 1266 | } |
| 1267 | |
Ted Kremenek | c37877d | 2013-10-08 17:08:03 +0000 | [diff] [blame] | 1268 | DeclContext *Ctx = S->getEntity(); |
Douglas Gregor | f3d3ae6 | 2010-05-14 04:53:42 +0000 | [diff] [blame] | 1269 | if (!Ctx && S->isTemplateParamScope() && OutsideOfTemplateParamDC && |
| 1270 | S->getParent() && !S->getParent()->isTemplateParamScope()) { |
| 1271 | // We've just searched the last template parameter scope and |
Sylvestre Ledru | 830885c | 2012-07-23 08:59:39 +0000 | [diff] [blame] | 1272 | // found nothing, so look into the contexts between the |
Douglas Gregor | f3d3ae6 | 2010-05-14 04:53:42 +0000 | [diff] [blame] | 1273 | // 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 Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1277 | OutsideOfTemplateParamDC = nullptr; |
Douglas Gregor | f3d3ae6 | 2010-05-14 04:53:42 +0000 | [diff] [blame] | 1278 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1279 | |
Douglas Gregor | f3d3ae6 | 2010-05-14 04:53:42 +0000 | [diff] [blame] | 1280 | if (Ctx) { |
| 1281 | DeclContext *OuterCtx; |
| 1282 | bool SearchAfterTemplateScope; |
Benjamin Kramer | 867ea1d | 2014-03-02 13:01:17 +0000 | [diff] [blame] | 1283 | std::tie(OuterCtx, SearchAfterTemplateScope) = findOuterContext(S); |
Douglas Gregor | f3d3ae6 | 2010-05-14 04:53:42 +0000 | [diff] [blame] | 1284 | 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 Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1293 | |
Douglas Gregor | f3d3ae6 | 2010-05-14 04:53:42 +0000 | [diff] [blame] | 1294 | // 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 Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1300 | |
Douglas Gregor | f3d3ae6 | 2010-05-14 04:53:42 +0000 | [diff] [blame] | 1301 | // Look into context considering using-directives. |
| 1302 | if (CppNamespaceLookup(*this, R, Context, Ctx, UDirs)) |
| 1303 | Found = true; |
| 1304 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1305 | |
Douglas Gregor | f3d3ae6 | 2010-05-14 04:53:42 +0000 | [diff] [blame] | 1306 | if (Found) { |
| 1307 | R.resolveKind(); |
| 1308 | return true; |
| 1309 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1310 | |
Douglas Gregor | f3d3ae6 | 2010-05-14 04:53:42 +0000 | [diff] [blame] | 1311 | if (R.isForRedeclaration() && !Ctx->isTransparentContext()) |
| 1312 | return false; |
| 1313 | } |
| 1314 | } |
| 1315 | |
Douglas Gregor | 3ce7493 | 2010-02-05 07:07:10 +0000 | [diff] [blame] | 1316 | if (R.isForRedeclaration() && Ctx && !Ctx->isTransparentContext()) |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1317 | return false; |
Douglas Gregor | 700792c | 2009-02-05 19:25:20 +0000 | [diff] [blame] | 1318 | } |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 1319 | |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1320 | return !R.empty(); |
Douglas Gregor | ed8f288 | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 1321 | } |
| 1322 | |
Richard Smith | 0e5d7b8 | 2013-07-25 23:08:39 +0000 | [diff] [blame] | 1323 | /// \brief Find the declaration that a class temploid member specialization was |
| 1324 | /// instantiated from, or the member itself if it is an explicit specialization. |
| 1325 | static Decl *getInstantiatedFrom(Decl *D, MemberSpecializationInfo *MSInfo) { |
| 1326 | return MSInfo->isExplicitSpecialization() ? D : MSInfo->getInstantiatedFrom(); |
| 1327 | } |
| 1328 | |
Richard Smith | 4241314 | 2015-05-15 20:05:43 +0000 | [diff] [blame] | 1329 | Module *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 Smith | 87bb569 | 2015-06-09 00:35:49 +0000 | [diff] [blame] | 1337 | 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 Smith | 4241314 | 2015-05-15 20:05:43 +0000 | [diff] [blame] | 1347 | // 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 Smith | d9ba224 | 2015-05-07 03:54:19 +0000 | [diff] [blame] | 1384 | void Sema::makeMergedDefinitionVisible(NamedDecl *ND, SourceLocation Loc) { |
Richard Smith | 87bb569 | 2015-06-09 00:35:49 +0000 | [diff] [blame] | 1385 | 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 Smith | 63e09bf | 2015-06-17 20:39:41 +0000 | [diff] [blame] | 1390 | |
| 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 Smith | d9ba224 | 2015-05-07 03:54:19 +0000 | [diff] [blame] | 1396 | } |
| 1397 | |
Richard Smith | 0e5d7b8 | 2013-07-25 23:08:39 +0000 | [diff] [blame] | 1398 | /// \brief Find the module in which the given declaration was defined. |
Richard Smith | 4241314 | 2015-05-15 20:05:43 +0000 | [diff] [blame] | 1399 | static Module *getDefiningModule(Sema &S, Decl *Entity) { |
Richard Smith | 0e5d7b8 | 2013-07-25 23:08:39 +0000 | [diff] [blame] | 1400 | 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 Kleckner | e7367d6 | 2014-10-14 20:28:40 +0000 | [diff] [blame] | 1406 | if (CXXRecordDecl *Pattern = RD->getTemplateInstantiationPattern()) |
| 1407 | Entity = Pattern; |
Richard Smith | 0e5d7b8 | 2013-07-25 23:08:39 +0000 | [diff] [blame] | 1408 | } 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 Smith | 4241314 | 2015-05-15 20:05:43 +0000 | [diff] [blame] | 1421 | return S.getOwningModule(Entity); |
| 1422 | return getDefiningModule(S, cast<Decl>(Context)); |
Richard Smith | 0e5d7b8 | 2013-07-25 23:08:39 +0000 | [diff] [blame] | 1423 | } |
| 1424 | |
| 1425 | llvm::DenseSet<Module*> &Sema::getLookupModules() { |
| 1426 | unsigned N = ActiveTemplateInstantiations.size(); |
| 1427 | for (unsigned I = ActiveTemplateInstantiationLookupModules.size(); |
| 1428 | I != N; ++I) { |
Richard Smith | 4241314 | 2015-05-15 20:05:43 +0000 | [diff] [blame] | 1429 | Module *M = |
| 1430 | getDefiningModule(*this, ActiveTemplateInstantiations[I].Entity); |
Richard Smith | 0e5d7b8 | 2013-07-25 23:08:39 +0000 | [diff] [blame] | 1431 | if (M && !LookupModulesCache.insert(M).second) |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1432 | M = nullptr; |
Richard Smith | 0e5d7b8 | 2013-07-25 23:08:39 +0000 | [diff] [blame] | 1433 | ActiveTemplateInstantiationLookupModules.push_back(M); |
| 1434 | } |
| 1435 | return LookupModulesCache; |
| 1436 | } |
| 1437 | |
Richard Smith | 4241314 | 2015-05-15 20:05:43 +0000 | [diff] [blame] | 1438 | bool Sema::hasVisibleMergedDefinition(NamedDecl *Def) { |
| 1439 | for (Module *Merged : Context.getModulesWithMergedDefinition(Def)) |
| 1440 | if (isModuleVisible(Merged)) |
| 1441 | return true; |
| 1442 | return false; |
| 1443 | } |
| 1444 | |
Richard Smith | e7bd6de | 2015-06-10 20:30:23 +0000 | [diff] [blame] | 1445 | template<typename ParmDecl> |
Richard Smith | 35c1df5 | 2015-06-17 20:16:32 +0000 | [diff] [blame] | 1446 | static bool |
| 1447 | hasVisibleDefaultArgument(Sema &S, const ParmDecl *D, |
| 1448 | llvm::SmallVectorImpl<Module *> *Modules) { |
Richard Smith | e7bd6de | 2015-06-10 20:30:23 +0000 | [diff] [blame] | 1449 | 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 Smith | 63e09bf | 2015-06-17 20:39:41 +0000 | [diff] [blame] | 1457 | 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 Smith | 35c1df5 | 2015-06-17 20:16:32 +0000 | [diff] [blame] | 1463 | |
Richard Smith | e7bd6de | 2015-06-10 20:30:23 +0000 | [diff] [blame] | 1464 | // If there was a previous default argument, maybe its parameter is visible. |
| 1465 | D = DefaultArg.getInheritedFrom(); |
| 1466 | } |
| 1467 | return false; |
| 1468 | } |
| 1469 | |
Richard Smith | 35c1df5 | 2015-06-17 20:16:32 +0000 | [diff] [blame] | 1470 | bool Sema::hasVisibleDefaultArgument(const NamedDecl *D, |
| 1471 | llvm::SmallVectorImpl<Module *> *Modules) { |
Richard Smith | e7bd6de | 2015-06-10 20:30:23 +0000 | [diff] [blame] | 1472 | if (auto *P = dyn_cast<TemplateTypeParmDecl>(D)) |
Richard Smith | 35c1df5 | 2015-06-17 20:16:32 +0000 | [diff] [blame] | 1473 | return ::hasVisibleDefaultArgument(*this, P, Modules); |
Richard Smith | e7bd6de | 2015-06-10 20:30:23 +0000 | [diff] [blame] | 1474 | if (auto *P = dyn_cast<NonTypeTemplateParmDecl>(D)) |
Richard Smith | 35c1df5 | 2015-06-17 20:16:32 +0000 | [diff] [blame] | 1475 | return ::hasVisibleDefaultArgument(*this, P, Modules); |
| 1476 | return ::hasVisibleDefaultArgument(*this, cast<TemplateTemplateParmDecl>(D), |
| 1477 | Modules); |
Richard Smith | e7bd6de | 2015-06-10 20:30:23 +0000 | [diff] [blame] | 1478 | } |
| 1479 | |
Richard Smith | 6739a10 | 2016-05-05 00:56:12 +0000 | [diff] [blame] | 1480 | bool 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 Smith | 0e5d7b8 | 2013-07-25 23:08:39 +0000 | [diff] [blame] | 1509 | /// \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). |
| 1517 | bool LookupResult::isVisibleSlow(Sema &SemaRef, NamedDecl *D) { |
Richard Smith | be3980b | 2015-03-27 00:41:57 +0000 | [diff] [blame] | 1518 | assert(D->isHidden() && "should not call this: not in slow case"); |
Richard Smith | 5196a17 | 2015-08-24 03:38:11 +0000 | [diff] [blame] | 1519 | 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 Smith | 4241314 | 2015-05-15 20:05:43 +0000 | [diff] [blame] | 1526 | return true; |
Richard Smith | 5196a17 | 2015-08-24 03:38:11 +0000 | [diff] [blame] | 1527 | } |
| 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 Smith | 4241314 | 2015-05-15 20:05:43 +0000 | [diff] [blame] | 1535 | return true; |
| 1536 | } |
Richard Smith | 0e5d7b8 | 2013-07-25 23:08:39 +0000 | [diff] [blame] | 1537 | |
Richard Smith | be3980b | 2015-03-27 00:41:57 +0000 | [diff] [blame] | 1538 | // 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 Smith | c7d48d1 | 2015-05-20 17:50:35 +0000 | [diff] [blame] | 1543 | // 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 Smith | 4241314 | 2015-05-15 20:05:43 +0000 | [diff] [blame] | 1549 | if (SemaRef.ActiveTemplateInstantiations.empty() && |
| 1550 | // FIXME: Do something better in this case. |
| 1551 | !SemaRef.getLangOpts().ModulesLocalVisibility) { |
Richard Smith | be3980b | 2015-03-27 00:41:57 +0000 | [diff] [blame] | 1552 | // 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 Smith | 0e5d7b8 | 2013-07-25 23:08:39 +0000 | [diff] [blame] | 1561 | // 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 Smith | 5196a17 | 2015-08-24 03:38:11 +0000 | [diff] [blame] | 1566 | if (!DeclModule) { |
| 1567 | DeclModule = SemaRef.getOwningModule(D); |
| 1568 | assert(DeclModule && "hidden decl not from a module"); |
| 1569 | } |
| 1570 | |
Richard Smith | 0e5d7b8 | 2013-07-25 23:08:39 +0000 | [diff] [blame] | 1571 | // 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 Keren | 941ad90 | 2015-11-23 19:28:42 +0000 | [diff] [blame] | 1581 | return std::any_of(LookupModules.begin(), LookupModules.end(), |
Yaron Keren | 4c31fcf | 2015-11-24 20:18:24 +0000 | [diff] [blame] | 1582 | [&](Module *M) { return M->isModuleVisible(DeclModule); }); |
Richard Smith | 0e5d7b8 | 2013-07-25 23:08:39 +0000 | [diff] [blame] | 1583 | } |
| 1584 | |
Richard Smith | 4241314 | 2015-05-15 20:05:43 +0000 | [diff] [blame] | 1585 | bool Sema::isVisibleSlow(const NamedDecl *D) { |
| 1586 | return LookupResult::isVisible(*this, const_cast<NamedDecl*>(D)); |
| 1587 | } |
| 1588 | |
Richard Smith | 10568d8 | 2015-11-17 03:02:41 +0000 | [diff] [blame] | 1589 | bool 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 Gregor | 4a81456 | 2011-12-14 16:03:29 +0000 | [diff] [blame] | 1597 | /// \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 Smith | 0e5d7b8 | 2013-07-25 23:08:39 +0000 | [diff] [blame] | 1602 | /// |
Douglas Gregor | 4a81456 | 2011-12-14 16:03:29 +0000 | [diff] [blame] | 1603 | /// \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 Smith | e156254d | 2013-08-20 20:35:18 +0000 | [diff] [blame] | 1605 | static NamedDecl *findAcceptableDecl(Sema &SemaRef, NamedDecl *D) { |
| 1606 | assert(!LookupResult::isVisible(SemaRef, D) && "not in slow case"); |
Richard Smith | 0e5d7b8 | 2013-07-25 23:08:39 +0000 | [diff] [blame] | 1607 | |
Aaron Ballman | 86c9390 | 2014-03-06 23:45:36 +0000 | [diff] [blame] | 1608 | for (auto RD : D->redecls()) { |
Richard Smith | 4083e03 | 2016-02-17 21:52:44 +0000 | [diff] [blame] | 1609 | // Don't bother with extra checks if we already know this one isn't visible. |
| 1610 | if (RD == D) |
| 1611 | continue; |
| 1612 | |
Richard Smith | 6739a10 | 2016-05-05 00:56:12 +0000 | [diff] [blame] | 1613 | 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 Gregor | 4a81456 | 2011-12-14 16:03:29 +0000 | [diff] [blame] | 1619 | } |
Richard Smith | 0e5d7b8 | 2013-07-25 23:08:39 +0000 | [diff] [blame] | 1620 | |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1621 | return nullptr; |
Douglas Gregor | 4a81456 | 2011-12-14 16:03:29 +0000 | [diff] [blame] | 1622 | } |
| 1623 | |
Richard Smith | 6739a10 | 2016-05-05 00:56:12 +0000 | [diff] [blame] | 1624 | bool 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 Smith | e156254d | 2013-08-20 20:35:18 +0000 | [diff] [blame] | 1643 | NamedDecl *LookupResult::getAcceptableDeclSlow(NamedDecl *D) const { |
Richard Smith | 4083e03 | 2016-02-17 21:52:44 +0000 | [diff] [blame] | 1644 | 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 Takata | fc8c61a | 2014-11-11 23:00:42 +0000 | [diff] [blame] | 1661 | return findAcceptableDecl(getSema(), D); |
Richard Smith | e156254d | 2013-08-20 20:35:18 +0000 | [diff] [blame] | 1662 | } |
| 1663 | |
Douglas Gregor | 3407432 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 1664 | /// @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 Dennett | 91738ff | 2012-06-22 10:32:46 +0000 | [diff] [blame] | 1686 | /// @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 Gregor | 3407432 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 1690 | /// |
James Dennett | 91738ff | 2012-06-22 10:32:46 +0000 | [diff] [blame] | 1691 | /// @returns \c true if lookup succeeded and false otherwise. |
John McCall | 27b18f8 | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 1692 | bool Sema::LookupName(LookupResult &R, Scope *S, bool AllowBuiltinCreation) { |
| 1693 | DeclarationName Name = R.getLookupName(); |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1694 | if (!Name) return false; |
Douglas Gregor | 3407432 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 1695 | |
John McCall | 27b18f8 | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 1696 | LookupNameKind NameKind = R.getLookupKind(); |
| 1697 | |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1698 | if (!getLangOpts().CPlusPlus) { |
Douglas Gregor | 3407432 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 1699 | // Unqualified name lookup in C/Objective-C is purely lexical, so |
| 1700 | // search in the declarations attached to the name. |
John McCall | ea305ed | 2009-12-18 10:40:03 +0000 | [diff] [blame] | 1701 | if (NameKind == Sema::LookupRedeclarationWithLinkage) { |
Douglas Gregor | eddf433 | 2009-02-24 20:03:32 +0000 | [diff] [blame] | 1702 | // Find the nearest non-transparent declaration scope. |
| 1703 | while (!(S->getFlags() & Scope::DeclScope) || |
Ted Kremenek | c37877d | 2013-10-08 17:08:03 +0000 | [diff] [blame] | 1704 | (S->getEntity() && S->getEntity()->isTransparentContext())) |
Douglas Gregor | eddf433 | 2009-02-24 20:03:32 +0000 | [diff] [blame] | 1705 | S = S->getParent(); |
Douglas Gregor | ed8f288 | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 1706 | } |
| 1707 | |
Richard Smith | 541b38b | 2013-09-20 01:15:31 +0000 | [diff] [blame] | 1708 | // When performing a scope lookup, we want to find local extern decls. |
| 1709 | FindLocalExternScope FindLocals(R); |
| 1710 | |
Douglas Gregor | 3407432 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 1711 | // 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 Gregor | eddf433 | 2009-02-24 20:03:32 +0000 | [diff] [blame] | 1715 | bool LeftStartingScope = false; |
| 1716 | |
Douglas Gregor | ed8f288 | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 1717 | for (IdentifierResolver::iterator I = IdResolver.begin(Name), |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1718 | IEnd = IdResolver.end(); |
Douglas Gregor | ed8f288 | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 1719 | I != IEnd; ++I) |
Richard Smith | 0e5d7b8 | 2013-07-25 23:08:39 +0000 | [diff] [blame] | 1720 | if (NamedDecl *D = R.getAcceptableDecl(*I)) { |
Douglas Gregor | eddf433 | 2009-02-24 20:03:32 +0000 | [diff] [blame] | 1721 | if (NameKind == LookupRedeclarationWithLinkage) { |
| 1722 | // Determine whether this (or a previous) declaration is |
| 1723 | // out-of-scope. |
John McCall | 4887165 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 1724 | if (!LeftStartingScope && !S->isDeclScope(*I)) |
Douglas Gregor | eddf433 | 2009-02-24 20:03:32 +0000 | [diff] [blame] | 1725 | LeftStartingScope = true; |
| 1726 | |
| 1727 | // If we found something outside of our starting scope that |
| 1728 | // does not have linkage, skip it. |
Richard Smith | 1c34fb7 | 2013-08-13 18:18:50 +0000 | [diff] [blame] | 1729 | if (LeftStartingScope && !((*I)->hasLinkage())) { |
| 1730 | R.setShadowed(); |
Douglas Gregor | eddf433 | 2009-02-24 20:03:32 +0000 | [diff] [blame] | 1731 | continue; |
Richard Smith | 1c34fb7 | 2013-08-13 18:18:50 +0000 | [diff] [blame] | 1732 | } |
Douglas Gregor | eddf433 | 2009-02-24 20:03:32 +0000 | [diff] [blame] | 1733 | } |
Fariborz Jahanian | 7f4427f | 2011-07-12 17:16:56 +0000 | [diff] [blame] | 1734 | else if (NameKind == LookupObjCImplicitSelfParam && |
| 1735 | !isa<ImplicitParamDecl>(*I)) |
| 1736 | continue; |
Richard Smith | 0e5d7b8 | 2013-07-25 23:08:39 +0000 | [diff] [blame] | 1737 | |
Douglas Gregor | 4a81456 | 2011-12-14 16:03:29 +0000 | [diff] [blame] | 1738 | R.addDecl(D); |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1739 | |
Douglas Gregor | b59643b | 2012-01-03 23:26:26 +0000 | [diff] [blame] | 1740 | // Check whether there are any other declarations with the same name |
| 1741 | // and in the same scope. |
Douglas Gregor | 9b7b391 | 2012-01-04 16:44:10 +0000 | [diff] [blame] | 1742 | if (I != IEnd) { |
Douglas Gregor | 81bd038 | 2012-01-13 23:06:53 +0000 | [diff] [blame] | 1743 | // 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 Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1752 | S = nullptr; |
Douglas Gregor | 81bd038 | 2012-01-13 23:06:53 +0000 | [diff] [blame] | 1753 | |
| 1754 | // Compute the DeclContext, if we need it. |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1755 | DeclContext *DC = nullptr; |
Douglas Gregor | 81bd038 | 2012-01-13 23:06:53 +0000 | [diff] [blame] | 1756 | if (!S) |
| 1757 | DC = (*I)->getDeclContext()->getRedeclContext(); |
| 1758 | |
Douglas Gregor | 9b7b391 | 2012-01-04 16:44:10 +0000 | [diff] [blame] | 1759 | IdentifierResolver::iterator LastI = I; |
| 1760 | for (++LastI; LastI != IEnd; ++LastI) { |
Douglas Gregor | 81bd038 | 2012-01-13 23:06:53 +0000 | [diff] [blame] | 1761 | 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 Smith | 0e5d7b8 | 2013-07-25 23:08:39 +0000 | [diff] [blame] | 1772 | |
| 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 Gregor | 9b7b391 | 2012-01-04 16:44:10 +0000 | [diff] [blame] | 1776 | } |
Douglas Gregor | 4e5cbdc | 2009-02-11 23:02:49 +0000 | [diff] [blame] | 1777 | |
Douglas Gregor | 9b7b391 | 2012-01-04 16:44:10 +0000 | [diff] [blame] | 1778 | R.resolveKind(); |
Douglas Gregor | 4e5cbdc | 2009-02-11 23:02:49 +0000 | [diff] [blame] | 1779 | } |
Richard Smith | 541b38b | 2013-09-20 01:15:31 +0000 | [diff] [blame] | 1780 | |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1781 | return true; |
Douglas Gregor | 4e5cbdc | 2009-02-11 23:02:49 +0000 | [diff] [blame] | 1782 | } |
Douglas Gregor | 3407432 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 1783 | } else { |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 1784 | // Perform C++ unqualified name lookup. |
John McCall | 27b18f8 | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 1785 | if (CppLookupName(R, S)) |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1786 | return true; |
Douglas Gregor | 3407432 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 1787 | } |
| 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 Naumann | 43dec14 | 2011-04-13 13:19:46 +0000 | [diff] [blame] | 1792 | if (AllowBuiltinCreation && LookupBuiltin(*this, R)) |
| 1793 | return true; |
Douglas Gregor | b9063fc | 2009-02-13 23:20:09 +0000 | [diff] [blame] | 1794 | |
Axel Naumann | 016538a | 2011-02-24 16:47:47 +0000 | [diff] [blame] | 1795 | // 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 Gregor | 3407432 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 1800 | } |
| 1801 | |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 1802 | /// @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 Dennett | 51a8d8b | 2012-06-19 21:05:49 +0000 | [diff] [blame] | 1806 | /// Given X::m (where X is a user-declared namespace), or given \::m |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 1807 | /// (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 Dennett | 51a8d8b | 2012-06-19 21:05:49 +0000 | [diff] [blame] | 1819 | /// |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 1820 | /// 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 Gregor | d3a5918 | 2010-02-12 05:48:04 +0000 | [diff] [blame] | 1829 | static bool LookupQualifiedNameInUsingDirectives(Sema &S, LookupResult &R, |
John McCall | 27b18f8 | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 1830 | DeclContext *StartDC) { |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 1831 | assert(StartDC->isFileContext() && "start context is not a file context"); |
| 1832 | |
Aaron Ballman | 804a7fb | 2014-03-17 17:14:12 +0000 | [diff] [blame] | 1833 | DeclContext::udir_range UsingDirectives = StartDC->using_directives(); |
| 1834 | if (UsingDirectives.begin() == UsingDirectives.end()) return false; |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 1835 | |
| 1836 | // We have at least added all these contexts to the queue. |
Benjamin Kramer | 3adbe1c | 2012-02-23 16:06:01 +0000 | [diff] [blame] | 1837 | llvm::SmallPtrSet<DeclContext*, 8> Visited; |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 1838 | Visited.insert(StartDC); |
| 1839 | |
| 1840 | // We have not yet looked into these namespaces, much less added |
| 1841 | // their "using-children" to the queue. |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1842 | SmallVector<NamespaceDecl*, 8> Queue; |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 1843 | |
| 1844 | // We have already looked into the initial namespace; seed the queue |
| 1845 | // with its using-children. |
Aaron Ballman | 804a7fb | 2014-03-17 17:14:12 +0000 | [diff] [blame] | 1846 | for (auto *I : UsingDirectives) { |
| 1847 | NamespaceDecl *ND = I->getNominatedNamespace()->getOriginalNamespace(); |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 1848 | if (Visited.insert(ND).second) |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 1849 | 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 McCall | 5cebab1 | 2009-11-18 07:57:50 +0000 | [diff] [blame] | 1859 | LookupResult LocalR(LookupResult::Temporary, R); |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 1860 | |
| 1861 | bool Found = false; |
| 1862 | while (!Queue.empty()) { |
Robert Wilhelm | 25284cc | 2013-08-23 16:11:15 +0000 | [diff] [blame] | 1863 | NamespaceDecl *ND = Queue.pop_back_val(); |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 1864 | |
| 1865 | // We go through some convolutions here to avoid copying results |
| 1866 | // between LookupResults. |
| 1867 | bool UseLocal = !R.empty(); |
John McCall | 5cebab1 | 2009-11-18 07:57:50 +0000 | [diff] [blame] | 1868 | LookupResult &DirectR = UseLocal ? LocalR : R; |
Douglas Gregor | d3a5918 | 2010-02-12 05:48:04 +0000 | [diff] [blame] | 1869 | bool FoundDirect = LookupDirect(S, DirectR, ND); |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 1870 | |
| 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 Ballman | 804a7fb | 2014-03-17 17:14:12 +0000 | [diff] [blame] | 1894 | for (auto I : ND->using_directives()) { |
Aaron Ballman | 63ab760 | 2014-03-07 13:44:44 +0000 | [diff] [blame] | 1895 | NamespaceDecl *Nom = I->getNominatedNamespace(); |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 1896 | if (Visited.insert(Nom).second) |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 1897 | 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 Gregor | 3998219 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 1911 | /// \brief Callback that looks for any member of a class with the given name. |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1912 | static bool LookupAnyMember(const CXXBaseSpecifier *Specifier, |
Benjamin Kramer | 6e4f6e1 | 2015-07-25 15:07:25 +0000 | [diff] [blame] | 1913 | CXXBasePath &Path, DeclarationName Name) { |
Douglas Gregor | 3998219 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 1914 | RecordDecl *BaseRecord = Specifier->getType()->getAs<RecordType>()->getDecl(); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1915 | |
Benjamin Kramer | 6e4f6e1 | 2015-07-25 15:07:25 +0000 | [diff] [blame] | 1916 | Path.Decls = BaseRecord->lookup(Name); |
David Blaikie | ff7d47a | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 1917 | return !Path.Decls.empty(); |
Douglas Gregor | 3998219 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 1918 | } |
| 1919 | |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1920 | /// \brief Determine whether the given set of member declarations contains only |
Douglas Gregor | c0d2490 | 2010-10-22 22:08:47 +0000 | [diff] [blame] | 1921 | /// static members, nested types, and enumerators. |
| 1922 | template<typename InputIterator> |
| 1923 | static 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 Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1927 | |
Douglas Gregor | c0d2490 | 2010-10-22 22:08:47 +0000 | [diff] [blame] | 1928 | 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 Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1933 | |
Douglas Gregor | c0d2490 | 2010-10-22 22:08:47 +0000 | [diff] [blame] | 1934 | if (!isa<CXXMethodDecl>(D)) { |
| 1935 | assert(isa<TagDecl>(D) && "Non-function must be a tag decl"); |
| 1936 | break; |
| 1937 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1938 | |
Douglas Gregor | c0d2490 | 2010-10-22 22:08:47 +0000 | [diff] [blame] | 1939 | if (!cast<CXXMethodDecl>(D)->isStatic()) { |
| 1940 | AllMethodsAreStatic = false; |
| 1941 | break; |
| 1942 | } |
| 1943 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1944 | |
Douglas Gregor | c0d2490 | 2010-10-22 22:08:47 +0000 | [diff] [blame] | 1945 | if (AllMethodsAreStatic) |
| 1946 | return true; |
| 1947 | } |
| 1948 | |
| 1949 | return false; |
| 1950 | } |
| 1951 | |
Douglas Gregor | d0d2ee0 | 2010-01-15 01:44:47 +0000 | [diff] [blame] | 1952 | /// \brief Perform qualified name lookup into a given context. |
Douglas Gregor | 3407432 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 1953 | /// |
| 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 Gregor | d0d2ee0 | 2010-01-15 01:44:47 +0000 | [diff] [blame] | 1956 | /// "std::vector" or "x->member", or as part of unqualified name lookup. |
Douglas Gregor | 3407432 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 1957 | /// |
| 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 Gregor | d0d2ee0 | 2010-01-15 01:44:47 +0000 | [diff] [blame] | 1964 | /// \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 Gregor | 3407432 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 1967 | /// search. If the lookup criteria permits, name lookup may also search |
| 1968 | /// in the parent contexts or (for C++ classes) base classes. |
| 1969 | /// |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1970 | /// \param InUnqualifiedLookup true if this is qualified name lookup that |
Douglas Gregor | d0d2ee0 | 2010-01-15 01:44:47 +0000 | [diff] [blame] | 1971 | /// occurs as part of unqualified name lookup. |
Douglas Gregor | 3407432 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 1972 | /// |
Douglas Gregor | d0d2ee0 | 2010-01-15 01:44:47 +0000 | [diff] [blame] | 1973 | /// \returns true if lookup succeeded, false if it failed. |
| 1974 | bool Sema::LookupQualifiedName(LookupResult &R, DeclContext *LookupCtx, |
| 1975 | bool InUnqualifiedLookup) { |
Douglas Gregor | 3407432 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 1976 | assert(LookupCtx && "Sema::LookupQualifiedName requires a lookup context"); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1977 | |
John McCall | 27b18f8 | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 1978 | if (!R.getLookupName()) |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1979 | return false; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1980 | |
Douglas Gregor | b7bfe79 | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 1981 | // Make sure that the declaration context is complete. |
| 1982 | assert((!isa<TagDecl>(LookupCtx) || |
| 1983 | LookupCtx->isDependentContext() || |
John McCall | f937c02 | 2011-10-07 06:10:15 +0000 | [diff] [blame] | 1984 | cast<TagDecl>(LookupCtx)->isCompleteDefinition() || |
Richard Smith | 7d137e3 | 2012-03-23 03:33:32 +0000 | [diff] [blame] | 1985 | cast<TagDecl>(LookupCtx)->isBeingDefined()) && |
Douglas Gregor | b7bfe79 | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 1986 | "Declaration context must already be complete!"); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1987 | |
Eugene Leviant | 0d8103e | 2015-11-18 12:48:05 +0000 | [diff] [blame] | 1988 | 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 Gregor | d3a5918 | 2010-02-12 05:48:04 +0000 | [diff] [blame] | 2000 | if (LookupDirect(*this, R, LookupCtx)) { |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 2001 | R.resolveKind(); |
John McCall | 553c079 | 2010-01-23 00:46:32 +0000 | [diff] [blame] | 2002 | if (isa<CXXRecordDecl>(LookupCtx)) |
| 2003 | R.setNamingClass(cast<CXXRecordDecl>(LookupCtx)); |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 2004 | return true; |
| 2005 | } |
Douglas Gregor | 3407432 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 2006 | |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 2007 | // 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 McCall | 27b18f8 | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 2016 | if (R.isForRedeclaration()) |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 2017 | return false; |
| 2018 | |
John McCall | 27b18f8 | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 2019 | // If this is a namespace, look it up in the implied namespaces. |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 2020 | if (LookupCtx->isFileContext()) |
Douglas Gregor | d3a5918 | 2010-02-12 05:48:04 +0000 | [diff] [blame] | 2021 | return LookupQualifiedNameInUsingDirectives(*this, R, LookupCtx); |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 2022 | |
Douglas Gregor | b7bfe79 | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 2023 | // If this isn't a C++ class, we aren't allowed to look into base |
Douglas Gregor | cc2427c | 2009-09-11 22:57:37 +0000 | [diff] [blame] | 2024 | // classes, we're done. |
Douglas Gregor | d0d2ee0 | 2010-01-15 01:44:47 +0000 | [diff] [blame] | 2025 | CXXRecordDecl *LookupRec = dyn_cast<CXXRecordDecl>(LookupCtx); |
Douglas Gregor | 5a5fcd8 | 2010-07-01 00:21:21 +0000 | [diff] [blame] | 2026 | if (!LookupRec || !LookupRec->getDefinition()) |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 2027 | return false; |
Douglas Gregor | 960b5bc | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 2028 | |
Douglas Gregor | d0d2ee0 | 2010-01-15 01:44:47 +0000 | [diff] [blame] | 2029 | // 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 Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2031 | // dependent base classes, then we either have to delay lookup until |
Douglas Gregor | d0d2ee0 | 2010-01-15 01:44:47 +0000 | [diff] [blame] | 2032 | // 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 Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2039 | |
Douglas Gregor | 960b5bc | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 2040 | // Perform lookup into our base classes. |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 2041 | CXXBasePaths Paths; |
| 2042 | Paths.setOrigin(LookupRec); |
Douglas Gregor | 960b5bc | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 2043 | |
| 2044 | // Look for this member in our base classes |
Benjamin Kramer | 6e4f6e1 | 2015-07-25 15:07:25 +0000 | [diff] [blame] | 2045 | bool (*BaseCallback)(const CXXBaseSpecifier *Specifier, CXXBasePath &Path, |
| 2046 | DeclarationName Name) = nullptr; |
John McCall | 27b18f8 | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 2047 | switch (R.getLookupKind()) { |
Fariborz Jahanian | 7f4427f | 2011-07-12 17:16:56 +0000 | [diff] [blame] | 2048 | case LookupObjCImplicitSelfParam: |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 2049 | case LookupOrdinaryName: |
| 2050 | case LookupMemberName: |
| 2051 | case LookupRedeclarationWithLinkage: |
Richard Smith | 114394f | 2013-08-09 04:35:01 +0000 | [diff] [blame] | 2052 | case LookupLocalFriendName: |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 2053 | BaseCallback = &CXXRecordDecl::FindOrdinaryMember; |
| 2054 | break; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2055 | |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 2056 | case LookupTagName: |
| 2057 | BaseCallback = &CXXRecordDecl::FindTagMember; |
| 2058 | break; |
John McCall | 84d8767 | 2009-12-10 09:41:52 +0000 | [diff] [blame] | 2059 | |
Douglas Gregor | 3998219 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 2060 | case LookupAnyName: |
| 2061 | BaseCallback = &LookupAnyMember; |
| 2062 | break; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2063 | |
Alexey Bataev | 94a4f0c | 2016-03-03 05:21:39 +0000 | [diff] [blame] | 2064 | case LookupOMPReductionName: |
| 2065 | BaseCallback = &CXXRecordDecl::FindOMPReductionMember; |
| 2066 | break; |
| 2067 | |
John McCall | 84d8767 | 2009-12-10 09:41:52 +0000 | [diff] [blame] | 2068 | case LookupUsingDeclName: |
| 2069 | // This lookup is for redeclarations only. |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2070 | |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 2071 | case LookupOperatorName: |
| 2072 | case LookupNamespaceName: |
| 2073 | case LookupObjCProtocolName: |
Chris Lattner | ebb5c6c | 2011-02-18 01:27:55 +0000 | [diff] [blame] | 2074 | case LookupLabel: |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 2075 | // These lookups will never find a member in a C++ class (or base class). |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 2076 | return false; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2077 | |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 2078 | case LookupNestedNameSpecifierName: |
| 2079 | BaseCallback = &CXXRecordDecl::FindNestedNameSpecifierMember; |
| 2080 | break; |
| 2081 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2082 | |
Benjamin Kramer | 6e4f6e1 | 2015-07-25 15:07:25 +0000 | [diff] [blame] | 2083 | DeclarationName Name = R.getLookupName(); |
| 2084 | if (!LookupRec->lookupInBases( |
| 2085 | [=](const CXXBaseSpecifier *Specifier, CXXBasePath &Path) { |
| 2086 | return BaseCallback(Specifier, Path, Name); |
| 2087 | }, |
| 2088 | Paths)) |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 2089 | return false; |
Douglas Gregor | 960b5bc | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 2090 | |
John McCall | 553c079 | 2010-01-23 00:46:32 +0000 | [diff] [blame] | 2091 | R.setNamingClass(LookupRec); |
| 2092 | |
Douglas Gregor | 960b5bc | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 2093 | // 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 Gregor | 960b5bc | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 2099 | QualType SubobjectType; |
Daniel Dunbar | 435bbe0 | 2009-01-15 18:32:35 +0000 | [diff] [blame] | 2100 | int SubobjectNumber = 0; |
John McCall | a332b95 | 2010-03-18 23:49:19 +0000 | [diff] [blame] | 2101 | AccessSpecifier SubobjectAccess = AS_none; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2102 | |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 2103 | for (CXXBasePaths::paths_iterator Path = Paths.begin(), PathEnd = Paths.end(); |
Douglas Gregor | 960b5bc | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 2104 | Path != PathEnd; ++Path) { |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 2105 | const CXXBasePathElement &PathElement = Path->back(); |
Douglas Gregor | 960b5bc | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 2106 | |
John McCall | 401982f | 2010-01-20 21:53:11 +0000 | [diff] [blame] | 2107 | // Pick the best (i.e. most permissive i.e. numerically lowest) access |
| 2108 | // across all paths. |
| 2109 | SubobjectAccess = std::min(SubobjectAccess, Path->Access); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2110 | |
Douglas Gregor | 960b5bc | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 2111 | // Determine whether we're looking at a distinct sub-object or not. |
| 2112 | if (SubobjectType.isNull()) { |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 2113 | // This is the first subobject we've looked at. Record its type. |
Douglas Gregor | 960b5bc | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 2114 | SubobjectType = Context.getCanonicalType(PathElement.Base->getType()); |
| 2115 | SubobjectNumber = PathElement.SubobjectNumber; |
Douglas Gregor | c0d2490 | 2010-10-22 22:08:47 +0000 | [diff] [blame] | 2116 | continue; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2117 | } |
| 2118 | |
Douglas Gregor | c0d2490 | 2010-10-22 22:08:47 +0000 | [diff] [blame] | 2119 | if (SubobjectType |
Douglas Gregor | 960b5bc | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 2120 | != Context.getCanonicalType(PathElement.Base->getType())) { |
| 2121 | // We found members of the given name in two subobjects of |
Douglas Gregor | c0d2490 | 2010-10-22 22:08:47 +0000 | [diff] [blame] | 2122 | // different types. If the declaration sets aren't the same, this |
Nikola Smiljanic | 1c12568 | 2014-07-09 05:42:35 +0000 | [diff] [blame] | 2123 | // lookup is ambiguous. |
David Blaikie | ff7d47a | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 2124 | if (HasOnlyStaticMembers(Path->Decls.begin(), Path->Decls.end())) { |
Douglas Gregor | c0d2490 | 2010-10-22 22:08:47 +0000 | [diff] [blame] | 2125 | CXXBasePaths::paths_iterator FirstPath = Paths.begin(); |
David Blaikie | ff7d47a | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 2126 | DeclContext::lookup_iterator FirstD = FirstPath->Decls.begin(); |
| 2127 | DeclContext::lookup_iterator CurrentD = Path->Decls.begin(); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2128 | |
David Blaikie | ff7d47a | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 2129 | while (FirstD != FirstPath->Decls.end() && |
| 2130 | CurrentD != Path->Decls.end()) { |
Douglas Gregor | c0d2490 | 2010-10-22 22:08:47 +0000 | [diff] [blame] | 2131 | if ((*FirstD)->getUnderlyingDecl()->getCanonicalDecl() != |
| 2132 | (*CurrentD)->getUnderlyingDecl()->getCanonicalDecl()) |
| 2133 | break; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2134 | |
Douglas Gregor | c0d2490 | 2010-10-22 22:08:47 +0000 | [diff] [blame] | 2135 | ++FirstD; |
| 2136 | ++CurrentD; |
| 2137 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2138 | |
David Blaikie | ff7d47a | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 2139 | if (FirstD == FirstPath->Decls.end() && |
| 2140 | CurrentD == Path->Decls.end()) |
Douglas Gregor | c0d2490 | 2010-10-22 22:08:47 +0000 | [diff] [blame] | 2141 | continue; |
| 2142 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2143 | |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 2144 | R.setAmbiguousBaseSubobjectTypes(Paths); |
| 2145 | return true; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2146 | } |
| 2147 | |
Douglas Gregor | c0d2490 | 2010-10-22 22:08:47 +0000 | [diff] [blame] | 2148 | if (SubobjectNumber != PathElement.SubobjectNumber) { |
Douglas Gregor | 960b5bc | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 2149 | // 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 Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2154 | // has more than one base class subobject of type T. |
David Blaikie | ff7d47a | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 2155 | if (HasOnlyStaticMembers(Path->Decls.begin(), Path->Decls.end())) |
Douglas Gregor | 960b5bc | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 2156 | continue; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2157 | |
Douglas Gregor | 960b5bc | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 2158 | // We have found a nonstatic member name in multiple, distinct |
| 2159 | // subobjects. Name lookup is ambiguous. |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 2160 | R.setAmbiguousBaseSubobjects(Paths); |
| 2161 | return true; |
Douglas Gregor | 960b5bc | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 2162 | } |
| 2163 | } |
| 2164 | |
| 2165 | // Lookup in a base class succeeded; return these results. |
| 2166 | |
Aaron Ballman | 1e606f4 | 2014-07-15 22:03:49 +0000 | [diff] [blame] | 2167 | for (auto *D : Paths.front().Decls) { |
John McCall | 553c079 | 2010-01-23 00:46:32 +0000 | [diff] [blame] | 2168 | AccessSpecifier AS = CXXRecordDecl::MergeAccess(SubobjectAccess, |
| 2169 | D->getAccess()); |
| 2170 | R.addDecl(D, AS); |
| 2171 | } |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 2172 | R.resolveKind(); |
| 2173 | return true; |
Douglas Gregor | 3407432 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 2174 | } |
| 2175 | |
Nikola Smiljanic | fce370e | 2014-12-01 23:15:01 +0000 | [diff] [blame] | 2176 | /// \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. |
| 2191 | bool 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 Gregor | 3407432 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 2201 | /// @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 Smiljanic | 905bfda | 2014-10-04 10:17:57 +0000 | [diff] [blame] | 2208 | /// respectively) on the given name and return those results. It will |
| 2209 | /// perform a special type of lookup for "__super::" scope specifier. |
Douglas Gregor | 3407432 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 2210 | /// |
| 2211 | /// @param S The scope from which unqualified name lookup will |
| 2212 | /// begin. |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2213 | /// |
Douglas Gregor | e861bac | 2009-08-25 22:51:20 +0000 | [diff] [blame] | 2214 | /// @param SS An optional C++ scope-specifier, e.g., "::N::M". |
Douglas Gregor | 3407432 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 2215 | /// |
Douglas Gregor | e861bac | 2009-08-25 22:51:20 +0000 | [diff] [blame] | 2216 | /// @param EnteringContext Indicates whether we are going to enter the |
| 2217 | /// context of the scope-specifier SS (if present). |
| 2218 | /// |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 2219 | /// @returns True if any decls were found (but possibly ambiguous) |
Jeffrey Yasskin | c76498d | 2010-04-08 16:38:48 +0000 | [diff] [blame] | 2220 | bool Sema::LookupParsedName(LookupResult &R, Scope *S, CXXScopeSpec *SS, |
John McCall | 27b18f8 | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 2221 | bool AllowBuiltinCreation, bool EnteringContext) { |
Douglas Gregor | e861bac | 2009-08-25 22:51:20 +0000 | [diff] [blame] | 2222 | if (SS && SS->isInvalid()) { |
| 2223 | // When the scope specifier is invalid, don't even look for |
Douglas Gregor | c9f9b86 | 2009-05-11 19:58:34 +0000 | [diff] [blame] | 2224 | // anything. |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 2225 | return false; |
Douglas Gregor | e861bac | 2009-08-25 22:51:20 +0000 | [diff] [blame] | 2226 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2227 | |
Douglas Gregor | e861bac | 2009-08-25 22:51:20 +0000 | [diff] [blame] | 2228 | if (SS && SS->isSet()) { |
Nikola Smiljanic | 905bfda | 2014-10-04 10:17:57 +0000 | [diff] [blame] | 2229 | NestedNameSpecifier *NNS = SS->getScopeRep(); |
| 2230 | if (NNS->getKind() == NestedNameSpecifier::Super) |
| 2231 | return LookupInSuper(R, NNS->getAsRecordDecl()); |
| 2232 | |
Douglas Gregor | e861bac | 2009-08-25 22:51:20 +0000 | [diff] [blame] | 2233 | if (DeclContext *DC = computeDeclContext(*SS, EnteringContext)) { |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2234 | // We have resolved the scope specifier to a particular declaration |
Douglas Gregor | e861bac | 2009-08-25 22:51:20 +0000 | [diff] [blame] | 2235 | // contex, and will perform name lookup in that context. |
John McCall | 0b66eb3 | 2010-05-01 00:40:08 +0000 | [diff] [blame] | 2236 | if (!DC->isDependentContext() && RequireCompleteDeclContext(*SS, DC)) |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 2237 | return false; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2238 | |
John McCall | 27b18f8 | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 2239 | R.setContextRange(SS->getRange()); |
John McCall | 27b18f8 | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 2240 | return LookupQualifiedName(R, DC); |
Douglas Gregor | 5253768 | 2009-03-19 00:18:19 +0000 | [diff] [blame] | 2241 | } |
Douglas Gregor | c9f9b86 | 2009-05-11 19:58:34 +0000 | [diff] [blame] | 2242 | |
Douglas Gregor | e861bac | 2009-08-25 22:51:20 +0000 | [diff] [blame] | 2243 | // We could not resolve the scope specified to a specific declaration |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2244 | // context, which means that SS refers to an unknown specialization. |
Douglas Gregor | e861bac | 2009-08-25 22:51:20 +0000 | [diff] [blame] | 2245 | // Name lookup can't find anything in this case. |
Douglas Gregor | 89ab56d | 2011-10-24 22:24:50 +0000 | [diff] [blame] | 2246 | R.setNotFoundInCurrentInstantiation(); |
| 2247 | R.setContextRange(SS->getRange()); |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 2248 | return false; |
Douglas Gregor | ed8f288 | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 2249 | } |
| 2250 | |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2251 | // Perform unqualified name lookup starting in the given scope. |
John McCall | 27b18f8 | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 2252 | return LookupName(R, S, AllowBuiltinCreation); |
Douglas Gregor | 3407432 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 2253 | } |
| 2254 | |
Nikola Smiljanic | 6786024 | 2014-09-26 00:28:20 +0000 | [diff] [blame] | 2255 | /// \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 Smiljanic | 905bfda | 2014-10-04 10:17:57 +0000 | [diff] [blame] | 2262 | /// |
| 2263 | /// @returns True if any decls were found (but possibly ambiguous) |
| 2264 | bool Sema::LookupInSuper(LookupResult &R, CXXRecordDecl *Class) { |
John McCall | f4a1b77 | 2015-09-09 23:04:17 +0000 | [diff] [blame] | 2265 | // 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 Smiljanic | 6786024 | 2014-09-26 00:28:20 +0000 | [diff] [blame] | 2269 | 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 McCall | f4a1b77 | 2015-09-09 23:04:17 +0000 | [diff] [blame] | 2275 | |
| 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 Smiljanic | 6786024 | 2014-09-26 00:28:20 +0000 | [diff] [blame] | 2285 | } |
| 2286 | |
| 2287 | R.resolveKind(); |
John McCall | f4a1b77 | 2015-09-09 23:04:17 +0000 | [diff] [blame] | 2288 | R.setNamingClass(Class); |
Nikola Smiljanic | 905bfda | 2014-10-04 10:17:57 +0000 | [diff] [blame] | 2289 | |
| 2290 | return !R.empty(); |
Nikola Smiljanic | 6786024 | 2014-09-26 00:28:20 +0000 | [diff] [blame] | 2291 | } |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 2292 | |
James Dennett | 4172512 | 2012-06-22 10:16:05 +0000 | [diff] [blame] | 2293 | /// \brief Produce a diagnostic describing the ambiguity that resulted |
Douglas Gregor | 960b5bc | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 2294 | /// from name lookup. |
| 2295 | /// |
James Dennett | 4172512 | 2012-06-22 10:16:05 +0000 | [diff] [blame] | 2296 | /// \param Result The result of the ambiguous lookup to be diagnosed. |
Serge Pavlov | 9929209 | 2013-08-29 07:23:24 +0000 | [diff] [blame] | 2297 | void Sema::DiagnoseAmbiguousLookup(LookupResult &Result) { |
Douglas Gregor | 960b5bc | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 2298 | assert(Result.isAmbiguous() && "Lookup result must be ambiguous"); |
| 2299 | |
John McCall | 27b18f8 | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 2300 | DeclarationName Name = Result.getLookupName(); |
| 2301 | SourceLocation NameLoc = Result.getNameLoc(); |
| 2302 | SourceRange LookupRange = Result.getContextRange(); |
| 2303 | |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 2304 | 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 Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2311 | |
David Blaikie | ff7d47a | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 2312 | DeclContext::lookup_iterator Found = Paths->front().Decls.begin(); |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 2313 | while (isa<CXXMethodDecl>(*Found) && |
| 2314 | cast<CXXMethodDecl>(*Found)->isStatic()) |
| 2315 | ++Found; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2316 | |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 2317 | Diag((*Found)->getLocation(), diag::note_ambiguous_member_found); |
Serge Pavlov | 9929209 | 2013-08-29 07:23:24 +0000 | [diff] [blame] | 2318 | break; |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 2319 | } |
Douglas Gregor | 1c846b0 | 2009-01-16 00:38:09 +0000 | [diff] [blame] | 2320 | |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 2321 | case LookupResult::AmbiguousBaseSubobjectTypes: { |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 2322 | Diag(NameLoc, diag::err_ambiguous_member_multiple_subobject_types) |
| 2323 | << Name << LookupRange; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2324 | |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 2325 | CXXBasePaths *Paths = Result.getBasePaths(); |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 2326 | std::set<Decl *> DeclsPrinted; |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 2327 | for (CXXBasePaths::paths_iterator Path = Paths->begin(), |
| 2328 | PathEnd = Paths->end(); |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 2329 | Path != PathEnd; ++Path) { |
David Blaikie | ff7d47a | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 2330 | Decl *D = Path->Decls.front(); |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 2331 | if (DeclsPrinted.insert(D).second) |
| 2332 | Diag(D->getLocation(), diag::note_ambiguous_member_found); |
| 2333 | } |
Serge Pavlov | 9929209 | 2013-08-29 07:23:24 +0000 | [diff] [blame] | 2334 | break; |
Douglas Gregor | 1c846b0 | 2009-01-16 00:38:09 +0000 | [diff] [blame] | 2335 | } |
| 2336 | |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 2337 | case LookupResult::AmbiguousTagHiding: { |
| 2338 | Diag(NameLoc, diag::err_ambiguous_tag_hiding) << Name << LookupRange; |
Douglas Gregor | f23311d | 2009-01-17 01:13:24 +0000 | [diff] [blame] | 2339 | |
Nick Lewycky | 4b81fc87 | 2015-10-18 20:32:12 +0000 | [diff] [blame] | 2340 | llvm::SmallPtrSet<NamedDecl*, 8> TagDecls; |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 2341 | |
Aaron Ballman | 1e606f4 | 2014-07-15 22:03:49 +0000 | [diff] [blame] | 2342 | for (auto *D : Result) |
| 2343 | if (TagDecl *TD = dyn_cast<TagDecl>(D)) { |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 2344 | TagDecls.insert(TD); |
| 2345 | Diag(TD->getLocation(), diag::note_hidden_tag); |
| 2346 | } |
| 2347 | |
Aaron Ballman | 1e606f4 | 2014-07-15 22:03:49 +0000 | [diff] [blame] | 2348 | for (auto *D : Result) |
| 2349 | if (!isa<TagDecl>(D)) |
| 2350 | Diag(D->getLocation(), diag::note_hiding_object); |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 2351 | |
| 2352 | // For recovery purposes, go ahead and implement the hiding. |
John McCall | ad37125 | 2010-01-20 00:46:10 +0000 | [diff] [blame] | 2353 | LookupResult::Filter F = Result.makeFilter(); |
| 2354 | while (F.hasNext()) { |
| 2355 | if (TagDecls.count(F.next())) |
| 2356 | F.erase(); |
| 2357 | } |
| 2358 | F.done(); |
Serge Pavlov | 9929209 | 2013-08-29 07:23:24 +0000 | [diff] [blame] | 2359 | break; |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 2360 | } |
| 2361 | |
| 2362 | case LookupResult::AmbiguousReference: { |
| 2363 | Diag(NameLoc, diag::err_ambiguous_reference) << Name << LookupRange; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2364 | |
Aaron Ballman | 1e606f4 | 2014-07-15 22:03:49 +0000 | [diff] [blame] | 2365 | for (auto *D : Result) |
| 2366 | Diag(D->getLocation(), diag::note_ambiguous_candidate) << D; |
Serge Pavlov | 9929209 | 2013-08-29 07:23:24 +0000 | [diff] [blame] | 2367 | break; |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 2368 | } |
Serge Pavlov | 9929209 | 2013-08-29 07:23:24 +0000 | [diff] [blame] | 2369 | } |
Douglas Gregor | 960b5bc | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 2370 | } |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2371 | |
John McCall | f24d7bb | 2010-05-28 18:45:08 +0000 | [diff] [blame] | 2372 | namespace { |
| 2373 | struct AssociatedLookup { |
John McCall | 7d8b041 | 2012-08-24 20:38:34 +0000 | [diff] [blame] | 2374 | AssociatedLookup(Sema &S, SourceLocation InstantiationLoc, |
John McCall | f24d7bb | 2010-05-28 18:45:08 +0000 | [diff] [blame] | 2375 | Sema::AssociatedNamespaceSet &Namespaces, |
| 2376 | Sema::AssociatedClassSet &Classes) |
John McCall | 7d8b041 | 2012-08-24 20:38:34 +0000 | [diff] [blame] | 2377 | : S(S), Namespaces(Namespaces), Classes(Classes), |
| 2378 | InstantiationLoc(InstantiationLoc) { |
John McCall | f24d7bb | 2010-05-28 18:45:08 +0000 | [diff] [blame] | 2379 | } |
| 2380 | |
| 2381 | Sema &S; |
| 2382 | Sema::AssociatedNamespaceSet &Namespaces; |
| 2383 | Sema::AssociatedClassSet &Classes; |
John McCall | 7d8b041 | 2012-08-24 20:38:34 +0000 | [diff] [blame] | 2384 | SourceLocation InstantiationLoc; |
John McCall | f24d7bb | 2010-05-28 18:45:08 +0000 | [diff] [blame] | 2385 | }; |
Hans Wennborg | dcfba33 | 2015-10-06 23:40:43 +0000 | [diff] [blame] | 2386 | } // end anonymous namespace |
John McCall | f24d7bb | 2010-05-28 18:45:08 +0000 | [diff] [blame] | 2387 | |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2388 | static void |
John McCall | f24d7bb | 2010-05-28 18:45:08 +0000 | [diff] [blame] | 2389 | addAssociatedClassesAndNamespaces(AssociatedLookup &Result, QualType T); |
John McCall | c7e8e79 | 2009-08-07 22:18:02 +0000 | [diff] [blame] | 2390 | |
Douglas Gregor | 8b89522 | 2010-04-30 07:08:38 +0000 | [diff] [blame] | 2391 | static 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 Redl | bd59576 | 2010-08-31 20:53:31 +0000 | [diff] [blame] | 2398 | // 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 Gregor | 8b89522 | 2010-04-30 07:08:38 +0000 | [diff] [blame] | 2403 | Ctx = Ctx->getParent(); |
| 2404 | |
John McCall | c7e8e79 | 2009-08-07 22:18:02 +0000 | [diff] [blame] | 2405 | if (Ctx->isFileContext()) |
Douglas Gregor | 8b89522 | 2010-04-30 07:08:38 +0000 | [diff] [blame] | 2406 | Namespaces.insert(Ctx->getPrimaryContext()); |
John McCall | c7e8e79 | 2009-08-07 22:18:02 +0000 | [diff] [blame] | 2407 | } |
Douglas Gregor | 197e5f7 | 2009-07-08 07:51:57 +0000 | [diff] [blame] | 2408 | |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2409 | // \brief Add the associated classes and namespaces for argument-dependent |
Douglas Gregor | 197e5f7 | 2009-07-08 07:51:57 +0000 | [diff] [blame] | 2410 | // lookup that involves a template argument (C++ [basic.lookup.koenig]p2). |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2411 | static void |
John McCall | f24d7bb | 2010-05-28 18:45:08 +0000 | [diff] [blame] | 2412 | addAssociatedClassesAndNamespaces(AssociatedLookup &Result, |
| 2413 | const TemplateArgument &Arg) { |
Douglas Gregor | 197e5f7 | 2009-07-08 07:51:57 +0000 | [diff] [blame] | 2414 | // C++ [basic.lookup.koenig]p2, last bullet: |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2415 | // -- [...] ; |
Douglas Gregor | 197e5f7 | 2009-07-08 07:51:57 +0000 | [diff] [blame] | 2416 | switch (Arg.getKind()) { |
| 2417 | case TemplateArgument::Null: |
| 2418 | break; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2419 | |
Douglas Gregor | 197e5f7 | 2009-07-08 07:51:57 +0000 | [diff] [blame] | 2420 | 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 McCall | f24d7bb | 2010-05-28 18:45:08 +0000 | [diff] [blame] | 2424 | addAssociatedClassesAndNamespaces(Result, Arg.getAsType()); |
Douglas Gregor | 197e5f7 | 2009-07-08 07:51:57 +0000 | [diff] [blame] | 2425 | break; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2426 | |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2427 | case TemplateArgument::Template: |
Douglas Gregor | e4ff4b5 | 2011-01-05 18:58:31 +0000 | [diff] [blame] | 2428 | case TemplateArgument::TemplateExpansion: { |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2429 | // [...] the namespaces in which any template template arguments are |
| 2430 | // defined; and the classes in which any member templates used as |
Douglas Gregor | 197e5f7 | 2009-07-08 07:51:57 +0000 | [diff] [blame] | 2431 | // template template arguments are defined. |
Douglas Gregor | e4ff4b5 | 2011-01-05 18:58:31 +0000 | [diff] [blame] | 2432 | TemplateName Template = Arg.getAsTemplateOrTemplatePattern(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2433 | if (ClassTemplateDecl *ClassTemplate |
Douglas Gregor | 9167f8b | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 2434 | = dyn_cast<ClassTemplateDecl>(Template.getAsTemplateDecl())) { |
Douglas Gregor | 197e5f7 | 2009-07-08 07:51:57 +0000 | [diff] [blame] | 2435 | DeclContext *Ctx = ClassTemplate->getDeclContext(); |
| 2436 | if (CXXRecordDecl *EnclosingClass = dyn_cast<CXXRecordDecl>(Ctx)) |
John McCall | f24d7bb | 2010-05-28 18:45:08 +0000 | [diff] [blame] | 2437 | Result.Classes.insert(EnclosingClass); |
Douglas Gregor | 197e5f7 | 2009-07-08 07:51:57 +0000 | [diff] [blame] | 2438 | // Add the associated namespace for this class. |
John McCall | f24d7bb | 2010-05-28 18:45:08 +0000 | [diff] [blame] | 2439 | CollectEnclosingNamespace(Result.Namespaces, Ctx); |
Douglas Gregor | 197e5f7 | 2009-07-08 07:51:57 +0000 | [diff] [blame] | 2440 | } |
| 2441 | break; |
Douglas Gregor | 9167f8b | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 2442 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2443 | |
Douglas Gregor | 9167f8b | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 2444 | case TemplateArgument::Declaration: |
Douglas Gregor | 197e5f7 | 2009-07-08 07:51:57 +0000 | [diff] [blame] | 2445 | case TemplateArgument::Integral: |
| 2446 | case TemplateArgument::Expression: |
Eli Friedman | b826a00 | 2012-09-26 02:36:12 +0000 | [diff] [blame] | 2447 | case TemplateArgument::NullPtr: |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2448 | // [Note: non-type template arguments do not contribute to the set of |
Douglas Gregor | 197e5f7 | 2009-07-08 07:51:57 +0000 | [diff] [blame] | 2449 | // associated namespaces. ] |
| 2450 | break; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2451 | |
Douglas Gregor | 197e5f7 | 2009-07-08 07:51:57 +0000 | [diff] [blame] | 2452 | case TemplateArgument::Pack: |
Aaron Ballman | 2a89e85 | 2014-07-15 21:32:31 +0000 | [diff] [blame] | 2453 | for (const auto &P : Arg.pack_elements()) |
| 2454 | addAssociatedClassesAndNamespaces(Result, P); |
Douglas Gregor | 197e5f7 | 2009-07-08 07:51:57 +0000 | [diff] [blame] | 2455 | break; |
| 2456 | } |
| 2457 | } |
| 2458 | |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2459 | // \brief Add the associated classes and namespaces for |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2460 | // argument-dependent lookup with an argument of class type |
| 2461 | // (C++ [basic.lookup.koenig]p2). |
| 2462 | static void |
John McCall | f24d7bb | 2010-05-28 18:45:08 +0000 | [diff] [blame] | 2463 | addAssociatedClassesAndNamespaces(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 Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2470 | // 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 Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2476 | // which its associated classes are defined. |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2477 | |
| 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 McCall | f24d7bb | 2010-05-28 18:45:08 +0000 | [diff] [blame] | 2481 | Result.Classes.insert(EnclosingClass); |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2482 | // Add the associated namespace for this class. |
John McCall | f24d7bb | 2010-05-28 18:45:08 +0000 | [diff] [blame] | 2483 | CollectEnclosingNamespace(Result.Namespaces, Ctx); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2484 | |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2485 | // Add the class itself. If we've already seen this class, we don't |
| 2486 | // need to visit base classes. |
Richard Smith | 594461f | 2014-03-14 22:07:27 +0000 | [diff] [blame] | 2487 | // |
| 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 Smith | 6642bb3 | 2016-03-24 19:12:22 +0000 | [diff] [blame] | 2491 | if (!Result.Classes.insert(Class)) |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2492 | return; |
| 2493 | |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2494 | // -- If T is a template-id, its associated namespaces and classes are |
| 2495 | // the namespace in which the template is defined; for member |
NAKAMURA Takumi | 7c28886 | 2011-01-27 07:09:49 +0000 | [diff] [blame] | 2496 | // templates, the member template's class; the namespaces and classes |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2497 | // associated with the types of the template arguments provided for |
Douglas Gregor | 197e5f7 | 2009-07-08 07:51:57 +0000 | [diff] [blame] | 2498 | // template type parameters (excluding template template parameters); the |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2499 | // 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 Gregor | 197e5f7 | 2009-07-08 07:51:57 +0000 | [diff] [blame] | 2502 | // contribute to the set of associated namespaces. ] |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2503 | if (ClassTemplateSpecializationDecl *Spec |
Douglas Gregor | 197e5f7 | 2009-07-08 07:51:57 +0000 | [diff] [blame] | 2504 | = dyn_cast<ClassTemplateSpecializationDecl>(Class)) { |
| 2505 | DeclContext *Ctx = Spec->getSpecializedTemplate()->getDeclContext(); |
| 2506 | if (CXXRecordDecl *EnclosingClass = dyn_cast<CXXRecordDecl>(Ctx)) |
John McCall | f24d7bb | 2010-05-28 18:45:08 +0000 | [diff] [blame] | 2507 | Result.Classes.insert(EnclosingClass); |
Douglas Gregor | 197e5f7 | 2009-07-08 07:51:57 +0000 | [diff] [blame] | 2508 | // Add the associated namespace for this class. |
John McCall | f24d7bb | 2010-05-28 18:45:08 +0000 | [diff] [blame] | 2509 | CollectEnclosingNamespace(Result.Namespaces, Ctx); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2510 | |
Douglas Gregor | 197e5f7 | 2009-07-08 07:51:57 +0000 | [diff] [blame] | 2511 | const TemplateArgumentList &TemplateArgs = Spec->getTemplateArgs(); |
| 2512 | for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I) |
John McCall | f24d7bb | 2010-05-28 18:45:08 +0000 | [diff] [blame] | 2513 | addAssociatedClassesAndNamespaces(Result, TemplateArgs[I]); |
Douglas Gregor | 197e5f7 | 2009-07-08 07:51:57 +0000 | [diff] [blame] | 2514 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2515 | |
John McCall | 67da35c | 2010-02-04 22:26:26 +0000 | [diff] [blame] | 2516 | // Only recurse into base classes for complete types. |
Richard Smith | db0ac55 | 2015-12-18 22:40:25 +0000 | [diff] [blame] | 2517 | if (!Result.S.isCompleteType(Result.InstantiationLoc, |
| 2518 | Result.S.Context.getRecordType(Class))) |
Richard Smith | 594461f | 2014-03-14 22:07:27 +0000 | [diff] [blame] | 2519 | return; |
John McCall | 67da35c | 2010-02-04 22:26:26 +0000 | [diff] [blame] | 2520 | |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2521 | // Add direct and indirect base classes along with their associated |
| 2522 | // namespaces. |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2523 | SmallVector<CXXRecordDecl *, 32> Bases; |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2524 | Bases.push_back(Class); |
| 2525 | while (!Bases.empty()) { |
| 2526 | // Pop this class off the stack. |
Robert Wilhelm | 25284cc | 2013-08-23 16:11:15 +0000 | [diff] [blame] | 2527 | Class = Bases.pop_back_val(); |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2528 | |
| 2529 | // Visit the base classes. |
Aaron Ballman | 574705e | 2014-03-13 15:41:46 +0000 | [diff] [blame] | 2530 | for (const auto &Base : Class->bases()) { |
| 2531 | const RecordType *BaseType = Base.getType()->getAs<RecordType>(); |
Sebastian Redl | c45c03c | 2009-10-25 09:35:33 +0000 | [diff] [blame] | 2532 | // 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 Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2540 | CXXRecordDecl *BaseDecl = cast<CXXRecordDecl>(BaseType->getDecl()); |
Richard Smith | 6642bb3 | 2016-03-24 19:12:22 +0000 | [diff] [blame] | 2541 | if (Result.Classes.insert(BaseDecl)) { |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2542 | // Find the associated namespace for this base class. |
| 2543 | DeclContext *BaseCtx = BaseDecl->getDeclContext(); |
John McCall | f24d7bb | 2010-05-28 18:45:08 +0000 | [diff] [blame] | 2544 | CollectEnclosingNamespace(Result.Namespaces, BaseCtx); |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2545 | |
| 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 Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2556 | // (C++ [basic.lookup.koenig]p2). |
| 2557 | static void |
John McCall | f24d7bb | 2010-05-28 18:45:08 +0000 | [diff] [blame] | 2558 | addAssociatedClassesAndNamespaces(AssociatedLookup &Result, QualType Ty) { |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2559 | // 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 Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2569 | |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2570 | SmallVector<const Type *, 16> Queue; |
John McCall | 0af3d3b | 2010-05-28 06:08:54 +0000 | [diff] [blame] | 2571 | const Type *T = Ty->getCanonicalTypeInternal().getTypePtr(); |
| 2572 | |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2573 | while (true) { |
John McCall | 0af3d3b | 2010-05-28 06:08:54 +0000 | [diff] [blame] | 2574 | 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 Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2587 | break; |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2588 | |
John McCall | 0af3d3b | 2010-05-28 06:08:54 +0000 | [diff] [blame] | 2589 | // -- 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 Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2599 | |
John McCall | 0af3d3b | 2010-05-28 06:08:54 +0000 | [diff] [blame] | 2600 | // -- 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 Smith | 82b8d4e | 2015-12-18 22:19:11 +0000 | [diff] [blame] | 2611 | CXXRecordDecl *Class = |
| 2612 | cast<CXXRecordDecl>(cast<RecordType>(T)->getDecl()); |
John McCall | f24d7bb | 2010-05-28 18:45:08 +0000 | [diff] [blame] | 2613 | addAssociatedClassesAndNamespaces(Result, Class); |
John McCall | 0af3d3b | 2010-05-28 06:08:54 +0000 | [diff] [blame] | 2614 | break; |
Douglas Gregor | 89ee682 | 2009-02-28 01:32:25 +0000 | [diff] [blame] | 2615 | } |
Douglas Gregor | fe60c14 | 2010-05-20 02:26:51 +0000 | [diff] [blame] | 2616 | |
John McCall | 0af3d3b | 2010-05-28 06:08:54 +0000 | [diff] [blame] | 2617 | // -- If T is an enumeration type, its associated namespace is |
| 2618 | // the namespace in which it is defined. If it is class |
NAKAMURA Takumi | 7c28886 | 2011-01-27 07:09:49 +0000 | [diff] [blame] | 2619 | // member, its associated class is the member's class; else |
John McCall | 0af3d3b | 2010-05-28 06:08:54 +0000 | [diff] [blame] | 2620 | // it has no associated class. |
| 2621 | case Type::Enum: { |
| 2622 | EnumDecl *Enum = cast<EnumType>(T)->getDecl(); |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2623 | |
John McCall | 0af3d3b | 2010-05-28 06:08:54 +0000 | [diff] [blame] | 2624 | DeclContext *Ctx = Enum->getDeclContext(); |
| 2625 | if (CXXRecordDecl *EnclosingClass = dyn_cast<CXXRecordDecl>(Ctx)) |
John McCall | f24d7bb | 2010-05-28 18:45:08 +0000 | [diff] [blame] | 2626 | Result.Classes.insert(EnclosingClass); |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2627 | |
John McCall | 0af3d3b | 2010-05-28 06:08:54 +0000 | [diff] [blame] | 2628 | // Add the associated namespace for this class. |
John McCall | f24d7bb | 2010-05-28 18:45:08 +0000 | [diff] [blame] | 2629 | CollectEnclosingNamespace(Result.Namespaces, Ctx); |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2630 | |
John McCall | 0af3d3b | 2010-05-28 06:08:54 +0000 | [diff] [blame] | 2631 | 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 Ballman | 40bd0aa | 2014-03-17 15:23:01 +0000 | [diff] [blame] | 2639 | for (const auto &Arg : Proto->param_types()) |
| 2640 | Queue.push_back(Arg.getTypePtr()); |
John McCall | 0af3d3b | 2010-05-28 06:08:54 +0000 | [diff] [blame] | 2641 | // fallthrough |
| 2642 | } |
| 2643 | case Type::FunctionNoProto: { |
| 2644 | const FunctionType *FnType = cast<FunctionType>(T); |
Alp Toker | 314cc81 | 2014-01-25 16:55:45 +0000 | [diff] [blame] | 2645 | T = FnType->getReturnType().getTypePtr(); |
John McCall | 0af3d3b | 2010-05-28 06:08:54 +0000 | [diff] [blame] | 2646 | 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 Smith | 27d807c | 2013-04-30 13:56:41 +0000 | [diff] [blame] | 2687 | // Non-deduced auto types only get here for error cases. |
| 2688 | case Type::Auto: |
| 2689 | break; |
| 2690 | |
Douglas Gregor | 8e93666 | 2011-04-12 01:02:45 +0000 | [diff] [blame] | 2691 | // 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 McCall | 0af3d3b | 2010-05-28 06:08:54 +0000 | [diff] [blame] | 2694 | case Type::ObjCObject: |
| 2695 | case Type::ObjCInterface: |
| 2696 | case Type::ObjCObjectPointer: |
Douglas Gregor | 8e93666 | 2011-04-12 01:02:45 +0000 | [diff] [blame] | 2697 | Result.Namespaces.insert(Result.S.Context.getTranslationUnitDecl()); |
John McCall | 0af3d3b | 2010-05-28 06:08:54 +0000 | [diff] [blame] | 2698 | break; |
Eli Friedman | 0dfb889 | 2011-10-06 23:00:33 +0000 | [diff] [blame] | 2699 | |
| 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 Pan | 9c14e28 | 2016-01-09 12:53:17 +0000 | [diff] [blame] | 2705 | case Type::Pipe: |
| 2706 | T = cast<PipeType>(T)->getElementType().getTypePtr(); |
| 2707 | continue; |
John McCall | 0af3d3b | 2010-05-28 06:08:54 +0000 | [diff] [blame] | 2708 | } |
| 2709 | |
Robert Wilhelm | 25284cc | 2013-08-23 16:11:15 +0000 | [diff] [blame] | 2710 | if (Queue.empty()) |
| 2711 | break; |
| 2712 | T = Queue.pop_back_val(); |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2713 | } |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2714 | } |
| 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 Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2721 | /// namespaces searched by argument-dependent lookup |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2722 | /// (C++ [basic.lookup.argdep]) for a given set of arguments. |
Robert Wilhelm | 16e94b9 | 2013-08-09 18:02:13 +0000 | [diff] [blame] | 2723 | void Sema::FindAssociatedClassesAndNamespaces( |
| 2724 | SourceLocation InstantiationLoc, ArrayRef<Expr *> Args, |
| 2725 | AssociatedNamespaceSet &AssociatedNamespaces, |
| 2726 | AssociatedClassSet &AssociatedClasses) { |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2727 | AssociatedNamespaces.clear(); |
| 2728 | AssociatedClasses.clear(); |
| 2729 | |
John McCall | 7d8b041 | 2012-08-24 20:38:34 +0000 | [diff] [blame] | 2730 | AssociatedLookup Result(*this, InstantiationLoc, |
| 2731 | AssociatedNamespaces, AssociatedClasses); |
John McCall | f24d7bb | 2010-05-28 18:45:08 +0000 | [diff] [blame] | 2732 | |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2733 | // 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 Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2739 | // argument). |
Ahmed Charles | b24b9aa | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 2740 | for (unsigned ArgIdx = 0; ArgIdx != Args.size(); ++ArgIdx) { |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2741 | Expr *Arg = Args[ArgIdx]; |
| 2742 | |
| 2743 | if (Arg->getType() != Context.OverloadTy) { |
John McCall | f24d7bb | 2010-05-28 18:45:08 +0000 | [diff] [blame] | 2744 | addAssociatedClassesAndNamespaces(Result, Arg->getType()); |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2745 | 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 Gregor | be75925 | 2009-07-08 10:57:20 +0000 | [diff] [blame] | 2755 | Arg = Arg->IgnoreParens(); |
John McCall | d14a864 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 2756 | if (UnaryOperator *unaryOp = dyn_cast<UnaryOperator>(Arg)) |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 2757 | if (unaryOp->getOpcode() == UO_AddrOf) |
John McCall | d14a864 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 2758 | Arg = unaryOp->getSubExpr(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2759 | |
John McCall | f24d7bb | 2010-05-28 18:45:08 +0000 | [diff] [blame] | 2760 | UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(Arg); |
| 2761 | if (!ULE) continue; |
John McCall | d14a864 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 2762 | |
Aaron Ballman | 1e606f4 | 2014-07-15 22:03:49 +0000 | [diff] [blame] | 2763 | for (const auto *D : ULE->decls()) { |
Chandler Carruth | c25c6ee | 2009-12-29 06:17:27 +0000 | [diff] [blame] | 2764 | // Look through any using declarations to find the underlying function. |
Aaron Ballman | 1e606f4 | 2014-07-15 22:03:49 +0000 | [diff] [blame] | 2765 | const FunctionDecl *FDecl = D->getUnderlyingDecl()->getAsFunction(); |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2766 | |
| 2767 | // Add the classes and namespaces associated with the parameter |
| 2768 | // types and return type of this function. |
John McCall | f24d7bb | 2010-05-28 18:45:08 +0000 | [diff] [blame] | 2769 | addAssociatedClassesAndNamespaces(Result, FDecl->getType()); |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2770 | } |
| 2771 | } |
| 2772 | } |
Douglas Gregor | d2b7ef6 | 2009-03-13 00:33:25 +0000 | [diff] [blame] | 2773 | |
John McCall | 5cebab1 | 2009-11-18 07:57:50 +0000 | [diff] [blame] | 2774 | NamedDecl *Sema::LookupSingleName(Scope *S, DeclarationName Name, |
Douglas Gregor | b2ccf01 | 2010-04-15 22:33:43 +0000 | [diff] [blame] | 2775 | SourceLocation Loc, |
John McCall | 5cebab1 | 2009-11-18 07:57:50 +0000 | [diff] [blame] | 2776 | LookupNameKind NameKind, |
| 2777 | RedeclarationKind Redecl) { |
Douglas Gregor | b2ccf01 | 2010-04-15 22:33:43 +0000 | [diff] [blame] | 2778 | LookupResult R(*this, Name, Loc, NameKind, Redecl); |
John McCall | 5cebab1 | 2009-11-18 07:57:50 +0000 | [diff] [blame] | 2779 | LookupName(R, S); |
John McCall | 67c0087 | 2009-12-02 08:25:40 +0000 | [diff] [blame] | 2780 | return R.getAsSingle<NamedDecl>(); |
John McCall | 5cebab1 | 2009-11-18 07:57:50 +0000 | [diff] [blame] | 2781 | } |
| 2782 | |
Douglas Gregor | de9f17e | 2009-04-23 23:18:26 +0000 | [diff] [blame] | 2783 | /// \brief Find the protocol with the given name, if any. |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2784 | ObjCProtocolDecl *Sema::LookupProtocol(IdentifierInfo *II, |
Douglas Gregor | 32c1757 | 2012-01-01 20:30:41 +0000 | [diff] [blame] | 2785 | SourceLocation IdLoc, |
| 2786 | RedeclarationKind Redecl) { |
Douglas Gregor | b2ccf01 | 2010-04-15 22:33:43 +0000 | [diff] [blame] | 2787 | Decl *D = LookupSingleName(TUScope, II, IdLoc, |
Douglas Gregor | 32c1757 | 2012-01-01 20:30:41 +0000 | [diff] [blame] | 2788 | LookupObjCProtocolName, Redecl); |
Douglas Gregor | de9f17e | 2009-04-23 23:18:26 +0000 | [diff] [blame] | 2789 | return cast_or_null<ObjCProtocolDecl>(D); |
| 2790 | } |
| 2791 | |
Douglas Gregor | d2b7ef6 | 2009-03-13 00:33:25 +0000 | [diff] [blame] | 2792 | void Sema::LookupOverloadedOperatorName(OverloadedOperatorKind Op, Scope *S, |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2793 | QualType T1, QualType T2, |
John McCall | 4c4c1df | 2010-01-26 03:27:55 +0000 | [diff] [blame] | 2794 | UnresolvedSetImpl &Functions) { |
Douglas Gregor | d2b7ef6 | 2009-03-13 00:33:25 +0000 | [diff] [blame] | 2795 | // 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 Smith | 100b24a | 2014-04-17 01:52:14 +0000 | [diff] [blame] | 2800 | // functions are ignored. |
Douglas Gregor | d2b7ef6 | 2009-03-13 00:33:25 +0000 | [diff] [blame] | 2801 | DeclarationName OpName = Context.DeclarationNames.getCXXOperatorName(Op); |
John McCall | 27b18f8 | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 2802 | LookupResult Operators(*this, OpName, SourceLocation(), LookupOperatorName); |
| 2803 | LookupName(Operators, S); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2804 | |
Douglas Gregor | d2b7ef6 | 2009-03-13 00:33:25 +0000 | [diff] [blame] | 2805 | assert(!Operators.isAmbiguous() && "Operator lookup cannot be ambiguous"); |
Richard Smith | 100b24a | 2014-04-17 01:52:14 +0000 | [diff] [blame] | 2806 | Functions.append(Operators.begin(), Operators.end()); |
Douglas Gregor | d2b7ef6 | 2009-03-13 00:33:25 +0000 | [diff] [blame] | 2807 | } |
| 2808 | |
Alexis Hunt | 1da3928 | 2011-06-24 02:11:39 +0000 | [diff] [blame] | 2809 | Sema::SpecialMemberOverloadResult *Sema::LookupSpecialMember(CXXRecordDecl *RD, |
Alexis Hunt | 4ac55e3 | 2011-06-04 04:32:43 +0000 | [diff] [blame] | 2810 | CXXSpecialMember SM, |
| 2811 | bool ConstArg, |
| 2812 | bool VolatileArg, |
| 2813 | bool RValueThis, |
| 2814 | bool ConstThis, |
| 2815 | bool VolatileThis) { |
Richard Smith | 7d125a1 | 2012-11-27 21:20:31 +0000 | [diff] [blame] | 2816 | assert(CanDeclareSpecialMemberFunction(RD) && |
Alexis Hunt | 4ac55e3 | 2011-06-04 04:32:43 +0000 | [diff] [blame] | 2817 | "doing special member lookup into record that isn't fully complete"); |
Richard Smith | 7d125a1 | 2012-11-27 21:20:31 +0000 | [diff] [blame] | 2818 | RD = RD->getDefinition(); |
Alexis Hunt | 4ac55e3 | 2011-06-04 04:32:43 +0000 | [diff] [blame] | 2819 | 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 Hunt | 1da3928 | 2011-06-24 02:11:39 +0000 | [diff] [blame] | 2827 | ID.AddPointer(RD); |
Alexis Hunt | 4ac55e3 | 2011-06-04 04:32:43 +0000 | [diff] [blame] | 2828 | 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 Hunt | ba8e18d | 2011-06-07 00:11:58 +0000 | [diff] [blame] | 2843 | Result = BumpAlloc.Allocate<SpecialMemberOverloadResult>(); |
| 2844 | Result = new (Result) SpecialMemberOverloadResult(ID); |
Alexis Hunt | 4ac55e3 | 2011-06-04 04:32:43 +0000 | [diff] [blame] | 2845 | SpecialMemberCache.InsertNode(Result, InsertPoint); |
| 2846 | |
| 2847 | if (SM == CXXDestructor) { |
Richard Smith | 2be35f5 | 2012-12-01 02:35:44 +0000 | [diff] [blame] | 2848 | if (RD->needsImplicitDestructor()) |
Alexis Hunt | 1da3928 | 2011-06-24 02:11:39 +0000 | [diff] [blame] | 2849 | DeclareImplicitDestructor(RD); |
| 2850 | CXXDestructorDecl *DD = RD->getDestructor(); |
Alexis Hunt | 4ac55e3 | 2011-06-04 04:32:43 +0000 | [diff] [blame] | 2851 | assert(DD && "record without a destructor"); |
| 2852 | Result->setMethod(DD); |
Richard Smith | 852265f | 2012-03-30 20:53:28 +0000 | [diff] [blame] | 2853 | Result->setKind(DD->isDeleted() ? |
| 2854 | SpecialMemberOverloadResult::NoMemberOrDeleted : |
Richard Smith | 83c478d | 2012-04-20 18:46:14 +0000 | [diff] [blame] | 2855 | SpecialMemberOverloadResult::Success); |
Alexis Hunt | 4ac55e3 | 2011-06-04 04:32:43 +0000 | [diff] [blame] | 2856 | return Result; |
| 2857 | } |
| 2858 | |
Alexis Hunt | eef8ee0 | 2011-06-10 03:50:41 +0000 | [diff] [blame] | 2859 | // Prepare for overload resolution. Here we construct a synthetic argument |
| 2860 | // if necessary and make sure that implicit functions are declared. |
Alexis Hunt | 1da3928 | 2011-06-24 02:11:39 +0000 | [diff] [blame] | 2861 | CanQualType CanTy = Context.getCanonicalType(Context.getTagDeclType(RD)); |
Alexis Hunt | eef8ee0 | 2011-06-10 03:50:41 +0000 | [diff] [blame] | 2862 | DeclarationName Name; |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 2863 | Expr *Arg = nullptr; |
Alexis Hunt | eef8ee0 | 2011-06-10 03:50:41 +0000 | [diff] [blame] | 2864 | unsigned NumArgs; |
| 2865 | |
Richard Smith | 83c478d | 2012-04-20 18:46:14 +0000 | [diff] [blame] | 2866 | QualType ArgType = CanTy; |
| 2867 | ExprValueKind VK = VK_LValue; |
| 2868 | |
Alexis Hunt | eef8ee0 | 2011-06-10 03:50:41 +0000 | [diff] [blame] | 2869 | if (SM == CXXDefaultConstructor) { |
| 2870 | Name = Context.DeclarationNames.getCXXConstructorName(CanTy); |
| 2871 | NumArgs = 0; |
Alexis Hunt | 1da3928 | 2011-06-24 02:11:39 +0000 | [diff] [blame] | 2872 | if (RD->needsImplicitDefaultConstructor()) |
| 2873 | DeclareImplicitDefaultConstructor(RD); |
Alexis Hunt | eef8ee0 | 2011-06-10 03:50:41 +0000 | [diff] [blame] | 2874 | } else { |
| 2875 | if (SM == CXXCopyConstructor || SM == CXXMoveConstructor) { |
| 2876 | Name = Context.DeclarationNames.getCXXConstructorName(CanTy); |
Richard Smith | 2be35f5 | 2012-12-01 02:35:44 +0000 | [diff] [blame] | 2877 | if (RD->needsImplicitCopyConstructor()) |
Alexis Hunt | 1da3928 | 2011-06-24 02:11:39 +0000 | [diff] [blame] | 2878 | DeclareImplicitCopyConstructor(RD); |
Richard Smith | 2bf7fdb | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 2879 | if (getLangOpts().CPlusPlus11 && RD->needsImplicitMoveConstructor()) |
Sebastian Redl | 22653ba | 2011-08-30 19:58:05 +0000 | [diff] [blame] | 2880 | DeclareImplicitMoveConstructor(RD); |
Alexis Hunt | eef8ee0 | 2011-06-10 03:50:41 +0000 | [diff] [blame] | 2881 | } else { |
| 2882 | Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal); |
Richard Smith | 2be35f5 | 2012-12-01 02:35:44 +0000 | [diff] [blame] | 2883 | if (RD->needsImplicitCopyAssignment()) |
Alexis Hunt | 1da3928 | 2011-06-24 02:11:39 +0000 | [diff] [blame] | 2884 | DeclareImplicitCopyAssignment(RD); |
Richard Smith | 2bf7fdb | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 2885 | if (getLangOpts().CPlusPlus11 && RD->needsImplicitMoveAssignment()) |
Sebastian Redl | 22653ba | 2011-08-30 19:58:05 +0000 | [diff] [blame] | 2886 | DeclareImplicitMoveAssignment(RD); |
Alexis Hunt | eef8ee0 | 2011-06-10 03:50:41 +0000 | [diff] [blame] | 2887 | } |
| 2888 | |
Alexis Hunt | eef8ee0 | 2011-06-10 03:50:41 +0000 | [diff] [blame] | 2889 | 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 Hunt | 46d1ce2 | 2011-06-22 22:13:13 +0000 | [diff] [blame] | 2901 | if (SM == CXXCopyConstructor || SM == CXXCopyAssignment) |
Alexis Hunt | eef8ee0 | 2011-06-10 03:50:41 +0000 | [diff] [blame] | 2902 | VK = VK_LValue; |
| 2903 | else |
| 2904 | VK = VK_RValue; |
Richard Smith | 83c478d | 2012-04-20 18:46:14 +0000 | [diff] [blame] | 2905 | } |
Alexis Hunt | eef8ee0 | 2011-06-10 03:50:41 +0000 | [diff] [blame] | 2906 | |
Richard Smith | 83c478d | 2012-04-20 18:46:14 +0000 | [diff] [blame] | 2907 | OpaqueValueExpr FakeArg(SourceLocation(), ArgType, VK); |
| 2908 | |
| 2909 | if (SM != CXXDefaultConstructor) { |
Alexis Hunt | eef8ee0 | 2011-06-10 03:50:41 +0000 | [diff] [blame] | 2910 | NumArgs = 1; |
Richard Smith | 83c478d | 2012-04-20 18:46:14 +0000 | [diff] [blame] | 2911 | Arg = &FakeArg; |
Alexis Hunt | eef8ee0 | 2011-06-10 03:50:41 +0000 | [diff] [blame] | 2912 | } |
| 2913 | |
| 2914 | // Create the object argument |
| 2915 | QualType ThisTy = CanTy; |
| 2916 | if (ConstThis) |
| 2917 | ThisTy.addConst(); |
| 2918 | if (VolatileThis) |
| 2919 | ThisTy.addVolatile(); |
Alexis Hunt | 080709f | 2011-06-23 00:26:20 +0000 | [diff] [blame] | 2920 | Expr::Classification Classification = |
Richard Smith | 83c478d | 2012-04-20 18:46:14 +0000 | [diff] [blame] | 2921 | OpaqueValueExpr(SourceLocation(), ThisTy, |
| 2922 | RValueThis ? VK_RValue : VK_LValue).Classify(Context); |
Alexis Hunt | eef8ee0 | 2011-06-10 03:50:41 +0000 | [diff] [blame] | 2923 | |
| 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 Smith | 100b24a | 2014-04-17 01:52:14 +0000 | [diff] [blame] | 2927 | OverloadCandidateSet OCS(RD->getLocation(), OverloadCandidateSet::CSK_Normal); |
David Blaikie | ff7d47a | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 2928 | DeclContext::lookup_result R = RD->lookup(Name); |
Richard Smith | 8c37ab5 | 2015-02-11 01:48:47 +0000 | [diff] [blame] | 2929 | |
| 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 Carruth | 7deaae7 | 2013-08-18 07:20:52 +0000 | [diff] [blame] | 2941 | |
| 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 Ballman | 1e606f4 | 2014-07-15 22:03:49 +0000 | [diff] [blame] | 2946 | for (auto *Cand : Candidates) { |
Alexis Hunt | 1da3928 | 2011-06-24 02:11:39 +0000 | [diff] [blame] | 2947 | if (Cand->isInvalidDecl()) |
Alexis Hunt | eef8ee0 | 2011-06-10 03:50:41 +0000 | [diff] [blame] | 2948 | continue; |
| 2949 | |
Alexis Hunt | 1da3928 | 2011-06-24 02:11:39 +0000 | [diff] [blame] | 2950 | 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 Hunt | 080709f | 2011-06-23 00:26:20 +0000 | [diff] [blame] | 2962 | if (SM == CXXCopyAssignment || SM == CXXMoveAssignment) |
Alexis Hunt | 1da3928 | 2011-06-24 02:11:39 +0000 | [diff] [blame] | 2963 | AddMethodCandidate(M, DeclAccessPair::make(M, AS_public), RD, ThisTy, |
Ahmed Charles | b24b9aa | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 2964 | Classification, llvm::makeArrayRef(&Arg, NumArgs), |
| 2965 | OCS, true); |
Alexis Hunt | 080709f | 2011-06-23 00:26:20 +0000 | [diff] [blame] | 2966 | else |
Ahmed Charles | b24b9aa | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 2967 | AddOverloadCandidate(M, DeclAccessPair::make(M, AS_public), |
| 2968 | llvm::makeArrayRef(&Arg, NumArgs), OCS, true); |
Alexis Hunt | 2949f02 | 2011-06-22 02:58:46 +0000 | [diff] [blame] | 2969 | } else if (FunctionTemplateDecl *Tmpl = |
Alexis Hunt | 1da3928 | 2011-06-24 02:11:39 +0000 | [diff] [blame] | 2970 | dyn_cast<FunctionTemplateDecl>(Cand)) { |
Alexis Hunt | 080709f | 2011-06-23 00:26:20 +0000 | [diff] [blame] | 2971 | if (SM == CXXCopyAssignment || SM == CXXMoveAssignment) |
| 2972 | AddMethodTemplateCandidate(Tmpl, DeclAccessPair::make(Tmpl, AS_public), |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 2973 | RD, nullptr, ThisTy, Classification, |
Ahmed Charles | b24b9aa | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 2974 | llvm::makeArrayRef(&Arg, NumArgs), |
Alexis Hunt | 080709f | 2011-06-23 00:26:20 +0000 | [diff] [blame] | 2975 | OCS, true); |
| 2976 | else |
| 2977 | AddTemplateOverloadCandidate(Tmpl, DeclAccessPair::make(Tmpl, AS_public), |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 2978 | nullptr, llvm::makeArrayRef(&Arg, NumArgs), |
Ahmed Charles | b24b9aa | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 2979 | OCS, true); |
Alexis Hunt | 1da3928 | 2011-06-24 02:11:39 +0000 | [diff] [blame] | 2980 | } else { |
| 2981 | assert(isa<UsingDecl>(Cand) && "illegal Kind of operator = Decl"); |
Alexis Hunt | eef8ee0 | 2011-06-10 03:50:41 +0000 | [diff] [blame] | 2982 | } |
| 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 Smith | 83c478d | 2012-04-20 18:46:14 +0000 | [diff] [blame] | 2989 | Result->setKind(SpecialMemberOverloadResult::Success); |
Alexis Hunt | eef8ee0 | 2011-06-10 03:50:41 +0000 | [diff] [blame] | 2990 | break; |
| 2991 | |
| 2992 | case OR_Deleted: |
| 2993 | Result->setMethod(cast<CXXMethodDecl>(Best->Function)); |
Richard Smith | 852265f | 2012-03-30 20:53:28 +0000 | [diff] [blame] | 2994 | Result->setKind(SpecialMemberOverloadResult::NoMemberOrDeleted); |
Alexis Hunt | eef8ee0 | 2011-06-10 03:50:41 +0000 | [diff] [blame] | 2995 | break; |
| 2996 | |
| 2997 | case OR_Ambiguous: |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 2998 | Result->setMethod(nullptr); |
Richard Smith | 852265f | 2012-03-30 20:53:28 +0000 | [diff] [blame] | 2999 | Result->setKind(SpecialMemberOverloadResult::Ambiguous); |
| 3000 | break; |
| 3001 | |
Alexis Hunt | eef8ee0 | 2011-06-10 03:50:41 +0000 | [diff] [blame] | 3002 | case OR_No_Viable_Function: |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 3003 | Result->setMethod(nullptr); |
Richard Smith | 852265f | 2012-03-30 20:53:28 +0000 | [diff] [blame] | 3004 | Result->setKind(SpecialMemberOverloadResult::NoMemberOrDeleted); |
Alexis Hunt | eef8ee0 | 2011-06-10 03:50:41 +0000 | [diff] [blame] | 3005 | break; |
| 3006 | } |
| 3007 | |
| 3008 | return Result; |
| 3009 | } |
| 3010 | |
| 3011 | /// \brief Look up the default constructor for the given class. |
| 3012 | CXXConstructorDecl *Sema::LookupDefaultConstructor(CXXRecordDecl *Class) { |
Alexis Hunt | 899bd44 | 2011-06-10 04:44:37 +0000 | [diff] [blame] | 3013 | SpecialMemberOverloadResult *Result = |
Alexis Hunt | eef8ee0 | 2011-06-10 03:50:41 +0000 | [diff] [blame] | 3014 | LookupSpecialMember(Class, CXXDefaultConstructor, false, false, false, |
| 3015 | false, false); |
| 3016 | |
| 3017 | return cast_or_null<CXXConstructorDecl>(Result->getMethod()); |
Alexis Hunt | 4ac55e3 | 2011-06-04 04:32:43 +0000 | [diff] [blame] | 3018 | } |
| 3019 | |
Alexis Hunt | 491ec60 | 2011-06-21 23:42:56 +0000 | [diff] [blame] | 3020 | /// \brief Look up the copying constructor for the given class. |
| 3021 | CXXConstructorDecl *Sema::LookupCopyingConstructor(CXXRecordDecl *Class, |
Richard Smith | 83c478d | 2012-04-20 18:46:14 +0000 | [diff] [blame] | 3022 | unsigned Quals) { |
Alexis Hunt | 899bd44 | 2011-06-10 04:44:37 +0000 | [diff] [blame] | 3023 | 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 Hunt | 899bd44 | 2011-06-10 04:44:37 +0000 | [diff] [blame] | 3029 | return cast_or_null<CXXConstructorDecl>(Result->getMethod()); |
| 3030 | } |
| 3031 | |
Sebastian Redl | 22653ba | 2011-08-30 19:58:05 +0000 | [diff] [blame] | 3032 | /// \brief Look up the moving constructor for the given class. |
Richard Smith | 1c6461e | 2012-07-18 03:36:00 +0000 | [diff] [blame] | 3033 | CXXConstructorDecl *Sema::LookupMovingConstructor(CXXRecordDecl *Class, |
| 3034 | unsigned Quals) { |
Sebastian Redl | 22653ba | 2011-08-30 19:58:05 +0000 | [diff] [blame] | 3035 | SpecialMemberOverloadResult *Result = |
Richard Smith | 1c6461e | 2012-07-18 03:36:00 +0000 | [diff] [blame] | 3036 | LookupSpecialMember(Class, CXXMoveConstructor, Quals & Qualifiers::Const, |
| 3037 | Quals & Qualifiers::Volatile, false, false, false); |
Sebastian Redl | 22653ba | 2011-08-30 19:58:05 +0000 | [diff] [blame] | 3038 | |
| 3039 | return cast_or_null<CXXConstructorDecl>(Result->getMethod()); |
| 3040 | } |
| 3041 | |
Douglas Gregor | 52b7282 | 2010-07-02 23:12:18 +0000 | [diff] [blame] | 3042 | /// \brief Look up the constructors for the given class. |
| 3043 | DeclContext::lookup_result Sema::LookupConstructors(CXXRecordDecl *Class) { |
Alexis Hunt | eef8ee0 | 2011-06-10 03:50:41 +0000 | [diff] [blame] | 3044 | // If the implicit constructors have not yet been declared, do so now. |
Richard Smith | 7d125a1 | 2012-11-27 21:20:31 +0000 | [diff] [blame] | 3045 | if (CanDeclareSpecialMemberFunction(Class)) { |
Alexis Hunt | ea6f032 | 2011-05-11 22:34:38 +0000 | [diff] [blame] | 3046 | if (Class->needsImplicitDefaultConstructor()) |
Douglas Gregor | 9672f92 | 2010-07-03 00:47:00 +0000 | [diff] [blame] | 3047 | DeclareImplicitDefaultConstructor(Class); |
Richard Smith | 2be35f5 | 2012-12-01 02:35:44 +0000 | [diff] [blame] | 3048 | if (Class->needsImplicitCopyConstructor()) |
Douglas Gregor | 9672f92 | 2010-07-03 00:47:00 +0000 | [diff] [blame] | 3049 | DeclareImplicitCopyConstructor(Class); |
Richard Smith | 2bf7fdb | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 3050 | if (getLangOpts().CPlusPlus11 && Class->needsImplicitMoveConstructor()) |
Sebastian Redl | 22653ba | 2011-08-30 19:58:05 +0000 | [diff] [blame] | 3051 | DeclareImplicitMoveConstructor(Class); |
Douglas Gregor | 9672f92 | 2010-07-03 00:47:00 +0000 | [diff] [blame] | 3052 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3053 | |
Douglas Gregor | 52b7282 | 2010-07-02 23:12:18 +0000 | [diff] [blame] | 3054 | CanQualType T = Context.getCanonicalType(Context.getTypeDeclType(Class)); |
| 3055 | DeclarationName Name = Context.DeclarationNames.getCXXConstructorName(T); |
| 3056 | return Class->lookup(Name); |
| 3057 | } |
| 3058 | |
Alexis Hunt | 491ec60 | 2011-06-21 23:42:56 +0000 | [diff] [blame] | 3059 | /// \brief Look up the copying assignment operator for the given class. |
| 3060 | CXXMethodDecl *Sema::LookupCopyingAssignment(CXXRecordDecl *Class, |
| 3061 | unsigned Quals, bool RValueThis, |
Richard Smith | 83c478d | 2012-04-20 18:46:14 +0000 | [diff] [blame] | 3062 | unsigned ThisQuals) { |
Alexis Hunt | 491ec60 | 2011-06-21 23:42:56 +0000 | [diff] [blame] | 3063 | 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 Hunt | 491ec60 | 2011-06-21 23:42:56 +0000 | [diff] [blame] | 3073 | return Result->getMethod(); |
| 3074 | } |
| 3075 | |
Sebastian Redl | 22653ba | 2011-08-30 19:58:05 +0000 | [diff] [blame] | 3076 | /// \brief Look up the moving assignment operator for the given class. |
| 3077 | CXXMethodDecl *Sema::LookupMovingAssignment(CXXRecordDecl *Class, |
Richard Smith | 1c6461e | 2012-07-18 03:36:00 +0000 | [diff] [blame] | 3078 | unsigned Quals, |
Sebastian Redl | 22653ba | 2011-08-30 19:58:05 +0000 | [diff] [blame] | 3079 | 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 Smith | 1c6461e | 2012-07-18 03:36:00 +0000 | [diff] [blame] | 3084 | LookupSpecialMember(Class, CXXMoveAssignment, Quals & Qualifiers::Const, |
| 3085 | Quals & Qualifiers::Volatile, RValueThis, |
Sebastian Redl | 22653ba | 2011-08-30 19:58:05 +0000 | [diff] [blame] | 3086 | ThisQuals & Qualifiers::Const, |
| 3087 | ThisQuals & Qualifiers::Volatile); |
| 3088 | |
| 3089 | return Result->getMethod(); |
| 3090 | } |
| 3091 | |
Douglas Gregor | e71edda | 2010-07-01 22:47:18 +0000 | [diff] [blame] | 3092 | /// \brief Look for the destructor of the given class. |
| 3093 | /// |
Alexis Hunt | 967ea7c | 2011-06-03 21:10:40 +0000 | [diff] [blame] | 3094 | /// During semantic analysis, this routine should be used in lieu of |
| 3095 | /// CXXRecordDecl::getDestructor(). |
Douglas Gregor | e71edda | 2010-07-01 22:47:18 +0000 | [diff] [blame] | 3096 | /// |
| 3097 | /// \returns The destructor for this class. |
| 3098 | CXXDestructorDecl *Sema::LookupDestructor(CXXRecordDecl *Class) { |
Alexis Hunt | 4ac55e3 | 2011-06-04 04:32:43 +0000 | [diff] [blame] | 3099 | return cast<CXXDestructorDecl>(LookupSpecialMember(Class, CXXDestructor, |
| 3100 | false, false, false, |
| 3101 | false, false)->getMethod()); |
Douglas Gregor | e71edda | 2010-07-01 22:47:18 +0000 | [diff] [blame] | 3102 | } |
| 3103 | |
Richard Smith | bcc22fc | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 3104 | /// 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. |
| 3110 | Sema::LiteralOperatorLookupResult |
| 3111 | Sema::LookupLiteralOperator(Scope *S, LookupResult &R, |
| 3112 | ArrayRef<QualType> ArgTys, |
Richard Smith | b8b41d3 | 2013-10-07 19:57:58 +0000 | [diff] [blame] | 3113 | bool AllowRaw, bool AllowTemplate, |
| 3114 | bool AllowStringTemplate) { |
Richard Smith | bcc22fc | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 3115 | 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 Smith | bcc22fc | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 3122 | bool FoundRaw = false; |
Richard Smith | b8b41d3 | 2013-10-07 19:57:58 +0000 | [diff] [blame] | 3123 | bool FoundTemplate = false; |
| 3124 | bool FoundStringTemplate = false; |
Richard Smith | bcc22fc | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 3125 | 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 Gregor | c197057 | 2013-04-10 05:18:00 +0000 | [diff] [blame] | 3132 | // If the declaration we found is invalid, skip it. |
| 3133 | if (D->isInvalidDecl()) { |
| 3134 | F.erase(); |
| 3135 | continue; |
| 3136 | } |
| 3137 | |
Richard Smith | b8b41d3 | 2013-10-07 19:57:58 +0000 | [diff] [blame] | 3138 | bool IsRaw = false; |
| 3139 | bool IsTemplate = false; |
| 3140 | bool IsStringTemplate = false; |
| 3141 | bool IsExactMatch = false; |
| 3142 | |
Richard Smith | bcc22fc | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 3143 | if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { |
| 3144 | if (FD->getNumParams() == 1 && |
| 3145 | FD->getParamDecl(0)->getType()->getAs<PointerType>()) |
| 3146 | IsRaw = true; |
Richard Smith | 550de45 | 2013-01-15 07:12:59 +0000 | [diff] [blame] | 3147 | else if (FD->getNumParams() == ArgTys.size()) { |
Richard Smith | bcc22fc | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 3148 | 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 Smith | b8b41d3 | 2013-10-07 19:57:58 +0000 | [diff] [blame] | 3158 | 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 Smith | bcc22fc | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 3165 | |
| 3166 | if (IsExactMatch) { |
| 3167 | FoundExactMatch = true; |
Richard Smith | b8b41d3 | 2013-10-07 19:57:58 +0000 | [diff] [blame] | 3168 | AllowRaw = false; |
| 3169 | AllowTemplate = false; |
| 3170 | AllowStringTemplate = false; |
| 3171 | if (FoundRaw || FoundTemplate || FoundStringTemplate) { |
Richard Smith | bcc22fc | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 3172 | // Go through again and remove the raw and template decls we've |
| 3173 | // already found. |
| 3174 | F.restart(); |
Richard Smith | b8b41d3 | 2013-10-07 19:57:58 +0000 | [diff] [blame] | 3175 | FoundRaw = FoundTemplate = FoundStringTemplate = false; |
Richard Smith | bcc22fc | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 3176 | } |
Richard Smith | b8b41d3 | 2013-10-07 19:57:58 +0000 | [diff] [blame] | 3177 | } else if (AllowRaw && IsRaw) { |
| 3178 | FoundRaw = true; |
| 3179 | } else if (AllowTemplate && IsTemplate) { |
| 3180 | FoundTemplate = true; |
| 3181 | } else if (AllowStringTemplate && IsStringTemplate) { |
| 3182 | FoundStringTemplate = true; |
Richard Smith | bcc22fc | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 3183 | } 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 Toker | a2794f9 | 2014-01-22 07:29:52 +0000 | [diff] [blame] | 3200 | for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) |
Richard Smith | c2bebe9 | 2016-05-11 20:37:46 +0000 | [diff] [blame] | 3201 | NoteOverloadCandidate(*I, (*I)->getUnderlyingDecl()->getAsFunction()); |
Richard Smith | bcc22fc | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 3202 | return LOLR_Error; |
| 3203 | } |
| 3204 | |
| 3205 | if (FoundRaw) |
| 3206 | return LOLR_Raw; |
| 3207 | |
| 3208 | if (FoundTemplate) |
| 3209 | return LOLR_Template; |
| 3210 | |
Richard Smith | b8b41d3 | 2013-10-07 19:57:58 +0000 | [diff] [blame] | 3211 | if (FoundStringTemplate) |
| 3212 | return LOLR_StringTemplate; |
| 3213 | |
Richard Smith | bcc22fc | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 3214 | // 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 Smith | b8b41d3 | 2013-10-07 19:57:58 +0000 | [diff] [blame] | 3217 | << (ArgTys.size() == 2 ? ArgTys[1] : QualType()) << AllowRaw |
| 3218 | << (AllowTemplate || AllowStringTemplate); |
Richard Smith | bcc22fc | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 3219 | return LOLR_Error; |
| 3220 | } |
| 3221 | |
John McCall | 8fe6808 | 2010-01-26 07:16:45 +0000 | [diff] [blame] | 3222 | void 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 Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 3227 | if (Old == nullptr || Old == New) { |
John McCall | 8fe6808 | 2010-01-26 07:16:45 +0000 | [diff] [blame] | 3228 | Old = New; |
| 3229 | return; |
| 3230 | } |
| 3231 | |
| 3232 | // Otherwise, decide which is a more recent redeclaration. |
Alp Toker | a2794f9 | 2014-01-22 07:29:52 +0000 | [diff] [blame] | 3233 | FunctionDecl *OldFD = Old->getAsFunction(); |
| 3234 | FunctionDecl *NewFD = New->getAsFunction(); |
John McCall | 8fe6808 | 2010-01-26 07:16:45 +0000 | [diff] [blame] | 3235 | |
| 3236 | FunctionDecl *Cursor = NewFD; |
| 3237 | while (true) { |
Douglas Gregor | ec9fd13 | 2012-01-14 16:38:05 +0000 | [diff] [blame] | 3238 | Cursor = Cursor->getPreviousDecl(); |
John McCall | 8fe6808 | 2010-01-26 07:16:45 +0000 | [diff] [blame] | 3239 | |
| 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 Smith | 100b24a | 2014-04-17 01:52:14 +0000 | [diff] [blame] | 3253 | void Sema::ArgumentDependentLookup(DeclarationName Name, SourceLocation Loc, |
| 3254 | ArrayRef<Expr *> Args, ADLResult &Result) { |
Douglas Gregor | d2b7ef6 | 2009-03-13 00:33:25 +0000 | [diff] [blame] | 3255 | // Find all of the associated namespaces and classes based on the |
| 3256 | // arguments we have. |
| 3257 | AssociatedNamespaceSet AssociatedNamespaces; |
| 3258 | AssociatedClassSet AssociatedClasses; |
John McCall | 7d8b041 | 2012-08-24 20:38:34 +0000 | [diff] [blame] | 3259 | FindAssociatedClassesAndNamespaces(Loc, Args, |
John McCall | c7e8e79 | 2009-08-07 22:18:02 +0000 | [diff] [blame] | 3260 | AssociatedNamespaces, |
| 3261 | AssociatedClasses); |
Douglas Gregor | d2b7ef6 | 2009-03-13 00:33:25 +0000 | [diff] [blame] | 3262 | |
| 3263 | // C++ [basic.lookup.argdep]p3: |
Douglas Gregor | d2b7ef6 | 2009-03-13 00:33:25 +0000 | [diff] [blame] | 3264 | // 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 Ballman | 1e606f4 | 2014-07-15 22:03:49 +0000 | [diff] [blame] | 3274 | for (auto *NS : AssociatedNamespaces) { |
Douglas Gregor | d2b7ef6 | 2009-03-13 00:33:25 +0000 | [diff] [blame] | 3275 | // 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 McCall | c7e8e79 | 2009-08-07 22:18:02 +0000 | [diff] [blame] | 3282 | // -- Any namespace-scope friend functions declared in |
Douglas Gregor | d2b7ef6 | 2009-03-13 00:33:25 +0000 | [diff] [blame] | 3283 | // associated classes are visible within their respective |
| 3284 | // namespaces even if they are not visible during an ordinary |
| 3285 | // lookup (11.4). |
Aaron Ballman | 1e606f4 | 2014-07-15 22:03:49 +0000 | [diff] [blame] | 3286 | DeclContext::lookup_result R = NS->lookup(Name); |
| 3287 | for (auto *D : R) { |
John McCall | aa74a0c | 2009-08-28 07:59:38 +0000 | [diff] [blame] | 3288 | // If the only declaration here is an ordinary friend, consider |
| 3289 | // it only if it was declared in an associated classes. |
Richard Smith | 541b38b | 2013-09-20 01:15:31 +0000 | [diff] [blame] | 3290 | 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 Smith | 6401768 | 2013-07-17 23:53:16 +0000 | [diff] [blame] | 3295 | bool DeclaredInAssociatedClass = false; |
| 3296 | for (Decl *DI = D; DI; DI = DI->getPreviousDecl()) { |
| 3297 | DeclContext *LexDC = DI->getLexicalDeclContext(); |
| 3298 | if (isa<CXXRecordDecl>(LexDC) && |
Richard Smith | 82b8d4e | 2015-12-18 22:19:11 +0000 | [diff] [blame] | 3299 | AssociatedClasses.count(cast<CXXRecordDecl>(LexDC)) && |
| 3300 | isVisible(cast<NamedDecl>(DI))) { |
Richard Smith | 6401768 | 2013-07-17 23:53:16 +0000 | [diff] [blame] | 3301 | DeclaredInAssociatedClass = true; |
| 3302 | break; |
| 3303 | } |
| 3304 | } |
| 3305 | if (!DeclaredInAssociatedClass) |
John McCall | d1e9d83 | 2009-08-11 06:59:38 +0000 | [diff] [blame] | 3306 | continue; |
| 3307 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3308 | |
John McCall | 91f61fc | 2010-01-26 06:04:06 +0000 | [diff] [blame] | 3309 | if (isa<UsingShadowDecl>(D)) |
| 3310 | D = cast<UsingShadowDecl>(D)->getTargetDecl(); |
John McCall | 4c4c1df | 2010-01-26 03:27:55 +0000 | [diff] [blame] | 3311 | |
Richard Smith | 100b24a | 2014-04-17 01:52:14 +0000 | [diff] [blame] | 3312 | if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) |
John McCall | 8fe6808 | 2010-01-26 07:16:45 +0000 | [diff] [blame] | 3313 | continue; |
| 3314 | |
Richard Smith | a143107 | 2015-06-12 01:32:13 +0000 | [diff] [blame] | 3315 | if (!isVisible(D) && !(D = findAcceptableDecl(*this, D))) |
| 3316 | continue; |
| 3317 | |
John McCall | 8fe6808 | 2010-01-26 07:16:45 +0000 | [diff] [blame] | 3318 | Result.insert(D); |
Douglas Gregor | 6127ca4 | 2009-06-23 20:14:09 +0000 | [diff] [blame] | 3319 | } |
| 3320 | } |
Douglas Gregor | d2b7ef6 | 2009-03-13 00:33:25 +0000 | [diff] [blame] | 3321 | } |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3322 | |
| 3323 | //---------------------------------------------------------------------------- |
| 3324 | // Search for all visible declarations. |
| 3325 | //---------------------------------------------------------------------------- |
Angel Garcia Gomez | 637d1e6 | 2015-10-20 13:23:58 +0000 | [diff] [blame] | 3326 | VisibleDeclConsumer::~VisibleDeclConsumer() { } |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3327 | |
Richard Smith | e156254d | 2013-08-20 20:35:18 +0000 | [diff] [blame] | 3328 | bool VisibleDeclConsumer::includeHiddenDecls() const { return false; } |
| 3329 | |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3330 | namespace { |
| 3331 | |
| 3332 | class ShadowContextRAII; |
| 3333 | |
| 3334 | class VisibleDeclsRecord { |
| 3335 | public: |
| 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 Lattner | 83cfc7c | 2011-07-18 01:54:02 +0000 | [diff] [blame] | 3339 | typedef llvm::TinyPtrVector<NamedDecl*> ShadowMapEntry; |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3340 | |
| 3341 | private: |
| 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 | |
| 3354 | public: |
| 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 Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 3358 | return !VisitedContexts.insert(Ctx).second; |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3359 | } |
| 3360 | |
Douglas Gregor | 3998219 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 3361 | bool alreadyVisitedContext(DeclContext *Ctx) { |
| 3362 | return VisitedContexts.count(Ctx); |
| 3363 | } |
| 3364 | |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3365 | /// \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 Lattner | 83cfc7c | 2011-07-18 01:54:02 +0000 | [diff] [blame] | 3373 | void add(NamedDecl *ND) { |
| 3374 | ShadowMaps.back()[ND->getDeclName()].push_back(ND); |
| 3375 | } |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3376 | }; |
| 3377 | |
| 3378 | /// \brief RAII object that records when we've entered a shadow context. |
| 3379 | class ShadowContextRAII { |
| 3380 | VisibleDeclsRecord &Visible; |
| 3381 | |
| 3382 | typedef VisibleDeclsRecord::ShadowMap ShadowMap; |
| 3383 | |
| 3384 | public: |
| 3385 | ShadowContextRAII(VisibleDeclsRecord &Visible) : Visible(Visible) { |
Benjamin Kramer | 3204b15 | 2015-05-29 19:42:19 +0000 | [diff] [blame] | 3386 | Visible.ShadowMaps.emplace_back(); |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3387 | } |
| 3388 | |
| 3389 | ~ShadowContextRAII() { |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3390 | Visible.ShadowMaps.pop_back(); |
| 3391 | } |
| 3392 | }; |
| 3393 | |
| 3394 | } // end anonymous namespace |
| 3395 | |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3396 | NamedDecl *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 Ballman | 1e606f4 | 2014-07-15 22:03:49 +0000 | [diff] [blame] | 3405 | for (auto *D : Pos->second) { |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3406 | // A tag declaration does not hide a non-tag declaration. |
Aaron Ballman | 1e606f4 | 2014-07-15 22:03:49 +0000 | [diff] [blame] | 3407 | if (D->hasTagIdentifierNamespace() && |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3408 | (IDNS & (Decl::IDNS_Member | Decl::IDNS_Ordinary | |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3409 | Decl::IDNS_ObjCProtocol))) |
| 3410 | continue; |
| 3411 | |
| 3412 | // Protocols are in distinct namespaces from everything else. |
Aaron Ballman | 1e606f4 | 2014-07-15 22:03:49 +0000 | [diff] [blame] | 3413 | if (((D->getIdentifierNamespace() & Decl::IDNS_ObjCProtocol) |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3414 | || (IDNS & Decl::IDNS_ObjCProtocol)) && |
Aaron Ballman | 1e606f4 | 2014-07-15 22:03:49 +0000 | [diff] [blame] | 3415 | D->getIdentifierNamespace() != IDNS) |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3416 | continue; |
| 3417 | |
Douglas Gregor | 09bbc65 | 2010-01-14 15:47:35 +0000 | [diff] [blame] | 3418 | // Functions and function templates in the same scope overload |
| 3419 | // rather than hide. FIXME: Look for hiding based on function |
| 3420 | // signatures! |
Aaron Ballman | 1e606f4 | 2014-07-15 22:03:49 +0000 | [diff] [blame] | 3421 | if (D->getUnderlyingDecl()->isFunctionOrFunctionTemplate() && |
Alp Toker | a2794f9 | 2014-01-22 07:29:52 +0000 | [diff] [blame] | 3422 | ND->getUnderlyingDecl()->isFunctionOrFunctionTemplate() && |
Douglas Gregor | 09bbc65 | 2010-01-14 15:47:35 +0000 | [diff] [blame] | 3423 | SM == ShadowMaps.rbegin()) |
Douglas Gregor | 200c99d | 2010-01-14 03:35:48 +0000 | [diff] [blame] | 3424 | continue; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3425 | |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3426 | // We've found a declaration that hides this one. |
Aaron Ballman | 1e606f4 | 2014-07-15 22:03:49 +0000 | [diff] [blame] | 3427 | return D; |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3428 | } |
| 3429 | } |
| 3430 | |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 3431 | return nullptr; |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3432 | } |
| 3433 | |
| 3434 | static void LookupVisibleDecls(DeclContext *Ctx, LookupResult &Result, |
| 3435 | bool QualifiedNameLookup, |
Douglas Gregor | 09bbc65 | 2010-01-14 15:47:35 +0000 | [diff] [blame] | 3436 | bool InBaseClass, |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3437 | VisibleDeclConsumer &Consumer, |
| 3438 | VisibleDeclsRecord &Visited) { |
Douglas Gregor | 0c8a172 | 2010-02-04 23:42:48 +0000 | [diff] [blame] | 3439 | if (!Ctx) |
| 3440 | return; |
| 3441 | |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3442 | // Make sure we don't visit the same context twice. |
| 3443 | if (Visited.visitedContext(Ctx->getPrimaryContext())) |
| 3444 | return; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3445 | |
Richard Smith | 9e2341d | 2015-03-23 03:25:59 +0000 | [diff] [blame] | 3446 | // 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 Gregor | 7454c56 | 2010-07-02 20:37:36 +0000 | [diff] [blame] | 3476 | if (CXXRecordDecl *Class = dyn_cast<CXXRecordDecl>(Ctx)) |
| 3477 | Result.getSema().ForceDeclarationOfImplicitMembers(Class); |
| 3478 | |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3479 | // Enumerate all of the results in this context. |
Richard Trieu | 20abd6b | 2015-04-15 03:48:48 +0000 | [diff] [blame] | 3480 | for (DeclContextLookupResult R : Ctx->lookups()) { |
Richard Smith | 9e2341d | 2015-03-23 03:25:59 +0000 | [diff] [blame] | 3481 | 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 Gregor | a3b23b0 | 2010-12-09 21:44:02 +0000 | [diff] [blame] | 3485 | } |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3486 | } |
| 3487 | } |
| 3488 | |
| 3489 | // Traverse using directives for qualified name lookup. |
| 3490 | if (QualifiedNameLookup) { |
| 3491 | ShadowContextRAII Shadow(Visited); |
Aaron Ballman | 804a7fb | 2014-03-17 17:14:12 +0000 | [diff] [blame] | 3492 | for (auto I : Ctx->using_directives()) { |
Aaron Ballman | 63ab760 | 2014-03-07 13:44:44 +0000 | [diff] [blame] | 3493 | LookupVisibleDecls(I->getNominatedNamespace(), Result, |
Douglas Gregor | 09bbc65 | 2010-01-14 15:47:35 +0000 | [diff] [blame] | 3494 | QualifiedNameLookup, InBaseClass, Consumer, Visited); |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3495 | } |
| 3496 | } |
| 3497 | |
Douglas Gregor | 35b0bac | 2010-01-03 18:01:57 +0000 | [diff] [blame] | 3498 | // Traverse the contexts of inherited C++ classes. |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3499 | if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Ctx)) { |
John McCall | 67da35c | 2010-02-04 22:26:26 +0000 | [diff] [blame] | 3500 | if (!Record->hasDefinition()) |
| 3501 | return; |
| 3502 | |
Aaron Ballman | 574705e | 2014-03-13 15:41:46 +0000 | [diff] [blame] | 3503 | for (const auto &B : Record->bases()) { |
| 3504 | QualType BaseType = B.getType(); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3505 | |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3506 | // Don't look into dependent bases, because name lookup can't look |
| 3507 | // there anyway. |
| 3508 | if (BaseType->isDependentType()) |
| 3509 | continue; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3510 | |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3511 | const RecordType *Record = BaseType->getAs<RecordType>(); |
| 3512 | if (!Record) |
| 3513 | continue; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3514 | |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3515 | // 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 Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3533 | |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3534 | // Find results in this base class (and its bases). |
| 3535 | ShadowContextRAII Shadow(Visited); |
| 3536 | LookupVisibleDecls(Record->getDecl(), Result, QualifiedNameLookup, |
Douglas Gregor | 09bbc65 | 2010-01-14 15:47:35 +0000 | [diff] [blame] | 3537 | true, Consumer, Visited); |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3538 | } |
| 3539 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3540 | |
Douglas Gregor | 35b0bac | 2010-01-03 18:01:57 +0000 | [diff] [blame] | 3541 | // Traverse the contexts of Objective-C classes. |
| 3542 | if (ObjCInterfaceDecl *IFace = dyn_cast<ObjCInterfaceDecl>(Ctx)) { |
| 3543 | // Traverse categories. |
Aaron Ballman | 3fe486a | 2014-03-13 21:23:55 +0000 | [diff] [blame] | 3544 | for (auto *Cat : IFace->visible_categories()) { |
Douglas Gregor | 35b0bac | 2010-01-03 18:01:57 +0000 | [diff] [blame] | 3545 | ShadowContextRAII Shadow(Visited); |
Aaron Ballman | 3fe486a | 2014-03-13 21:23:55 +0000 | [diff] [blame] | 3546 | LookupVisibleDecls(Cat, Result, QualifiedNameLookup, false, |
Douglas Gregor | 09bbc65 | 2010-01-14 15:47:35 +0000 | [diff] [blame] | 3547 | Consumer, Visited); |
Douglas Gregor | 35b0bac | 2010-01-03 18:01:57 +0000 | [diff] [blame] | 3548 | } |
| 3549 | |
| 3550 | // Traverse protocols. |
Aaron Ballman | a9f49e3 | 2014-03-13 20:55:22 +0000 | [diff] [blame] | 3551 | for (auto *I : IFace->all_referenced_protocols()) { |
Douglas Gregor | 35b0bac | 2010-01-03 18:01:57 +0000 | [diff] [blame] | 3552 | ShadowContextRAII Shadow(Visited); |
Aaron Ballman | a9f49e3 | 2014-03-13 20:55:22 +0000 | [diff] [blame] | 3553 | LookupVisibleDecls(I, Result, QualifiedNameLookup, false, Consumer, |
Douglas Gregor | 09bbc65 | 2010-01-14 15:47:35 +0000 | [diff] [blame] | 3554 | Visited); |
Douglas Gregor | 35b0bac | 2010-01-03 18:01:57 +0000 | [diff] [blame] | 3555 | } |
| 3556 | |
| 3557 | // Traverse the superclass. |
| 3558 | if (IFace->getSuperClass()) { |
| 3559 | ShadowContextRAII Shadow(Visited); |
| 3560 | LookupVisibleDecls(IFace->getSuperClass(), Result, QualifiedNameLookup, |
Douglas Gregor | 09bbc65 | 2010-01-14 15:47:35 +0000 | [diff] [blame] | 3561 | true, Consumer, Visited); |
Douglas Gregor | 35b0bac | 2010-01-03 18:01:57 +0000 | [diff] [blame] | 3562 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3563 | |
Douglas Gregor | 0b59e80 | 2010-04-19 18:02:19 +0000 | [diff] [blame] | 3564 | // If there is an implementation, traverse it. We do this to find |
| 3565 | // synthesized ivars. |
| 3566 | if (IFace->getImplementation()) { |
| 3567 | ShadowContextRAII Shadow(Visited); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3568 | LookupVisibleDecls(IFace->getImplementation(), Result, |
Nick Lewycky | 13668f2 | 2012-04-03 20:26:45 +0000 | [diff] [blame] | 3569 | QualifiedNameLookup, InBaseClass, Consumer, Visited); |
Douglas Gregor | 0b59e80 | 2010-04-19 18:02:19 +0000 | [diff] [blame] | 3570 | } |
Douglas Gregor | 35b0bac | 2010-01-03 18:01:57 +0000 | [diff] [blame] | 3571 | } else if (ObjCProtocolDecl *Protocol = dyn_cast<ObjCProtocolDecl>(Ctx)) { |
Aaron Ballman | 0f6e64d | 2014-03-13 22:58:06 +0000 | [diff] [blame] | 3572 | for (auto *I : Protocol->protocols()) { |
Douglas Gregor | 35b0bac | 2010-01-03 18:01:57 +0000 | [diff] [blame] | 3573 | ShadowContextRAII Shadow(Visited); |
Aaron Ballman | 0f6e64d | 2014-03-13 22:58:06 +0000 | [diff] [blame] | 3574 | LookupVisibleDecls(I, Result, QualifiedNameLookup, false, Consumer, |
Douglas Gregor | 09bbc65 | 2010-01-14 15:47:35 +0000 | [diff] [blame] | 3575 | Visited); |
Douglas Gregor | 35b0bac | 2010-01-03 18:01:57 +0000 | [diff] [blame] | 3576 | } |
| 3577 | } else if (ObjCCategoryDecl *Category = dyn_cast<ObjCCategoryDecl>(Ctx)) { |
Aaron Ballman | 19a4176 | 2014-03-14 12:55:57 +0000 | [diff] [blame] | 3578 | for (auto *I : Category->protocols()) { |
Douglas Gregor | 35b0bac | 2010-01-03 18:01:57 +0000 | [diff] [blame] | 3579 | ShadowContextRAII Shadow(Visited); |
Aaron Ballman | 19a4176 | 2014-03-14 12:55:57 +0000 | [diff] [blame] | 3580 | LookupVisibleDecls(I, Result, QualifiedNameLookup, false, Consumer, |
Douglas Gregor | 09bbc65 | 2010-01-14 15:47:35 +0000 | [diff] [blame] | 3581 | Visited); |
Douglas Gregor | 35b0bac | 2010-01-03 18:01:57 +0000 | [diff] [blame] | 3582 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3583 | |
Douglas Gregor | 0b59e80 | 2010-04-19 18:02:19 +0000 | [diff] [blame] | 3584 | // If there is an implementation, traverse it. |
| 3585 | if (Category->getImplementation()) { |
| 3586 | ShadowContextRAII Shadow(Visited); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3587 | LookupVisibleDecls(Category->getImplementation(), Result, |
Douglas Gregor | 0b59e80 | 2010-04-19 18:02:19 +0000 | [diff] [blame] | 3588 | QualifiedNameLookup, true, Consumer, Visited); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3589 | } |
Douglas Gregor | 35b0bac | 2010-01-03 18:01:57 +0000 | [diff] [blame] | 3590 | } |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3591 | } |
| 3592 | |
| 3593 | static void LookupVisibleDecls(Scope *S, LookupResult &Result, |
| 3594 | UnqualUsingDirectiveSet &UDirs, |
| 3595 | VisibleDeclConsumer &Consumer, |
| 3596 | VisibleDeclsRecord &Visited) { |
| 3597 | if (!S) |
| 3598 | return; |
| 3599 | |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3600 | if (!S->getEntity() || |
| 3601 | (!S->getParent() && |
Ted Kremenek | c37877d | 2013-10-08 17:08:03 +0000 | [diff] [blame] | 3602 | !Visited.alreadyVisitedContext(S->getEntity())) || |
| 3603 | (S->getEntity())->isFunctionOrMethod()) { |
Richard Smith | 541b38b | 2013-09-20 01:15:31 +0000 | [diff] [blame] | 3604 | FindLocalExternScope FindLocals(Result); |
Douglas Gregor | 712dcfe | 2010-01-07 00:31:29 +0000 | [diff] [blame] | 3605 | // Walk through the declarations in this Scope. |
Aaron Ballman | 35c5495 | 2014-03-17 16:55:25 +0000 | [diff] [blame] | 3606 | for (auto *D : S->decls()) { |
| 3607 | if (NamedDecl *ND = dyn_cast<NamedDecl>(D)) |
Douglas Gregor | 4a81456 | 2011-12-14 16:03:29 +0000 | [diff] [blame] | 3608 | if ((ND = Result.getAcceptableDecl(ND))) { |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 3609 | Consumer.FoundDecl(ND, Visited.checkHidden(ND), nullptr, false); |
Douglas Gregor | 712dcfe | 2010-01-07 00:31:29 +0000 | [diff] [blame] | 3610 | Visited.add(ND); |
| 3611 | } |
| 3612 | } |
| 3613 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3614 | |
Douglas Gregor | 6623006 | 2010-03-15 14:33:29 +0000 | [diff] [blame] | 3615 | // FIXME: C++ [temp.local]p8 |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 3616 | DeclContext *Entity = nullptr; |
Douglas Gregor | 4f24863 | 2010-01-01 17:44:25 +0000 | [diff] [blame] | 3617 | if (S->getEntity()) { |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3618 | // 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 Kremenek | c37877d | 2013-10-08 17:08:03 +0000 | [diff] [blame] | 3621 | Entity = S->getEntity(); |
Douglas Gregor | 6623006 | 2010-03-15 14:33:29 +0000 | [diff] [blame] | 3622 | DeclContext *OuterCtx = findOuterContext(S).first; // FIXME |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3623 | |
Douglas Gregor | ea16606 | 2010-03-15 15:26:48 +0000 | [diff] [blame] | 3624 | for (DeclContext *Ctx = Entity; Ctx && !Ctx->Equals(OuterCtx); |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3625 | Ctx = Ctx->getLookupParent()) { |
Douglas Gregor | 35b0bac | 2010-01-03 18:01:57 +0000 | [diff] [blame] | 3626 | 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 Gregor | 05fcf84 | 2010-11-02 20:36:02 +0000 | [diff] [blame] | 3631 | if (ObjCInterfaceDecl *IFace = Method->getClassInterface()) { |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3632 | LookupVisibleDecls(IFace, IvarResult, /*QualifiedNameLookup=*/false, |
Richard Smith | e156254d | 2013-08-20 20:35:18 +0000 | [diff] [blame] | 3633 | /*InBaseClass=*/false, Consumer, Visited); |
Douglas Gregor | 05fcf84 | 2010-11-02 20:36:02 +0000 | [diff] [blame] | 3634 | } |
Douglas Gregor | 35b0bac | 2010-01-03 18:01:57 +0000 | [diff] [blame] | 3635 | } |
| 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 Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3643 | if (Ctx->isFunctionOrMethod()) |
| 3644 | continue; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3645 | |
| 3646 | LookupVisibleDecls(Ctx, Result, /*QualifiedNameLookup=*/false, |
Douglas Gregor | 09bbc65 | 2010-01-14 15:47:35 +0000 | [diff] [blame] | 3647 | /*InBaseClass=*/false, Consumer, Visited); |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3648 | } |
| 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 Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3656 | // translation unit decl when the IdentifierInfo chains would suffice. |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3657 | // Once we fix that problem (which is part of a more general "don't look |
Douglas Gregor | 712dcfe | 2010-01-07 00:31:29 +0000 | [diff] [blame] | 3658 | // in DeclContexts unless we have to" optimization), we can eliminate this. |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3659 | Entity = Result.getSema().Context.getTranslationUnitDecl(); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3660 | LookupVisibleDecls(Entity, Result, /*QualifiedNameLookup=*/false, |
Douglas Gregor | 09bbc65 | 2010-01-14 15:47:35 +0000 | [diff] [blame] | 3661 | /*InBaseClass=*/false, Consumer, Visited); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3662 | } |
| 3663 | |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3664 | if (Entity) { |
| 3665 | // Lookup visible declarations in any namespaces found by using |
| 3666 | // directives. |
Benjamin Kramer | b4ef668 | 2015-02-06 17:25:10 +0000 | [diff] [blame] | 3667 | for (const UnqualUsingEntry &UUE : UDirs.getNamespacesFor(Entity)) |
| 3668 | LookupVisibleDecls(const_cast<DeclContext *>(UUE.getNominatedNamespace()), |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3669 | Result, /*QualifiedNameLookup=*/false, |
Douglas Gregor | 09bbc65 | 2010-01-14 15:47:35 +0000 | [diff] [blame] | 3670 | /*InBaseClass=*/false, Consumer, Visited); |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3671 | } |
| 3672 | |
| 3673 | // Lookup names in the parent scope. |
| 3674 | ShadowContextRAII Shadow(Visited); |
| 3675 | LookupVisibleDecls(S->getParent(), Result, UDirs, Consumer, Visited); |
| 3676 | } |
| 3677 | |
| 3678 | void Sema::LookupVisibleDecls(Scope *S, LookupNameKind Kind, |
Douglas Gregor | 3998219 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 3679 | VisibleDeclConsumer &Consumer, |
| 3680 | bool IncludeGlobalScope) { |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3681 | // Determine the set of using directives available during |
| 3682 | // unqualified name lookup. |
| 3683 | Scope *Initial = S; |
| 3684 | UnqualUsingDirectiveSet UDirs; |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3685 | if (getLangOpts().CPlusPlus) { |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3686 | // 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 Smith | e156254d | 2013-08-20 20:35:18 +0000 | [diff] [blame] | 3696 | Result.setAllowHidden(Consumer.includeHiddenDecls()); |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3697 | VisibleDeclsRecord Visited; |
Douglas Gregor | 3998219 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 3698 | if (!IncludeGlobalScope) |
| 3699 | Visited.visitedContext(Context.getTranslationUnitDecl()); |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3700 | ShadowContextRAII Shadow(Visited); |
| 3701 | ::LookupVisibleDecls(Initial, Result, UDirs, Consumer, Visited); |
| 3702 | } |
| 3703 | |
| 3704 | void Sema::LookupVisibleDecls(DeclContext *Ctx, LookupNameKind Kind, |
Douglas Gregor | 3998219 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 3705 | VisibleDeclConsumer &Consumer, |
| 3706 | bool IncludeGlobalScope) { |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3707 | LookupResult Result(*this, DeclarationName(), SourceLocation(), Kind); |
Richard Smith | e156254d | 2013-08-20 20:35:18 +0000 | [diff] [blame] | 3708 | Result.setAllowHidden(Consumer.includeHiddenDecls()); |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3709 | VisibleDeclsRecord Visited; |
Douglas Gregor | 3998219 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 3710 | if (!IncludeGlobalScope) |
| 3711 | Visited.visitedContext(Context.getTranslationUnitDecl()); |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3712 | ShadowContextRAII Shadow(Visited); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3713 | ::LookupVisibleDecls(Ctx, Result, /*QualifiedNameLookup=*/true, |
Douglas Gregor | 09bbc65 | 2010-01-14 15:47:35 +0000 | [diff] [blame] | 3714 | /*InBaseClass=*/false, Consumer, Visited); |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3715 | } |
| 3716 | |
Chris Lattner | 43e7f31 | 2011-02-18 02:08:43 +0000 | [diff] [blame] | 3717 | /// LookupOrCreateLabel - Do a name lookup of a label with the specified name. |
Abramo Bagnara | 1c3af96 | 2011-03-05 18:21:20 +0000 | [diff] [blame] | 3718 | /// 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 Lattner | 43e7f31 | 2011-02-18 02:08:43 +0000 | [diff] [blame] | 3721 | LabelDecl *Sema::LookupOrCreateLabel(IdentifierInfo *II, SourceLocation Loc, |
Abramo Bagnara | 1c3af96 | 2011-03-05 18:21:20 +0000 | [diff] [blame] | 3722 | SourceLocation GnuLabelLoc) { |
Chris Lattner | ebb5c6c | 2011-02-18 01:27:55 +0000 | [diff] [blame] | 3723 | // Do a lookup to see if we have a label with this name already. |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 3724 | NamedDecl *Res = nullptr; |
Abramo Bagnara | 1c3af96 | 2011-03-05 18:21:20 +0000 | [diff] [blame] | 3725 | |
| 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 Lattner | ebb5c6c | 2011-02-18 01:27:55 +0000 | [diff] [blame] | 3738 | if (Res && Res->getDeclContext() != CurContext) |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 3739 | Res = nullptr; |
| 3740 | if (!Res) { |
Chris Lattner | ebb5c6c | 2011-02-18 01:27:55 +0000 | [diff] [blame] | 3741 | // If not forward referenced or defined already, create the backing decl. |
Abramo Bagnara | 1c3af96 | 2011-03-05 18:21:20 +0000 | [diff] [blame] | 3742 | Res = LabelDecl::Create(Context, CurContext, Loc, II); |
| 3743 | Scope *S = CurScope->getFnParent(); |
Chris Lattner | 9ba479b | 2011-02-18 21:16:39 +0000 | [diff] [blame] | 3744 | assert(S && "Not in a function?"); |
| 3745 | PushOnScopeChains(Res, S, true); |
Chris Lattner | ebb5c6c | 2011-02-18 01:27:55 +0000 | [diff] [blame] | 3746 | } |
Chris Lattner | ebb5c6c | 2011-02-18 01:27:55 +0000 | [diff] [blame] | 3747 | return cast<LabelDecl>(Res); |
| 3748 | } |
| 3749 | |
| 3750 | //===----------------------------------------------------------------------===// |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3751 | // Typo correction |
Chris Lattner | ebb5c6c | 2011-02-18 01:27:55 +0000 | [diff] [blame] | 3752 | //===----------------------------------------------------------------------===// |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3753 | |
Kaelyn Takata | 0fc7519 | 2014-06-11 18:06:56 +0000 | [diff] [blame] | 3754 | static bool isCandidateViable(CorrectionCandidateCallback &CCC, |
| 3755 | TypoCorrection &Candidate) { |
| 3756 | Candidate.setCallbackDistance(CCC.RankCandidate(Candidate)); |
| 3757 | return Candidate.getEditDistance(false) != TypoCorrection::InvalidDistance; |
| 3758 | } |
| 3759 | |
| 3760 | static 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 Takata | 9ab7fb6 | 2014-10-27 18:07:40 +0000 | [diff] [blame] | 3769 | /// \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. |
| 3772 | static 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 Takata | 0fc7519 | 2014-06-11 18:06:56 +0000 | [diff] [blame] | 3812 | // 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"). |
| 3815 | static 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 Smiljanic | 6786024 | 2014-09-26 00:28:20 +0000 | [diff] [blame] | 3846 | case NestedNameSpecifier::Super: |
Kaelyn Takata | 0fc7519 | 2014-06-11 18:06:56 +0000 | [diff] [blame] | 3847 | return; |
| 3848 | } |
| 3849 | |
| 3850 | if (II) |
| 3851 | Identifiers.push_back(II); |
| 3852 | } |
| 3853 | |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3854 | void TypoCorrectionConsumer::FoundDecl(NamedDecl *ND, NamedDecl *Hiding, |
Erik Verbruggen | 2e657ff | 2011-10-06 07:27:49 +0000 | [diff] [blame] | 3855 | DeclContext *Ctx, bool InBaseClass) { |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3856 | // Don't consider hidden names for typo correction. |
| 3857 | if (Hiding) |
| 3858 | return; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3859 | |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3860 | // 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 Smith | e156254d | 2013-08-20 20:35:18 +0000 | [diff] [blame] | 3867 | // Only consider visible declarations and declarations from modules with |
| 3868 | // names that exactly match. |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 3869 | if (!LookupResult::isVisible(SemaRef, ND) && Name != Typo && |
Richard Smith | e156254d | 2013-08-20 20:35:18 +0000 | [diff] [blame] | 3870 | !findAcceptableDecl(SemaRef, ND)) |
| 3871 | return; |
| 3872 | |
Douglas Gregor | 57756ea | 2010-10-14 22:11:03 +0000 | [diff] [blame] | 3873 | FoundName(Name->getName()); |
| 3874 | } |
| 3875 | |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 3876 | void TypoCorrectionConsumer::FoundName(StringRef Name) { |
Kaelyn Uhrain | 653ff24 | 2013-10-02 18:26:35 +0000 | [diff] [blame] | 3877 | // Compute the edit distance between the typo and the name of this |
| 3878 | // entity, and add the identifier to the list of results. |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 3879 | addName(Name, nullptr); |
Kaelyn Uhrain | 653ff24 | 2013-10-02 18:26:35 +0000 | [diff] [blame] | 3880 | } |
| 3881 | |
| 3882 | void 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 Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 3885 | addName(Keyword, nullptr, nullptr, true); |
Kaelyn Uhrain | 653ff24 | 2013-10-02 18:26:35 +0000 | [diff] [blame] | 3886 | } |
| 3887 | |
| 3888 | void TypoCorrectionConsumer::addName(StringRef Name, NamedDecl *ND, |
| 3889 | NestedNameSpecifier *NNS, bool isKeyword) { |
Douglas Gregor | 93910a5 | 2010-10-19 19:39:10 +0000 | [diff] [blame] | 3890 | // 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 Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 3892 | StringRef TypoStr = Typo->getName(); |
| 3893 | unsigned MinED = abs((int)Name.size() - (int)TypoStr.size()); |
| 3894 | if (MinED && TypoStr.size() / MinED < 3) |
Douglas Gregor | 93910a5 | 2010-10-19 19:39:10 +0000 | [diff] [blame] | 3895 | return; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3896 | |
Douglas Gregor | c1fb15e | 2010-10-19 22:14:33 +0000 | [diff] [blame] | 3897 | // Compute an upper bound on the allowable edit distance, so that the |
| 3898 | // edit-distance algorithm can short-circuit. |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 3899 | unsigned UpperBound = (TypoStr.size() + 2) / 3 + 1; |
| 3900 | unsigned ED = TypoStr.edit_distance(Name, true, UpperBound); |
Kaelyn Uhrain | 653ff24 | 2013-10-02 18:26:35 +0000 | [diff] [blame] | 3901 | if (ED >= UpperBound) return; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3902 | |
Kaelyn Uhrain | 653ff24 | 2013-10-02 18:26:35 +0000 | [diff] [blame] | 3903 | TypoCorrection TC(&SemaRef.Context.Idents.get(Name), ND, NNS, ED); |
Kaelyn Uhrain | acbdc57 | 2011-08-03 20:36:05 +0000 | [diff] [blame] | 3904 | if (isKeyword) TC.makeKeyword(); |
Kaelyn Takata | 0a31302 | 2014-11-20 22:06:26 +0000 | [diff] [blame] | 3905 | TC.setCorrectionRange(nullptr, Result.getLookupNameInfo()); |
Kaelyn Uhrain | acbdc57 | 2011-08-03 20:36:05 +0000 | [diff] [blame] | 3906 | addCorrection(TC); |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 3907 | } |
| 3908 | |
Kaelyn Takata | d2287c3 | 2014-10-27 18:07:13 +0000 | [diff] [blame] | 3909 | static const unsigned MaxTypoDistanceResultSets = 5; |
| 3910 | |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 3911 | void TypoCorrectionConsumer::addCorrection(TypoCorrection Correction) { |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 3912 | StringRef TypoStr = Typo->getName(); |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 3913 | StringRef Name = Correction.getCorrectionAsIdentifierInfo()->getName(); |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 3914 | |
| 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 Takata | 9ab7fb6 | 2014-10-27 18:07:40 +0000 | [diff] [blame] | 3923 | if (Correction.isResolved()) { |
| 3924 | checkCorrectionVisibility(SemaRef, Correction); |
| 3925 | if (!Correction || !isCandidateViable(*CorrectionValidator, Correction)) |
| 3926 | return; |
| 3927 | } |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 3928 | |
Kaelyn Uhrain | ba896f1 | 2012-06-01 18:11:16 +0000 | [diff] [blame] | 3929 | TypoResultList &CList = |
| 3930 | CorrectionResults[Correction.getEditDistance(false)][Name]; |
Chandler Carruth | 7d85c9b | 2011-06-28 22:48:40 +0000 | [diff] [blame] | 3931 | |
Kaelyn Uhrain | ba896f1 | 2012-06-01 18:11:16 +0000 | [diff] [blame] | 3932 | 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 Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 3951 | |
Kaelyn Uhrain | 34fab55 | 2012-05-31 23:32:58 +0000 | [diff] [blame] | 3952 | while (CorrectionResults.size() > MaxTypoDistanceResultSets) |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 3953 | CorrectionResults.erase(std::prev(CorrectionResults.end())); |
| 3954 | } |
| 3955 | |
| 3956 | void 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 Smith | 2a40fb7 | 2015-11-18 01:19:02 +0000 | [diff] [blame] | 3969 | // 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 Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 3975 | 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 Takata | 0d6a3ed | 2014-10-27 18:07:34 +0000 | [diff] [blame] | 3986 | const TypoCorrection &TypoCorrectionConsumer::getNextCorrection() { |
| 3987 | if (++CurrentTCIndex < ValidatedCorrections.size()) |
| 3988 | return ValidatedCorrections[CurrentTCIndex]; |
| 3989 | |
| 3990 | CurrentTCIndex = ValidatedCorrections.size(); |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 3991 | 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 Takata | 9ab7fb6 | 2014-10-27 18:07:40 +0000 | [diff] [blame] | 4006 | if (TC.isResolved() || TC.requiresImport() || resolveCorrection(TC)) { |
Kaelyn Takata | 0d6a3ed | 2014-10-27 18:07:34 +0000 | [diff] [blame] | 4007 | ValidatedCorrections.push_back(TC); |
| 4008 | return ValidatedCorrections[CurrentTCIndex]; |
| 4009 | } |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 4010 | } |
Kaelyn Takata | 0d6a3ed | 2014-10-27 18:07:34 +0000 | [diff] [blame] | 4011 | return ValidatedCorrections[0]; // The empty correction. |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 4012 | } |
| 4013 | |
| 4014 | bool TypoCorrectionConsumer::resolveCorrection(TypoCorrection &Candidate) { |
| 4015 | IdentifierInfo *Name = Candidate.getCorrectionAsIdentifierInfo(); |
| 4016 | DeclContext *TempMemberContext = MemberContext; |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4017 | CXXScopeSpec *TempSS = SS.get(); |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 4018 | retry_lookup: |
| 4019 | LookupPotentialTypoResult(SemaRef, Result, Name, S, TempSS, TempMemberContext, |
| 4020 | EnteringContext, |
Kaelyn Takata | 89c881b | 2014-10-27 18:07:29 +0000 | [diff] [blame] | 4021 | CorrectionValidator->IsObjCIvarLookup, |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 4022 | 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 Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4035 | TempSS = SS.get(); |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 4036 | 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 Takata | 9ab7fb6 | 2014-10-27 18:07:40 +0000 | [diff] [blame] | 4052 | checkCorrectionVisibility(SemaRef, Candidate); |
Kaelyn Takata | 89c881b | 2014-10-27 18:07:29 +0000 | [diff] [blame] | 4053 | if (!isCandidateViable(*CorrectionValidator, Candidate)) { |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 4054 | if (SearchNamespaces) |
| 4055 | QualifiedResults.push_back(Candidate); |
| 4056 | break; |
| 4057 | } |
Kaelyn Takata | 20deb1d | 2015-01-28 00:46:09 +0000 | [diff] [blame] | 4058 | Candidate.setCorrectionRange(SS.get(), Result.getLookupNameInfo()); |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 4059 | return true; |
| 4060 | } |
| 4061 | return false; |
| 4062 | } |
| 4063 | |
| 4064 | void TypoCorrectionConsumer::performQualifiedLookups() { |
| 4065 | unsigned TypoLen = Typo->getName().size(); |
Benjamin Kramer | 2e018ef | 2016-05-27 13:36:58 +0000 | [diff] [blame] | 4066 | for (const TypoCorrection &QR : QualifiedResults) { |
| 4067 | for (const auto &NSI : Namespaces) { |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 4068 | 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 Wennborg | dcfba33 | 2015-10-06 23:40:43 +0000 | [diff] [blame] | 4075 | if (CXXRecordDecl *NSDecl = NSType ? NSType->getAsCXXRecordDecl() : |
| 4076 | nullptr) { |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 4077 | 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 Takata | 0a31302 | 2014-11-20 22:06:26 +0000 | [diff] [blame] | 4125 | if (TC.isResolved()) { |
| 4126 | TC.setCorrectionRange(SS.get(), Result.getLookupNameInfo()); |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 4127 | addCorrection(TC); |
Kaelyn Takata | 0a31302 | 2014-11-20 22:06:26 +0000 | [diff] [blame] | 4128 | } |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 4129 | 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 Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4140 | } |
| 4141 | |
Kaelyn Takata | cd7c3a9 | 2014-06-11 18:33:46 +0000 | [diff] [blame] | 4142 | TypoCorrectionConsumer::NamespaceSpecifierSet::NamespaceSpecifierSet( |
| 4143 | ASTContext &Context, DeclContext *CurContext, CXXScopeSpec *CurScopeSpec) |
Benjamin Kramer | 1553727 | 2015-03-13 16:10:42 +0000 | [diff] [blame] | 4144 | : Context(Context), CurContextChain(buildContextChain(CurContext)) { |
Kaelyn Takata | cd7c3a9 | 2014-06-11 18:33:46 +0000 | [diff] [blame] | 4145 | 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. |
David Majnemer | f7e3609 | 2016-06-23 00:15:04 +0000 | [diff] [blame] | 4155 | for (DeclContext *C : llvm::reverse(CurContextChain)) { |
| 4156 | if (auto *ND = dyn_cast_or_null<NamespaceDecl>(C)) |
Kaelyn Takata | cd7c3a9 | 2014-06-11 18:33:46 +0000 | [diff] [blame] | 4157 | CurContextIdentifiers.push_back(ND->getIdentifier()); |
| 4158 | } |
| 4159 | |
| 4160 | // Add the global context as a NestedNameSpecifier |
Hans Wennborg | 6601013 | 2014-06-11 21:24:13 +0000 | [diff] [blame] | 4161 | SpecifierInfo SI = {cast<DeclContext>(Context.getTranslationUnitDecl()), |
| 4162 | NestedNameSpecifier::GlobalSpecifier(Context), 1}; |
| 4163 | DistanceMap[1].push_back(SI); |
Kaelyn Takata | cd7c3a9 | 2014-06-11 18:33:46 +0000 | [diff] [blame] | 4164 | } |
| 4165 | |
Kaelyn Takata | 7dcc0e6 | 2014-06-11 18:07:08 +0000 | [diff] [blame] | 4166 | auto TypoCorrectionConsumer::NamespaceSpecifierSet::buildContextChain( |
| 4167 | DeclContext *Start) -> DeclContextList { |
Nick Lewycky | 0d9b319 | 2013-04-08 21:55:21 +0000 | [diff] [blame] | 4168 | assert(Start && "Building a context chain from a null context"); |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4169 | DeclContextList Chain; |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 4170 | for (DeclContext *DC = Start->getPrimaryContext(); DC != nullptr; |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4171 | DC = DC->getLookupParent()) { |
| 4172 | NamespaceDecl *ND = dyn_cast_or_null<NamespaceDecl>(DC); |
| 4173 | if (!DC->isInlineNamespace() && !DC->isTransparentContext() && |
| 4174 | !(ND && ND->isAnonymousNamespace())) |
| 4175 | Chain.push_back(DC->getPrimaryContext()); |
| 4176 | } |
| 4177 | return Chain; |
| 4178 | } |
| 4179 | |
Kaelyn Takata | a5bdbc8 | 2014-06-11 18:07:05 +0000 | [diff] [blame] | 4180 | unsigned |
| 4181 | TypoCorrectionConsumer::NamespaceSpecifierSet::buildNestedNameSpecifier( |
| 4182 | DeclContextList &DeclChain, NestedNameSpecifier *&NNS) { |
Kaelyn Uhrain | f7b63e3 | 2013-10-19 00:04:52 +0000 | [diff] [blame] | 4183 | unsigned NumSpecifiers = 0; |
David Majnemer | f7e3609 | 2016-06-23 00:15:04 +0000 | [diff] [blame] | 4184 | for (DeclContext *C : llvm::reverse(DeclChain)) { |
| 4185 | if (auto *ND = dyn_cast_or_null<NamespaceDecl>(C)) { |
Kaelyn Uhrain | f7b63e3 | 2013-10-19 00:04:52 +0000 | [diff] [blame] | 4186 | NNS = NestedNameSpecifier::Create(Context, NNS, ND); |
| 4187 | ++NumSpecifiers; |
David Majnemer | f7e3609 | 2016-06-23 00:15:04 +0000 | [diff] [blame] | 4188 | } else if (auto *RD = dyn_cast_or_null<RecordDecl>(C)) { |
Kaelyn Uhrain | f7b63e3 | 2013-10-19 00:04:52 +0000 | [diff] [blame] | 4189 | NNS = NestedNameSpecifier::Create(Context, NNS, RD->isTemplateDecl(), |
| 4190 | RD->getTypeForDecl()); |
| 4191 | ++NumSpecifiers; |
| 4192 | } |
| 4193 | } |
| 4194 | return NumSpecifiers; |
| 4195 | } |
| 4196 | |
Kaelyn Takata | a5bdbc8 | 2014-06-11 18:07:05 +0000 | [diff] [blame] | 4197 | void TypoCorrectionConsumer::NamespaceSpecifierSet::addNameSpecifier( |
| 4198 | DeclContext *Ctx) { |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 4199 | NestedNameSpecifier *NNS = nullptr; |
Kaelyn Uhrain | 95995be | 2013-09-26 19:10:29 +0000 | [diff] [blame] | 4200 | unsigned NumSpecifiers = 0; |
Kaelyn Takata | 0fc7519 | 2014-06-11 18:06:56 +0000 | [diff] [blame] | 4201 | DeclContextList NamespaceDeclChain(buildContextChain(Ctx)); |
Kaelyn Uhrain | 95995be | 2013-09-26 19:10:29 +0000 | [diff] [blame] | 4202 | DeclContextList FullNamespaceDeclChain(NamespaceDeclChain); |
| 4203 | |
| 4204 | // Eliminate common elements from the two DeclContext chains. |
David Majnemer | f7e3609 | 2016-06-23 00:15:04 +0000 | [diff] [blame] | 4205 | for (DeclContext *C : llvm::reverse(CurContextChain)) { |
| 4206 | if (NamespaceDeclChain.empty() || NamespaceDeclChain.back() != C) |
| 4207 | break; |
Kaelyn Uhrain | 95995be | 2013-09-26 19:10:29 +0000 | [diff] [blame] | 4208 | NamespaceDeclChain.pop_back(); |
| 4209 | } |
| 4210 | |
Kaelyn Uhrain | f7b63e3 | 2013-10-19 00:04:52 +0000 | [diff] [blame] | 4211 | // Build the NestedNameSpecifier from what is left of the NamespaceDeclChain |
Kaelyn Takata | a5bdbc8 | 2014-06-11 18:07:05 +0000 | [diff] [blame] | 4212 | NumSpecifiers = buildNestedNameSpecifier(NamespaceDeclChain, NNS); |
Kaelyn Uhrain | f7b63e3 | 2013-10-19 00:04:52 +0000 | [diff] [blame] | 4213 | |
Kaelyn Uhrain | 95995be | 2013-09-26 19:10:29 +0000 | [diff] [blame] | 4214 | // Add an explicit leading '::' specifier if needed. |
| 4215 | if (NamespaceDeclChain.empty()) { |
Kaelyn Uhrain | f7b63e3 | 2013-10-19 00:04:52 +0000 | [diff] [blame] | 4216 | // Rebuild the NestedNameSpecifier as a globally-qualified specifier. |
Kaelyn Uhrain | 95995be | 2013-09-26 19:10:29 +0000 | [diff] [blame] | 4217 | NNS = NestedNameSpecifier::GlobalSpecifier(Context); |
Kaelyn Uhrain | f7b63e3 | 2013-10-19 00:04:52 +0000 | [diff] [blame] | 4218 | NumSpecifiers = |
Kaelyn Takata | a5bdbc8 | 2014-06-11 18:07:05 +0000 | [diff] [blame] | 4219 | buildNestedNameSpecifier(FullNamespaceDeclChain, NNS); |
Kaelyn Uhrain | 653ff24 | 2013-10-02 18:26:35 +0000 | [diff] [blame] | 4220 | } else if (NamedDecl *ND = |
| 4221 | dyn_cast_or_null<NamedDecl>(NamespaceDeclChain.back())) { |
Kaelyn Uhrain | 95995be | 2013-09-26 19:10:29 +0000 | [diff] [blame] | 4222 | IdentifierInfo *Name = ND->getIdentifier(); |
Kaelyn Uhrain | f7b63e3 | 2013-10-19 00:04:52 +0000 | [diff] [blame] | 4223 | bool SameNameSpecifier = false; |
| 4224 | if (std::find(CurNameSpecifierIdentifiers.begin(), |
Kaelyn Uhrain | 95995be | 2013-09-26 19:10:29 +0000 | [diff] [blame] | 4225 | CurNameSpecifierIdentifiers.end(), |
| 4226 | Name) != CurNameSpecifierIdentifiers.end()) { |
Kaelyn Uhrain | f7b63e3 | 2013-10-19 00:04:52 +0000 | [diff] [blame] | 4227 | std::string NewNameSpecifier; |
| 4228 | llvm::raw_string_ostream SpecifierOStream(NewNameSpecifier); |
| 4229 | SmallVector<const IdentifierInfo *, 4> NewNameSpecifierIdentifiers; |
| 4230 | getNestedNameSpecifierIdentifiers(NNS, NewNameSpecifierIdentifiers); |
| 4231 | NNS->print(SpecifierOStream, Context.getPrintingPolicy()); |
| 4232 | SpecifierOStream.flush(); |
| 4233 | SameNameSpecifier = NewNameSpecifier == CurNameSpecifier; |
Kaelyn Uhrain | 95995be | 2013-09-26 19:10:29 +0000 | [diff] [blame] | 4234 | } |
Kaelyn Uhrain | f7b63e3 | 2013-10-19 00:04:52 +0000 | [diff] [blame] | 4235 | if (SameNameSpecifier || |
| 4236 | std::find(CurContextIdentifiers.begin(), CurContextIdentifiers.end(), |
| 4237 | Name) != CurContextIdentifiers.end()) { |
| 4238 | // Rebuild the NestedNameSpecifier as a globally-qualified specifier. |
| 4239 | NNS = NestedNameSpecifier::GlobalSpecifier(Context); |
| 4240 | NumSpecifiers = |
Kaelyn Takata | a5bdbc8 | 2014-06-11 18:07:05 +0000 | [diff] [blame] | 4241 | buildNestedNameSpecifier(FullNamespaceDeclChain, NNS); |
Kaelyn Uhrain | 95995be | 2013-09-26 19:10:29 +0000 | [diff] [blame] | 4242 | } |
| 4243 | } |
| 4244 | |
| 4245 | // If the built NestedNameSpecifier would be replacing an existing |
| 4246 | // NestedNameSpecifier, use the number of component identifiers that |
| 4247 | // would need to be changed as the edit distance instead of the number |
| 4248 | // of components in the built NestedNameSpecifier. |
| 4249 | if (NNS && !CurNameSpecifierIdentifiers.empty()) { |
| 4250 | SmallVector<const IdentifierInfo*, 4> NewNameSpecifierIdentifiers; |
| 4251 | getNestedNameSpecifierIdentifiers(NNS, NewNameSpecifierIdentifiers); |
| 4252 | NumSpecifiers = llvm::ComputeEditDistance( |
Craig Topper | 8c2a2a0 | 2014-08-30 16:55:39 +0000 | [diff] [blame] | 4253 | llvm::makeArrayRef(CurNameSpecifierIdentifiers), |
| 4254 | llvm::makeArrayRef(NewNameSpecifierIdentifiers)); |
Kaelyn Uhrain | 95995be | 2013-09-26 19:10:29 +0000 | [diff] [blame] | 4255 | } |
| 4256 | |
Hans Wennborg | 6601013 | 2014-06-11 21:24:13 +0000 | [diff] [blame] | 4257 | SpecifierInfo SI = {Ctx, NNS, NumSpecifiers}; |
| 4258 | DistanceMap[NumSpecifiers].push_back(SI); |
Kaelyn Uhrain | 95995be | 2013-09-26 19:10:29 +0000 | [diff] [blame] | 4259 | } |
| 4260 | |
Douglas Gregor | d507d77 | 2010-10-20 03:06:34 +0000 | [diff] [blame] | 4261 | /// \brief Perform name lookup for a possible result for typo correction. |
| 4262 | static void LookupPotentialTypoResult(Sema &SemaRef, |
| 4263 | LookupResult &Res, |
| 4264 | IdentifierInfo *Name, |
| 4265 | Scope *S, CXXScopeSpec *SS, |
| 4266 | DeclContext *MemberContext, |
| 4267 | bool EnteringContext, |
Richard Smith | e156254d | 2013-08-20 20:35:18 +0000 | [diff] [blame] | 4268 | bool isObjCIvarLookup, |
| 4269 | bool FindHidden) { |
Douglas Gregor | d507d77 | 2010-10-20 03:06:34 +0000 | [diff] [blame] | 4270 | Res.suppressDiagnostics(); |
| 4271 | Res.clear(); |
| 4272 | Res.setLookupName(Name); |
Richard Smith | e156254d | 2013-08-20 20:35:18 +0000 | [diff] [blame] | 4273 | Res.setAllowHidden(FindHidden); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4274 | if (MemberContext) { |
Douglas Gregor | d507d77 | 2010-10-20 03:06:34 +0000 | [diff] [blame] | 4275 | if (ObjCInterfaceDecl *Class = dyn_cast<ObjCInterfaceDecl>(MemberContext)) { |
Kaelyn Uhrain | 2d317ed | 2012-01-11 19:37:46 +0000 | [diff] [blame] | 4276 | if (isObjCIvarLookup) { |
Douglas Gregor | d507d77 | 2010-10-20 03:06:34 +0000 | [diff] [blame] | 4277 | if (ObjCIvarDecl *Ivar = Class->lookupInstanceVariable(Name)) { |
| 4278 | Res.addDecl(Ivar); |
| 4279 | Res.resolveKind(); |
| 4280 | return; |
| 4281 | } |
| 4282 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4283 | |
Manman Ren | 5b78640 | 2016-01-28 18:49:28 +0000 | [diff] [blame] | 4284 | if (ObjCPropertyDecl *Prop = Class->FindPropertyDeclaration( |
| 4285 | Name, ObjCPropertyQueryKind::OBJC_PR_query_instance)) { |
Douglas Gregor | d507d77 | 2010-10-20 03:06:34 +0000 | [diff] [blame] | 4286 | Res.addDecl(Prop); |
| 4287 | Res.resolveKind(); |
| 4288 | return; |
| 4289 | } |
| 4290 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4291 | |
Douglas Gregor | d507d77 | 2010-10-20 03:06:34 +0000 | [diff] [blame] | 4292 | SemaRef.LookupQualifiedName(Res, MemberContext); |
| 4293 | return; |
| 4294 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4295 | |
| 4296 | SemaRef.LookupParsedName(Res, S, SS, /*AllowBuiltinCreation=*/false, |
Douglas Gregor | d507d77 | 2010-10-20 03:06:34 +0000 | [diff] [blame] | 4297 | EnteringContext); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4298 | |
Douglas Gregor | d507d77 | 2010-10-20 03:06:34 +0000 | [diff] [blame] | 4299 | // Fake ivar lookup; this should really be part of |
| 4300 | // LookupParsedName. |
| 4301 | if (ObjCMethodDecl *Method = SemaRef.getCurMethodDecl()) { |
| 4302 | if (Method->isInstanceMethod() && Method->getClassInterface() && |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4303 | (Res.empty() || |
Douglas Gregor | d507d77 | 2010-10-20 03:06:34 +0000 | [diff] [blame] | 4304 | (Res.isSingleResult() && |
| 4305 | Res.getFoundDecl()->isDefinedOutsideFunctionOrMethod()))) { |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4306 | if (ObjCIvarDecl *IV |
Douglas Gregor | d507d77 | 2010-10-20 03:06:34 +0000 | [diff] [blame] | 4307 | = Method->getClassInterface()->lookupInstanceVariable(Name)) { |
| 4308 | Res.addDecl(IV); |
| 4309 | Res.resolveKind(); |
| 4310 | } |
| 4311 | } |
| 4312 | } |
| 4313 | } |
| 4314 | |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4315 | /// \brief Add keywords to the consumer as possible typo corrections. |
| 4316 | static void AddKeywordsToConsumer(Sema &SemaRef, |
| 4317 | TypoCorrectionConsumer &Consumer, |
Richard Smith | b3a1df0 | 2012-06-08 21:35:42 +0000 | [diff] [blame] | 4318 | Scope *S, CorrectionCandidateCallback &CCC, |
| 4319 | bool AfterNestedNameSpecifier) { |
| 4320 | if (AfterNestedNameSpecifier) { |
| 4321 | // For 'X::', we know exactly which keywords can appear next. |
| 4322 | Consumer.addKeywordResult("template"); |
| 4323 | if (CCC.WantExpressionKeywords) |
| 4324 | Consumer.addKeywordResult("operator"); |
| 4325 | return; |
| 4326 | } |
| 4327 | |
Kaelyn Uhrain | 2d317ed | 2012-01-11 19:37:46 +0000 | [diff] [blame] | 4328 | if (CCC.WantObjCSuper) |
| 4329 | Consumer.addKeywordResult("super"); |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4330 | |
Kaelyn Uhrain | 2d317ed | 2012-01-11 19:37:46 +0000 | [diff] [blame] | 4331 | if (CCC.WantTypeSpecifiers) { |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4332 | // Add type-specifier keywords to the set of results. |
Craig Topper | d6d31ac | 2013-07-15 08:24:27 +0000 | [diff] [blame] | 4333 | static const char *const CTypeSpecs[] = { |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4334 | "char", "const", "double", "enum", "float", "int", "long", "short", |
Douglas Gregor | 3b22a88 | 2011-07-01 21:27:45 +0000 | [diff] [blame] | 4335 | "signed", "struct", "union", "unsigned", "void", "volatile", |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4336 | "_Complex", "_Imaginary", |
| 4337 | // storage-specifiers as well |
| 4338 | "extern", "inline", "static", "typedef" |
| 4339 | }; |
| 4340 | |
Craig Topper | e5ce831 | 2013-07-15 03:38:40 +0000 | [diff] [blame] | 4341 | const unsigned NumCTypeSpecs = llvm::array_lengthof(CTypeSpecs); |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4342 | for (unsigned I = 0; I != NumCTypeSpecs; ++I) |
| 4343 | Consumer.addKeywordResult(CTypeSpecs[I]); |
| 4344 | |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4345 | if (SemaRef.getLangOpts().C99) |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4346 | Consumer.addKeywordResult("restrict"); |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4347 | if (SemaRef.getLangOpts().Bool || SemaRef.getLangOpts().CPlusPlus) |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4348 | Consumer.addKeywordResult("bool"); |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4349 | else if (SemaRef.getLangOpts().C99) |
Douglas Gregor | 3b22a88 | 2011-07-01 21:27:45 +0000 | [diff] [blame] | 4350 | Consumer.addKeywordResult("_Bool"); |
| 4351 | |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4352 | if (SemaRef.getLangOpts().CPlusPlus) { |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4353 | Consumer.addKeywordResult("class"); |
| 4354 | Consumer.addKeywordResult("typename"); |
| 4355 | Consumer.addKeywordResult("wchar_t"); |
| 4356 | |
Richard Smith | 2bf7fdb | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 4357 | if (SemaRef.getLangOpts().CPlusPlus11) { |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4358 | Consumer.addKeywordResult("char16_t"); |
| 4359 | Consumer.addKeywordResult("char32_t"); |
| 4360 | Consumer.addKeywordResult("constexpr"); |
| 4361 | Consumer.addKeywordResult("decltype"); |
| 4362 | Consumer.addKeywordResult("thread_local"); |
| 4363 | } |
| 4364 | } |
| 4365 | |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4366 | if (SemaRef.getLangOpts().GNUMode) |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4367 | Consumer.addKeywordResult("typeof"); |
Kaelyn Takata | b04846b | 2014-07-28 18:14:02 +0000 | [diff] [blame] | 4368 | } else if (CCC.WantFunctionLikeCasts) { |
| 4369 | static const char *const CastableTypeSpecs[] = { |
| 4370 | "char", "double", "float", "int", "long", "short", |
| 4371 | "signed", "unsigned", "void" |
| 4372 | }; |
| 4373 | for (auto *kw : CastableTypeSpecs) |
| 4374 | Consumer.addKeywordResult(kw); |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4375 | } |
| 4376 | |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4377 | if (CCC.WantCXXNamedCasts && SemaRef.getLangOpts().CPlusPlus) { |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4378 | Consumer.addKeywordResult("const_cast"); |
| 4379 | Consumer.addKeywordResult("dynamic_cast"); |
| 4380 | Consumer.addKeywordResult("reinterpret_cast"); |
| 4381 | Consumer.addKeywordResult("static_cast"); |
| 4382 | } |
| 4383 | |
Kaelyn Uhrain | 2d317ed | 2012-01-11 19:37:46 +0000 | [diff] [blame] | 4384 | if (CCC.WantExpressionKeywords) { |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4385 | Consumer.addKeywordResult("sizeof"); |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4386 | if (SemaRef.getLangOpts().Bool || SemaRef.getLangOpts().CPlusPlus) { |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4387 | Consumer.addKeywordResult("false"); |
| 4388 | Consumer.addKeywordResult("true"); |
| 4389 | } |
| 4390 | |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4391 | if (SemaRef.getLangOpts().CPlusPlus) { |
Craig Topper | d6d31ac | 2013-07-15 08:24:27 +0000 | [diff] [blame] | 4392 | static const char *const CXXExprs[] = { |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4393 | "delete", "new", "operator", "throw", "typeid" |
| 4394 | }; |
Craig Topper | e5ce831 | 2013-07-15 03:38:40 +0000 | [diff] [blame] | 4395 | const unsigned NumCXXExprs = llvm::array_lengthof(CXXExprs); |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4396 | for (unsigned I = 0; I != NumCXXExprs; ++I) |
| 4397 | Consumer.addKeywordResult(CXXExprs[I]); |
| 4398 | |
| 4399 | if (isa<CXXMethodDecl>(SemaRef.CurContext) && |
| 4400 | cast<CXXMethodDecl>(SemaRef.CurContext)->isInstance()) |
| 4401 | Consumer.addKeywordResult("this"); |
| 4402 | |
Richard Smith | 2bf7fdb | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 4403 | if (SemaRef.getLangOpts().CPlusPlus11) { |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4404 | Consumer.addKeywordResult("alignof"); |
| 4405 | Consumer.addKeywordResult("nullptr"); |
| 4406 | } |
| 4407 | } |
Jordan Rose | 58d5472 | 2012-06-30 21:33:57 +0000 | [diff] [blame] | 4408 | |
| 4409 | if (SemaRef.getLangOpts().C11) { |
| 4410 | // FIXME: We should not suggest _Alignof if the alignof macro |
| 4411 | // is present. |
| 4412 | Consumer.addKeywordResult("_Alignof"); |
| 4413 | } |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4414 | } |
| 4415 | |
Kaelyn Uhrain | 2d317ed | 2012-01-11 19:37:46 +0000 | [diff] [blame] | 4416 | if (CCC.WantRemainingKeywords) { |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4417 | if (SemaRef.getCurFunctionOrMethodDecl() || SemaRef.getCurBlock()) { |
| 4418 | // Statements. |
Craig Topper | d6d31ac | 2013-07-15 08:24:27 +0000 | [diff] [blame] | 4419 | static const char *const CStmts[] = { |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4420 | "do", "else", "for", "goto", "if", "return", "switch", "while" }; |
Craig Topper | e5ce831 | 2013-07-15 03:38:40 +0000 | [diff] [blame] | 4421 | const unsigned NumCStmts = llvm::array_lengthof(CStmts); |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4422 | for (unsigned I = 0; I != NumCStmts; ++I) |
| 4423 | Consumer.addKeywordResult(CStmts[I]); |
| 4424 | |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4425 | if (SemaRef.getLangOpts().CPlusPlus) { |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4426 | Consumer.addKeywordResult("catch"); |
| 4427 | Consumer.addKeywordResult("try"); |
| 4428 | } |
| 4429 | |
| 4430 | if (S && S->getBreakParent()) |
| 4431 | Consumer.addKeywordResult("break"); |
| 4432 | |
| 4433 | if (S && S->getContinueParent()) |
| 4434 | Consumer.addKeywordResult("continue"); |
| 4435 | |
| 4436 | if (!SemaRef.getCurFunction()->SwitchStack.empty()) { |
| 4437 | Consumer.addKeywordResult("case"); |
| 4438 | Consumer.addKeywordResult("default"); |
| 4439 | } |
| 4440 | } else { |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4441 | if (SemaRef.getLangOpts().CPlusPlus) { |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4442 | Consumer.addKeywordResult("namespace"); |
| 4443 | Consumer.addKeywordResult("template"); |
| 4444 | } |
| 4445 | |
| 4446 | if (S && S->isClassScope()) { |
| 4447 | Consumer.addKeywordResult("explicit"); |
| 4448 | Consumer.addKeywordResult("friend"); |
| 4449 | Consumer.addKeywordResult("mutable"); |
| 4450 | Consumer.addKeywordResult("private"); |
| 4451 | Consumer.addKeywordResult("protected"); |
| 4452 | Consumer.addKeywordResult("public"); |
| 4453 | Consumer.addKeywordResult("virtual"); |
| 4454 | } |
| 4455 | } |
| 4456 | |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4457 | if (SemaRef.getLangOpts().CPlusPlus) { |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4458 | Consumer.addKeywordResult("using"); |
| 4459 | |
Richard Smith | 2bf7fdb | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 4460 | if (SemaRef.getLangOpts().CPlusPlus11) |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4461 | Consumer.addKeywordResult("static_assert"); |
| 4462 | } |
| 4463 | } |
| 4464 | } |
| 4465 | |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4466 | std::unique_ptr<TypoCorrectionConsumer> Sema::makeTypoCorrectionConsumer( |
| 4467 | const DeclarationNameInfo &TypoName, Sema::LookupNameKind LookupKind, |
| 4468 | Scope *S, CXXScopeSpec *SS, |
| 4469 | std::unique_ptr<CorrectionCandidateCallback> CCC, |
| 4470 | DeclContext *MemberContext, bool EnteringContext, |
Nick Lewycky | 2465326 | 2014-12-16 21:39:02 +0000 | [diff] [blame] | 4471 | const ObjCObjectPointerType *OPT, bool ErrorRecovery) { |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4472 | |
| 4473 | if (Diags.hasFatalErrorOccurred() || !getLangOpts().SpellChecking || |
| 4474 | DisableTypoCorrection) |
| 4475 | return nullptr; |
| 4476 | |
| 4477 | // In Microsoft mode, don't perform typo correction in a template member |
| 4478 | // function dependent context because it interferes with the "lookup into |
| 4479 | // dependent bases of class templates" feature. |
| 4480 | if (getLangOpts().MSVCCompat && CurContext->isDependentContext() && |
| 4481 | isa<CXXMethodDecl>(CurContext)) |
| 4482 | return nullptr; |
| 4483 | |
| 4484 | // We only attempt to correct typos for identifiers. |
| 4485 | IdentifierInfo *Typo = TypoName.getName().getAsIdentifierInfo(); |
| 4486 | if (!Typo) |
| 4487 | return nullptr; |
| 4488 | |
| 4489 | // If the scope specifier itself was invalid, don't try to correct |
| 4490 | // typos. |
| 4491 | if (SS && SS->isInvalid()) |
| 4492 | return nullptr; |
| 4493 | |
| 4494 | // Never try to correct typos during template deduction or |
| 4495 | // instantiation. |
| 4496 | if (!ActiveTemplateInstantiations.empty()) |
| 4497 | return nullptr; |
| 4498 | |
| 4499 | // Don't try to correct 'super'. |
| 4500 | if (S && S->isInObjcMethodScope() && Typo == getSuperIdentifier()) |
| 4501 | return nullptr; |
| 4502 | |
| 4503 | // Abort if typo correction already failed for this specific typo. |
| 4504 | IdentifierSourceLocations::iterator locs = TypoCorrectionFailures.find(Typo); |
| 4505 | if (locs != TypoCorrectionFailures.end() && |
| 4506 | locs->second.count(TypoName.getLoc())) |
| 4507 | return nullptr; |
| 4508 | |
| 4509 | // Don't try to correct the identifier "vector" when in AltiVec mode. |
| 4510 | // TODO: Figure out why typo correction misbehaves in this case, fix it, and |
| 4511 | // remove this workaround. |
Ulrich Weigand | 3c5038a | 2015-07-30 14:08:36 +0000 | [diff] [blame] | 4512 | if ((getLangOpts().AltiVec || getLangOpts().ZVector) && Typo->isStr("vector")) |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4513 | return nullptr; |
| 4514 | |
Nick Lewycky | 2465326 | 2014-12-16 21:39:02 +0000 | [diff] [blame] | 4515 | // Provide a stop gap for files that are just seriously broken. Trying |
| 4516 | // to correct all typos can turn into a HUGE performance penalty, causing |
| 4517 | // some files to take minutes to get rejected by the parser. |
| 4518 | unsigned Limit = getDiagnostics().getDiagnosticOptions().SpellCheckingLimit; |
| 4519 | if (Limit && TyposCorrected >= Limit) |
| 4520 | return nullptr; |
| 4521 | ++TyposCorrected; |
| 4522 | |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4523 | // If we're handling a missing symbol error, using modules, and the |
| 4524 | // special search all modules option is used, look for a missing import. |
| 4525 | if (ErrorRecovery && getLangOpts().Modules && |
| 4526 | getLangOpts().ModulesSearchAll) { |
| 4527 | // The following has the side effect of loading the missing module. |
| 4528 | getModuleLoader().lookupMissingImports(Typo->getName(), |
| 4529 | TypoName.getLocStart()); |
| 4530 | } |
| 4531 | |
| 4532 | CorrectionCandidateCallback &CCCRef = *CCC; |
| 4533 | auto Consumer = llvm::make_unique<TypoCorrectionConsumer>( |
| 4534 | *this, TypoName, LookupKind, S, SS, std::move(CCC), MemberContext, |
| 4535 | EnteringContext); |
| 4536 | |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4537 | // Perform name lookup to find visible, similarly-named entities. |
Nick Lewycky | 2465326 | 2014-12-16 21:39:02 +0000 | [diff] [blame] | 4538 | bool IsUnqualifiedLookup = false; |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4539 | DeclContext *QualifiedDC = MemberContext; |
| 4540 | if (MemberContext) { |
| 4541 | LookupVisibleDecls(MemberContext, LookupKind, *Consumer); |
| 4542 | |
| 4543 | // Look in qualified interfaces. |
| 4544 | if (OPT) { |
| 4545 | for (auto *I : OPT->quals()) |
| 4546 | LookupVisibleDecls(I, LookupKind, *Consumer); |
| 4547 | } |
| 4548 | } else if (SS && SS->isSet()) { |
| 4549 | QualifiedDC = computeDeclContext(*SS, EnteringContext); |
| 4550 | if (!QualifiedDC) |
| 4551 | return nullptr; |
| 4552 | |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4553 | LookupVisibleDecls(QualifiedDC, LookupKind, *Consumer); |
| 4554 | } else { |
| 4555 | IsUnqualifiedLookup = true; |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4556 | } |
| 4557 | |
| 4558 | // Determine whether we are going to search in the various namespaces for |
| 4559 | // corrections. |
| 4560 | bool SearchNamespaces |
| 4561 | = getLangOpts().CPlusPlus && |
| 4562 | (IsUnqualifiedLookup || (SS && SS->isSet())); |
| 4563 | |
| 4564 | if (IsUnqualifiedLookup || SearchNamespaces) { |
| 4565 | // For unqualified lookup, look through all of the names that we have |
| 4566 | // seen in this translation unit. |
| 4567 | // FIXME: Re-add the ability to skip very unlikely potential corrections. |
| 4568 | for (const auto &I : Context.Idents) |
| 4569 | Consumer->FoundName(I.getKey()); |
| 4570 | |
| 4571 | // Walk through identifiers in external identifier sources. |
| 4572 | // FIXME: Re-add the ability to skip very unlikely potential corrections. |
| 4573 | if (IdentifierInfoLookup *External |
| 4574 | = Context.Idents.getExternalIdentifierLookup()) { |
| 4575 | std::unique_ptr<IdentifierIterator> Iter(External->getIdentifiers()); |
| 4576 | do { |
| 4577 | StringRef Name = Iter->Next(); |
| 4578 | if (Name.empty()) |
| 4579 | break; |
| 4580 | |
| 4581 | Consumer->FoundName(Name); |
| 4582 | } while (true); |
| 4583 | } |
| 4584 | } |
| 4585 | |
| 4586 | AddKeywordsToConsumer(*this, *Consumer, S, CCCRef, SS && SS->isNotEmpty()); |
| 4587 | |
| 4588 | // Build the NestedNameSpecifiers for the KnownNamespaces, if we're going |
| 4589 | // to search those namespaces. |
| 4590 | if (SearchNamespaces) { |
| 4591 | // Load any externally-known namespaces. |
| 4592 | if (ExternalSource && !LoadedExternalKnownNamespaces) { |
| 4593 | SmallVector<NamespaceDecl *, 4> ExternalKnownNamespaces; |
| 4594 | LoadedExternalKnownNamespaces = true; |
| 4595 | ExternalSource->ReadKnownNamespaces(ExternalKnownNamespaces); |
| 4596 | for (auto *N : ExternalKnownNamespaces) |
| 4597 | KnownNamespaces[N] = true; |
| 4598 | } |
| 4599 | |
| 4600 | Consumer->addNamespaces(KnownNamespaces); |
| 4601 | } |
| 4602 | |
| 4603 | return Consumer; |
| 4604 | } |
| 4605 | |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 4606 | /// \brief Try to "correct" a typo in the source code by finding |
| 4607 | /// visible declarations whose names are similar to the name that was |
| 4608 | /// present in the source code. |
| 4609 | /// |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4610 | /// \param TypoName the \c DeclarationNameInfo structure that contains |
| 4611 | /// the name that was present in the source code along with its location. |
| 4612 | /// |
| 4613 | /// \param LookupKind the name-lookup criteria used to search for the name. |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 4614 | /// |
| 4615 | /// \param S the scope in which name lookup occurs. |
| 4616 | /// |
| 4617 | /// \param SS the nested-name-specifier that precedes the name we're |
| 4618 | /// looking for, if present. |
| 4619 | /// |
Kaelyn Uhrain | 2d317ed | 2012-01-11 19:37:46 +0000 | [diff] [blame] | 4620 | /// \param CCC A CorrectionCandidateCallback object that provides further |
| 4621 | /// validation of typo correction candidates. It also provides flags for |
| 4622 | /// determining the set of keywords permitted. |
| 4623 | /// |
Douglas Gregor | af2bd47 | 2009-12-31 07:42:17 +0000 | [diff] [blame] | 4624 | /// \param MemberContext if non-NULL, the context in which to look for |
| 4625 | /// a member access expression. |
| 4626 | /// |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4627 | /// \param EnteringContext whether we're entering the context described by |
Douglas Gregor | 598b08f | 2009-12-31 05:20:13 +0000 | [diff] [blame] | 4628 | /// the nested-name-specifier SS. |
| 4629 | /// |
Douglas Gregor | 35b0bac | 2010-01-03 18:01:57 +0000 | [diff] [blame] | 4630 | /// \param OPT when non-NULL, the search for visible declarations will |
| 4631 | /// also walk the protocols in the qualified interfaces of \p OPT. |
| 4632 | /// |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4633 | /// \returns a \c TypoCorrection containing the corrected name if the typo |
| 4634 | /// along with information such as the \c NamedDecl where the corrected name |
| 4635 | /// was declared, and any additional \c NestedNameSpecifier needed to access |
| 4636 | /// it (C++ only). The \c TypoCorrection is empty if there is no correction. |
| 4637 | TypoCorrection Sema::CorrectTypo(const DeclarationNameInfo &TypoName, |
| 4638 | Sema::LookupNameKind LookupKind, |
| 4639 | Scope *S, CXXScopeSpec *SS, |
Kaelyn Takata | 89c881b | 2014-10-27 18:07:29 +0000 | [diff] [blame] | 4640 | std::unique_ptr<CorrectionCandidateCallback> CCC, |
John Thompson | 2255f2c | 2014-04-23 12:57:01 +0000 | [diff] [blame] | 4641 | CorrectTypoKind Mode, |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4642 | DeclContext *MemberContext, |
| 4643 | bool EnteringContext, |
Kaelyn Uhrain | 0e23844 | 2013-09-27 19:40:08 +0000 | [diff] [blame] | 4644 | const ObjCObjectPointerType *OPT, |
| 4645 | bool RecordFailure) { |
Kaelyn Takata | 89c881b | 2014-10-27 18:07:29 +0000 | [diff] [blame] | 4646 | assert(CCC && "CorrectTypo requires a CorrectionCandidateCallback"); |
| 4647 | |
Kaelyn Uhrain | f0aabda | 2013-08-12 19:54:38 +0000 | [diff] [blame] | 4648 | // Always let the ExternalSource have the first chance at correction, even |
| 4649 | // if we would otherwise have given up. |
| 4650 | if (ExternalSource) { |
| 4651 | if (TypoCorrection Correction = ExternalSource->CorrectTypo( |
Kaelyn Takata | 89c881b | 2014-10-27 18:07:29 +0000 | [diff] [blame] | 4652 | TypoName, LookupKind, S, SS, *CCC, MemberContext, EnteringContext, OPT)) |
Kaelyn Uhrain | f0aabda | 2013-08-12 19:54:38 +0000 | [diff] [blame] | 4653 | return Correction; |
| 4654 | } |
| 4655 | |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4656 | // Ugly hack equivalent to CTC == CTC_ObjCMessageReceiver; |
| 4657 | // WantObjCSuper is only true for CTC_ObjCMessageReceiver and for |
| 4658 | // some instances of CTC_Unknown, while WantRemainingKeywords is true |
| 4659 | // for CTC_Unknown but not for CTC_ObjCMessageReceiver. |
| 4660 | bool ObjCMessageReceiver = CCC->WantObjCSuper && !CCC->WantRemainingKeywords; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4661 | |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4662 | IdentifierInfo *Typo = TypoName.getName().getAsIdentifierInfo(); |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4663 | auto Consumer = makeTypoCorrectionConsumer( |
| 4664 | TypoName, LookupKind, S, SS, std::move(CCC), MemberContext, |
Nick Lewycky | 2465326 | 2014-12-16 21:39:02 +0000 | [diff] [blame] | 4665 | EnteringContext, OPT, Mode == CTK_ErrorRecovery); |
Douglas Gregor | 35b0bac | 2010-01-03 18:01:57 +0000 | [diff] [blame] | 4666 | |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4667 | if (!Consumer) |
| 4668 | return TypoCorrection(); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4669 | |
Douglas Gregor | 280e1ee | 2010-04-14 20:04:41 +0000 | [diff] [blame] | 4670 | // If we haven't found anything, we're done. |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4671 | if (Consumer->empty()) |
Nick Lewycky | 2465326 | 2014-12-16 21:39:02 +0000 | [diff] [blame] | 4672 | return FailedCorrection(Typo, TypoName.getLoc(), RecordFailure); |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 4673 | |
Kaelyn Uhrain | 493ea63 | 2012-06-06 20:54:51 +0000 | [diff] [blame] | 4674 | // Make sure the best edit distance (prior to adding any namespace qualifiers) |
| 4675 | // is not more that about a third of the length of the typo's identifier. |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4676 | unsigned ED = Consumer->getBestEditDistance(true); |
| 4677 | unsigned TypoLen = Typo->getName().size(); |
Kaelyn Uhrain | 653ff24 | 2013-10-02 18:26:35 +0000 | [diff] [blame] | 4678 | if (ED > 0 && TypoLen / ED < 3) |
Nick Lewycky | 2465326 | 2014-12-16 21:39:02 +0000 | [diff] [blame] | 4679 | return FailedCorrection(Typo, TypoName.getLoc(), RecordFailure); |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4680 | |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4681 | TypoCorrection BestTC = Consumer->getNextCorrection(); |
| 4682 | TypoCorrection SecondBestTC = Consumer->getNextCorrection(); |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 4683 | if (!BestTC) |
Kaelyn Uhrain | 0e23844 | 2013-09-27 19:40:08 +0000 | [diff] [blame] | 4684 | return FailedCorrection(Typo, TypoName.getLoc(), RecordFailure); |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4685 | |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 4686 | ED = BestTC.getEditDistance(); |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4687 | |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4688 | if (TypoLen >= 3 && ED > 0 && TypoLen / ED < 3) { |
Kaelyn Uhrain | cb7a040 | 2012-01-23 20:18:59 +0000 | [diff] [blame] | 4689 | // If this was an unqualified lookup and we believe the callback |
| 4690 | // object wouldn't have filtered out possible corrections, note |
| 4691 | // that no correction was found. |
Nick Lewycky | 2465326 | 2014-12-16 21:39:02 +0000 | [diff] [blame] | 4692 | return FailedCorrection(Typo, TypoName.getLoc(), RecordFailure); |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4693 | } |
| 4694 | |
Douglas Gregor | 0afa7f6 | 2010-10-14 20:34:08 +0000 | [diff] [blame] | 4695 | // If only a single name remains, return that result. |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 4696 | if (!SecondBestTC || |
| 4697 | SecondBestTC.getEditDistance(false) > BestTC.getEditDistance(false)) { |
| 4698 | const TypoCorrection &Result = BestTC; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4699 | |
Douglas Gregor | 2a1d72d | 2010-10-26 17:18:00 +0000 | [diff] [blame] | 4700 | // Don't correct to a keyword that's the same as the typo; the keyword |
| 4701 | // wasn't actually in scope. |
Kaelyn Uhrain | 0e23844 | 2013-09-27 19:40:08 +0000 | [diff] [blame] | 4702 | if (ED == 0 && Result.isKeyword()) |
| 4703 | return FailedCorrection(Typo, TypoName.getLoc(), RecordFailure); |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4704 | |
David Blaikie | 04ea41c | 2012-10-12 20:00:44 +0000 | [diff] [blame] | 4705 | TypoCorrection TC = Result; |
| 4706 | TC.setCorrectionRange(SS, TypoName); |
Kaelyn Takata | a95ebc6 | 2014-06-17 23:47:29 +0000 | [diff] [blame] | 4707 | checkCorrectionVisibility(*this, TC); |
David Blaikie | 04ea41c | 2012-10-12 20:00:44 +0000 | [diff] [blame] | 4708 | return TC; |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4709 | } else if (SecondBestTC && ObjCMessageReceiver) { |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4710 | // Prefer 'super' when we're completing in a message-receiver |
| 4711 | // context. |
| 4712 | |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 4713 | if (BestTC.getCorrection().getAsString() != "super") { |
| 4714 | if (SecondBestTC.getCorrection().getAsString() == "super") |
| 4715 | BestTC = SecondBestTC; |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4716 | else if ((*Consumer)["super"].front().isKeyword()) |
| 4717 | BestTC = (*Consumer)["super"].front(); |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 4718 | } |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4719 | // Don't correct to a keyword that's the same as the typo; the keyword |
| 4720 | // wasn't actually in scope. |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 4721 | if (BestTC.getEditDistance() == 0 || |
| 4722 | BestTC.getCorrection().getAsString() != "super") |
Kaelyn Uhrain | 0e23844 | 2013-09-27 19:40:08 +0000 | [diff] [blame] | 4723 | return FailedCorrection(Typo, TypoName.getLoc(), RecordFailure); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4724 | |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 4725 | BestTC.setCorrectionRange(SS, TypoName); |
| 4726 | return BestTC; |
Douglas Gregor | af9eb59 | 2010-10-15 13:35:25 +0000 | [diff] [blame] | 4727 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4728 | |
Kaelyn Takata | 73429fd | 2014-06-10 21:03:49 +0000 | [diff] [blame] | 4729 | // Record the failure's location if needed and return an empty correction. If |
| 4730 | // this was an unqualified lookup and we believe the callback object did not |
| 4731 | // filter out possible corrections, also cache the failure for the typo. |
Kaelyn Takata | ae9e97c | 2015-01-16 22:11:04 +0000 | [diff] [blame] | 4732 | return FailedCorrection(Typo, TypoName.getLoc(), RecordFailure && !SecondBestTC); |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4733 | } |
| 4734 | |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4735 | /// \brief Try to "correct" a typo in the source code by finding |
| 4736 | /// visible declarations whose names are similar to the name that was |
| 4737 | /// present in the source code. |
| 4738 | /// |
| 4739 | /// \param TypoName the \c DeclarationNameInfo structure that contains |
| 4740 | /// the name that was present in the source code along with its location. |
| 4741 | /// |
| 4742 | /// \param LookupKind the name-lookup criteria used to search for the name. |
| 4743 | /// |
| 4744 | /// \param S the scope in which name lookup occurs. |
| 4745 | /// |
| 4746 | /// \param SS the nested-name-specifier that precedes the name we're |
| 4747 | /// looking for, if present. |
| 4748 | /// |
| 4749 | /// \param CCC A CorrectionCandidateCallback object that provides further |
| 4750 | /// validation of typo correction candidates. It also provides flags for |
| 4751 | /// determining the set of keywords permitted. |
| 4752 | /// |
| 4753 | /// \param TDG A TypoDiagnosticGenerator functor that will be used to print |
| 4754 | /// diagnostics when the actual typo correction is attempted. |
| 4755 | /// |
Kaelyn Takata | 8363f04 | 2014-10-27 18:07:42 +0000 | [diff] [blame] | 4756 | /// \param TRC A TypoRecoveryCallback functor that will be used to build an |
| 4757 | /// Expr from a typo correction candidate. |
| 4758 | /// |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4759 | /// \param MemberContext if non-NULL, the context in which to look for |
| 4760 | /// a member access expression. |
| 4761 | /// |
| 4762 | /// \param EnteringContext whether we're entering the context described by |
| 4763 | /// the nested-name-specifier SS. |
| 4764 | /// |
| 4765 | /// \param OPT when non-NULL, the search for visible declarations will |
| 4766 | /// also walk the protocols in the qualified interfaces of \p OPT. |
| 4767 | /// |
| 4768 | /// \returns a new \c TypoExpr that will later be replaced in the AST with an |
| 4769 | /// Expr representing the result of performing typo correction, or nullptr if |
| 4770 | /// typo correction is not possible. If nullptr is returned, no diagnostics will |
| 4771 | /// be emitted and it is the responsibility of the caller to emit any that are |
| 4772 | /// needed. |
| 4773 | TypoExpr *Sema::CorrectTypoDelayed( |
| 4774 | const DeclarationNameInfo &TypoName, Sema::LookupNameKind LookupKind, |
| 4775 | Scope *S, CXXScopeSpec *SS, |
| 4776 | std::unique_ptr<CorrectionCandidateCallback> CCC, |
Kaelyn Takata | 8363f04 | 2014-10-27 18:07:42 +0000 | [diff] [blame] | 4777 | TypoDiagnosticGenerator TDG, TypoRecoveryCallback TRC, CorrectTypoKind Mode, |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4778 | DeclContext *MemberContext, bool EnteringContext, |
| 4779 | const ObjCObjectPointerType *OPT) { |
| 4780 | assert(CCC && "CorrectTypoDelayed requires a CorrectionCandidateCallback"); |
| 4781 | |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4782 | auto Consumer = makeTypoCorrectionConsumer( |
| 4783 | TypoName, LookupKind, S, SS, std::move(CCC), MemberContext, |
Kaelyn Takata | ae9e97c | 2015-01-16 22:11:04 +0000 | [diff] [blame] | 4784 | EnteringContext, OPT, Mode == CTK_ErrorRecovery); |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4785 | |
Benjamin Kramer | b872733 | 2016-05-19 10:46:10 +0000 | [diff] [blame] | 4786 | // Give the external sema source a chance to correct the typo. |
| 4787 | TypoCorrection ExternalTypo; |
| 4788 | if (ExternalSource && Consumer) { |
| 4789 | ExternalTypo = ExternalSource->CorrectTypo( |
Benjamin Kramer | 97d7a66 | 2016-05-19 21:53:33 +0000 | [diff] [blame] | 4790 | TypoName, LookupKind, S, SS, *Consumer->getCorrectionValidator(), |
| 4791 | MemberContext, EnteringContext, OPT); |
Benjamin Kramer | b872733 | 2016-05-19 10:46:10 +0000 | [diff] [blame] | 4792 | if (ExternalTypo) |
| 4793 | Consumer->addCorrection(ExternalTypo); |
| 4794 | } |
| 4795 | |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4796 | if (!Consumer || Consumer->empty()) |
| 4797 | return nullptr; |
| 4798 | |
| 4799 | // Make sure the best edit distance (prior to adding any namespace qualifiers) |
| 4800 | // is not more that about a third of the length of the typo's identifier. |
| 4801 | unsigned ED = Consumer->getBestEditDistance(true); |
| 4802 | IdentifierInfo *Typo = TypoName.getName().getAsIdentifierInfo(); |
Benjamin Kramer | b872733 | 2016-05-19 10:46:10 +0000 | [diff] [blame] | 4803 | if (!ExternalTypo && ED > 0 && Typo->getName().size() / ED < 3) |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4804 | return nullptr; |
| 4805 | |
| 4806 | ExprEvalContexts.back().NumTypos++; |
Kaelyn Takata | 8363f04 | 2014-10-27 18:07:42 +0000 | [diff] [blame] | 4807 | return createDelayedTypo(std::move(Consumer), std::move(TDG), std::move(TRC)); |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4808 | } |
| 4809 | |
Kaelyn Uhrain | acbdc57 | 2011-08-03 20:36:05 +0000 | [diff] [blame] | 4810 | void TypoCorrection::addCorrectionDecl(NamedDecl *CDecl) { |
| 4811 | if (!CDecl) return; |
| 4812 | |
| 4813 | if (isKeyword()) |
| 4814 | CorrectionDecls.clear(); |
| 4815 | |
Richard Smith | de6d6c4 | 2015-12-29 19:43:10 +0000 | [diff] [blame] | 4816 | CorrectionDecls.push_back(CDecl); |
Kaelyn Uhrain | acbdc57 | 2011-08-03 20:36:05 +0000 | [diff] [blame] | 4817 | |
| 4818 | if (!CorrectionName) |
| 4819 | CorrectionName = CDecl->getDeclName(); |
| 4820 | } |
| 4821 | |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4822 | std::string TypoCorrection::getAsString(const LangOptions &LO) const { |
| 4823 | if (CorrectionNameSpec) { |
| 4824 | std::string tmpBuffer; |
| 4825 | llvm::raw_string_ostream PrefixOStream(tmpBuffer); |
| 4826 | CorrectionNameSpec->print(PrefixOStream, PrintingPolicy(LO)); |
David Blaikie | d4da872 | 2013-05-14 21:04:00 +0000 | [diff] [blame] | 4827 | PrefixOStream << CorrectionName; |
Benjamin Kramer | 73faad6 | 2012-04-14 08:26:28 +0000 | [diff] [blame] | 4828 | return PrefixOStream.str(); |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4829 | } |
| 4830 | |
| 4831 | return CorrectionName.getAsString(); |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 4832 | } |
Kaelyn Uhrain | 989b7ca | 2013-04-03 16:59:49 +0000 | [diff] [blame] | 4833 | |
Nico Weber | b58e51c | 2014-11-19 05:21:39 +0000 | [diff] [blame] | 4834 | bool CorrectionCandidateCallback::ValidateCandidate( |
| 4835 | const TypoCorrection &candidate) { |
Kaelyn Uhrain | 989b7ca | 2013-04-03 16:59:49 +0000 | [diff] [blame] | 4836 | if (!candidate.isResolved()) |
| 4837 | return true; |
| 4838 | |
| 4839 | if (candidate.isKeyword()) |
| 4840 | return WantTypeSpecifiers || WantExpressionKeywords || WantCXXNamedCasts || |
| 4841 | WantRemainingKeywords || WantObjCSuper; |
| 4842 | |
Nick Lewycky | 9ea8efa | 2014-06-23 22:57:51 +0000 | [diff] [blame] | 4843 | bool HasNonType = false; |
| 4844 | bool HasStaticMethod = false; |
| 4845 | bool HasNonStaticMethod = false; |
| 4846 | for (Decl *D : candidate) { |
| 4847 | if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(D)) |
| 4848 | D = FTD->getTemplatedDecl(); |
| 4849 | if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) { |
| 4850 | if (Method->isStatic()) |
| 4851 | HasStaticMethod = true; |
| 4852 | else |
| 4853 | HasNonStaticMethod = true; |
| 4854 | } |
| 4855 | if (!isa<TypeDecl>(D)) |
| 4856 | HasNonType = true; |
Kaelyn Uhrain | 989b7ca | 2013-04-03 16:59:49 +0000 | [diff] [blame] | 4857 | } |
| 4858 | |
Nick Lewycky | 9ea8efa | 2014-06-23 22:57:51 +0000 | [diff] [blame] | 4859 | if (IsAddressOfOperand && HasNonStaticMethod && !HasStaticMethod && |
| 4860 | !candidate.getCorrectionSpecifier()) |
| 4861 | return false; |
| 4862 | |
| 4863 | return WantTypeSpecifiers || HasNonType; |
Kaelyn Uhrain | 989b7ca | 2013-04-03 16:59:49 +0000 | [diff] [blame] | 4864 | } |
Kaelyn Uhrain | 53e7219 | 2013-07-08 23:13:39 +0000 | [diff] [blame] | 4865 | |
| 4866 | FunctionCallFilterCCC::FunctionCallFilterCCC(Sema &SemaRef, unsigned NumArgs, |
Kaelyn Uhrain | b4b1475 | 2014-02-28 18:12:42 +0000 | [diff] [blame] | 4867 | bool HasExplicitTemplateArgs, |
Kaelyn Takata | fb271f0 | 2014-04-04 22:16:30 +0000 | [diff] [blame] | 4868 | MemberExpr *ME) |
Kaelyn Uhrain | b4b1475 | 2014-02-28 18:12:42 +0000 | [diff] [blame] | 4869 | : NumArgs(NumArgs), HasExplicitTemplateArgs(HasExplicitTemplateArgs), |
Kaelyn Takata | fb271f0 | 2014-04-04 22:16:30 +0000 | [diff] [blame] | 4870 | CurContext(SemaRef.CurContext), MemberFn(ME) { |
Kaelyn Takata | b04846b | 2014-07-28 18:14:02 +0000 | [diff] [blame] | 4871 | WantTypeSpecifiers = false; |
| 4872 | WantFunctionLikeCasts = SemaRef.getLangOpts().CPlusPlus && NumArgs == 1; |
Kaelyn Uhrain | 53e7219 | 2013-07-08 23:13:39 +0000 | [diff] [blame] | 4873 | WantRemainingKeywords = false; |
| 4874 | } |
| 4875 | |
| 4876 | bool FunctionCallFilterCCC::ValidateCandidate(const TypoCorrection &candidate) { |
| 4877 | if (!candidate.getCorrectionDecl()) |
| 4878 | return candidate.isKeyword(); |
| 4879 | |
Aaron Ballman | 1e606f4 | 2014-07-15 22:03:49 +0000 | [diff] [blame] | 4880 | for (auto *C : candidate) { |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 4881 | FunctionDecl *FD = nullptr; |
Aaron Ballman | 1e606f4 | 2014-07-15 22:03:49 +0000 | [diff] [blame] | 4882 | NamedDecl *ND = C->getUnderlyingDecl(); |
Kaelyn Uhrain | 53e7219 | 2013-07-08 23:13:39 +0000 | [diff] [blame] | 4883 | if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(ND)) |
| 4884 | FD = FTD->getTemplatedDecl(); |
| 4885 | if (!HasExplicitTemplateArgs && !FD) { |
| 4886 | if (!(FD = dyn_cast<FunctionDecl>(ND)) && isa<ValueDecl>(ND)) { |
| 4887 | // If the Decl is neither a function nor a template function, |
| 4888 | // determine if it is a pointer or reference to a function. If so, |
| 4889 | // check against the number of arguments expected for the pointee. |
| 4890 | QualType ValType = cast<ValueDecl>(ND)->getType(); |
| 4891 | if (ValType->isAnyPointerType() || ValType->isReferenceType()) |
| 4892 | ValType = ValType->getPointeeType(); |
| 4893 | if (const FunctionProtoType *FPT = ValType->getAs<FunctionProtoType>()) |
Alp Toker | 9cacbab | 2014-01-20 20:26:09 +0000 | [diff] [blame] | 4894 | if (FPT->getNumParams() == NumArgs) |
Kaelyn Uhrain | 53e7219 | 2013-07-08 23:13:39 +0000 | [diff] [blame] | 4895 | return true; |
| 4896 | } |
| 4897 | } |
Kaelyn Uhrain | b4b1475 | 2014-02-28 18:12:42 +0000 | [diff] [blame] | 4898 | |
| 4899 | // Skip the current candidate if it is not a FunctionDecl or does not accept |
| 4900 | // the current number of arguments. |
| 4901 | if (!FD || !(FD->getNumParams() >= NumArgs && |
| 4902 | FD->getMinRequiredArguments() <= NumArgs)) |
| 4903 | continue; |
| 4904 | |
Kaelyn Takata | fb271f0 | 2014-04-04 22:16:30 +0000 | [diff] [blame] | 4905 | // If the current candidate is a non-static C++ method, skip the candidate |
| 4906 | // unless the method being corrected--or the current DeclContext, if the |
| 4907 | // function being corrected is not a method--is a method in the same class |
| 4908 | // or a descendent class of the candidate's parent class. |
Kaelyn Uhrain | b4b1475 | 2014-02-28 18:12:42 +0000 | [diff] [blame] | 4909 | if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) { |
Kaelyn Takata | fb271f0 | 2014-04-04 22:16:30 +0000 | [diff] [blame] | 4910 | if (MemberFn || !MD->isStatic()) { |
| 4911 | CXXMethodDecl *CurMD = |
| 4912 | MemberFn |
| 4913 | ? dyn_cast_or_null<CXXMethodDecl>(MemberFn->getMemberDecl()) |
| 4914 | : dyn_cast_or_null<CXXMethodDecl>(CurContext); |
Kaelyn Uhrain | b4b1475 | 2014-02-28 18:12:42 +0000 | [diff] [blame] | 4915 | CXXRecordDecl *CurRD = |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 4916 | CurMD ? CurMD->getParent()->getCanonicalDecl() : nullptr; |
Kaelyn Uhrain | b4b1475 | 2014-02-28 18:12:42 +0000 | [diff] [blame] | 4917 | CXXRecordDecl *RD = MD->getParent()->getCanonicalDecl(); |
| 4918 | if (!CurRD || (CurRD != RD && !CurRD->isDerivedFrom(RD))) |
| 4919 | continue; |
| 4920 | } |
| 4921 | } |
| 4922 | return true; |
Kaelyn Uhrain | 53e7219 | 2013-07-08 23:13:39 +0000 | [diff] [blame] | 4923 | } |
| 4924 | return false; |
| 4925 | } |
Richard Smith | f9b1510 | 2013-08-17 00:46:16 +0000 | [diff] [blame] | 4926 | |
| 4927 | void Sema::diagnoseTypo(const TypoCorrection &Correction, |
| 4928 | const PartialDiagnostic &TypoDiag, |
| 4929 | bool ErrorRecovery) { |
| 4930 | diagnoseTypo(Correction, TypoDiag, PDiag(diag::note_previous_decl), |
| 4931 | ErrorRecovery); |
| 4932 | } |
| 4933 | |
Richard Smith | e156254d | 2013-08-20 20:35:18 +0000 | [diff] [blame] | 4934 | /// Find which declaration we should import to provide the definition of |
| 4935 | /// the given declaration. |
Richard Smith | 4241314 | 2015-05-15 20:05:43 +0000 | [diff] [blame] | 4936 | static NamedDecl *getDefinitionToImport(NamedDecl *D) { |
| 4937 | if (VarDecl *VD = dyn_cast<VarDecl>(D)) |
Richard Smith | e156254d | 2013-08-20 20:35:18 +0000 | [diff] [blame] | 4938 | return VD->getDefinition(); |
| 4939 | if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) |
Richard Smith | 4241314 | 2015-05-15 20:05:43 +0000 | [diff] [blame] | 4940 | return FD->isDefined(FD) ? const_cast<FunctionDecl*>(FD) : nullptr; |
| 4941 | if (TagDecl *TD = dyn_cast<TagDecl>(D)) |
Richard Smith | e156254d | 2013-08-20 20:35:18 +0000 | [diff] [blame] | 4942 | return TD->getDefinition(); |
Richard Smith | 4241314 | 2015-05-15 20:05:43 +0000 | [diff] [blame] | 4943 | if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(D)) |
Richard Smith | e156254d | 2013-08-20 20:35:18 +0000 | [diff] [blame] | 4944 | return ID->getDefinition(); |
Richard Smith | 4241314 | 2015-05-15 20:05:43 +0000 | [diff] [blame] | 4945 | if (ObjCProtocolDecl *PD = dyn_cast<ObjCProtocolDecl>(D)) |
Richard Smith | e156254d | 2013-08-20 20:35:18 +0000 | [diff] [blame] | 4946 | return PD->getDefinition(); |
Richard Smith | 4241314 | 2015-05-15 20:05:43 +0000 | [diff] [blame] | 4947 | if (TemplateDecl *TD = dyn_cast<TemplateDecl>(D)) |
Richard Smith | e156254d | 2013-08-20 20:35:18 +0000 | [diff] [blame] | 4948 | return getDefinitionToImport(TD->getTemplatedDecl()); |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 4949 | return nullptr; |
Richard Smith | e156254d | 2013-08-20 20:35:18 +0000 | [diff] [blame] | 4950 | } |
| 4951 | |
Richard Smith | f2b1eb9 | 2015-06-15 20:15:48 +0000 | [diff] [blame] | 4952 | void Sema::diagnoseMissingImport(SourceLocation Loc, NamedDecl *Decl, |
Richard Smith | 6739a10 | 2016-05-05 00:56:12 +0000 | [diff] [blame] | 4953 | MissingImportKind MIK, bool Recover) { |
Richard Smith | f2b1eb9 | 2015-06-15 20:15:48 +0000 | [diff] [blame] | 4954 | assert(!isVisible(Decl) && "missing import for non-hidden decl?"); |
| 4955 | |
| 4956 | // Suggest importing a module providing the definition of this entity, if |
| 4957 | // possible. |
| 4958 | NamedDecl *Def = getDefinitionToImport(Decl); |
| 4959 | if (!Def) |
| 4960 | Def = Decl; |
| 4961 | |
Richard Smith | f2b1eb9 | 2015-06-15 20:15:48 +0000 | [diff] [blame] | 4962 | Module *Owner = getOwningModule(Decl); |
| 4963 | assert(Owner && "definition of hidden declaration is not in a module"); |
| 4964 | |
Richard Smith | 35c1df5 | 2015-06-17 20:16:32 +0000 | [diff] [blame] | 4965 | llvm::SmallVector<Module*, 8> OwningModules; |
| 4966 | OwningModules.push_back(Owner); |
Richard Smith | f2b1eb9 | 2015-06-15 20:15:48 +0000 | [diff] [blame] | 4967 | auto Merged = Context.getModulesWithMergedDefinition(Decl); |
Richard Smith | 35c1df5 | 2015-06-17 20:16:32 +0000 | [diff] [blame] | 4968 | OwningModules.insert(OwningModules.end(), Merged.begin(), Merged.end()); |
| 4969 | |
Richard Smith | 6739a10 | 2016-05-05 00:56:12 +0000 | [diff] [blame] | 4970 | diagnoseMissingImport(Loc, Decl, Decl->getLocation(), OwningModules, MIK, |
Richard Smith | 35c1df5 | 2015-06-17 20:16:32 +0000 | [diff] [blame] | 4971 | Recover); |
| 4972 | } |
| 4973 | |
Richard Smith | 4eb8393 | 2016-04-27 21:57:05 +0000 | [diff] [blame] | 4974 | /// \brief Get a "quoted.h" or <angled.h> include path to use in a diagnostic |
| 4975 | /// suggesting the addition of a #include of the specified file. |
| 4976 | static std::string getIncludeStringForHeader(Preprocessor &PP, |
| 4977 | const FileEntry *E) { |
| 4978 | bool IsSystem; |
| 4979 | auto Path = |
| 4980 | PP.getHeaderSearchInfo().suggestPathToFileForDiagnostics(E, &IsSystem); |
| 4981 | return (IsSystem ? '<' : '"') + Path + (IsSystem ? '>' : '"'); |
| 4982 | } |
| 4983 | |
Richard Smith | 35c1df5 | 2015-06-17 20:16:32 +0000 | [diff] [blame] | 4984 | void Sema::diagnoseMissingImport(SourceLocation UseLoc, NamedDecl *Decl, |
| 4985 | SourceLocation DeclLoc, |
| 4986 | ArrayRef<Module *> Modules, |
| 4987 | MissingImportKind MIK, bool Recover) { |
| 4988 | assert(!Modules.empty()); |
| 4989 | |
| 4990 | if (Modules.size() > 1) { |
Richard Smith | f2b1eb9 | 2015-06-15 20:15:48 +0000 | [diff] [blame] | 4991 | std::string ModuleList; |
Richard Smith | f2b1eb9 | 2015-06-15 20:15:48 +0000 | [diff] [blame] | 4992 | unsigned N = 0; |
Richard Smith | 35c1df5 | 2015-06-17 20:16:32 +0000 | [diff] [blame] | 4993 | for (Module *M : Modules) { |
Richard Smith | f2b1eb9 | 2015-06-15 20:15:48 +0000 | [diff] [blame] | 4994 | ModuleList += "\n "; |
Richard Smith | 35c1df5 | 2015-06-17 20:16:32 +0000 | [diff] [blame] | 4995 | if (++N == 5 && N != Modules.size()) { |
Richard Smith | f2b1eb9 | 2015-06-15 20:15:48 +0000 | [diff] [blame] | 4996 | ModuleList += "[...]"; |
| 4997 | break; |
| 4998 | } |
| 4999 | ModuleList += M->getFullModuleName(); |
| 5000 | } |
| 5001 | |
Richard Smith | 35c1df5 | 2015-06-17 20:16:32 +0000 | [diff] [blame] | 5002 | Diag(UseLoc, diag::err_module_unimported_use_multiple) |
| 5003 | << (int)MIK << Decl << ModuleList; |
Richard Smith | 4eb8393 | 2016-04-27 21:57:05 +0000 | [diff] [blame] | 5004 | } else if (const FileEntry *E = |
| 5005 | PP.getModuleHeaderToIncludeForDiagnostics(UseLoc, DeclLoc)) { |
| 5006 | // The right way to make the declaration visible is to include a header; |
| 5007 | // suggest doing so. |
| 5008 | // |
| 5009 | // FIXME: Find a smart place to suggest inserting a #include, and add |
| 5010 | // a FixItHint there. |
| 5011 | Diag(UseLoc, diag::err_module_unimported_use_header) |
| 5012 | << (int)MIK << Decl << Modules[0]->getFullModuleName() |
| 5013 | << getIncludeStringForHeader(PP, E); |
Richard Smith | f2b1eb9 | 2015-06-15 20:15:48 +0000 | [diff] [blame] | 5014 | } else { |
Richard Smith | acef17a | 2016-05-05 02:14:06 +0000 | [diff] [blame] | 5015 | // FIXME: Add a FixItHint that imports the corresponding module. |
Richard Smith | 35c1df5 | 2015-06-17 20:16:32 +0000 | [diff] [blame] | 5016 | Diag(UseLoc, diag::err_module_unimported_use) |
| 5017 | << (int)MIK << Decl << Modules[0]->getFullModuleName(); |
Richard Smith | f2b1eb9 | 2015-06-15 20:15:48 +0000 | [diff] [blame] | 5018 | } |
Richard Smith | 35c1df5 | 2015-06-17 20:16:32 +0000 | [diff] [blame] | 5019 | |
| 5020 | unsigned DiagID; |
| 5021 | switch (MIK) { |
| 5022 | case MissingImportKind::Declaration: |
| 5023 | DiagID = diag::note_previous_declaration; |
| 5024 | break; |
| 5025 | case MissingImportKind::Definition: |
| 5026 | DiagID = diag::note_previous_definition; |
| 5027 | break; |
| 5028 | case MissingImportKind::DefaultArgument: |
| 5029 | DiagID = diag::note_default_argument_declared_here; |
| 5030 | break; |
Richard Smith | 6739a10 | 2016-05-05 00:56:12 +0000 | [diff] [blame] | 5031 | case MissingImportKind::ExplicitSpecialization: |
| 5032 | DiagID = diag::note_explicit_specialization_declared_here; |
| 5033 | break; |
| 5034 | case MissingImportKind::PartialSpecialization: |
| 5035 | DiagID = diag::note_partial_specialization_declared_here; |
| 5036 | break; |
Richard Smith | 35c1df5 | 2015-06-17 20:16:32 +0000 | [diff] [blame] | 5037 | } |
| 5038 | Diag(DeclLoc, DiagID); |
Richard Smith | f2b1eb9 | 2015-06-15 20:15:48 +0000 | [diff] [blame] | 5039 | |
| 5040 | // Try to recover by implicitly importing this module. |
| 5041 | if (Recover) |
Richard Smith | 35c1df5 | 2015-06-17 20:16:32 +0000 | [diff] [blame] | 5042 | createImplicitModuleImportForErrorRecovery(UseLoc, Modules[0]); |
Richard Smith | f2b1eb9 | 2015-06-15 20:15:48 +0000 | [diff] [blame] | 5043 | } |
| 5044 | |
Richard Smith | f9b1510 | 2013-08-17 00:46:16 +0000 | [diff] [blame] | 5045 | /// \brief Diagnose a successfully-corrected typo. Separated from the correction |
| 5046 | /// itself to allow external validation of the result, etc. |
| 5047 | /// |
| 5048 | /// \param Correction The result of performing typo correction. |
| 5049 | /// \param TypoDiag The diagnostic to produce. This will have the corrected |
| 5050 | /// string added to it (and usually also a fixit). |
| 5051 | /// \param PrevNote A note to use when indicating the location of the entity to |
| 5052 | /// which we are correcting. Will have the correction string added to it. |
| 5053 | /// \param ErrorRecovery If \c true (the default), the caller is going to |
| 5054 | /// recover from the typo as if the corrected string had been typed. |
| 5055 | /// In this case, \c PDiag must be an error, and we will attach a fixit |
| 5056 | /// to it. |
| 5057 | void Sema::diagnoseTypo(const TypoCorrection &Correction, |
| 5058 | const PartialDiagnostic &TypoDiag, |
| 5059 | const PartialDiagnostic &PrevNote, |
| 5060 | bool ErrorRecovery) { |
| 5061 | std::string CorrectedStr = Correction.getAsString(getLangOpts()); |
| 5062 | std::string CorrectedQuotedStr = Correction.getQuoted(getLangOpts()); |
| 5063 | FixItHint FixTypo = FixItHint::CreateReplacement( |
| 5064 | Correction.getCorrectionRange(), CorrectedStr); |
| 5065 | |
Richard Smith | e156254d | 2013-08-20 20:35:18 +0000 | [diff] [blame] | 5066 | // Maybe we're just missing a module import. |
| 5067 | if (Correction.requiresImport()) { |
Richard Smith | de6d6c4 | 2015-12-29 19:43:10 +0000 | [diff] [blame] | 5068 | NamedDecl *Decl = Correction.getFoundDecl(); |
Richard Smith | e156254d | 2013-08-20 20:35:18 +0000 | [diff] [blame] | 5069 | assert(Decl && "import required but no declaration to import"); |
| 5070 | |
Richard Smith | f2b1eb9 | 2015-06-15 20:15:48 +0000 | [diff] [blame] | 5071 | diagnoseMissingImport(Correction.getCorrectionRange().getBegin(), Decl, |
Richard Smith | 6739a10 | 2016-05-05 00:56:12 +0000 | [diff] [blame] | 5072 | MissingImportKind::Declaration, ErrorRecovery); |
Richard Smith | e156254d | 2013-08-20 20:35:18 +0000 | [diff] [blame] | 5073 | return; |
| 5074 | } |
| 5075 | |
Richard Smith | f9b1510 | 2013-08-17 00:46:16 +0000 | [diff] [blame] | 5076 | Diag(Correction.getCorrectionRange().getBegin(), TypoDiag) |
| 5077 | << CorrectedQuotedStr << (ErrorRecovery ? FixTypo : FixItHint()); |
| 5078 | |
| 5079 | NamedDecl *ChosenDecl = |
Richard Smith | de6d6c4 | 2015-12-29 19:43:10 +0000 | [diff] [blame] | 5080 | Correction.isKeyword() ? nullptr : Correction.getFoundDecl(); |
Richard Smith | f9b1510 | 2013-08-17 00:46:16 +0000 | [diff] [blame] | 5081 | if (PrevNote.getDiagID() && ChosenDecl) |
| 5082 | Diag(ChosenDecl->getLocation(), PrevNote) |
| 5083 | << CorrectedQuotedStr << (ErrorRecovery ? FixItHint() : FixTypo); |
| 5084 | } |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 5085 | |
Kaelyn Takata | 8363f04 | 2014-10-27 18:07:42 +0000 | [diff] [blame] | 5086 | TypoExpr *Sema::createDelayedTypo(std::unique_ptr<TypoCorrectionConsumer> TCC, |
| 5087 | TypoDiagnosticGenerator TDG, |
| 5088 | TypoRecoveryCallback TRC) { |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 5089 | assert(TCC && "createDelayedTypo requires a valid TypoCorrectionConsumer"); |
| 5090 | auto TE = new (Context) TypoExpr(Context.DependentTy); |
| 5091 | auto &State = DelayedTypos[TE]; |
| 5092 | State.Consumer = std::move(TCC); |
| 5093 | State.DiagHandler = std::move(TDG); |
Kaelyn Takata | 8363f04 | 2014-10-27 18:07:42 +0000 | [diff] [blame] | 5094 | State.RecoveryHandler = std::move(TRC); |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 5095 | return TE; |
| 5096 | } |
| 5097 | |
| 5098 | const Sema::TypoExprState &Sema::getTypoExprState(TypoExpr *TE) const { |
| 5099 | auto Entry = DelayedTypos.find(TE); |
| 5100 | assert(Entry != DelayedTypos.end() && |
| 5101 | "Failed to get the state for a TypoExpr!"); |
| 5102 | return Entry->second; |
| 5103 | } |
| 5104 | |
| 5105 | void Sema::clearDelayedTypo(TypoExpr *TE) { |
| 5106 | DelayedTypos.erase(TE); |
| 5107 | } |
Richard Smith | ba3a4f9 | 2016-01-12 21:59:26 +0000 | [diff] [blame] | 5108 | |
| 5109 | void Sema::ActOnPragmaDump(Scope *S, SourceLocation IILoc, IdentifierInfo *II) { |
| 5110 | DeclarationNameInfo Name(II, IILoc); |
| 5111 | LookupResult R(*this, Name, LookupAnyName, Sema::NotForRedeclaration); |
| 5112 | R.suppressDiagnostics(); |
| 5113 | R.setHideTags(false); |
| 5114 | LookupName(R, S); |
| 5115 | R.dump(); |
| 5116 | } |