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(); |
Douglas Gregor | 3e51e17 | 2010-05-20 20:58:56 +0000 | [diff] [blame] | 1081 | |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 1082 | // Check whether the IdResolver has anything in this scope. |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1083 | bool Found = false; |
John McCall | 4887165 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 1084 | for (; I != IEnd && S->isDeclScope(*I); ++I) { |
Douglas Gregor | 4a81456 | 2011-12-14 16:03:29 +0000 | [diff] [blame] | 1085 | if (NamedDecl *ND = R.getAcceptableDecl(*I)) { |
Richard Smith | 1c34fb7 | 2013-08-13 18:18:50 +0000 | [diff] [blame] | 1086 | if (NameKind == LookupRedeclarationWithLinkage) { |
| 1087 | // Determine whether this (or a previous) declaration is |
| 1088 | // out-of-scope. |
| 1089 | if (!LeftStartingScope && !Initial->isDeclScope(*I)) |
| 1090 | LeftStartingScope = true; |
| 1091 | |
| 1092 | // If we found something outside of our starting scope that |
Richard Smith | 9a00bbf | 2013-10-16 21:12:00 +0000 | [diff] [blame] | 1093 | // does not have linkage, skip it. If it's a template parameter, |
| 1094 | // we still find it, so we can diagnose the invalid redeclaration. |
| 1095 | if (LeftStartingScope && !((*I)->hasLinkage()) && |
| 1096 | !(*I)->isTemplateParameter()) { |
Richard Smith | 1c34fb7 | 2013-08-13 18:18:50 +0000 | [diff] [blame] | 1097 | R.setShadowed(); |
| 1098 | continue; |
| 1099 | } |
| 1100 | } |
| 1101 | |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1102 | Found = true; |
Douglas Gregor | 4a81456 | 2011-12-14 16:03:29 +0000 | [diff] [blame] | 1103 | R.addDecl(ND); |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 1104 | } |
| 1105 | } |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1106 | if (Found) { |
| 1107 | R.resolveKind(); |
Douglas Gregor | 3e51e17 | 2010-05-20 20:58:56 +0000 | [diff] [blame] | 1108 | if (S->isClassScope()) |
| 1109 | if (CXXRecordDecl *Record = dyn_cast_or_null<CXXRecordDecl>(Ctx)) |
| 1110 | R.setNamingClass(Record); |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1111 | return true; |
| 1112 | } |
| 1113 | |
Richard Smith | 1c34fb7 | 2013-08-13 18:18:50 +0000 | [diff] [blame] | 1114 | if (NameKind == LookupLocalFriendName && !S->isClassScope()) { |
Richard Smith | 114394f | 2013-08-09 04:35:01 +0000 | [diff] [blame] | 1115 | // C++11 [class.friend]p11: |
| 1116 | // If a friend declaration appears in a local class and the name |
| 1117 | // specified is an unqualified name, a prior declaration is |
| 1118 | // looked up without considering scopes that are outside the |
| 1119 | // innermost enclosing non-class scope. |
| 1120 | return false; |
| 1121 | } |
| 1122 | |
Douglas Gregor | 6623006 | 2010-03-15 14:33:29 +0000 | [diff] [blame] | 1123 | if (!Ctx && S->isTemplateParamScope() && OutsideOfTemplateParamDC && |
| 1124 | S->getParent() && !S->getParent()->isTemplateParamScope()) { |
| 1125 | // We've just searched the last template parameter scope and |
Sylvestre Ledru | 830885c | 2012-07-23 08:59:39 +0000 | [diff] [blame] | 1126 | // found nothing, so look into the contexts between the |
Douglas Gregor | 6623006 | 2010-03-15 14:33:29 +0000 | [diff] [blame] | 1127 | // lexical and semantic declaration contexts returned by |
| 1128 | // findOuterContext(). This implements the name lookup behavior |
| 1129 | // of C++ [temp.local]p8. |
| 1130 | Ctx = OutsideOfTemplateParamDC; |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1131 | OutsideOfTemplateParamDC = nullptr; |
Douglas Gregor | 6623006 | 2010-03-15 14:33:29 +0000 | [diff] [blame] | 1132 | } |
| 1133 | |
| 1134 | if (Ctx) { |
| 1135 | DeclContext *OuterCtx; |
| 1136 | bool SearchAfterTemplateScope; |
Benjamin Kramer | 867ea1d | 2014-03-02 13:01:17 +0000 | [diff] [blame] | 1137 | std::tie(OuterCtx, SearchAfterTemplateScope) = findOuterContext(S); |
Douglas Gregor | 6623006 | 2010-03-15 14:33:29 +0000 | [diff] [blame] | 1138 | if (SearchAfterTemplateScope) |
| 1139 | OutsideOfTemplateParamDC = OuterCtx; |
| 1140 | |
Douglas Gregor | ea16606 | 2010-03-15 15:26:48 +0000 | [diff] [blame] | 1141 | for (; Ctx && !Ctx->Equals(OuterCtx); Ctx = Ctx->getLookupParent()) { |
Douglas Gregor | 337caf9 | 2010-02-19 16:08:35 +0000 | [diff] [blame] | 1142 | // We do not directly look into transparent contexts, since |
| 1143 | // those entities will be found in the nearest enclosing |
| 1144 | // non-transparent context. |
| 1145 | if (Ctx->isTransparentContext()) |
Douglas Gregor | 7f737c0 | 2009-09-10 16:57:35 +0000 | [diff] [blame] | 1146 | continue; |
Douglas Gregor | 337caf9 | 2010-02-19 16:08:35 +0000 | [diff] [blame] | 1147 | |
| 1148 | // We do not look directly into function or method contexts, |
| 1149 | // since all of the local variables and parameters of the |
| 1150 | // function/method are present within the Scope. |
| 1151 | if (Ctx->isFunctionOrMethod()) { |
| 1152 | // If we have an Objective-C instance method, look for ivars |
| 1153 | // in the corresponding interface. |
| 1154 | if (ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(Ctx)) { |
| 1155 | if (Method->isInstanceMethod() && Name.getAsIdentifierInfo()) |
| 1156 | if (ObjCInterfaceDecl *Class = Method->getClassInterface()) { |
| 1157 | ObjCInterfaceDecl *ClassDeclared; |
| 1158 | if (ObjCIvarDecl *Ivar = Class->lookupInstanceVariable( |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1159 | Name.getAsIdentifierInfo(), |
Douglas Gregor | 337caf9 | 2010-02-19 16:08:35 +0000 | [diff] [blame] | 1160 | ClassDeclared)) { |
Douglas Gregor | 4a81456 | 2011-12-14 16:03:29 +0000 | [diff] [blame] | 1161 | if (NamedDecl *ND = R.getAcceptableDecl(Ivar)) { |
| 1162 | R.addDecl(ND); |
Douglas Gregor | 337caf9 | 2010-02-19 16:08:35 +0000 | [diff] [blame] | 1163 | R.resolveKind(); |
| 1164 | return true; |
| 1165 | } |
| 1166 | } |
| 1167 | } |
| 1168 | } |
| 1169 | |
| 1170 | continue; |
| 1171 | } |
| 1172 | |
Douglas Gregor | b0d0aa5 | 2013-03-27 12:51:49 +0000 | [diff] [blame] | 1173 | // If this is a file context, we need to perform unqualified name |
| 1174 | // lookup considering using directives. |
| 1175 | if (Ctx->isFileContext()) { |
Douglas Gregor | cc9406c | 2013-04-08 23:11:25 +0000 | [diff] [blame] | 1176 | // If we haven't handled using directives yet, do so now. |
| 1177 | if (!VisitedUsingDirectives) { |
| 1178 | // Add using directives from this context up to the top level. |
Douglas Gregor | 8ccbc18 | 2013-04-09 01:49:26 +0000 | [diff] [blame] | 1179 | for (DeclContext *UCtx = Ctx; UCtx; UCtx = UCtx->getParent()) { |
| 1180 | if (UCtx->isTransparentContext()) |
| 1181 | continue; |
| 1182 | |
Douglas Gregor | cc9406c | 2013-04-08 23:11:25 +0000 | [diff] [blame] | 1183 | UDirs.visit(UCtx, UCtx); |
Douglas Gregor | 8ccbc18 | 2013-04-09 01:49:26 +0000 | [diff] [blame] | 1184 | } |
Douglas Gregor | cc9406c | 2013-04-08 23:11:25 +0000 | [diff] [blame] | 1185 | |
| 1186 | // Find the innermost file scope, so we can add using directives |
| 1187 | // from local scopes. |
| 1188 | Scope *InnermostFileScope = S; |
| 1189 | while (InnermostFileScope && |
| 1190 | !isNamespaceOrTranslationUnitScope(InnermostFileScope)) |
| 1191 | InnermostFileScope = InnermostFileScope->getParent(); |
| 1192 | UDirs.visitScopeChain(Initial, InnermostFileScope); |
| 1193 | |
| 1194 | UDirs.done(); |
| 1195 | |
| 1196 | VisitedUsingDirectives = true; |
| 1197 | } |
Douglas Gregor | b0d0aa5 | 2013-03-27 12:51:49 +0000 | [diff] [blame] | 1198 | |
| 1199 | if (CppNamespaceLookup(*this, R, Context, Ctx, UDirs)) { |
| 1200 | R.resolveKind(); |
| 1201 | return true; |
| 1202 | } |
| 1203 | |
| 1204 | continue; |
| 1205 | } |
| 1206 | |
Douglas Gregor | 7f737c0 | 2009-09-10 16:57:35 +0000 | [diff] [blame] | 1207 | // Perform qualified name lookup into this context. |
| 1208 | // FIXME: In some cases, we know that every name that could be found by |
| 1209 | // this qualified name lookup will also be on the identifier chain. For |
| 1210 | // example, inside a class without any base classes, we never need to |
| 1211 | // perform qualified lookup because all of the members are on top of the |
| 1212 | // identifier chain. |
Douglas Gregor | d0d2ee0 | 2010-01-15 01:44:47 +0000 | [diff] [blame] | 1213 | if (LookupQualifiedName(R, Ctx, /*InUnqualifiedLookup=*/true)) |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1214 | return true; |
Douglas Gregor | fdca4a7 | 2009-03-27 04:21:56 +0000 | [diff] [blame] | 1215 | } |
Douglas Gregor | 700792c | 2009-02-05 19:25:20 +0000 | [diff] [blame] | 1216 | } |
Douglas Gregor | ed8f288 | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 1217 | } |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 1218 | |
John McCall | f6c8a4e | 2009-11-10 07:01:13 +0000 | [diff] [blame] | 1219 | // Stop if we ran out of scopes. |
| 1220 | // FIXME: This really, really shouldn't be happening. |
| 1221 | if (!S) return false; |
| 1222 | |
Argyrios Kyrtzidis | 706bbf8 | 2010-10-29 16:12:50 +0000 | [diff] [blame] | 1223 | // 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] | 1224 | if (NameKind == LookupMemberName) |
Argyrios Kyrtzidis | 706bbf8 | 2010-10-29 16:12:50 +0000 | [diff] [blame] | 1225 | return false; |
| 1226 | |
Douglas Gregor | 700792c | 2009-02-05 19:25:20 +0000 | [diff] [blame] | 1227 | // Collect UsingDirectiveDecls in all scopes, and recursively all |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 1228 | // nominated namespaces by those using-directives. |
John McCall | f6c8a4e | 2009-11-10 07:01:13 +0000 | [diff] [blame] | 1229 | // |
Mike Stump | 87c57ac | 2009-05-16 07:39:55 +0000 | [diff] [blame] | 1230 | // FIXME: Cache this sorted list in Scope structure, and DeclContext, so we |
| 1231 | // don't build it for each lookup! |
Douglas Gregor | cc9406c | 2013-04-08 23:11:25 +0000 | [diff] [blame] | 1232 | if (!VisitedUsingDirectives) { |
| 1233 | UDirs.visitScopeChain(Initial, S); |
| 1234 | UDirs.done(); |
| 1235 | } |
Richard Smith | 541b38b | 2013-09-20 01:15:31 +0000 | [diff] [blame] | 1236 | |
| 1237 | // If we're not performing redeclaration lookup, do not look for local |
| 1238 | // extern declarations outside of a function scope. |
| 1239 | if (!R.isForRedeclaration()) |
| 1240 | FindLocals.restore(); |
| 1241 | |
Douglas Gregor | 700792c | 2009-02-05 19:25:20 +0000 | [diff] [blame] | 1242 | // Lookup namespace scope, and global scope. |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 1243 | // Unqualified name lookup in C++ requires looking into scopes |
| 1244 | // that aren't strictly lexical, and therefore we walk through the |
| 1245 | // context as well as walking through the scopes. |
| 1246 | for (; S; S = S->getParent()) { |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 1247 | // Check whether the IdResolver has anything in this scope. |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1248 | bool Found = false; |
John McCall | 4887165 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 1249 | for (; I != IEnd && S->isDeclScope(*I); ++I) { |
Douglas Gregor | 4a81456 | 2011-12-14 16:03:29 +0000 | [diff] [blame] | 1250 | if (NamedDecl *ND = R.getAcceptableDecl(*I)) { |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 1251 | // We found something. Look for anything else in our scope |
| 1252 | // with this same name and in an acceptable identifier |
| 1253 | // namespace, so that we can construct an overload set if we |
| 1254 | // need to. |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1255 | Found = true; |
Douglas Gregor | 4a81456 | 2011-12-14 16:03:29 +0000 | [diff] [blame] | 1256 | R.addDecl(ND); |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 1257 | } |
| 1258 | } |
| 1259 | |
Douglas Gregor | f3d3ae6 | 2010-05-14 04:53:42 +0000 | [diff] [blame] | 1260 | if (Found && S->isTemplateParamScope()) { |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1261 | R.resolveKind(); |
| 1262 | return true; |
| 1263 | } |
| 1264 | |
Ted Kremenek | c37877d | 2013-10-08 17:08:03 +0000 | [diff] [blame] | 1265 | DeclContext *Ctx = S->getEntity(); |
Douglas Gregor | f3d3ae6 | 2010-05-14 04:53:42 +0000 | [diff] [blame] | 1266 | if (!Ctx && S->isTemplateParamScope() && OutsideOfTemplateParamDC && |
| 1267 | S->getParent() && !S->getParent()->isTemplateParamScope()) { |
| 1268 | // We've just searched the last template parameter scope and |
Sylvestre Ledru | 830885c | 2012-07-23 08:59:39 +0000 | [diff] [blame] | 1269 | // found nothing, so look into the contexts between the |
Douglas Gregor | f3d3ae6 | 2010-05-14 04:53:42 +0000 | [diff] [blame] | 1270 | // lexical and semantic declaration contexts returned by |
| 1271 | // findOuterContext(). This implements the name lookup behavior |
| 1272 | // of C++ [temp.local]p8. |
| 1273 | Ctx = OutsideOfTemplateParamDC; |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1274 | OutsideOfTemplateParamDC = nullptr; |
Douglas Gregor | f3d3ae6 | 2010-05-14 04:53:42 +0000 | [diff] [blame] | 1275 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1276 | |
Douglas Gregor | f3d3ae6 | 2010-05-14 04:53:42 +0000 | [diff] [blame] | 1277 | if (Ctx) { |
| 1278 | DeclContext *OuterCtx; |
| 1279 | bool SearchAfterTemplateScope; |
Benjamin Kramer | 867ea1d | 2014-03-02 13:01:17 +0000 | [diff] [blame] | 1280 | std::tie(OuterCtx, SearchAfterTemplateScope) = findOuterContext(S); |
Douglas Gregor | f3d3ae6 | 2010-05-14 04:53:42 +0000 | [diff] [blame] | 1281 | if (SearchAfterTemplateScope) |
| 1282 | OutsideOfTemplateParamDC = OuterCtx; |
| 1283 | |
| 1284 | for (; Ctx && !Ctx->Equals(OuterCtx); Ctx = Ctx->getLookupParent()) { |
| 1285 | // We do not directly look into transparent contexts, since |
| 1286 | // those entities will be found in the nearest enclosing |
| 1287 | // non-transparent context. |
| 1288 | if (Ctx->isTransparentContext()) |
| 1289 | continue; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1290 | |
Douglas Gregor | f3d3ae6 | 2010-05-14 04:53:42 +0000 | [diff] [blame] | 1291 | // If we have a context, and it's not a context stashed in the |
| 1292 | // template parameter scope for an out-of-line definition, also |
| 1293 | // look into that context. |
| 1294 | if (!(Found && S && S->isTemplateParamScope())) { |
| 1295 | assert(Ctx->isFileContext() && |
| 1296 | "We should have been looking only at file context here already."); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1297 | |
Douglas Gregor | f3d3ae6 | 2010-05-14 04:53:42 +0000 | [diff] [blame] | 1298 | // Look into context considering using-directives. |
| 1299 | if (CppNamespaceLookup(*this, R, Context, Ctx, UDirs)) |
| 1300 | Found = true; |
| 1301 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1302 | |
Douglas Gregor | f3d3ae6 | 2010-05-14 04:53:42 +0000 | [diff] [blame] | 1303 | if (Found) { |
| 1304 | R.resolveKind(); |
| 1305 | return true; |
| 1306 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1307 | |
Douglas Gregor | f3d3ae6 | 2010-05-14 04:53:42 +0000 | [diff] [blame] | 1308 | if (R.isForRedeclaration() && !Ctx->isTransparentContext()) |
| 1309 | return false; |
| 1310 | } |
| 1311 | } |
| 1312 | |
Douglas Gregor | 3ce7493 | 2010-02-05 07:07:10 +0000 | [diff] [blame] | 1313 | if (R.isForRedeclaration() && Ctx && !Ctx->isTransparentContext()) |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1314 | return false; |
Douglas Gregor | 700792c | 2009-02-05 19:25:20 +0000 | [diff] [blame] | 1315 | } |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 1316 | |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1317 | return !R.empty(); |
Douglas Gregor | ed8f288 | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 1318 | } |
| 1319 | |
Richard Smith | 0e5d7b8 | 2013-07-25 23:08:39 +0000 | [diff] [blame] | 1320 | /// \brief Find the declaration that a class temploid member specialization was |
| 1321 | /// instantiated from, or the member itself if it is an explicit specialization. |
| 1322 | static Decl *getInstantiatedFrom(Decl *D, MemberSpecializationInfo *MSInfo) { |
| 1323 | return MSInfo->isExplicitSpecialization() ? D : MSInfo->getInstantiatedFrom(); |
| 1324 | } |
| 1325 | |
Richard Smith | 4241314 | 2015-05-15 20:05:43 +0000 | [diff] [blame] | 1326 | Module *Sema::getOwningModule(Decl *Entity) { |
| 1327 | // If it's imported, grab its owning module. |
| 1328 | Module *M = Entity->getImportedOwningModule(); |
| 1329 | if (M || !isa<NamedDecl>(Entity) || !cast<NamedDecl>(Entity)->isHidden()) |
| 1330 | return M; |
| 1331 | assert(!Entity->isFromASTFile() && |
| 1332 | "hidden entity from AST file has no owning module"); |
| 1333 | |
Richard Smith | 87bb569 | 2015-06-09 00:35:49 +0000 | [diff] [blame] | 1334 | if (!getLangOpts().ModulesLocalVisibility) { |
| 1335 | // If we're not tracking visibility locally, the only way a declaration |
| 1336 | // can be hidden and local is if it's hidden because it's parent is (for |
| 1337 | // instance, maybe this is a lazily-declared special member of an imported |
| 1338 | // class). |
| 1339 | auto *Parent = cast<NamedDecl>(Entity->getDeclContext()); |
| 1340 | assert(Parent->isHidden() && "unexpectedly hidden decl"); |
| 1341 | return getOwningModule(Parent); |
| 1342 | } |
| 1343 | |
Richard Smith | 4241314 | 2015-05-15 20:05:43 +0000 | [diff] [blame] | 1344 | // It's local and hidden; grab or compute its owning module. |
| 1345 | M = Entity->getLocalOwningModule(); |
| 1346 | if (M) |
| 1347 | return M; |
| 1348 | |
| 1349 | if (auto *Containing = |
| 1350 | PP.getModuleContainingLocation(Entity->getLocation())) { |
| 1351 | M = Containing; |
| 1352 | } else if (Entity->isInvalidDecl() || Entity->getLocation().isInvalid()) { |
| 1353 | // Don't bother tracking visibility for invalid declarations with broken |
| 1354 | // locations. |
| 1355 | cast<NamedDecl>(Entity)->setHidden(false); |
| 1356 | } else { |
| 1357 | // We need to assign a module to an entity that exists outside of any |
| 1358 | // module, so that we can hide it from modules that we textually enter. |
| 1359 | // Invent a fake module for all such entities. |
| 1360 | if (!CachedFakeTopLevelModule) { |
| 1361 | CachedFakeTopLevelModule = |
| 1362 | PP.getHeaderSearchInfo().getModuleMap().findOrCreateModule( |
| 1363 | "<top-level>", nullptr, false, false).first; |
| 1364 | |
| 1365 | auto &SrcMgr = PP.getSourceManager(); |
| 1366 | SourceLocation StartLoc = |
| 1367 | SrcMgr.getLocForStartOfFile(SrcMgr.getMainFileID()); |
| 1368 | auto &TopLevel = |
| 1369 | VisibleModulesStack.empty() ? VisibleModules : VisibleModulesStack[0]; |
| 1370 | TopLevel.setVisible(CachedFakeTopLevelModule, StartLoc); |
| 1371 | } |
| 1372 | |
| 1373 | M = CachedFakeTopLevelModule; |
| 1374 | } |
| 1375 | |
| 1376 | if (M) |
| 1377 | Entity->setLocalOwningModule(M); |
| 1378 | return M; |
| 1379 | } |
| 1380 | |
Richard Smith | d9ba224 | 2015-05-07 03:54:19 +0000 | [diff] [blame] | 1381 | void Sema::makeMergedDefinitionVisible(NamedDecl *ND, SourceLocation Loc) { |
Richard Smith | 87bb569 | 2015-06-09 00:35:49 +0000 | [diff] [blame] | 1382 | if (auto *M = PP.getModuleContainingLocation(Loc)) |
| 1383 | Context.mergeDefinitionIntoModule(ND, M); |
| 1384 | else |
| 1385 | // We're not building a module; just make the definition visible. |
| 1386 | ND->setHidden(false); |
Richard Smith | 63e09bf | 2015-06-17 20:39:41 +0000 | [diff] [blame] | 1387 | |
| 1388 | // If ND is a template declaration, make the template parameters |
| 1389 | // visible too. They're not (necessarily) within a mergeable DeclContext. |
| 1390 | if (auto *TD = dyn_cast<TemplateDecl>(ND)) |
| 1391 | for (auto *Param : *TD->getTemplateParameters()) |
| 1392 | makeMergedDefinitionVisible(Param, Loc); |
Richard Smith | d9ba224 | 2015-05-07 03:54:19 +0000 | [diff] [blame] | 1393 | } |
| 1394 | |
Richard Smith | 0e5d7b8 | 2013-07-25 23:08:39 +0000 | [diff] [blame] | 1395 | /// \brief Find the module in which the given declaration was defined. |
Richard Smith | 4241314 | 2015-05-15 20:05:43 +0000 | [diff] [blame] | 1396 | static Module *getDefiningModule(Sema &S, Decl *Entity) { |
Richard Smith | 0e5d7b8 | 2013-07-25 23:08:39 +0000 | [diff] [blame] | 1397 | if (FunctionDecl *FD = dyn_cast<FunctionDecl>(Entity)) { |
| 1398 | // If this function was instantiated from a template, the defining module is |
| 1399 | // the module containing the pattern. |
| 1400 | if (FunctionDecl *Pattern = FD->getTemplateInstantiationPattern()) |
| 1401 | Entity = Pattern; |
| 1402 | } else if (CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(Entity)) { |
Reid Kleckner | e7367d6 | 2014-10-14 20:28:40 +0000 | [diff] [blame] | 1403 | if (CXXRecordDecl *Pattern = RD->getTemplateInstantiationPattern()) |
| 1404 | Entity = Pattern; |
Richard Smith | 0e5d7b8 | 2013-07-25 23:08:39 +0000 | [diff] [blame] | 1405 | } else if (EnumDecl *ED = dyn_cast<EnumDecl>(Entity)) { |
| 1406 | if (MemberSpecializationInfo *MSInfo = ED->getMemberSpecializationInfo()) |
| 1407 | Entity = getInstantiatedFrom(ED, MSInfo); |
| 1408 | } else if (VarDecl *VD = dyn_cast<VarDecl>(Entity)) { |
| 1409 | // FIXME: Map from variable template specializations back to the template. |
| 1410 | if (MemberSpecializationInfo *MSInfo = VD->getMemberSpecializationInfo()) |
| 1411 | Entity = getInstantiatedFrom(VD, MSInfo); |
| 1412 | } |
| 1413 | |
| 1414 | // Walk up to the containing context. That might also have been instantiated |
| 1415 | // from a template. |
| 1416 | DeclContext *Context = Entity->getDeclContext(); |
| 1417 | if (Context->isFileContext()) |
Richard Smith | 4241314 | 2015-05-15 20:05:43 +0000 | [diff] [blame] | 1418 | return S.getOwningModule(Entity); |
| 1419 | return getDefiningModule(S, cast<Decl>(Context)); |
Richard Smith | 0e5d7b8 | 2013-07-25 23:08:39 +0000 | [diff] [blame] | 1420 | } |
| 1421 | |
| 1422 | llvm::DenseSet<Module*> &Sema::getLookupModules() { |
| 1423 | unsigned N = ActiveTemplateInstantiations.size(); |
| 1424 | for (unsigned I = ActiveTemplateInstantiationLookupModules.size(); |
| 1425 | I != N; ++I) { |
Richard Smith | 4241314 | 2015-05-15 20:05:43 +0000 | [diff] [blame] | 1426 | Module *M = |
| 1427 | getDefiningModule(*this, ActiveTemplateInstantiations[I].Entity); |
Richard Smith | 0e5d7b8 | 2013-07-25 23:08:39 +0000 | [diff] [blame] | 1428 | if (M && !LookupModulesCache.insert(M).second) |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1429 | M = nullptr; |
Richard Smith | 0e5d7b8 | 2013-07-25 23:08:39 +0000 | [diff] [blame] | 1430 | ActiveTemplateInstantiationLookupModules.push_back(M); |
| 1431 | } |
| 1432 | return LookupModulesCache; |
| 1433 | } |
| 1434 | |
Richard Smith | 4241314 | 2015-05-15 20:05:43 +0000 | [diff] [blame] | 1435 | bool Sema::hasVisibleMergedDefinition(NamedDecl *Def) { |
| 1436 | for (Module *Merged : Context.getModulesWithMergedDefinition(Def)) |
| 1437 | if (isModuleVisible(Merged)) |
| 1438 | return true; |
| 1439 | return false; |
| 1440 | } |
| 1441 | |
Richard Smith | e7bd6de | 2015-06-10 20:30:23 +0000 | [diff] [blame] | 1442 | template<typename ParmDecl> |
Richard Smith | 35c1df5 | 2015-06-17 20:16:32 +0000 | [diff] [blame] | 1443 | static bool |
| 1444 | hasVisibleDefaultArgument(Sema &S, const ParmDecl *D, |
| 1445 | llvm::SmallVectorImpl<Module *> *Modules) { |
Richard Smith | e7bd6de | 2015-06-10 20:30:23 +0000 | [diff] [blame] | 1446 | if (!D->hasDefaultArgument()) |
| 1447 | return false; |
| 1448 | |
| 1449 | while (D) { |
| 1450 | auto &DefaultArg = D->getDefaultArgStorage(); |
| 1451 | if (!DefaultArg.isInherited() && S.isVisible(D)) |
| 1452 | return true; |
| 1453 | |
Richard Smith | 63e09bf | 2015-06-17 20:39:41 +0000 | [diff] [blame] | 1454 | if (!DefaultArg.isInherited() && Modules) { |
| 1455 | auto *NonConstD = const_cast<ParmDecl*>(D); |
| 1456 | Modules->push_back(S.getOwningModule(NonConstD)); |
| 1457 | const auto &Merged = S.Context.getModulesWithMergedDefinition(NonConstD); |
| 1458 | Modules->insert(Modules->end(), Merged.begin(), Merged.end()); |
| 1459 | } |
Richard Smith | 35c1df5 | 2015-06-17 20:16:32 +0000 | [diff] [blame] | 1460 | |
Richard Smith | e7bd6de | 2015-06-10 20:30:23 +0000 | [diff] [blame] | 1461 | // If there was a previous default argument, maybe its parameter is visible. |
| 1462 | D = DefaultArg.getInheritedFrom(); |
| 1463 | } |
| 1464 | return false; |
| 1465 | } |
| 1466 | |
Richard Smith | 35c1df5 | 2015-06-17 20:16:32 +0000 | [diff] [blame] | 1467 | bool Sema::hasVisibleDefaultArgument(const NamedDecl *D, |
| 1468 | llvm::SmallVectorImpl<Module *> *Modules) { |
Richard Smith | e7bd6de | 2015-06-10 20:30:23 +0000 | [diff] [blame] | 1469 | if (auto *P = dyn_cast<TemplateTypeParmDecl>(D)) |
Richard Smith | 35c1df5 | 2015-06-17 20:16:32 +0000 | [diff] [blame] | 1470 | return ::hasVisibleDefaultArgument(*this, P, Modules); |
Richard Smith | e7bd6de | 2015-06-10 20:30:23 +0000 | [diff] [blame] | 1471 | if (auto *P = dyn_cast<NonTypeTemplateParmDecl>(D)) |
Richard Smith | 35c1df5 | 2015-06-17 20:16:32 +0000 | [diff] [blame] | 1472 | return ::hasVisibleDefaultArgument(*this, P, Modules); |
| 1473 | return ::hasVisibleDefaultArgument(*this, cast<TemplateTemplateParmDecl>(D), |
| 1474 | Modules); |
Richard Smith | e7bd6de | 2015-06-10 20:30:23 +0000 | [diff] [blame] | 1475 | } |
| 1476 | |
Richard Smith | 6739a10 | 2016-05-05 00:56:12 +0000 | [diff] [blame] | 1477 | bool Sema::hasVisibleMemberSpecialization( |
| 1478 | const NamedDecl *D, llvm::SmallVectorImpl<Module *> *Modules) { |
| 1479 | assert(isa<CXXRecordDecl>(D->getDeclContext()) && |
| 1480 | "not a member specialization"); |
| 1481 | for (auto *Redecl : D->redecls()) { |
| 1482 | // If the specialization is declared at namespace scope, then it's a member |
| 1483 | // specialization declaration. If it's lexically inside the class |
| 1484 | // definition then it was instantiated. |
| 1485 | // |
| 1486 | // FIXME: This is a hack. There should be a better way to determine this. |
| 1487 | // FIXME: What about MS-style explicit specializations declared within a |
| 1488 | // class definition? |
| 1489 | if (Redecl->getLexicalDeclContext()->isFileContext()) { |
| 1490 | auto *NonConstR = const_cast<NamedDecl*>(cast<NamedDecl>(Redecl)); |
| 1491 | |
| 1492 | if (isVisible(NonConstR)) |
| 1493 | return true; |
| 1494 | |
| 1495 | if (Modules) { |
| 1496 | Modules->push_back(getOwningModule(NonConstR)); |
| 1497 | const auto &Merged = Context.getModulesWithMergedDefinition(NonConstR); |
| 1498 | Modules->insert(Modules->end(), Merged.begin(), Merged.end()); |
| 1499 | } |
| 1500 | } |
| 1501 | } |
| 1502 | |
| 1503 | return false; |
| 1504 | } |
| 1505 | |
Richard Smith | 0e5d7b8 | 2013-07-25 23:08:39 +0000 | [diff] [blame] | 1506 | /// \brief Determine whether a declaration is visible to name lookup. |
| 1507 | /// |
| 1508 | /// This routine determines whether the declaration D is visible in the current |
| 1509 | /// lookup context, taking into account the current template instantiation |
| 1510 | /// stack. During template instantiation, a declaration is visible if it is |
| 1511 | /// visible from a module containing any entity on the template instantiation |
| 1512 | /// path (by instantiating a template, you allow it to see the declarations that |
| 1513 | /// your module can see, including those later on in your module). |
| 1514 | bool LookupResult::isVisibleSlow(Sema &SemaRef, NamedDecl *D) { |
Richard Smith | be3980b | 2015-03-27 00:41:57 +0000 | [diff] [blame] | 1515 | assert(D->isHidden() && "should not call this: not in slow case"); |
Richard Smith | 5196a17 | 2015-08-24 03:38:11 +0000 | [diff] [blame] | 1516 | Module *DeclModule = nullptr; |
| 1517 | |
| 1518 | if (SemaRef.getLangOpts().ModulesLocalVisibility) { |
| 1519 | DeclModule = SemaRef.getOwningModule(D); |
| 1520 | if (!DeclModule) { |
| 1521 | // getOwningModule() may have decided the declaration should not be hidden. |
| 1522 | assert(!D->isHidden() && "hidden decl not from a module"); |
Richard Smith | 4241314 | 2015-05-15 20:05:43 +0000 | [diff] [blame] | 1523 | return true; |
Richard Smith | 5196a17 | 2015-08-24 03:38:11 +0000 | [diff] [blame] | 1524 | } |
| 1525 | |
| 1526 | // If the owning module is visible, and the decl is not module private, |
| 1527 | // then the decl is visible too. (Module private is ignored within the same |
| 1528 | // top-level module.) |
| 1529 | if ((!D->isFromASTFile() || !D->isModulePrivate()) && |
| 1530 | (SemaRef.isModuleVisible(DeclModule) || |
| 1531 | SemaRef.hasVisibleMergedDefinition(D))) |
Richard Smith | 4241314 | 2015-05-15 20:05:43 +0000 | [diff] [blame] | 1532 | return true; |
| 1533 | } |
Richard Smith | 0e5d7b8 | 2013-07-25 23:08:39 +0000 | [diff] [blame] | 1534 | |
Richard Smith | be3980b | 2015-03-27 00:41:57 +0000 | [diff] [blame] | 1535 | // If this declaration is not at namespace scope nor module-private, |
| 1536 | // then it is visible if its lexical parent has a visible definition. |
| 1537 | DeclContext *DC = D->getLexicalDeclContext(); |
| 1538 | if (!D->isModulePrivate() && |
| 1539 | DC && !DC->isFileContext() && !isa<LinkageSpecDecl>(DC)) { |
Richard Smith | c7d48d1 | 2015-05-20 17:50:35 +0000 | [diff] [blame] | 1540 | // For a parameter, check whether our current template declaration's |
| 1541 | // lexical context is visible, not whether there's some other visible |
| 1542 | // definition of it, because parameters aren't "within" the definition. |
| 1543 | if ((D->isTemplateParameter() || isa<ParmVarDecl>(D)) |
| 1544 | ? isVisible(SemaRef, cast<NamedDecl>(DC)) |
| 1545 | : SemaRef.hasVisibleDefinition(cast<NamedDecl>(DC))) { |
Richard Smith | 4241314 | 2015-05-15 20:05:43 +0000 | [diff] [blame] | 1546 | if (SemaRef.ActiveTemplateInstantiations.empty() && |
| 1547 | // FIXME: Do something better in this case. |
| 1548 | !SemaRef.getLangOpts().ModulesLocalVisibility) { |
Richard Smith | be3980b | 2015-03-27 00:41:57 +0000 | [diff] [blame] | 1549 | // Cache the fact that this declaration is implicitly visible because |
| 1550 | // its parent has a visible definition. |
| 1551 | D->setHidden(false); |
| 1552 | } |
| 1553 | return true; |
| 1554 | } |
| 1555 | return false; |
| 1556 | } |
| 1557 | |
Richard Smith | 0e5d7b8 | 2013-07-25 23:08:39 +0000 | [diff] [blame] | 1558 | // Find the extra places where we need to look. |
| 1559 | llvm::DenseSet<Module*> &LookupModules = SemaRef.getLookupModules(); |
| 1560 | if (LookupModules.empty()) |
| 1561 | return false; |
| 1562 | |
Richard Smith | 5196a17 | 2015-08-24 03:38:11 +0000 | [diff] [blame] | 1563 | if (!DeclModule) { |
| 1564 | DeclModule = SemaRef.getOwningModule(D); |
| 1565 | assert(DeclModule && "hidden decl not from a module"); |
| 1566 | } |
| 1567 | |
Richard Smith | 0e5d7b8 | 2013-07-25 23:08:39 +0000 | [diff] [blame] | 1568 | // If our lookup set contains the decl's module, it's visible. |
| 1569 | if (LookupModules.count(DeclModule)) |
| 1570 | return true; |
| 1571 | |
| 1572 | // If the declaration isn't exported, it's not visible in any other module. |
| 1573 | if (D->isModulePrivate()) |
| 1574 | return false; |
| 1575 | |
| 1576 | // Check whether DeclModule is transitively exported to an import of |
| 1577 | // the lookup set. |
Yaron Keren | 941ad90 | 2015-11-23 19:28:42 +0000 | [diff] [blame] | 1578 | return std::any_of(LookupModules.begin(), LookupModules.end(), |
Yaron Keren | 4c31fcf | 2015-11-24 20:18:24 +0000 | [diff] [blame] | 1579 | [&](Module *M) { return M->isModuleVisible(DeclModule); }); |
Richard Smith | 0e5d7b8 | 2013-07-25 23:08:39 +0000 | [diff] [blame] | 1580 | } |
| 1581 | |
Richard Smith | 4241314 | 2015-05-15 20:05:43 +0000 | [diff] [blame] | 1582 | bool Sema::isVisibleSlow(const NamedDecl *D) { |
| 1583 | return LookupResult::isVisible(*this, const_cast<NamedDecl*>(D)); |
| 1584 | } |
| 1585 | |
Richard Smith | 10568d8 | 2015-11-17 03:02:41 +0000 | [diff] [blame] | 1586 | bool Sema::shouldLinkPossiblyHiddenDecl(LookupResult &R, const NamedDecl *New) { |
| 1587 | for (auto *D : R) { |
| 1588 | if (isVisible(D)) |
| 1589 | return true; |
| 1590 | } |
| 1591 | return New->isExternallyVisible(); |
| 1592 | } |
| 1593 | |
Douglas Gregor | 4a81456 | 2011-12-14 16:03:29 +0000 | [diff] [blame] | 1594 | /// \brief Retrieve the visible declaration corresponding to D, if any. |
| 1595 | /// |
| 1596 | /// This routine determines whether the declaration D is visible in the current |
| 1597 | /// module, with the current imports. If not, it checks whether any |
| 1598 | /// redeclaration of D is visible, and if so, returns that declaration. |
Richard Smith | 0e5d7b8 | 2013-07-25 23:08:39 +0000 | [diff] [blame] | 1599 | /// |
Douglas Gregor | 4a81456 | 2011-12-14 16:03:29 +0000 | [diff] [blame] | 1600 | /// \returns D, or a visible previous declaration of D, whichever is more recent |
| 1601 | /// and visible. If no declaration of D is visible, returns null. |
Richard Smith | e156254d | 2013-08-20 20:35:18 +0000 | [diff] [blame] | 1602 | static NamedDecl *findAcceptableDecl(Sema &SemaRef, NamedDecl *D) { |
| 1603 | assert(!LookupResult::isVisible(SemaRef, D) && "not in slow case"); |
Richard Smith | 0e5d7b8 | 2013-07-25 23:08:39 +0000 | [diff] [blame] | 1604 | |
Aaron Ballman | 86c9390 | 2014-03-06 23:45:36 +0000 | [diff] [blame] | 1605 | for (auto RD : D->redecls()) { |
Richard Smith | 4083e03 | 2016-02-17 21:52:44 +0000 | [diff] [blame] | 1606 | // Don't bother with extra checks if we already know this one isn't visible. |
| 1607 | if (RD == D) |
| 1608 | continue; |
| 1609 | |
Richard Smith | 6739a10 | 2016-05-05 00:56:12 +0000 | [diff] [blame] | 1610 | auto ND = cast<NamedDecl>(RD); |
| 1611 | // FIXME: This is wrong in the case where the previous declaration is not |
| 1612 | // visible in the same scope as D. This needs to be done much more |
| 1613 | // carefully. |
| 1614 | if (LookupResult::isVisible(SemaRef, ND)) |
| 1615 | return ND; |
Douglas Gregor | 4a81456 | 2011-12-14 16:03:29 +0000 | [diff] [blame] | 1616 | } |
Richard Smith | 0e5d7b8 | 2013-07-25 23:08:39 +0000 | [diff] [blame] | 1617 | |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1618 | return nullptr; |
Douglas Gregor | 4a81456 | 2011-12-14 16:03:29 +0000 | [diff] [blame] | 1619 | } |
| 1620 | |
Richard Smith | 6739a10 | 2016-05-05 00:56:12 +0000 | [diff] [blame] | 1621 | bool Sema::hasVisibleDeclarationSlow(const NamedDecl *D, |
| 1622 | llvm::SmallVectorImpl<Module *> *Modules) { |
| 1623 | assert(!isVisible(D) && "not in slow case"); |
| 1624 | |
| 1625 | for (auto *Redecl : D->redecls()) { |
| 1626 | auto *NonConstR = const_cast<NamedDecl*>(cast<NamedDecl>(Redecl)); |
| 1627 | if (isVisible(NonConstR)) |
| 1628 | return true; |
| 1629 | |
| 1630 | if (Modules) { |
| 1631 | Modules->push_back(getOwningModule(NonConstR)); |
| 1632 | const auto &Merged = Context.getModulesWithMergedDefinition(NonConstR); |
| 1633 | Modules->insert(Modules->end(), Merged.begin(), Merged.end()); |
| 1634 | } |
| 1635 | } |
| 1636 | |
| 1637 | return false; |
| 1638 | } |
| 1639 | |
Richard Smith | e156254d | 2013-08-20 20:35:18 +0000 | [diff] [blame] | 1640 | NamedDecl *LookupResult::getAcceptableDeclSlow(NamedDecl *D) const { |
Richard Smith | 4083e03 | 2016-02-17 21:52:44 +0000 | [diff] [blame] | 1641 | if (auto *ND = dyn_cast<NamespaceDecl>(D)) { |
| 1642 | // Namespaces are a bit of a special case: we expect there to be a lot of |
| 1643 | // redeclarations of some namespaces, all declarations of a namespace are |
| 1644 | // essentially interchangeable, all declarations are found by name lookup |
| 1645 | // if any is, and namespaces are never looked up during template |
| 1646 | // instantiation. So we benefit from caching the check in this case, and |
| 1647 | // it is correct to do so. |
| 1648 | auto *Key = ND->getCanonicalDecl(); |
| 1649 | if (auto *Acceptable = getSema().VisibleNamespaceCache.lookup(Key)) |
| 1650 | return Acceptable; |
| 1651 | auto *Acceptable = |
| 1652 | isVisible(getSema(), Key) ? Key : findAcceptableDecl(getSema(), Key); |
| 1653 | if (Acceptable) |
| 1654 | getSema().VisibleNamespaceCache.insert(std::make_pair(Key, Acceptable)); |
| 1655 | return Acceptable; |
| 1656 | } |
| 1657 | |
Kaelyn Takata | fc8c61a | 2014-11-11 23:00:42 +0000 | [diff] [blame] | 1658 | return findAcceptableDecl(getSema(), D); |
Richard Smith | e156254d | 2013-08-20 20:35:18 +0000 | [diff] [blame] | 1659 | } |
| 1660 | |
Douglas Gregor | 3407432 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 1661 | /// @brief Perform unqualified name lookup starting from a given |
| 1662 | /// scope. |
| 1663 | /// |
| 1664 | /// Unqualified name lookup (C++ [basic.lookup.unqual], C99 6.2.1) is |
| 1665 | /// used to find names within the current scope. For example, 'x' in |
| 1666 | /// @code |
| 1667 | /// int x; |
| 1668 | /// int f() { |
| 1669 | /// return x; // unqualified name look finds 'x' in the global scope |
| 1670 | /// } |
| 1671 | /// @endcode |
| 1672 | /// |
| 1673 | /// Different lookup criteria can find different names. For example, a |
| 1674 | /// particular scope can have both a struct and a function of the same |
| 1675 | /// name, and each can be found by certain lookup criteria. For more |
| 1676 | /// information about lookup criteria, see the documentation for the |
| 1677 | /// class LookupCriteria. |
| 1678 | /// |
| 1679 | /// @param S The scope from which unqualified name lookup will |
| 1680 | /// begin. If the lookup criteria permits, name lookup may also search |
| 1681 | /// in the parent scopes. |
| 1682 | /// |
James Dennett | 91738ff | 2012-06-22 10:32:46 +0000 | [diff] [blame] | 1683 | /// @param [in,out] R Specifies the lookup to perform (e.g., the name to |
| 1684 | /// look up and the lookup kind), and is updated with the results of lookup |
| 1685 | /// including zero or more declarations and possibly additional information |
| 1686 | /// used to diagnose ambiguities. |
Douglas Gregor | 3407432 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 1687 | /// |
James Dennett | 91738ff | 2012-06-22 10:32:46 +0000 | [diff] [blame] | 1688 | /// @returns \c true if lookup succeeded and false otherwise. |
John McCall | 27b18f8 | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 1689 | bool Sema::LookupName(LookupResult &R, Scope *S, bool AllowBuiltinCreation) { |
| 1690 | DeclarationName Name = R.getLookupName(); |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1691 | if (!Name) return false; |
Douglas Gregor | 3407432 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 1692 | |
John McCall | 27b18f8 | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 1693 | LookupNameKind NameKind = R.getLookupKind(); |
| 1694 | |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 1695 | if (!getLangOpts().CPlusPlus) { |
Douglas Gregor | 3407432 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 1696 | // Unqualified name lookup in C/Objective-C is purely lexical, so |
| 1697 | // search in the declarations attached to the name. |
John McCall | ea305ed | 2009-12-18 10:40:03 +0000 | [diff] [blame] | 1698 | if (NameKind == Sema::LookupRedeclarationWithLinkage) { |
Douglas Gregor | eddf433 | 2009-02-24 20:03:32 +0000 | [diff] [blame] | 1699 | // Find the nearest non-transparent declaration scope. |
| 1700 | while (!(S->getFlags() & Scope::DeclScope) || |
Ted Kremenek | c37877d | 2013-10-08 17:08:03 +0000 | [diff] [blame] | 1701 | (S->getEntity() && S->getEntity()->isTransparentContext())) |
Douglas Gregor | eddf433 | 2009-02-24 20:03:32 +0000 | [diff] [blame] | 1702 | S = S->getParent(); |
Douglas Gregor | ed8f288 | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 1703 | } |
| 1704 | |
Richard Smith | 541b38b | 2013-09-20 01:15:31 +0000 | [diff] [blame] | 1705 | // When performing a scope lookup, we want to find local extern decls. |
| 1706 | FindLocalExternScope FindLocals(R); |
| 1707 | |
Douglas Gregor | 3407432 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 1708 | // Scan up the scope chain looking for a decl that matches this |
| 1709 | // identifier that is in the appropriate namespace. This search |
| 1710 | // should not take long, as shadowing of names is uncommon, and |
| 1711 | // deep shadowing is extremely uncommon. |
Douglas Gregor | eddf433 | 2009-02-24 20:03:32 +0000 | [diff] [blame] | 1712 | bool LeftStartingScope = false; |
| 1713 | |
Douglas Gregor | ed8f288 | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 1714 | for (IdentifierResolver::iterator I = IdResolver.begin(Name), |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1715 | IEnd = IdResolver.end(); |
Douglas Gregor | ed8f288 | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 1716 | I != IEnd; ++I) |
Richard Smith | 0e5d7b8 | 2013-07-25 23:08:39 +0000 | [diff] [blame] | 1717 | if (NamedDecl *D = R.getAcceptableDecl(*I)) { |
Douglas Gregor | eddf433 | 2009-02-24 20:03:32 +0000 | [diff] [blame] | 1718 | if (NameKind == LookupRedeclarationWithLinkage) { |
| 1719 | // Determine whether this (or a previous) declaration is |
| 1720 | // out-of-scope. |
John McCall | 4887165 | 2010-08-21 09:40:31 +0000 | [diff] [blame] | 1721 | if (!LeftStartingScope && !S->isDeclScope(*I)) |
Douglas Gregor | eddf433 | 2009-02-24 20:03:32 +0000 | [diff] [blame] | 1722 | LeftStartingScope = true; |
| 1723 | |
| 1724 | // If we found something outside of our starting scope that |
| 1725 | // does not have linkage, skip it. |
Richard Smith | 1c34fb7 | 2013-08-13 18:18:50 +0000 | [diff] [blame] | 1726 | if (LeftStartingScope && !((*I)->hasLinkage())) { |
| 1727 | R.setShadowed(); |
Douglas Gregor | eddf433 | 2009-02-24 20:03:32 +0000 | [diff] [blame] | 1728 | continue; |
Richard Smith | 1c34fb7 | 2013-08-13 18:18:50 +0000 | [diff] [blame] | 1729 | } |
Douglas Gregor | eddf433 | 2009-02-24 20:03:32 +0000 | [diff] [blame] | 1730 | } |
Fariborz Jahanian | 7f4427f | 2011-07-12 17:16:56 +0000 | [diff] [blame] | 1731 | else if (NameKind == LookupObjCImplicitSelfParam && |
| 1732 | !isa<ImplicitParamDecl>(*I)) |
| 1733 | continue; |
Richard Smith | 0e5d7b8 | 2013-07-25 23:08:39 +0000 | [diff] [blame] | 1734 | |
Douglas Gregor | 4a81456 | 2011-12-14 16:03:29 +0000 | [diff] [blame] | 1735 | R.addDecl(D); |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1736 | |
Douglas Gregor | b59643b | 2012-01-03 23:26:26 +0000 | [diff] [blame] | 1737 | // Check whether there are any other declarations with the same name |
| 1738 | // and in the same scope. |
Douglas Gregor | 9b7b391 | 2012-01-04 16:44:10 +0000 | [diff] [blame] | 1739 | if (I != IEnd) { |
Douglas Gregor | 81bd038 | 2012-01-13 23:06:53 +0000 | [diff] [blame] | 1740 | // Find the scope in which this declaration was declared (if it |
| 1741 | // actually exists in a Scope). |
| 1742 | while (S && !S->isDeclScope(D)) |
| 1743 | S = S->getParent(); |
| 1744 | |
| 1745 | // If the scope containing the declaration is the translation unit, |
| 1746 | // then we'll need to perform our checks based on the matching |
| 1747 | // DeclContexts rather than matching scopes. |
| 1748 | if (S && isNamespaceOrTranslationUnitScope(S)) |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1749 | S = nullptr; |
Douglas Gregor | 81bd038 | 2012-01-13 23:06:53 +0000 | [diff] [blame] | 1750 | |
| 1751 | // Compute the DeclContext, if we need it. |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 1752 | DeclContext *DC = nullptr; |
Douglas Gregor | 81bd038 | 2012-01-13 23:06:53 +0000 | [diff] [blame] | 1753 | if (!S) |
| 1754 | DC = (*I)->getDeclContext()->getRedeclContext(); |
| 1755 | |
Douglas Gregor | 9b7b391 | 2012-01-04 16:44:10 +0000 | [diff] [blame] | 1756 | IdentifierResolver::iterator LastI = I; |
| 1757 | for (++LastI; LastI != IEnd; ++LastI) { |
Douglas Gregor | 81bd038 | 2012-01-13 23:06:53 +0000 | [diff] [blame] | 1758 | if (S) { |
| 1759 | // Match based on scope. |
| 1760 | if (!S->isDeclScope(*LastI)) |
| 1761 | break; |
| 1762 | } else { |
| 1763 | // Match based on DeclContext. |
| 1764 | DeclContext *LastDC |
| 1765 | = (*LastI)->getDeclContext()->getRedeclContext(); |
| 1766 | if (!LastDC->Equals(DC)) |
| 1767 | break; |
| 1768 | } |
Richard Smith | 0e5d7b8 | 2013-07-25 23:08:39 +0000 | [diff] [blame] | 1769 | |
| 1770 | // If the declaration is in the right namespace and visible, add it. |
| 1771 | if (NamedDecl *LastD = R.getAcceptableDecl(*LastI)) |
| 1772 | R.addDecl(LastD); |
Douglas Gregor | 9b7b391 | 2012-01-04 16:44:10 +0000 | [diff] [blame] | 1773 | } |
Douglas Gregor | 4e5cbdc | 2009-02-11 23:02:49 +0000 | [diff] [blame] | 1774 | |
Douglas Gregor | 9b7b391 | 2012-01-04 16:44:10 +0000 | [diff] [blame] | 1775 | R.resolveKind(); |
Douglas Gregor | 4e5cbdc | 2009-02-11 23:02:49 +0000 | [diff] [blame] | 1776 | } |
Richard Smith | 541b38b | 2013-09-20 01:15:31 +0000 | [diff] [blame] | 1777 | |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1778 | return true; |
Douglas Gregor | 4e5cbdc | 2009-02-11 23:02:49 +0000 | [diff] [blame] | 1779 | } |
Douglas Gregor | 3407432 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 1780 | } else { |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 1781 | // Perform C++ unqualified name lookup. |
John McCall | 27b18f8 | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 1782 | if (CppLookupName(R, S)) |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1783 | return true; |
Douglas Gregor | 3407432 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 1784 | } |
| 1785 | |
| 1786 | // If we didn't find a use of this identifier, and if the identifier |
| 1787 | // corresponds to a compiler builtin, create the decl object for the builtin |
| 1788 | // now, injecting it into translation unit scope, and return it. |
Axel Naumann | 43dec14 | 2011-04-13 13:19:46 +0000 | [diff] [blame] | 1789 | if (AllowBuiltinCreation && LookupBuiltin(*this, R)) |
| 1790 | return true; |
Douglas Gregor | b9063fc | 2009-02-13 23:20:09 +0000 | [diff] [blame] | 1791 | |
Axel Naumann | 016538a | 2011-02-24 16:47:47 +0000 | [diff] [blame] | 1792 | // If we didn't find a use of this identifier, the ExternalSource |
| 1793 | // may be able to handle the situation. |
| 1794 | // Note: some lookup failures are expected! |
| 1795 | // See e.g. R.isForRedeclaration(). |
| 1796 | return (ExternalSource && ExternalSource->LookupUnqualified(R, S)); |
Douglas Gregor | 3407432 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 1797 | } |
| 1798 | |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 1799 | /// @brief Perform qualified name lookup in the namespaces nominated by |
| 1800 | /// using directives by the given context. |
| 1801 | /// |
| 1802 | /// C++98 [namespace.qual]p2: |
James Dennett | 51a8d8b | 2012-06-19 21:05:49 +0000 | [diff] [blame] | 1803 | /// 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] | 1804 | /// (where X is the global namespace), let S be the set of all |
| 1805 | /// declarations of m in X and in the transitive closure of all |
| 1806 | /// namespaces nominated by using-directives in X and its used |
| 1807 | /// namespaces, except that using-directives are ignored in any |
| 1808 | /// namespace, including X, directly containing one or more |
| 1809 | /// declarations of m. No namespace is searched more than once in |
| 1810 | /// the lookup of a name. If S is the empty set, the program is |
| 1811 | /// ill-formed. Otherwise, if S has exactly one member, or if the |
| 1812 | /// context of the reference is a using-declaration |
| 1813 | /// (namespace.udecl), S is the required set of declarations of |
| 1814 | /// m. Otherwise if the use of m is not one that allows a unique |
| 1815 | /// declaration to be chosen from S, the program is ill-formed. |
James Dennett | 51a8d8b | 2012-06-19 21:05:49 +0000 | [diff] [blame] | 1816 | /// |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 1817 | /// C++98 [namespace.qual]p5: |
| 1818 | /// During the lookup of a qualified namespace member name, if the |
| 1819 | /// lookup finds more than one declaration of the member, and if one |
| 1820 | /// declaration introduces a class name or enumeration name and the |
| 1821 | /// other declarations either introduce the same object, the same |
| 1822 | /// enumerator or a set of functions, the non-type name hides the |
| 1823 | /// class or enumeration name if and only if the declarations are |
| 1824 | /// from the same namespace; otherwise (the declarations are from |
| 1825 | /// different namespaces), the program is ill-formed. |
Douglas Gregor | d3a5918 | 2010-02-12 05:48:04 +0000 | [diff] [blame] | 1826 | static bool LookupQualifiedNameInUsingDirectives(Sema &S, LookupResult &R, |
John McCall | 27b18f8 | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 1827 | DeclContext *StartDC) { |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 1828 | assert(StartDC->isFileContext() && "start context is not a file context"); |
| 1829 | |
Aaron Ballman | 804a7fb | 2014-03-17 17:14:12 +0000 | [diff] [blame] | 1830 | DeclContext::udir_range UsingDirectives = StartDC->using_directives(); |
| 1831 | if (UsingDirectives.begin() == UsingDirectives.end()) return false; |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 1832 | |
| 1833 | // We have at least added all these contexts to the queue. |
Benjamin Kramer | 3adbe1c | 2012-02-23 16:06:01 +0000 | [diff] [blame] | 1834 | llvm::SmallPtrSet<DeclContext*, 8> Visited; |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 1835 | Visited.insert(StartDC); |
| 1836 | |
| 1837 | // We have not yet looked into these namespaces, much less added |
| 1838 | // their "using-children" to the queue. |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1839 | SmallVector<NamespaceDecl*, 8> Queue; |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 1840 | |
| 1841 | // We have already looked into the initial namespace; seed the queue |
| 1842 | // with its using-children. |
Aaron Ballman | 804a7fb | 2014-03-17 17:14:12 +0000 | [diff] [blame] | 1843 | for (auto *I : UsingDirectives) { |
| 1844 | NamespaceDecl *ND = I->getNominatedNamespace()->getOriginalNamespace(); |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 1845 | if (Visited.insert(ND).second) |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 1846 | Queue.push_back(ND); |
| 1847 | } |
| 1848 | |
| 1849 | // The easiest way to implement the restriction in [namespace.qual]p5 |
| 1850 | // is to check whether any of the individual results found a tag |
| 1851 | // and, if so, to declare an ambiguity if the final result is not |
| 1852 | // a tag. |
| 1853 | bool FoundTag = false; |
| 1854 | bool FoundNonTag = false; |
| 1855 | |
John McCall | 5cebab1 | 2009-11-18 07:57:50 +0000 | [diff] [blame] | 1856 | LookupResult LocalR(LookupResult::Temporary, R); |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 1857 | |
| 1858 | bool Found = false; |
| 1859 | while (!Queue.empty()) { |
Robert Wilhelm | 25284cc | 2013-08-23 16:11:15 +0000 | [diff] [blame] | 1860 | NamespaceDecl *ND = Queue.pop_back_val(); |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 1861 | |
| 1862 | // We go through some convolutions here to avoid copying results |
| 1863 | // between LookupResults. |
| 1864 | bool UseLocal = !R.empty(); |
John McCall | 5cebab1 | 2009-11-18 07:57:50 +0000 | [diff] [blame] | 1865 | LookupResult &DirectR = UseLocal ? LocalR : R; |
Douglas Gregor | d3a5918 | 2010-02-12 05:48:04 +0000 | [diff] [blame] | 1866 | bool FoundDirect = LookupDirect(S, DirectR, ND); |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 1867 | |
| 1868 | if (FoundDirect) { |
| 1869 | // First do any local hiding. |
| 1870 | DirectR.resolveKind(); |
| 1871 | |
| 1872 | // If the local result is a tag, remember that. |
| 1873 | if (DirectR.isSingleTagDecl()) |
| 1874 | FoundTag = true; |
| 1875 | else |
| 1876 | FoundNonTag = true; |
| 1877 | |
| 1878 | // Append the local results to the total results if necessary. |
| 1879 | if (UseLocal) { |
| 1880 | R.addAllDecls(LocalR); |
| 1881 | LocalR.clear(); |
| 1882 | } |
| 1883 | } |
| 1884 | |
| 1885 | // If we find names in this namespace, ignore its using directives. |
| 1886 | if (FoundDirect) { |
| 1887 | Found = true; |
| 1888 | continue; |
| 1889 | } |
| 1890 | |
Aaron Ballman | 804a7fb | 2014-03-17 17:14:12 +0000 | [diff] [blame] | 1891 | for (auto I : ND->using_directives()) { |
Aaron Ballman | 63ab760 | 2014-03-07 13:44:44 +0000 | [diff] [blame] | 1892 | NamespaceDecl *Nom = I->getNominatedNamespace(); |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 1893 | if (Visited.insert(Nom).second) |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 1894 | Queue.push_back(Nom); |
| 1895 | } |
| 1896 | } |
| 1897 | |
| 1898 | if (Found) { |
| 1899 | if (FoundTag && FoundNonTag) |
| 1900 | R.setAmbiguousQualifiedTagHiding(); |
| 1901 | else |
| 1902 | R.resolveKind(); |
| 1903 | } |
| 1904 | |
| 1905 | return Found; |
| 1906 | } |
| 1907 | |
Douglas Gregor | 3998219 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 1908 | /// \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] | 1909 | static bool LookupAnyMember(const CXXBaseSpecifier *Specifier, |
Benjamin Kramer | 6e4f6e1 | 2015-07-25 15:07:25 +0000 | [diff] [blame] | 1910 | CXXBasePath &Path, DeclarationName Name) { |
Douglas Gregor | 3998219 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 1911 | RecordDecl *BaseRecord = Specifier->getType()->getAs<RecordType>()->getDecl(); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1912 | |
Benjamin Kramer | 6e4f6e1 | 2015-07-25 15:07:25 +0000 | [diff] [blame] | 1913 | Path.Decls = BaseRecord->lookup(Name); |
David Blaikie | ff7d47a | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 1914 | return !Path.Decls.empty(); |
Douglas Gregor | 3998219 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 1915 | } |
| 1916 | |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1917 | /// \brief Determine whether the given set of member declarations contains only |
Douglas Gregor | c0d2490 | 2010-10-22 22:08:47 +0000 | [diff] [blame] | 1918 | /// static members, nested types, and enumerators. |
| 1919 | template<typename InputIterator> |
| 1920 | static bool HasOnlyStaticMembers(InputIterator First, InputIterator Last) { |
| 1921 | Decl *D = (*First)->getUnderlyingDecl(); |
| 1922 | if (isa<VarDecl>(D) || isa<TypeDecl>(D) || isa<EnumConstantDecl>(D)) |
| 1923 | return true; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1924 | |
Douglas Gregor | c0d2490 | 2010-10-22 22:08:47 +0000 | [diff] [blame] | 1925 | if (isa<CXXMethodDecl>(D)) { |
| 1926 | // Determine whether all of the methods are static. |
| 1927 | bool AllMethodsAreStatic = true; |
| 1928 | for(; First != Last; ++First) { |
| 1929 | D = (*First)->getUnderlyingDecl(); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1930 | |
Douglas Gregor | c0d2490 | 2010-10-22 22:08:47 +0000 | [diff] [blame] | 1931 | if (!isa<CXXMethodDecl>(D)) { |
| 1932 | assert(isa<TagDecl>(D) && "Non-function must be a tag decl"); |
| 1933 | break; |
| 1934 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1935 | |
Douglas Gregor | c0d2490 | 2010-10-22 22:08:47 +0000 | [diff] [blame] | 1936 | if (!cast<CXXMethodDecl>(D)->isStatic()) { |
| 1937 | AllMethodsAreStatic = false; |
| 1938 | break; |
| 1939 | } |
| 1940 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1941 | |
Douglas Gregor | c0d2490 | 2010-10-22 22:08:47 +0000 | [diff] [blame] | 1942 | if (AllMethodsAreStatic) |
| 1943 | return true; |
| 1944 | } |
| 1945 | |
| 1946 | return false; |
| 1947 | } |
| 1948 | |
Douglas Gregor | d0d2ee0 | 2010-01-15 01:44:47 +0000 | [diff] [blame] | 1949 | /// \brief Perform qualified name lookup into a given context. |
Douglas Gregor | 3407432 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 1950 | /// |
| 1951 | /// Qualified name lookup (C++ [basic.lookup.qual]) is used to find |
| 1952 | /// names when the context of those names is explicit specified, e.g., |
Douglas Gregor | d0d2ee0 | 2010-01-15 01:44:47 +0000 | [diff] [blame] | 1953 | /// "std::vector" or "x->member", or as part of unqualified name lookup. |
Douglas Gregor | 3407432 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 1954 | /// |
| 1955 | /// Different lookup criteria can find different names. For example, a |
| 1956 | /// particular scope can have both a struct and a function of the same |
| 1957 | /// name, and each can be found by certain lookup criteria. For more |
| 1958 | /// information about lookup criteria, see the documentation for the |
| 1959 | /// class LookupCriteria. |
| 1960 | /// |
Douglas Gregor | d0d2ee0 | 2010-01-15 01:44:47 +0000 | [diff] [blame] | 1961 | /// \param R captures both the lookup criteria and any lookup results found. |
| 1962 | /// |
| 1963 | /// \param LookupCtx The context in which qualified name lookup will |
Douglas Gregor | 3407432 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 1964 | /// search. If the lookup criteria permits, name lookup may also search |
| 1965 | /// in the parent contexts or (for C++ classes) base classes. |
| 1966 | /// |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 1967 | /// \param InUnqualifiedLookup true if this is qualified name lookup that |
Douglas Gregor | d0d2ee0 | 2010-01-15 01:44:47 +0000 | [diff] [blame] | 1968 | /// occurs as part of unqualified name lookup. |
Douglas Gregor | 3407432 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 1969 | /// |
Douglas Gregor | d0d2ee0 | 2010-01-15 01:44:47 +0000 | [diff] [blame] | 1970 | /// \returns true if lookup succeeded, false if it failed. |
| 1971 | bool Sema::LookupQualifiedName(LookupResult &R, DeclContext *LookupCtx, |
| 1972 | bool InUnqualifiedLookup) { |
Douglas Gregor | 3407432 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 1973 | assert(LookupCtx && "Sema::LookupQualifiedName requires a lookup context"); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1974 | |
John McCall | 27b18f8 | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 1975 | if (!R.getLookupName()) |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1976 | return false; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1977 | |
Douglas Gregor | b7bfe79 | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 1978 | // Make sure that the declaration context is complete. |
| 1979 | assert((!isa<TagDecl>(LookupCtx) || |
| 1980 | LookupCtx->isDependentContext() || |
John McCall | f937c02 | 2011-10-07 06:10:15 +0000 | [diff] [blame] | 1981 | cast<TagDecl>(LookupCtx)->isCompleteDefinition() || |
Richard Smith | 7d137e3 | 2012-03-23 03:33:32 +0000 | [diff] [blame] | 1982 | cast<TagDecl>(LookupCtx)->isBeingDefined()) && |
Douglas Gregor | b7bfe79 | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 1983 | "Declaration context must already be complete!"); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1984 | |
Eugene Leviant | 0d8103e | 2015-11-18 12:48:05 +0000 | [diff] [blame] | 1985 | struct QualifiedLookupInScope { |
| 1986 | bool oldVal; |
| 1987 | DeclContext *Context; |
| 1988 | // Set flag in DeclContext informing debugger that we're looking for qualified name |
| 1989 | QualifiedLookupInScope(DeclContext *ctx) : Context(ctx) { |
| 1990 | oldVal = ctx->setUseQualifiedLookup(); |
| 1991 | } |
| 1992 | ~QualifiedLookupInScope() { |
| 1993 | Context->setUseQualifiedLookup(oldVal); |
| 1994 | } |
| 1995 | } QL(LookupCtx); |
| 1996 | |
Douglas Gregor | d3a5918 | 2010-02-12 05:48:04 +0000 | [diff] [blame] | 1997 | if (LookupDirect(*this, R, LookupCtx)) { |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 1998 | R.resolveKind(); |
John McCall | 553c079 | 2010-01-23 00:46:32 +0000 | [diff] [blame] | 1999 | if (isa<CXXRecordDecl>(LookupCtx)) |
| 2000 | R.setNamingClass(cast<CXXRecordDecl>(LookupCtx)); |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 2001 | return true; |
| 2002 | } |
Douglas Gregor | 3407432 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 2003 | |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 2004 | // Don't descend into implied contexts for redeclarations. |
| 2005 | // C++98 [namespace.qual]p6: |
| 2006 | // In a declaration for a namespace member in which the |
| 2007 | // declarator-id is a qualified-id, given that the qualified-id |
| 2008 | // for the namespace member has the form |
| 2009 | // nested-name-specifier unqualified-id |
| 2010 | // the unqualified-id shall name a member of the namespace |
| 2011 | // designated by the nested-name-specifier. |
| 2012 | // See also [class.mfct]p5 and [class.static.data]p2. |
John McCall | 27b18f8 | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 2013 | if (R.isForRedeclaration()) |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 2014 | return false; |
| 2015 | |
John McCall | 27b18f8 | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 2016 | // If this is a namespace, look it up in the implied namespaces. |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 2017 | if (LookupCtx->isFileContext()) |
Douglas Gregor | d3a5918 | 2010-02-12 05:48:04 +0000 | [diff] [blame] | 2018 | return LookupQualifiedNameInUsingDirectives(*this, R, LookupCtx); |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 2019 | |
Douglas Gregor | b7bfe79 | 2009-09-02 22:59:36 +0000 | [diff] [blame] | 2020 | // 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] | 2021 | // classes, we're done. |
Douglas Gregor | d0d2ee0 | 2010-01-15 01:44:47 +0000 | [diff] [blame] | 2022 | CXXRecordDecl *LookupRec = dyn_cast<CXXRecordDecl>(LookupCtx); |
Douglas Gregor | 5a5fcd8 | 2010-07-01 00:21:21 +0000 | [diff] [blame] | 2023 | if (!LookupRec || !LookupRec->getDefinition()) |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 2024 | return false; |
Douglas Gregor | 960b5bc | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 2025 | |
Douglas Gregor | d0d2ee0 | 2010-01-15 01:44:47 +0000 | [diff] [blame] | 2026 | // If we're performing qualified name lookup into a dependent class, |
| 2027 | // 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] | 2028 | // dependent base classes, then we either have to delay lookup until |
Douglas Gregor | d0d2ee0 | 2010-01-15 01:44:47 +0000 | [diff] [blame] | 2029 | // template instantiation time (at which point all bases will be available) |
| 2030 | // or we have to fail. |
| 2031 | if (!InUnqualifiedLookup && LookupRec->isDependentContext() && |
| 2032 | LookupRec->hasAnyDependentBases()) { |
| 2033 | R.setNotFoundInCurrentInstantiation(); |
| 2034 | return false; |
| 2035 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2036 | |
Douglas Gregor | 960b5bc | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 2037 | // Perform lookup into our base classes. |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 2038 | CXXBasePaths Paths; |
| 2039 | Paths.setOrigin(LookupRec); |
Douglas Gregor | 960b5bc | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 2040 | |
| 2041 | // Look for this member in our base classes |
Benjamin Kramer | 6e4f6e1 | 2015-07-25 15:07:25 +0000 | [diff] [blame] | 2042 | bool (*BaseCallback)(const CXXBaseSpecifier *Specifier, CXXBasePath &Path, |
| 2043 | DeclarationName Name) = nullptr; |
John McCall | 27b18f8 | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 2044 | switch (R.getLookupKind()) { |
Fariborz Jahanian | 7f4427f | 2011-07-12 17:16:56 +0000 | [diff] [blame] | 2045 | case LookupObjCImplicitSelfParam: |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 2046 | case LookupOrdinaryName: |
| 2047 | case LookupMemberName: |
| 2048 | case LookupRedeclarationWithLinkage: |
Richard Smith | 114394f | 2013-08-09 04:35:01 +0000 | [diff] [blame] | 2049 | case LookupLocalFriendName: |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 2050 | BaseCallback = &CXXRecordDecl::FindOrdinaryMember; |
| 2051 | break; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2052 | |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 2053 | case LookupTagName: |
| 2054 | BaseCallback = &CXXRecordDecl::FindTagMember; |
| 2055 | break; |
John McCall | 84d8767 | 2009-12-10 09:41:52 +0000 | [diff] [blame] | 2056 | |
Douglas Gregor | 3998219 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 2057 | case LookupAnyName: |
| 2058 | BaseCallback = &LookupAnyMember; |
| 2059 | break; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2060 | |
Alexey Bataev | 94a4f0c | 2016-03-03 05:21:39 +0000 | [diff] [blame] | 2061 | case LookupOMPReductionName: |
| 2062 | BaseCallback = &CXXRecordDecl::FindOMPReductionMember; |
| 2063 | break; |
| 2064 | |
John McCall | 84d8767 | 2009-12-10 09:41:52 +0000 | [diff] [blame] | 2065 | case LookupUsingDeclName: |
| 2066 | // This lookup is for redeclarations only. |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2067 | |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 2068 | case LookupOperatorName: |
| 2069 | case LookupNamespaceName: |
| 2070 | case LookupObjCProtocolName: |
Chris Lattner | ebb5c6c | 2011-02-18 01:27:55 +0000 | [diff] [blame] | 2071 | case LookupLabel: |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 2072 | // 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] | 2073 | return false; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2074 | |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 2075 | case LookupNestedNameSpecifierName: |
| 2076 | BaseCallback = &CXXRecordDecl::FindNestedNameSpecifierMember; |
| 2077 | break; |
| 2078 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2079 | |
Benjamin Kramer | 6e4f6e1 | 2015-07-25 15:07:25 +0000 | [diff] [blame] | 2080 | DeclarationName Name = R.getLookupName(); |
| 2081 | if (!LookupRec->lookupInBases( |
| 2082 | [=](const CXXBaseSpecifier *Specifier, CXXBasePath &Path) { |
| 2083 | return BaseCallback(Specifier, Path, Name); |
| 2084 | }, |
| 2085 | Paths)) |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 2086 | return false; |
Douglas Gregor | 960b5bc | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 2087 | |
John McCall | 553c079 | 2010-01-23 00:46:32 +0000 | [diff] [blame] | 2088 | R.setNamingClass(LookupRec); |
| 2089 | |
Douglas Gregor | 960b5bc | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 2090 | // C++ [class.member.lookup]p2: |
| 2091 | // [...] If the resulting set of declarations are not all from |
| 2092 | // sub-objects of the same type, or the set has a nonstatic member |
| 2093 | // and includes members from distinct sub-objects, there is an |
| 2094 | // ambiguity and the program is ill-formed. Otherwise that set is |
| 2095 | // the result of the lookup. |
Douglas Gregor | 960b5bc | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 2096 | QualType SubobjectType; |
Daniel Dunbar | 435bbe0 | 2009-01-15 18:32:35 +0000 | [diff] [blame] | 2097 | int SubobjectNumber = 0; |
John McCall | a332b95 | 2010-03-18 23:49:19 +0000 | [diff] [blame] | 2098 | AccessSpecifier SubobjectAccess = AS_none; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2099 | |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 2100 | for (CXXBasePaths::paths_iterator Path = Paths.begin(), PathEnd = Paths.end(); |
Douglas Gregor | 960b5bc | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 2101 | Path != PathEnd; ++Path) { |
Douglas Gregor | 36d1b14 | 2009-10-06 17:59:45 +0000 | [diff] [blame] | 2102 | const CXXBasePathElement &PathElement = Path->back(); |
Douglas Gregor | 960b5bc | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 2103 | |
John McCall | 401982f | 2010-01-20 21:53:11 +0000 | [diff] [blame] | 2104 | // Pick the best (i.e. most permissive i.e. numerically lowest) access |
| 2105 | // across all paths. |
| 2106 | SubobjectAccess = std::min(SubobjectAccess, Path->Access); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2107 | |
Douglas Gregor | 960b5bc | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 2108 | // Determine whether we're looking at a distinct sub-object or not. |
| 2109 | if (SubobjectType.isNull()) { |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 2110 | // This is the first subobject we've looked at. Record its type. |
Douglas Gregor | 960b5bc | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 2111 | SubobjectType = Context.getCanonicalType(PathElement.Base->getType()); |
| 2112 | SubobjectNumber = PathElement.SubobjectNumber; |
Douglas Gregor | c0d2490 | 2010-10-22 22:08:47 +0000 | [diff] [blame] | 2113 | continue; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2114 | } |
| 2115 | |
Douglas Gregor | c0d2490 | 2010-10-22 22:08:47 +0000 | [diff] [blame] | 2116 | if (SubobjectType |
Douglas Gregor | 960b5bc | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 2117 | != Context.getCanonicalType(PathElement.Base->getType())) { |
| 2118 | // We found members of the given name in two subobjects of |
Douglas Gregor | c0d2490 | 2010-10-22 22:08:47 +0000 | [diff] [blame] | 2119 | // different types. If the declaration sets aren't the same, this |
Nikola Smiljanic | 1c12568 | 2014-07-09 05:42:35 +0000 | [diff] [blame] | 2120 | // lookup is ambiguous. |
David Blaikie | ff7d47a | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 2121 | if (HasOnlyStaticMembers(Path->Decls.begin(), Path->Decls.end())) { |
Douglas Gregor | c0d2490 | 2010-10-22 22:08:47 +0000 | [diff] [blame] | 2122 | CXXBasePaths::paths_iterator FirstPath = Paths.begin(); |
David Blaikie | ff7d47a | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 2123 | DeclContext::lookup_iterator FirstD = FirstPath->Decls.begin(); |
| 2124 | DeclContext::lookup_iterator CurrentD = Path->Decls.begin(); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2125 | |
David Blaikie | ff7d47a | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 2126 | while (FirstD != FirstPath->Decls.end() && |
| 2127 | CurrentD != Path->Decls.end()) { |
Douglas Gregor | c0d2490 | 2010-10-22 22:08:47 +0000 | [diff] [blame] | 2128 | if ((*FirstD)->getUnderlyingDecl()->getCanonicalDecl() != |
| 2129 | (*CurrentD)->getUnderlyingDecl()->getCanonicalDecl()) |
| 2130 | break; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2131 | |
Douglas Gregor | c0d2490 | 2010-10-22 22:08:47 +0000 | [diff] [blame] | 2132 | ++FirstD; |
| 2133 | ++CurrentD; |
| 2134 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2135 | |
David Blaikie | ff7d47a | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 2136 | if (FirstD == FirstPath->Decls.end() && |
| 2137 | CurrentD == Path->Decls.end()) |
Douglas Gregor | c0d2490 | 2010-10-22 22:08:47 +0000 | [diff] [blame] | 2138 | continue; |
| 2139 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2140 | |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 2141 | R.setAmbiguousBaseSubobjectTypes(Paths); |
| 2142 | return true; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2143 | } |
| 2144 | |
Douglas Gregor | c0d2490 | 2010-10-22 22:08:47 +0000 | [diff] [blame] | 2145 | if (SubobjectNumber != PathElement.SubobjectNumber) { |
Douglas Gregor | 960b5bc | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 2146 | // We have a different subobject of the same type. |
| 2147 | |
| 2148 | // C++ [class.member.lookup]p5: |
| 2149 | // A static member, a nested type or an enumerator defined in |
| 2150 | // a base class T can unambiguously be found even if an object |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2151 | // has more than one base class subobject of type T. |
David Blaikie | ff7d47a | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 2152 | if (HasOnlyStaticMembers(Path->Decls.begin(), Path->Decls.end())) |
Douglas Gregor | 960b5bc | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 2153 | continue; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2154 | |
Douglas Gregor | 960b5bc | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 2155 | // We have found a nonstatic member name in multiple, distinct |
| 2156 | // subobjects. Name lookup is ambiguous. |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 2157 | R.setAmbiguousBaseSubobjects(Paths); |
| 2158 | return true; |
Douglas Gregor | 960b5bc | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 2159 | } |
| 2160 | } |
| 2161 | |
| 2162 | // Lookup in a base class succeeded; return these results. |
| 2163 | |
Aaron Ballman | 1e606f4 | 2014-07-15 22:03:49 +0000 | [diff] [blame] | 2164 | for (auto *D : Paths.front().Decls) { |
John McCall | 553c079 | 2010-01-23 00:46:32 +0000 | [diff] [blame] | 2165 | AccessSpecifier AS = CXXRecordDecl::MergeAccess(SubobjectAccess, |
| 2166 | D->getAccess()); |
| 2167 | R.addDecl(D, AS); |
| 2168 | } |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 2169 | R.resolveKind(); |
| 2170 | return true; |
Douglas Gregor | 3407432 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 2171 | } |
| 2172 | |
Nikola Smiljanic | fce370e | 2014-12-01 23:15:01 +0000 | [diff] [blame] | 2173 | /// \brief Performs qualified name lookup or special type of lookup for |
| 2174 | /// "__super::" scope specifier. |
| 2175 | /// |
| 2176 | /// This routine is a convenience overload meant to be called from contexts |
| 2177 | /// that need to perform a qualified name lookup with an optional C++ scope |
| 2178 | /// specifier that might require special kind of lookup. |
| 2179 | /// |
| 2180 | /// \param R captures both the lookup criteria and any lookup results found. |
| 2181 | /// |
| 2182 | /// \param LookupCtx The context in which qualified name lookup will |
| 2183 | /// search. |
| 2184 | /// |
| 2185 | /// \param SS An optional C++ scope-specifier. |
| 2186 | /// |
| 2187 | /// \returns true if lookup succeeded, false if it failed. |
| 2188 | bool Sema::LookupQualifiedName(LookupResult &R, DeclContext *LookupCtx, |
| 2189 | CXXScopeSpec &SS) { |
| 2190 | auto *NNS = SS.getScopeRep(); |
| 2191 | if (NNS && NNS->getKind() == NestedNameSpecifier::Super) |
| 2192 | return LookupInSuper(R, NNS->getAsRecordDecl()); |
| 2193 | else |
| 2194 | |
| 2195 | return LookupQualifiedName(R, LookupCtx); |
| 2196 | } |
| 2197 | |
Douglas Gregor | 3407432 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 2198 | /// @brief Performs name lookup for a name that was parsed in the |
| 2199 | /// source code, and may contain a C++ scope specifier. |
| 2200 | /// |
| 2201 | /// This routine is a convenience routine meant to be called from |
| 2202 | /// contexts that receive a name and an optional C++ scope specifier |
| 2203 | /// (e.g., "N::M::x"). It will then perform either qualified or |
| 2204 | /// unqualified name lookup (with LookupQualifiedName or LookupName, |
Nikola Smiljanic | 905bfda | 2014-10-04 10:17:57 +0000 | [diff] [blame] | 2205 | /// respectively) on the given name and return those results. It will |
| 2206 | /// perform a special type of lookup for "__super::" scope specifier. |
Douglas Gregor | 3407432 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 2207 | /// |
| 2208 | /// @param S The scope from which unqualified name lookup will |
| 2209 | /// begin. |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2210 | /// |
Douglas Gregor | e861bac | 2009-08-25 22:51:20 +0000 | [diff] [blame] | 2211 | /// @param SS An optional C++ scope-specifier, e.g., "::N::M". |
Douglas Gregor | 3407432 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 2212 | /// |
Douglas Gregor | e861bac | 2009-08-25 22:51:20 +0000 | [diff] [blame] | 2213 | /// @param EnteringContext Indicates whether we are going to enter the |
| 2214 | /// context of the scope-specifier SS (if present). |
| 2215 | /// |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 2216 | /// @returns True if any decls were found (but possibly ambiguous) |
Jeffrey Yasskin | c76498d | 2010-04-08 16:38:48 +0000 | [diff] [blame] | 2217 | bool Sema::LookupParsedName(LookupResult &R, Scope *S, CXXScopeSpec *SS, |
John McCall | 27b18f8 | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 2218 | bool AllowBuiltinCreation, bool EnteringContext) { |
Douglas Gregor | e861bac | 2009-08-25 22:51:20 +0000 | [diff] [blame] | 2219 | if (SS && SS->isInvalid()) { |
| 2220 | // When the scope specifier is invalid, don't even look for |
Douglas Gregor | c9f9b86 | 2009-05-11 19:58:34 +0000 | [diff] [blame] | 2221 | // anything. |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 2222 | return false; |
Douglas Gregor | e861bac | 2009-08-25 22:51:20 +0000 | [diff] [blame] | 2223 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2224 | |
Douglas Gregor | e861bac | 2009-08-25 22:51:20 +0000 | [diff] [blame] | 2225 | if (SS && SS->isSet()) { |
Nikola Smiljanic | 905bfda | 2014-10-04 10:17:57 +0000 | [diff] [blame] | 2226 | NestedNameSpecifier *NNS = SS->getScopeRep(); |
| 2227 | if (NNS->getKind() == NestedNameSpecifier::Super) |
| 2228 | return LookupInSuper(R, NNS->getAsRecordDecl()); |
| 2229 | |
Douglas Gregor | e861bac | 2009-08-25 22:51:20 +0000 | [diff] [blame] | 2230 | if (DeclContext *DC = computeDeclContext(*SS, EnteringContext)) { |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2231 | // We have resolved the scope specifier to a particular declaration |
Douglas Gregor | e861bac | 2009-08-25 22:51:20 +0000 | [diff] [blame] | 2232 | // contex, and will perform name lookup in that context. |
John McCall | 0b66eb3 | 2010-05-01 00:40:08 +0000 | [diff] [blame] | 2233 | if (!DC->isDependentContext() && RequireCompleteDeclContext(*SS, DC)) |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 2234 | return false; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2235 | |
John McCall | 27b18f8 | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 2236 | R.setContextRange(SS->getRange()); |
John McCall | 27b18f8 | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 2237 | return LookupQualifiedName(R, DC); |
Douglas Gregor | 5253768 | 2009-03-19 00:18:19 +0000 | [diff] [blame] | 2238 | } |
Douglas Gregor | c9f9b86 | 2009-05-11 19:58:34 +0000 | [diff] [blame] | 2239 | |
Douglas Gregor | e861bac | 2009-08-25 22:51:20 +0000 | [diff] [blame] | 2240 | // We could not resolve the scope specified to a specific declaration |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2241 | // context, which means that SS refers to an unknown specialization. |
Douglas Gregor | e861bac | 2009-08-25 22:51:20 +0000 | [diff] [blame] | 2242 | // Name lookup can't find anything in this case. |
Douglas Gregor | 89ab56d | 2011-10-24 22:24:50 +0000 | [diff] [blame] | 2243 | R.setNotFoundInCurrentInstantiation(); |
| 2244 | R.setContextRange(SS->getRange()); |
John McCall | 9f3059a | 2009-10-09 21:13:30 +0000 | [diff] [blame] | 2245 | return false; |
Douglas Gregor | ed8f288 | 2009-01-30 01:04:22 +0000 | [diff] [blame] | 2246 | } |
| 2247 | |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2248 | // Perform unqualified name lookup starting in the given scope. |
John McCall | 27b18f8 | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 2249 | return LookupName(R, S, AllowBuiltinCreation); |
Douglas Gregor | 3407432 | 2009-01-14 22:20:51 +0000 | [diff] [blame] | 2250 | } |
| 2251 | |
Nikola Smiljanic | 6786024 | 2014-09-26 00:28:20 +0000 | [diff] [blame] | 2252 | /// \brief Perform qualified name lookup into all base classes of the given |
| 2253 | /// class. |
| 2254 | /// |
| 2255 | /// \param R captures both the lookup criteria and any lookup results found. |
| 2256 | /// |
| 2257 | /// \param Class The context in which qualified name lookup will |
| 2258 | /// search. Name lookup will search in all base classes merging the results. |
Nikola Smiljanic | 905bfda | 2014-10-04 10:17:57 +0000 | [diff] [blame] | 2259 | /// |
| 2260 | /// @returns True if any decls were found (but possibly ambiguous) |
| 2261 | bool Sema::LookupInSuper(LookupResult &R, CXXRecordDecl *Class) { |
John McCall | f4a1b77 | 2015-09-09 23:04:17 +0000 | [diff] [blame] | 2262 | // The access-control rules we use here are essentially the rules for |
| 2263 | // doing a lookup in Class that just magically skipped the direct |
| 2264 | // members of Class itself. That is, the naming class is Class, and the |
| 2265 | // access includes the access of the base. |
Nikola Smiljanic | 6786024 | 2014-09-26 00:28:20 +0000 | [diff] [blame] | 2266 | for (const auto &BaseSpec : Class->bases()) { |
| 2267 | CXXRecordDecl *RD = cast<CXXRecordDecl>( |
| 2268 | BaseSpec.getType()->castAs<RecordType>()->getDecl()); |
| 2269 | LookupResult Result(*this, R.getLookupNameInfo(), R.getLookupKind()); |
| 2270 | Result.setBaseObjectType(Context.getRecordType(Class)); |
| 2271 | LookupQualifiedName(Result, RD); |
John McCall | f4a1b77 | 2015-09-09 23:04:17 +0000 | [diff] [blame] | 2272 | |
| 2273 | // Copy the lookup results into the target, merging the base's access into |
| 2274 | // the path access. |
| 2275 | for (auto I = Result.begin(), E = Result.end(); I != E; ++I) { |
| 2276 | R.addDecl(I.getDecl(), |
| 2277 | CXXRecordDecl::MergeAccess(BaseSpec.getAccessSpecifier(), |
| 2278 | I.getAccess())); |
| 2279 | } |
| 2280 | |
| 2281 | Result.suppressDiagnostics(); |
Nikola Smiljanic | 6786024 | 2014-09-26 00:28:20 +0000 | [diff] [blame] | 2282 | } |
| 2283 | |
| 2284 | R.resolveKind(); |
John McCall | f4a1b77 | 2015-09-09 23:04:17 +0000 | [diff] [blame] | 2285 | R.setNamingClass(Class); |
Nikola Smiljanic | 905bfda | 2014-10-04 10:17:57 +0000 | [diff] [blame] | 2286 | |
| 2287 | return !R.empty(); |
Nikola Smiljanic | 6786024 | 2014-09-26 00:28:20 +0000 | [diff] [blame] | 2288 | } |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 2289 | |
James Dennett | 4172512 | 2012-06-22 10:16:05 +0000 | [diff] [blame] | 2290 | /// \brief Produce a diagnostic describing the ambiguity that resulted |
Douglas Gregor | 960b5bc | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 2291 | /// from name lookup. |
| 2292 | /// |
James Dennett | 4172512 | 2012-06-22 10:16:05 +0000 | [diff] [blame] | 2293 | /// \param Result The result of the ambiguous lookup to be diagnosed. |
Serge Pavlov | 9929209 | 2013-08-29 07:23:24 +0000 | [diff] [blame] | 2294 | void Sema::DiagnoseAmbiguousLookup(LookupResult &Result) { |
Douglas Gregor | 960b5bc | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 2295 | assert(Result.isAmbiguous() && "Lookup result must be ambiguous"); |
| 2296 | |
John McCall | 27b18f8 | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 2297 | DeclarationName Name = Result.getLookupName(); |
| 2298 | SourceLocation NameLoc = Result.getNameLoc(); |
| 2299 | SourceRange LookupRange = Result.getContextRange(); |
| 2300 | |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 2301 | switch (Result.getAmbiguityKind()) { |
| 2302 | case LookupResult::AmbiguousBaseSubobjects: { |
| 2303 | CXXBasePaths *Paths = Result.getBasePaths(); |
| 2304 | QualType SubobjectType = Paths->front().back().Base->getType(); |
| 2305 | Diag(NameLoc, diag::err_ambiguous_member_multiple_subobjects) |
| 2306 | << Name << SubobjectType << getAmbiguousPathsDisplayString(*Paths) |
| 2307 | << LookupRange; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2308 | |
David Blaikie | ff7d47a | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 2309 | DeclContext::lookup_iterator Found = Paths->front().Decls.begin(); |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 2310 | while (isa<CXXMethodDecl>(*Found) && |
| 2311 | cast<CXXMethodDecl>(*Found)->isStatic()) |
| 2312 | ++Found; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2313 | |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 2314 | Diag((*Found)->getLocation(), diag::note_ambiguous_member_found); |
Serge Pavlov | 9929209 | 2013-08-29 07:23:24 +0000 | [diff] [blame] | 2315 | break; |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 2316 | } |
Douglas Gregor | 1c846b0 | 2009-01-16 00:38:09 +0000 | [diff] [blame] | 2317 | |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 2318 | case LookupResult::AmbiguousBaseSubobjectTypes: { |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 2319 | Diag(NameLoc, diag::err_ambiguous_member_multiple_subobject_types) |
| 2320 | << Name << LookupRange; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2321 | |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 2322 | CXXBasePaths *Paths = Result.getBasePaths(); |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 2323 | std::set<Decl *> DeclsPrinted; |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 2324 | for (CXXBasePaths::paths_iterator Path = Paths->begin(), |
| 2325 | PathEnd = Paths->end(); |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 2326 | Path != PathEnd; ++Path) { |
David Blaikie | ff7d47a | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 2327 | Decl *D = Path->Decls.front(); |
Douglas Gregor | 889ceb7 | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 2328 | if (DeclsPrinted.insert(D).second) |
| 2329 | Diag(D->getLocation(), diag::note_ambiguous_member_found); |
| 2330 | } |
Serge Pavlov | 9929209 | 2013-08-29 07:23:24 +0000 | [diff] [blame] | 2331 | break; |
Douglas Gregor | 1c846b0 | 2009-01-16 00:38:09 +0000 | [diff] [blame] | 2332 | } |
| 2333 | |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 2334 | case LookupResult::AmbiguousTagHiding: { |
| 2335 | Diag(NameLoc, diag::err_ambiguous_tag_hiding) << Name << LookupRange; |
Douglas Gregor | f23311d | 2009-01-17 01:13:24 +0000 | [diff] [blame] | 2336 | |
Nick Lewycky | 4b81fc87 | 2015-10-18 20:32:12 +0000 | [diff] [blame] | 2337 | llvm::SmallPtrSet<NamedDecl*, 8> TagDecls; |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 2338 | |
Aaron Ballman | 1e606f4 | 2014-07-15 22:03:49 +0000 | [diff] [blame] | 2339 | for (auto *D : Result) |
| 2340 | if (TagDecl *TD = dyn_cast<TagDecl>(D)) { |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 2341 | TagDecls.insert(TD); |
| 2342 | Diag(TD->getLocation(), diag::note_hidden_tag); |
| 2343 | } |
| 2344 | |
Aaron Ballman | 1e606f4 | 2014-07-15 22:03:49 +0000 | [diff] [blame] | 2345 | for (auto *D : Result) |
| 2346 | if (!isa<TagDecl>(D)) |
| 2347 | Diag(D->getLocation(), diag::note_hiding_object); |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 2348 | |
| 2349 | // For recovery purposes, go ahead and implement the hiding. |
John McCall | ad37125 | 2010-01-20 00:46:10 +0000 | [diff] [blame] | 2350 | LookupResult::Filter F = Result.makeFilter(); |
| 2351 | while (F.hasNext()) { |
| 2352 | if (TagDecls.count(F.next())) |
| 2353 | F.erase(); |
| 2354 | } |
| 2355 | F.done(); |
Serge Pavlov | 9929209 | 2013-08-29 07:23:24 +0000 | [diff] [blame] | 2356 | break; |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 2357 | } |
| 2358 | |
| 2359 | case LookupResult::AmbiguousReference: { |
| 2360 | Diag(NameLoc, diag::err_ambiguous_reference) << Name << LookupRange; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2361 | |
Aaron Ballman | 1e606f4 | 2014-07-15 22:03:49 +0000 | [diff] [blame] | 2362 | for (auto *D : Result) |
| 2363 | Diag(D->getLocation(), diag::note_ambiguous_candidate) << D; |
Serge Pavlov | 9929209 | 2013-08-29 07:23:24 +0000 | [diff] [blame] | 2364 | break; |
John McCall | 6538c93 | 2009-10-10 05:48:19 +0000 | [diff] [blame] | 2365 | } |
Serge Pavlov | 9929209 | 2013-08-29 07:23:24 +0000 | [diff] [blame] | 2366 | } |
Douglas Gregor | 960b5bc | 2009-01-15 00:26:24 +0000 | [diff] [blame] | 2367 | } |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2368 | |
John McCall | f24d7bb | 2010-05-28 18:45:08 +0000 | [diff] [blame] | 2369 | namespace { |
| 2370 | struct AssociatedLookup { |
John McCall | 7d8b041 | 2012-08-24 20:38:34 +0000 | [diff] [blame] | 2371 | AssociatedLookup(Sema &S, SourceLocation InstantiationLoc, |
John McCall | f24d7bb | 2010-05-28 18:45:08 +0000 | [diff] [blame] | 2372 | Sema::AssociatedNamespaceSet &Namespaces, |
| 2373 | Sema::AssociatedClassSet &Classes) |
John McCall | 7d8b041 | 2012-08-24 20:38:34 +0000 | [diff] [blame] | 2374 | : S(S), Namespaces(Namespaces), Classes(Classes), |
| 2375 | InstantiationLoc(InstantiationLoc) { |
John McCall | f24d7bb | 2010-05-28 18:45:08 +0000 | [diff] [blame] | 2376 | } |
| 2377 | |
| 2378 | Sema &S; |
| 2379 | Sema::AssociatedNamespaceSet &Namespaces; |
| 2380 | Sema::AssociatedClassSet &Classes; |
John McCall | 7d8b041 | 2012-08-24 20:38:34 +0000 | [diff] [blame] | 2381 | SourceLocation InstantiationLoc; |
John McCall | f24d7bb | 2010-05-28 18:45:08 +0000 | [diff] [blame] | 2382 | }; |
Hans Wennborg | dcfba33 | 2015-10-06 23:40:43 +0000 | [diff] [blame] | 2383 | } // end anonymous namespace |
John McCall | f24d7bb | 2010-05-28 18:45:08 +0000 | [diff] [blame] | 2384 | |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2385 | static void |
John McCall | f24d7bb | 2010-05-28 18:45:08 +0000 | [diff] [blame] | 2386 | addAssociatedClassesAndNamespaces(AssociatedLookup &Result, QualType T); |
John McCall | c7e8e79 | 2009-08-07 22:18:02 +0000 | [diff] [blame] | 2387 | |
Douglas Gregor | 8b89522 | 2010-04-30 07:08:38 +0000 | [diff] [blame] | 2388 | static void CollectEnclosingNamespace(Sema::AssociatedNamespaceSet &Namespaces, |
| 2389 | DeclContext *Ctx) { |
| 2390 | // Add the associated namespace for this class. |
| 2391 | |
| 2392 | // We don't use DeclContext::getEnclosingNamespaceContext() as this may |
| 2393 | // be a locally scoped record. |
| 2394 | |
Sebastian Redl | bd59576 | 2010-08-31 20:53:31 +0000 | [diff] [blame] | 2395 | // We skip out of inline namespaces. The innermost non-inline namespace |
| 2396 | // contains all names of all its nested inline namespaces anyway, so we can |
| 2397 | // replace the entire inline namespace tree with its root. |
| 2398 | while (Ctx->isRecord() || Ctx->isTransparentContext() || |
| 2399 | Ctx->isInlineNamespace()) |
Douglas Gregor | 8b89522 | 2010-04-30 07:08:38 +0000 | [diff] [blame] | 2400 | Ctx = Ctx->getParent(); |
| 2401 | |
John McCall | c7e8e79 | 2009-08-07 22:18:02 +0000 | [diff] [blame] | 2402 | if (Ctx->isFileContext()) |
Douglas Gregor | 8b89522 | 2010-04-30 07:08:38 +0000 | [diff] [blame] | 2403 | Namespaces.insert(Ctx->getPrimaryContext()); |
John McCall | c7e8e79 | 2009-08-07 22:18:02 +0000 | [diff] [blame] | 2404 | } |
Douglas Gregor | 197e5f7 | 2009-07-08 07:51:57 +0000 | [diff] [blame] | 2405 | |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2406 | // \brief Add the associated classes and namespaces for argument-dependent |
Douglas Gregor | 197e5f7 | 2009-07-08 07:51:57 +0000 | [diff] [blame] | 2407 | // lookup that involves a template argument (C++ [basic.lookup.koenig]p2). |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2408 | static void |
John McCall | f24d7bb | 2010-05-28 18:45:08 +0000 | [diff] [blame] | 2409 | addAssociatedClassesAndNamespaces(AssociatedLookup &Result, |
| 2410 | const TemplateArgument &Arg) { |
Douglas Gregor | 197e5f7 | 2009-07-08 07:51:57 +0000 | [diff] [blame] | 2411 | // C++ [basic.lookup.koenig]p2, last bullet: |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2412 | // -- [...] ; |
Douglas Gregor | 197e5f7 | 2009-07-08 07:51:57 +0000 | [diff] [blame] | 2413 | switch (Arg.getKind()) { |
| 2414 | case TemplateArgument::Null: |
| 2415 | break; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2416 | |
Douglas Gregor | 197e5f7 | 2009-07-08 07:51:57 +0000 | [diff] [blame] | 2417 | case TemplateArgument::Type: |
| 2418 | // [...] the namespaces and classes associated with the types of the |
| 2419 | // template arguments provided for template type parameters (excluding |
| 2420 | // template template parameters) |
John McCall | f24d7bb | 2010-05-28 18:45:08 +0000 | [diff] [blame] | 2421 | addAssociatedClassesAndNamespaces(Result, Arg.getAsType()); |
Douglas Gregor | 197e5f7 | 2009-07-08 07:51:57 +0000 | [diff] [blame] | 2422 | break; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2423 | |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2424 | case TemplateArgument::Template: |
Douglas Gregor | e4ff4b5 | 2011-01-05 18:58:31 +0000 | [diff] [blame] | 2425 | case TemplateArgument::TemplateExpansion: { |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2426 | // [...] the namespaces in which any template template arguments are |
| 2427 | // defined; and the classes in which any member templates used as |
Douglas Gregor | 197e5f7 | 2009-07-08 07:51:57 +0000 | [diff] [blame] | 2428 | // template template arguments are defined. |
Douglas Gregor | e4ff4b5 | 2011-01-05 18:58:31 +0000 | [diff] [blame] | 2429 | TemplateName Template = Arg.getAsTemplateOrTemplatePattern(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2430 | if (ClassTemplateDecl *ClassTemplate |
Douglas Gregor | 9167f8b | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 2431 | = dyn_cast<ClassTemplateDecl>(Template.getAsTemplateDecl())) { |
Douglas Gregor | 197e5f7 | 2009-07-08 07:51:57 +0000 | [diff] [blame] | 2432 | DeclContext *Ctx = ClassTemplate->getDeclContext(); |
| 2433 | if (CXXRecordDecl *EnclosingClass = dyn_cast<CXXRecordDecl>(Ctx)) |
John McCall | f24d7bb | 2010-05-28 18:45:08 +0000 | [diff] [blame] | 2434 | Result.Classes.insert(EnclosingClass); |
Douglas Gregor | 197e5f7 | 2009-07-08 07:51:57 +0000 | [diff] [blame] | 2435 | // Add the associated namespace for this class. |
John McCall | f24d7bb | 2010-05-28 18:45:08 +0000 | [diff] [blame] | 2436 | CollectEnclosingNamespace(Result.Namespaces, Ctx); |
Douglas Gregor | 197e5f7 | 2009-07-08 07:51:57 +0000 | [diff] [blame] | 2437 | } |
| 2438 | break; |
Douglas Gregor | 9167f8b | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 2439 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2440 | |
Douglas Gregor | 9167f8b | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 2441 | case TemplateArgument::Declaration: |
Douglas Gregor | 197e5f7 | 2009-07-08 07:51:57 +0000 | [diff] [blame] | 2442 | case TemplateArgument::Integral: |
| 2443 | case TemplateArgument::Expression: |
Eli Friedman | b826a00 | 2012-09-26 02:36:12 +0000 | [diff] [blame] | 2444 | case TemplateArgument::NullPtr: |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2445 | // [Note: non-type template arguments do not contribute to the set of |
Douglas Gregor | 197e5f7 | 2009-07-08 07:51:57 +0000 | [diff] [blame] | 2446 | // associated namespaces. ] |
| 2447 | break; |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2448 | |
Douglas Gregor | 197e5f7 | 2009-07-08 07:51:57 +0000 | [diff] [blame] | 2449 | case TemplateArgument::Pack: |
Aaron Ballman | 2a89e85 | 2014-07-15 21:32:31 +0000 | [diff] [blame] | 2450 | for (const auto &P : Arg.pack_elements()) |
| 2451 | addAssociatedClassesAndNamespaces(Result, P); |
Douglas Gregor | 197e5f7 | 2009-07-08 07:51:57 +0000 | [diff] [blame] | 2452 | break; |
| 2453 | } |
| 2454 | } |
| 2455 | |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2456 | // \brief Add the associated classes and namespaces for |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2457 | // argument-dependent lookup with an argument of class type |
| 2458 | // (C++ [basic.lookup.koenig]p2). |
| 2459 | static void |
John McCall | f24d7bb | 2010-05-28 18:45:08 +0000 | [diff] [blame] | 2460 | addAssociatedClassesAndNamespaces(AssociatedLookup &Result, |
| 2461 | CXXRecordDecl *Class) { |
| 2462 | |
| 2463 | // Just silently ignore anything whose name is __va_list_tag. |
| 2464 | if (Class->getDeclName() == Result.S.VAListTagName) |
| 2465 | return; |
| 2466 | |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2467 | // C++ [basic.lookup.koenig]p2: |
| 2468 | // [...] |
| 2469 | // -- If T is a class type (including unions), its associated |
| 2470 | // classes are: the class itself; the class of which it is a |
| 2471 | // member, if any; and its direct and indirect base |
| 2472 | // classes. Its associated namespaces are the namespaces in |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2473 | // which its associated classes are defined. |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2474 | |
| 2475 | // Add the class of which it is a member, if any. |
| 2476 | DeclContext *Ctx = Class->getDeclContext(); |
| 2477 | if (CXXRecordDecl *EnclosingClass = dyn_cast<CXXRecordDecl>(Ctx)) |
John McCall | f24d7bb | 2010-05-28 18:45:08 +0000 | [diff] [blame] | 2478 | Result.Classes.insert(EnclosingClass); |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2479 | // Add the associated namespace for this class. |
John McCall | f24d7bb | 2010-05-28 18:45:08 +0000 | [diff] [blame] | 2480 | CollectEnclosingNamespace(Result.Namespaces, Ctx); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2481 | |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2482 | // Add the class itself. If we've already seen this class, we don't |
| 2483 | // need to visit base classes. |
Richard Smith | 594461f | 2014-03-14 22:07:27 +0000 | [diff] [blame] | 2484 | // |
| 2485 | // FIXME: That's not correct, we may have added this class only because it |
| 2486 | // was the enclosing class of another class, and in that case we won't have |
| 2487 | // added its base classes yet. |
Richard Smith | 6642bb3 | 2016-03-24 19:12:22 +0000 | [diff] [blame] | 2488 | if (!Result.Classes.insert(Class)) |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2489 | return; |
| 2490 | |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2491 | // -- If T is a template-id, its associated namespaces and classes are |
| 2492 | // the namespace in which the template is defined; for member |
NAKAMURA Takumi | 7c28886 | 2011-01-27 07:09:49 +0000 | [diff] [blame] | 2493 | // templates, the member template's class; the namespaces and classes |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2494 | // associated with the types of the template arguments provided for |
Douglas Gregor | 197e5f7 | 2009-07-08 07:51:57 +0000 | [diff] [blame] | 2495 | // template type parameters (excluding template template parameters); the |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2496 | // namespaces in which any template template arguments are defined; and |
| 2497 | // the classes in which any member templates used as template template |
| 2498 | // arguments are defined. [Note: non-type template arguments do not |
Douglas Gregor | 197e5f7 | 2009-07-08 07:51:57 +0000 | [diff] [blame] | 2499 | // contribute to the set of associated namespaces. ] |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2500 | if (ClassTemplateSpecializationDecl *Spec |
Douglas Gregor | 197e5f7 | 2009-07-08 07:51:57 +0000 | [diff] [blame] | 2501 | = dyn_cast<ClassTemplateSpecializationDecl>(Class)) { |
| 2502 | DeclContext *Ctx = Spec->getSpecializedTemplate()->getDeclContext(); |
| 2503 | if (CXXRecordDecl *EnclosingClass = dyn_cast<CXXRecordDecl>(Ctx)) |
John McCall | f24d7bb | 2010-05-28 18:45:08 +0000 | [diff] [blame] | 2504 | Result.Classes.insert(EnclosingClass); |
Douglas Gregor | 197e5f7 | 2009-07-08 07:51:57 +0000 | [diff] [blame] | 2505 | // Add the associated namespace for this class. |
John McCall | f24d7bb | 2010-05-28 18:45:08 +0000 | [diff] [blame] | 2506 | CollectEnclosingNamespace(Result.Namespaces, Ctx); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2507 | |
Douglas Gregor | 197e5f7 | 2009-07-08 07:51:57 +0000 | [diff] [blame] | 2508 | const TemplateArgumentList &TemplateArgs = Spec->getTemplateArgs(); |
| 2509 | for (unsigned I = 0, N = TemplateArgs.size(); I != N; ++I) |
John McCall | f24d7bb | 2010-05-28 18:45:08 +0000 | [diff] [blame] | 2510 | addAssociatedClassesAndNamespaces(Result, TemplateArgs[I]); |
Douglas Gregor | 197e5f7 | 2009-07-08 07:51:57 +0000 | [diff] [blame] | 2511 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2512 | |
John McCall | 67da35c | 2010-02-04 22:26:26 +0000 | [diff] [blame] | 2513 | // Only recurse into base classes for complete types. |
Richard Smith | db0ac55 | 2015-12-18 22:40:25 +0000 | [diff] [blame] | 2514 | if (!Result.S.isCompleteType(Result.InstantiationLoc, |
| 2515 | Result.S.Context.getRecordType(Class))) |
Richard Smith | 594461f | 2014-03-14 22:07:27 +0000 | [diff] [blame] | 2516 | return; |
John McCall | 67da35c | 2010-02-04 22:26:26 +0000 | [diff] [blame] | 2517 | |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2518 | // Add direct and indirect base classes along with their associated |
| 2519 | // namespaces. |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2520 | SmallVector<CXXRecordDecl *, 32> Bases; |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2521 | Bases.push_back(Class); |
| 2522 | while (!Bases.empty()) { |
| 2523 | // Pop this class off the stack. |
Robert Wilhelm | 25284cc | 2013-08-23 16:11:15 +0000 | [diff] [blame] | 2524 | Class = Bases.pop_back_val(); |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2525 | |
| 2526 | // Visit the base classes. |
Aaron Ballman | 574705e | 2014-03-13 15:41:46 +0000 | [diff] [blame] | 2527 | for (const auto &Base : Class->bases()) { |
| 2528 | const RecordType *BaseType = Base.getType()->getAs<RecordType>(); |
Sebastian Redl | c45c03c | 2009-10-25 09:35:33 +0000 | [diff] [blame] | 2529 | // In dependent contexts, we do ADL twice, and the first time around, |
| 2530 | // the base type might be a dependent TemplateSpecializationType, or a |
| 2531 | // TemplateTypeParmType. If that happens, simply ignore it. |
| 2532 | // FIXME: If we want to support export, we probably need to add the |
| 2533 | // namespace of the template in a TemplateSpecializationType, or even |
| 2534 | // the classes and namespaces of known non-dependent arguments. |
| 2535 | if (!BaseType) |
| 2536 | continue; |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2537 | CXXRecordDecl *BaseDecl = cast<CXXRecordDecl>(BaseType->getDecl()); |
Richard Smith | 6642bb3 | 2016-03-24 19:12:22 +0000 | [diff] [blame] | 2538 | if (Result.Classes.insert(BaseDecl)) { |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2539 | // Find the associated namespace for this base class. |
| 2540 | DeclContext *BaseCtx = BaseDecl->getDeclContext(); |
John McCall | f24d7bb | 2010-05-28 18:45:08 +0000 | [diff] [blame] | 2541 | CollectEnclosingNamespace(Result.Namespaces, BaseCtx); |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2542 | |
| 2543 | // Make sure we visit the bases of this base class. |
| 2544 | if (BaseDecl->bases_begin() != BaseDecl->bases_end()) |
| 2545 | Bases.push_back(BaseDecl); |
| 2546 | } |
| 2547 | } |
| 2548 | } |
| 2549 | } |
| 2550 | |
| 2551 | // \brief Add the associated classes and namespaces for |
| 2552 | // argument-dependent lookup with an argument of type T |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2553 | // (C++ [basic.lookup.koenig]p2). |
| 2554 | static void |
John McCall | f24d7bb | 2010-05-28 18:45:08 +0000 | [diff] [blame] | 2555 | addAssociatedClassesAndNamespaces(AssociatedLookup &Result, QualType Ty) { |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2556 | // C++ [basic.lookup.koenig]p2: |
| 2557 | // |
| 2558 | // For each argument type T in the function call, there is a set |
| 2559 | // of zero or more associated namespaces and a set of zero or more |
| 2560 | // associated classes to be considered. The sets of namespaces and |
| 2561 | // classes is determined entirely by the types of the function |
| 2562 | // arguments (and the namespace of any template template |
| 2563 | // argument). Typedef names and using-declarations used to specify |
| 2564 | // the types do not contribute to this set. The sets of namespaces |
| 2565 | // and classes are determined in the following way: |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2566 | |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2567 | SmallVector<const Type *, 16> Queue; |
John McCall | 0af3d3b | 2010-05-28 06:08:54 +0000 | [diff] [blame] | 2568 | const Type *T = Ty->getCanonicalTypeInternal().getTypePtr(); |
| 2569 | |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2570 | while (true) { |
John McCall | 0af3d3b | 2010-05-28 06:08:54 +0000 | [diff] [blame] | 2571 | switch (T->getTypeClass()) { |
| 2572 | |
| 2573 | #define TYPE(Class, Base) |
| 2574 | #define DEPENDENT_TYPE(Class, Base) case Type::Class: |
| 2575 | #define NON_CANONICAL_TYPE(Class, Base) case Type::Class: |
| 2576 | #define NON_CANONICAL_UNLESS_DEPENDENT_TYPE(Class, Base) case Type::Class: |
| 2577 | #define ABSTRACT_TYPE(Class, Base) |
| 2578 | #include "clang/AST/TypeNodes.def" |
| 2579 | // T is canonical. We can also ignore dependent types because |
| 2580 | // we don't need to do ADL at the definition point, but if we |
| 2581 | // wanted to implement template export (or if we find some other |
| 2582 | // use for associated classes and namespaces...) this would be |
| 2583 | // wrong. |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2584 | break; |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2585 | |
John McCall | 0af3d3b | 2010-05-28 06:08:54 +0000 | [diff] [blame] | 2586 | // -- If T is a pointer to U or an array of U, its associated |
| 2587 | // namespaces and classes are those associated with U. |
| 2588 | case Type::Pointer: |
| 2589 | T = cast<PointerType>(T)->getPointeeType().getTypePtr(); |
| 2590 | continue; |
| 2591 | case Type::ConstantArray: |
| 2592 | case Type::IncompleteArray: |
| 2593 | case Type::VariableArray: |
| 2594 | T = cast<ArrayType>(T)->getElementType().getTypePtr(); |
| 2595 | continue; |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2596 | |
John McCall | 0af3d3b | 2010-05-28 06:08:54 +0000 | [diff] [blame] | 2597 | // -- If T is a fundamental type, its associated sets of |
| 2598 | // namespaces and classes are both empty. |
| 2599 | case Type::Builtin: |
| 2600 | break; |
| 2601 | |
| 2602 | // -- If T is a class type (including unions), its associated |
| 2603 | // classes are: the class itself; the class of which it is a |
| 2604 | // member, if any; and its direct and indirect base |
| 2605 | // classes. Its associated namespaces are the namespaces in |
| 2606 | // which its associated classes are defined. |
| 2607 | case Type::Record: { |
Richard Smith | 82b8d4e | 2015-12-18 22:19:11 +0000 | [diff] [blame] | 2608 | CXXRecordDecl *Class = |
| 2609 | cast<CXXRecordDecl>(cast<RecordType>(T)->getDecl()); |
John McCall | f24d7bb | 2010-05-28 18:45:08 +0000 | [diff] [blame] | 2610 | addAssociatedClassesAndNamespaces(Result, Class); |
John McCall | 0af3d3b | 2010-05-28 06:08:54 +0000 | [diff] [blame] | 2611 | break; |
Douglas Gregor | 89ee682 | 2009-02-28 01:32:25 +0000 | [diff] [blame] | 2612 | } |
Douglas Gregor | fe60c14 | 2010-05-20 02:26:51 +0000 | [diff] [blame] | 2613 | |
John McCall | 0af3d3b | 2010-05-28 06:08:54 +0000 | [diff] [blame] | 2614 | // -- If T is an enumeration type, its associated namespace is |
| 2615 | // the namespace in which it is defined. If it is class |
NAKAMURA Takumi | 7c28886 | 2011-01-27 07:09:49 +0000 | [diff] [blame] | 2616 | // member, its associated class is the member's class; else |
John McCall | 0af3d3b | 2010-05-28 06:08:54 +0000 | [diff] [blame] | 2617 | // it has no associated class. |
| 2618 | case Type::Enum: { |
| 2619 | EnumDecl *Enum = cast<EnumType>(T)->getDecl(); |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2620 | |
John McCall | 0af3d3b | 2010-05-28 06:08:54 +0000 | [diff] [blame] | 2621 | DeclContext *Ctx = Enum->getDeclContext(); |
| 2622 | if (CXXRecordDecl *EnclosingClass = dyn_cast<CXXRecordDecl>(Ctx)) |
John McCall | f24d7bb | 2010-05-28 18:45:08 +0000 | [diff] [blame] | 2623 | Result.Classes.insert(EnclosingClass); |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2624 | |
John McCall | 0af3d3b | 2010-05-28 06:08:54 +0000 | [diff] [blame] | 2625 | // Add the associated namespace for this class. |
John McCall | f24d7bb | 2010-05-28 18:45:08 +0000 | [diff] [blame] | 2626 | CollectEnclosingNamespace(Result.Namespaces, Ctx); |
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 | break; |
| 2629 | } |
| 2630 | |
| 2631 | // -- If T is a function type, its associated namespaces and |
| 2632 | // classes are those associated with the function parameter |
| 2633 | // types and those associated with the return type. |
| 2634 | case Type::FunctionProto: { |
| 2635 | const FunctionProtoType *Proto = cast<FunctionProtoType>(T); |
Aaron Ballman | 40bd0aa | 2014-03-17 15:23:01 +0000 | [diff] [blame] | 2636 | for (const auto &Arg : Proto->param_types()) |
| 2637 | Queue.push_back(Arg.getTypePtr()); |
John McCall | 0af3d3b | 2010-05-28 06:08:54 +0000 | [diff] [blame] | 2638 | // fallthrough |
| 2639 | } |
| 2640 | case Type::FunctionNoProto: { |
| 2641 | const FunctionType *FnType = cast<FunctionType>(T); |
Alp Toker | 314cc81 | 2014-01-25 16:55:45 +0000 | [diff] [blame] | 2642 | T = FnType->getReturnType().getTypePtr(); |
John McCall | 0af3d3b | 2010-05-28 06:08:54 +0000 | [diff] [blame] | 2643 | continue; |
| 2644 | } |
| 2645 | |
| 2646 | // -- If T is a pointer to a member function of a class X, its |
| 2647 | // associated namespaces and classes are those associated |
| 2648 | // with the function parameter types and return type, |
| 2649 | // together with those associated with X. |
| 2650 | // |
| 2651 | // -- If T is a pointer to a data member of class X, its |
| 2652 | // associated namespaces and classes are those associated |
| 2653 | // with the member type together with those associated with |
| 2654 | // X. |
| 2655 | case Type::MemberPointer: { |
| 2656 | const MemberPointerType *MemberPtr = cast<MemberPointerType>(T); |
| 2657 | |
| 2658 | // Queue up the class type into which this points. |
| 2659 | Queue.push_back(MemberPtr->getClass()); |
| 2660 | |
| 2661 | // And directly continue with the pointee type. |
| 2662 | T = MemberPtr->getPointeeType().getTypePtr(); |
| 2663 | continue; |
| 2664 | } |
| 2665 | |
| 2666 | // As an extension, treat this like a normal pointer. |
| 2667 | case Type::BlockPointer: |
| 2668 | T = cast<BlockPointerType>(T)->getPointeeType().getTypePtr(); |
| 2669 | continue; |
| 2670 | |
| 2671 | // References aren't covered by the standard, but that's such an |
| 2672 | // obvious defect that we cover them anyway. |
| 2673 | case Type::LValueReference: |
| 2674 | case Type::RValueReference: |
| 2675 | T = cast<ReferenceType>(T)->getPointeeType().getTypePtr(); |
| 2676 | continue; |
| 2677 | |
| 2678 | // These are fundamental types. |
| 2679 | case Type::Vector: |
| 2680 | case Type::ExtVector: |
| 2681 | case Type::Complex: |
| 2682 | break; |
| 2683 | |
Richard Smith | 27d807c | 2013-04-30 13:56:41 +0000 | [diff] [blame] | 2684 | // Non-deduced auto types only get here for error cases. |
| 2685 | case Type::Auto: |
| 2686 | break; |
| 2687 | |
Douglas Gregor | 8e93666 | 2011-04-12 01:02:45 +0000 | [diff] [blame] | 2688 | // If T is an Objective-C object or interface type, or a pointer to an |
| 2689 | // object or interface type, the associated namespace is the global |
| 2690 | // namespace. |
John McCall | 0af3d3b | 2010-05-28 06:08:54 +0000 | [diff] [blame] | 2691 | case Type::ObjCObject: |
| 2692 | case Type::ObjCInterface: |
| 2693 | case Type::ObjCObjectPointer: |
Douglas Gregor | 8e93666 | 2011-04-12 01:02:45 +0000 | [diff] [blame] | 2694 | Result.Namespaces.insert(Result.S.Context.getTranslationUnitDecl()); |
John McCall | 0af3d3b | 2010-05-28 06:08:54 +0000 | [diff] [blame] | 2695 | break; |
Eli Friedman | 0dfb889 | 2011-10-06 23:00:33 +0000 | [diff] [blame] | 2696 | |
| 2697 | // Atomic types are just wrappers; use the associations of the |
| 2698 | // contained type. |
| 2699 | case Type::Atomic: |
| 2700 | T = cast<AtomicType>(T)->getValueType().getTypePtr(); |
| 2701 | continue; |
Xiuli Pan | 9c14e28 | 2016-01-09 12:53:17 +0000 | [diff] [blame] | 2702 | case Type::Pipe: |
| 2703 | T = cast<PipeType>(T)->getElementType().getTypePtr(); |
| 2704 | continue; |
John McCall | 0af3d3b | 2010-05-28 06:08:54 +0000 | [diff] [blame] | 2705 | } |
| 2706 | |
Robert Wilhelm | 25284cc | 2013-08-23 16:11:15 +0000 | [diff] [blame] | 2707 | if (Queue.empty()) |
| 2708 | break; |
| 2709 | T = Queue.pop_back_val(); |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2710 | } |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2711 | } |
| 2712 | |
| 2713 | /// \brief Find the associated classes and namespaces for |
| 2714 | /// argument-dependent lookup for a call with the given set of |
| 2715 | /// arguments. |
| 2716 | /// |
| 2717 | /// This routine computes the sets of associated classes and associated |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2718 | /// namespaces searched by argument-dependent lookup |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2719 | /// (C++ [basic.lookup.argdep]) for a given set of arguments. |
Robert Wilhelm | 16e94b9 | 2013-08-09 18:02:13 +0000 | [diff] [blame] | 2720 | void Sema::FindAssociatedClassesAndNamespaces( |
| 2721 | SourceLocation InstantiationLoc, ArrayRef<Expr *> Args, |
| 2722 | AssociatedNamespaceSet &AssociatedNamespaces, |
| 2723 | AssociatedClassSet &AssociatedClasses) { |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2724 | AssociatedNamespaces.clear(); |
| 2725 | AssociatedClasses.clear(); |
| 2726 | |
John McCall | 7d8b041 | 2012-08-24 20:38:34 +0000 | [diff] [blame] | 2727 | AssociatedLookup Result(*this, InstantiationLoc, |
| 2728 | AssociatedNamespaces, AssociatedClasses); |
John McCall | f24d7bb | 2010-05-28 18:45:08 +0000 | [diff] [blame] | 2729 | |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2730 | // C++ [basic.lookup.koenig]p2: |
| 2731 | // For each argument type T in the function call, there is a set |
| 2732 | // of zero or more associated namespaces and a set of zero or more |
| 2733 | // associated classes to be considered. The sets of namespaces and |
| 2734 | // classes is determined entirely by the types of the function |
| 2735 | // arguments (and the namespace of any template template |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2736 | // argument). |
Ahmed Charles | b24b9aa | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 2737 | for (unsigned ArgIdx = 0; ArgIdx != Args.size(); ++ArgIdx) { |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2738 | Expr *Arg = Args[ArgIdx]; |
| 2739 | |
| 2740 | if (Arg->getType() != Context.OverloadTy) { |
John McCall | f24d7bb | 2010-05-28 18:45:08 +0000 | [diff] [blame] | 2741 | addAssociatedClassesAndNamespaces(Result, Arg->getType()); |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2742 | continue; |
| 2743 | } |
| 2744 | |
| 2745 | // [...] In addition, if the argument is the name or address of a |
| 2746 | // set of overloaded functions and/or function templates, its |
| 2747 | // associated classes and namespaces are the union of those |
| 2748 | // associated with each of the members of the set: the namespace |
| 2749 | // in which the function or function template is defined and the |
| 2750 | // classes and namespaces associated with its (non-dependent) |
| 2751 | // parameter types and return type. |
Douglas Gregor | be75925 | 2009-07-08 10:57:20 +0000 | [diff] [blame] | 2752 | Arg = Arg->IgnoreParens(); |
John McCall | d14a864 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 2753 | if (UnaryOperator *unaryOp = dyn_cast<UnaryOperator>(Arg)) |
John McCall | e302792 | 2010-08-25 11:45:40 +0000 | [diff] [blame] | 2754 | if (unaryOp->getOpcode() == UO_AddrOf) |
John McCall | d14a864 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 2755 | Arg = unaryOp->getSubExpr(); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2756 | |
John McCall | f24d7bb | 2010-05-28 18:45:08 +0000 | [diff] [blame] | 2757 | UnresolvedLookupExpr *ULE = dyn_cast<UnresolvedLookupExpr>(Arg); |
| 2758 | if (!ULE) continue; |
John McCall | d14a864 | 2009-11-21 08:51:07 +0000 | [diff] [blame] | 2759 | |
Aaron Ballman | 1e606f4 | 2014-07-15 22:03:49 +0000 | [diff] [blame] | 2760 | for (const auto *D : ULE->decls()) { |
Chandler Carruth | c25c6ee | 2009-12-29 06:17:27 +0000 | [diff] [blame] | 2761 | // Look through any using declarations to find the underlying function. |
Aaron Ballman | 1e606f4 | 2014-07-15 22:03:49 +0000 | [diff] [blame] | 2762 | const FunctionDecl *FDecl = D->getUnderlyingDecl()->getAsFunction(); |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2763 | |
| 2764 | // Add the classes and namespaces associated with the parameter |
| 2765 | // types and return type of this function. |
John McCall | f24d7bb | 2010-05-28 18:45:08 +0000 | [diff] [blame] | 2766 | addAssociatedClassesAndNamespaces(Result, FDecl->getType()); |
Douglas Gregor | e254f90 | 2009-02-04 00:32:51 +0000 | [diff] [blame] | 2767 | } |
| 2768 | } |
| 2769 | } |
Douglas Gregor | d2b7ef6 | 2009-03-13 00:33:25 +0000 | [diff] [blame] | 2770 | |
John McCall | 5cebab1 | 2009-11-18 07:57:50 +0000 | [diff] [blame] | 2771 | NamedDecl *Sema::LookupSingleName(Scope *S, DeclarationName Name, |
Douglas Gregor | b2ccf01 | 2010-04-15 22:33:43 +0000 | [diff] [blame] | 2772 | SourceLocation Loc, |
John McCall | 5cebab1 | 2009-11-18 07:57:50 +0000 | [diff] [blame] | 2773 | LookupNameKind NameKind, |
| 2774 | RedeclarationKind Redecl) { |
Douglas Gregor | b2ccf01 | 2010-04-15 22:33:43 +0000 | [diff] [blame] | 2775 | LookupResult R(*this, Name, Loc, NameKind, Redecl); |
John McCall | 5cebab1 | 2009-11-18 07:57:50 +0000 | [diff] [blame] | 2776 | LookupName(R, S); |
John McCall | 67c0087 | 2009-12-02 08:25:40 +0000 | [diff] [blame] | 2777 | return R.getAsSingle<NamedDecl>(); |
John McCall | 5cebab1 | 2009-11-18 07:57:50 +0000 | [diff] [blame] | 2778 | } |
| 2779 | |
Douglas Gregor | de9f17e | 2009-04-23 23:18:26 +0000 | [diff] [blame] | 2780 | /// \brief Find the protocol with the given name, if any. |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 2781 | ObjCProtocolDecl *Sema::LookupProtocol(IdentifierInfo *II, |
Douglas Gregor | 32c1757 | 2012-01-01 20:30:41 +0000 | [diff] [blame] | 2782 | SourceLocation IdLoc, |
| 2783 | RedeclarationKind Redecl) { |
Douglas Gregor | b2ccf01 | 2010-04-15 22:33:43 +0000 | [diff] [blame] | 2784 | Decl *D = LookupSingleName(TUScope, II, IdLoc, |
Douglas Gregor | 32c1757 | 2012-01-01 20:30:41 +0000 | [diff] [blame] | 2785 | LookupObjCProtocolName, Redecl); |
Douglas Gregor | de9f17e | 2009-04-23 23:18:26 +0000 | [diff] [blame] | 2786 | return cast_or_null<ObjCProtocolDecl>(D); |
| 2787 | } |
| 2788 | |
Douglas Gregor | d2b7ef6 | 2009-03-13 00:33:25 +0000 | [diff] [blame] | 2789 | void Sema::LookupOverloadedOperatorName(OverloadedOperatorKind Op, Scope *S, |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2790 | QualType T1, QualType T2, |
John McCall | 4c4c1df | 2010-01-26 03:27:55 +0000 | [diff] [blame] | 2791 | UnresolvedSetImpl &Functions) { |
Douglas Gregor | d2b7ef6 | 2009-03-13 00:33:25 +0000 | [diff] [blame] | 2792 | // C++ [over.match.oper]p3: |
| 2793 | // -- The set of non-member candidates is the result of the |
| 2794 | // unqualified lookup of operator@ in the context of the |
| 2795 | // expression according to the usual rules for name lookup in |
| 2796 | // unqualified function calls (3.4.2) except that all member |
Richard Smith | 100b24a | 2014-04-17 01:52:14 +0000 | [diff] [blame] | 2797 | // functions are ignored. |
Douglas Gregor | d2b7ef6 | 2009-03-13 00:33:25 +0000 | [diff] [blame] | 2798 | DeclarationName OpName = Context.DeclarationNames.getCXXOperatorName(Op); |
John McCall | 27b18f8 | 2009-11-17 02:14:36 +0000 | [diff] [blame] | 2799 | LookupResult Operators(*this, OpName, SourceLocation(), LookupOperatorName); |
| 2800 | LookupName(Operators, S); |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2801 | |
Douglas Gregor | d2b7ef6 | 2009-03-13 00:33:25 +0000 | [diff] [blame] | 2802 | assert(!Operators.isAmbiguous() && "Operator lookup cannot be ambiguous"); |
Richard Smith | 100b24a | 2014-04-17 01:52:14 +0000 | [diff] [blame] | 2803 | Functions.append(Operators.begin(), Operators.end()); |
Douglas Gregor | d2b7ef6 | 2009-03-13 00:33:25 +0000 | [diff] [blame] | 2804 | } |
| 2805 | |
Alexis Hunt | 1da3928 | 2011-06-24 02:11:39 +0000 | [diff] [blame] | 2806 | Sema::SpecialMemberOverloadResult *Sema::LookupSpecialMember(CXXRecordDecl *RD, |
Alexis Hunt | 4ac55e3 | 2011-06-04 04:32:43 +0000 | [diff] [blame] | 2807 | CXXSpecialMember SM, |
| 2808 | bool ConstArg, |
| 2809 | bool VolatileArg, |
| 2810 | bool RValueThis, |
| 2811 | bool ConstThis, |
| 2812 | bool VolatileThis) { |
Richard Smith | 7d125a1 | 2012-11-27 21:20:31 +0000 | [diff] [blame] | 2813 | assert(CanDeclareSpecialMemberFunction(RD) && |
Alexis Hunt | 4ac55e3 | 2011-06-04 04:32:43 +0000 | [diff] [blame] | 2814 | "doing special member lookup into record that isn't fully complete"); |
Richard Smith | 7d125a1 | 2012-11-27 21:20:31 +0000 | [diff] [blame] | 2815 | RD = RD->getDefinition(); |
Alexis Hunt | 4ac55e3 | 2011-06-04 04:32:43 +0000 | [diff] [blame] | 2816 | if (RValueThis || ConstThis || VolatileThis) |
| 2817 | assert((SM == CXXCopyAssignment || SM == CXXMoveAssignment) && |
| 2818 | "constructors and destructors always have unqualified lvalue this"); |
| 2819 | if (ConstArg || VolatileArg) |
| 2820 | assert((SM != CXXDefaultConstructor && SM != CXXDestructor) && |
| 2821 | "parameter-less special members can't have qualified arguments"); |
| 2822 | |
| 2823 | llvm::FoldingSetNodeID ID; |
Alexis Hunt | 1da3928 | 2011-06-24 02:11:39 +0000 | [diff] [blame] | 2824 | ID.AddPointer(RD); |
Alexis Hunt | 4ac55e3 | 2011-06-04 04:32:43 +0000 | [diff] [blame] | 2825 | ID.AddInteger(SM); |
| 2826 | ID.AddInteger(ConstArg); |
| 2827 | ID.AddInteger(VolatileArg); |
| 2828 | ID.AddInteger(RValueThis); |
| 2829 | ID.AddInteger(ConstThis); |
| 2830 | ID.AddInteger(VolatileThis); |
| 2831 | |
| 2832 | void *InsertPoint; |
| 2833 | SpecialMemberOverloadResult *Result = |
| 2834 | SpecialMemberCache.FindNodeOrInsertPos(ID, InsertPoint); |
| 2835 | |
| 2836 | // This was already cached |
| 2837 | if (Result) |
| 2838 | return Result; |
| 2839 | |
Alexis Hunt | ba8e18d | 2011-06-07 00:11:58 +0000 | [diff] [blame] | 2840 | Result = BumpAlloc.Allocate<SpecialMemberOverloadResult>(); |
| 2841 | Result = new (Result) SpecialMemberOverloadResult(ID); |
Alexis Hunt | 4ac55e3 | 2011-06-04 04:32:43 +0000 | [diff] [blame] | 2842 | SpecialMemberCache.InsertNode(Result, InsertPoint); |
| 2843 | |
| 2844 | if (SM == CXXDestructor) { |
Richard Smith | 2be35f5 | 2012-12-01 02:35:44 +0000 | [diff] [blame] | 2845 | if (RD->needsImplicitDestructor()) |
Alexis Hunt | 1da3928 | 2011-06-24 02:11:39 +0000 | [diff] [blame] | 2846 | DeclareImplicitDestructor(RD); |
| 2847 | CXXDestructorDecl *DD = RD->getDestructor(); |
Alexis Hunt | 4ac55e3 | 2011-06-04 04:32:43 +0000 | [diff] [blame] | 2848 | assert(DD && "record without a destructor"); |
| 2849 | Result->setMethod(DD); |
Richard Smith | 852265f | 2012-03-30 20:53:28 +0000 | [diff] [blame] | 2850 | Result->setKind(DD->isDeleted() ? |
| 2851 | SpecialMemberOverloadResult::NoMemberOrDeleted : |
Richard Smith | 83c478d | 2012-04-20 18:46:14 +0000 | [diff] [blame] | 2852 | SpecialMemberOverloadResult::Success); |
Alexis Hunt | 4ac55e3 | 2011-06-04 04:32:43 +0000 | [diff] [blame] | 2853 | return Result; |
| 2854 | } |
| 2855 | |
Alexis Hunt | eef8ee0 | 2011-06-10 03:50:41 +0000 | [diff] [blame] | 2856 | // Prepare for overload resolution. Here we construct a synthetic argument |
| 2857 | // if necessary and make sure that implicit functions are declared. |
Alexis Hunt | 1da3928 | 2011-06-24 02:11:39 +0000 | [diff] [blame] | 2858 | CanQualType CanTy = Context.getCanonicalType(Context.getTagDeclType(RD)); |
Alexis Hunt | eef8ee0 | 2011-06-10 03:50:41 +0000 | [diff] [blame] | 2859 | DeclarationName Name; |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 2860 | Expr *Arg = nullptr; |
Alexis Hunt | eef8ee0 | 2011-06-10 03:50:41 +0000 | [diff] [blame] | 2861 | unsigned NumArgs; |
| 2862 | |
Richard Smith | 83c478d | 2012-04-20 18:46:14 +0000 | [diff] [blame] | 2863 | QualType ArgType = CanTy; |
| 2864 | ExprValueKind VK = VK_LValue; |
| 2865 | |
Alexis Hunt | eef8ee0 | 2011-06-10 03:50:41 +0000 | [diff] [blame] | 2866 | if (SM == CXXDefaultConstructor) { |
| 2867 | Name = Context.DeclarationNames.getCXXConstructorName(CanTy); |
| 2868 | NumArgs = 0; |
Alexis Hunt | 1da3928 | 2011-06-24 02:11:39 +0000 | [diff] [blame] | 2869 | if (RD->needsImplicitDefaultConstructor()) |
| 2870 | DeclareImplicitDefaultConstructor(RD); |
Alexis Hunt | eef8ee0 | 2011-06-10 03:50:41 +0000 | [diff] [blame] | 2871 | } else { |
| 2872 | if (SM == CXXCopyConstructor || SM == CXXMoveConstructor) { |
| 2873 | Name = Context.DeclarationNames.getCXXConstructorName(CanTy); |
Richard Smith | 2be35f5 | 2012-12-01 02:35:44 +0000 | [diff] [blame] | 2874 | if (RD->needsImplicitCopyConstructor()) |
Alexis Hunt | 1da3928 | 2011-06-24 02:11:39 +0000 | [diff] [blame] | 2875 | DeclareImplicitCopyConstructor(RD); |
Richard Smith | 2bf7fdb | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 2876 | if (getLangOpts().CPlusPlus11 && RD->needsImplicitMoveConstructor()) |
Sebastian Redl | 22653ba | 2011-08-30 19:58:05 +0000 | [diff] [blame] | 2877 | DeclareImplicitMoveConstructor(RD); |
Alexis Hunt | eef8ee0 | 2011-06-10 03:50:41 +0000 | [diff] [blame] | 2878 | } else { |
| 2879 | Name = Context.DeclarationNames.getCXXOperatorName(OO_Equal); |
Richard Smith | 2be35f5 | 2012-12-01 02:35:44 +0000 | [diff] [blame] | 2880 | if (RD->needsImplicitCopyAssignment()) |
Alexis Hunt | 1da3928 | 2011-06-24 02:11:39 +0000 | [diff] [blame] | 2881 | DeclareImplicitCopyAssignment(RD); |
Richard Smith | 2bf7fdb | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 2882 | if (getLangOpts().CPlusPlus11 && RD->needsImplicitMoveAssignment()) |
Sebastian Redl | 22653ba | 2011-08-30 19:58:05 +0000 | [diff] [blame] | 2883 | DeclareImplicitMoveAssignment(RD); |
Alexis Hunt | eef8ee0 | 2011-06-10 03:50:41 +0000 | [diff] [blame] | 2884 | } |
| 2885 | |
Alexis Hunt | eef8ee0 | 2011-06-10 03:50:41 +0000 | [diff] [blame] | 2886 | if (ConstArg) |
| 2887 | ArgType.addConst(); |
| 2888 | if (VolatileArg) |
| 2889 | ArgType.addVolatile(); |
| 2890 | |
| 2891 | // This isn't /really/ specified by the standard, but it's implied |
| 2892 | // we should be working from an RValue in the case of move to ensure |
| 2893 | // that we prefer to bind to rvalue references, and an LValue in the |
| 2894 | // case of copy to ensure we don't bind to rvalue references. |
| 2895 | // Possibly an XValue is actually correct in the case of move, but |
| 2896 | // there is no semantic difference for class types in this restricted |
| 2897 | // case. |
Alexis Hunt | 46d1ce2 | 2011-06-22 22:13:13 +0000 | [diff] [blame] | 2898 | if (SM == CXXCopyConstructor || SM == CXXCopyAssignment) |
Alexis Hunt | eef8ee0 | 2011-06-10 03:50:41 +0000 | [diff] [blame] | 2899 | VK = VK_LValue; |
| 2900 | else |
| 2901 | VK = VK_RValue; |
Richard Smith | 83c478d | 2012-04-20 18:46:14 +0000 | [diff] [blame] | 2902 | } |
Alexis Hunt | eef8ee0 | 2011-06-10 03:50:41 +0000 | [diff] [blame] | 2903 | |
Richard Smith | 83c478d | 2012-04-20 18:46:14 +0000 | [diff] [blame] | 2904 | OpaqueValueExpr FakeArg(SourceLocation(), ArgType, VK); |
| 2905 | |
| 2906 | if (SM != CXXDefaultConstructor) { |
Alexis Hunt | eef8ee0 | 2011-06-10 03:50:41 +0000 | [diff] [blame] | 2907 | NumArgs = 1; |
Richard Smith | 83c478d | 2012-04-20 18:46:14 +0000 | [diff] [blame] | 2908 | Arg = &FakeArg; |
Alexis Hunt | eef8ee0 | 2011-06-10 03:50:41 +0000 | [diff] [blame] | 2909 | } |
| 2910 | |
| 2911 | // Create the object argument |
| 2912 | QualType ThisTy = CanTy; |
| 2913 | if (ConstThis) |
| 2914 | ThisTy.addConst(); |
| 2915 | if (VolatileThis) |
| 2916 | ThisTy.addVolatile(); |
Alexis Hunt | 080709f | 2011-06-23 00:26:20 +0000 | [diff] [blame] | 2917 | Expr::Classification Classification = |
Richard Smith | 83c478d | 2012-04-20 18:46:14 +0000 | [diff] [blame] | 2918 | OpaqueValueExpr(SourceLocation(), ThisTy, |
| 2919 | RValueThis ? VK_RValue : VK_LValue).Classify(Context); |
Alexis Hunt | eef8ee0 | 2011-06-10 03:50:41 +0000 | [diff] [blame] | 2920 | |
| 2921 | // Now we perform lookup on the name we computed earlier and do overload |
| 2922 | // resolution. Lookup is only performed directly into the class since there |
| 2923 | // will always be a (possibly implicit) declaration to shadow any others. |
Richard Smith | 100b24a | 2014-04-17 01:52:14 +0000 | [diff] [blame] | 2924 | OverloadCandidateSet OCS(RD->getLocation(), OverloadCandidateSet::CSK_Normal); |
David Blaikie | ff7d47a | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 2925 | DeclContext::lookup_result R = RD->lookup(Name); |
Richard Smith | 8c37ab5 | 2015-02-11 01:48:47 +0000 | [diff] [blame] | 2926 | |
| 2927 | if (R.empty()) { |
| 2928 | // We might have no default constructor because we have a lambda's closure |
| 2929 | // type, rather than because there's some other declared constructor. |
| 2930 | // Every class has a copy/move constructor, copy/move assignment, and |
| 2931 | // destructor. |
| 2932 | assert(SM == CXXDefaultConstructor && |
| 2933 | "lookup for a constructor or assignment operator was empty"); |
| 2934 | Result->setMethod(nullptr); |
| 2935 | Result->setKind(SpecialMemberOverloadResult::NoMemberOrDeleted); |
| 2936 | return Result; |
| 2937 | } |
Chandler Carruth | 7deaae7 | 2013-08-18 07:20:52 +0000 | [diff] [blame] | 2938 | |
| 2939 | // Copy the candidates as our processing of them may load new declarations |
| 2940 | // from an external source and invalidate lookup_result. |
| 2941 | SmallVector<NamedDecl *, 8> Candidates(R.begin(), R.end()); |
| 2942 | |
Aaron Ballman | 1e606f4 | 2014-07-15 22:03:49 +0000 | [diff] [blame] | 2943 | for (auto *Cand : Candidates) { |
Alexis Hunt | 1da3928 | 2011-06-24 02:11:39 +0000 | [diff] [blame] | 2944 | if (Cand->isInvalidDecl()) |
Alexis Hunt | eef8ee0 | 2011-06-10 03:50:41 +0000 | [diff] [blame] | 2945 | continue; |
| 2946 | |
Alexis Hunt | 1da3928 | 2011-06-24 02:11:39 +0000 | [diff] [blame] | 2947 | if (UsingShadowDecl *U = dyn_cast<UsingShadowDecl>(Cand)) { |
| 2948 | // FIXME: [namespace.udecl]p15 says that we should only consider a |
| 2949 | // using declaration here if it does not match a declaration in the |
| 2950 | // derived class. We do not implement this correctly in other cases |
| 2951 | // either. |
| 2952 | Cand = U->getTargetDecl(); |
| 2953 | |
| 2954 | if (Cand->isInvalidDecl()) |
| 2955 | continue; |
| 2956 | } |
| 2957 | |
| 2958 | if (CXXMethodDecl *M = dyn_cast<CXXMethodDecl>(Cand)) { |
Alexis Hunt | 080709f | 2011-06-23 00:26:20 +0000 | [diff] [blame] | 2959 | if (SM == CXXCopyAssignment || SM == CXXMoveAssignment) |
Alexis Hunt | 1da3928 | 2011-06-24 02:11:39 +0000 | [diff] [blame] | 2960 | AddMethodCandidate(M, DeclAccessPair::make(M, AS_public), RD, ThisTy, |
Ahmed Charles | b24b9aa | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 2961 | Classification, llvm::makeArrayRef(&Arg, NumArgs), |
| 2962 | OCS, true); |
Alexis Hunt | 080709f | 2011-06-23 00:26:20 +0000 | [diff] [blame] | 2963 | else |
Ahmed Charles | b24b9aa | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 2964 | AddOverloadCandidate(M, DeclAccessPair::make(M, AS_public), |
| 2965 | llvm::makeArrayRef(&Arg, NumArgs), OCS, true); |
Alexis Hunt | 2949f02 | 2011-06-22 02:58:46 +0000 | [diff] [blame] | 2966 | } else if (FunctionTemplateDecl *Tmpl = |
Alexis Hunt | 1da3928 | 2011-06-24 02:11:39 +0000 | [diff] [blame] | 2967 | dyn_cast<FunctionTemplateDecl>(Cand)) { |
Alexis Hunt | 080709f | 2011-06-23 00:26:20 +0000 | [diff] [blame] | 2968 | if (SM == CXXCopyAssignment || SM == CXXMoveAssignment) |
| 2969 | AddMethodTemplateCandidate(Tmpl, DeclAccessPair::make(Tmpl, AS_public), |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 2970 | RD, nullptr, ThisTy, Classification, |
Ahmed Charles | b24b9aa | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 2971 | llvm::makeArrayRef(&Arg, NumArgs), |
Alexis Hunt | 080709f | 2011-06-23 00:26:20 +0000 | [diff] [blame] | 2972 | OCS, true); |
| 2973 | else |
| 2974 | AddTemplateOverloadCandidate(Tmpl, DeclAccessPair::make(Tmpl, AS_public), |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 2975 | nullptr, llvm::makeArrayRef(&Arg, NumArgs), |
Ahmed Charles | b24b9aa | 2012-02-25 11:00:22 +0000 | [diff] [blame] | 2976 | OCS, true); |
Alexis Hunt | 1da3928 | 2011-06-24 02:11:39 +0000 | [diff] [blame] | 2977 | } else { |
| 2978 | assert(isa<UsingDecl>(Cand) && "illegal Kind of operator = Decl"); |
Alexis Hunt | eef8ee0 | 2011-06-10 03:50:41 +0000 | [diff] [blame] | 2979 | } |
| 2980 | } |
| 2981 | |
| 2982 | OverloadCandidateSet::iterator Best; |
| 2983 | switch (OCS.BestViableFunction(*this, SourceLocation(), Best)) { |
| 2984 | case OR_Success: |
| 2985 | Result->setMethod(cast<CXXMethodDecl>(Best->Function)); |
Richard Smith | 83c478d | 2012-04-20 18:46:14 +0000 | [diff] [blame] | 2986 | Result->setKind(SpecialMemberOverloadResult::Success); |
Alexis Hunt | eef8ee0 | 2011-06-10 03:50:41 +0000 | [diff] [blame] | 2987 | break; |
| 2988 | |
| 2989 | case OR_Deleted: |
| 2990 | Result->setMethod(cast<CXXMethodDecl>(Best->Function)); |
Richard Smith | 852265f | 2012-03-30 20:53:28 +0000 | [diff] [blame] | 2991 | Result->setKind(SpecialMemberOverloadResult::NoMemberOrDeleted); |
Alexis Hunt | eef8ee0 | 2011-06-10 03:50:41 +0000 | [diff] [blame] | 2992 | break; |
| 2993 | |
| 2994 | case OR_Ambiguous: |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 2995 | Result->setMethod(nullptr); |
Richard Smith | 852265f | 2012-03-30 20:53:28 +0000 | [diff] [blame] | 2996 | Result->setKind(SpecialMemberOverloadResult::Ambiguous); |
| 2997 | break; |
| 2998 | |
Alexis Hunt | eef8ee0 | 2011-06-10 03:50:41 +0000 | [diff] [blame] | 2999 | case OR_No_Viable_Function: |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 3000 | Result->setMethod(nullptr); |
Richard Smith | 852265f | 2012-03-30 20:53:28 +0000 | [diff] [blame] | 3001 | Result->setKind(SpecialMemberOverloadResult::NoMemberOrDeleted); |
Alexis Hunt | eef8ee0 | 2011-06-10 03:50:41 +0000 | [diff] [blame] | 3002 | break; |
| 3003 | } |
| 3004 | |
| 3005 | return Result; |
| 3006 | } |
| 3007 | |
| 3008 | /// \brief Look up the default constructor for the given class. |
| 3009 | CXXConstructorDecl *Sema::LookupDefaultConstructor(CXXRecordDecl *Class) { |
Alexis Hunt | 899bd44 | 2011-06-10 04:44:37 +0000 | [diff] [blame] | 3010 | SpecialMemberOverloadResult *Result = |
Alexis Hunt | eef8ee0 | 2011-06-10 03:50:41 +0000 | [diff] [blame] | 3011 | LookupSpecialMember(Class, CXXDefaultConstructor, false, false, false, |
| 3012 | false, false); |
| 3013 | |
| 3014 | return cast_or_null<CXXConstructorDecl>(Result->getMethod()); |
Alexis Hunt | 4ac55e3 | 2011-06-04 04:32:43 +0000 | [diff] [blame] | 3015 | } |
| 3016 | |
Alexis Hunt | 491ec60 | 2011-06-21 23:42:56 +0000 | [diff] [blame] | 3017 | /// \brief Look up the copying constructor for the given class. |
| 3018 | CXXConstructorDecl *Sema::LookupCopyingConstructor(CXXRecordDecl *Class, |
Richard Smith | 83c478d | 2012-04-20 18:46:14 +0000 | [diff] [blame] | 3019 | unsigned Quals) { |
Alexis Hunt | 899bd44 | 2011-06-10 04:44:37 +0000 | [diff] [blame] | 3020 | assert(!(Quals & ~(Qualifiers::Const | Qualifiers::Volatile)) && |
| 3021 | "non-const, non-volatile qualifiers for copy ctor arg"); |
| 3022 | SpecialMemberOverloadResult *Result = |
| 3023 | LookupSpecialMember(Class, CXXCopyConstructor, Quals & Qualifiers::Const, |
| 3024 | Quals & Qualifiers::Volatile, false, false, false); |
| 3025 | |
Alexis Hunt | 899bd44 | 2011-06-10 04:44:37 +0000 | [diff] [blame] | 3026 | return cast_or_null<CXXConstructorDecl>(Result->getMethod()); |
| 3027 | } |
| 3028 | |
Sebastian Redl | 22653ba | 2011-08-30 19:58:05 +0000 | [diff] [blame] | 3029 | /// \brief Look up the moving constructor for the given class. |
Richard Smith | 1c6461e | 2012-07-18 03:36:00 +0000 | [diff] [blame] | 3030 | CXXConstructorDecl *Sema::LookupMovingConstructor(CXXRecordDecl *Class, |
| 3031 | unsigned Quals) { |
Sebastian Redl | 22653ba | 2011-08-30 19:58:05 +0000 | [diff] [blame] | 3032 | SpecialMemberOverloadResult *Result = |
Richard Smith | 1c6461e | 2012-07-18 03:36:00 +0000 | [diff] [blame] | 3033 | LookupSpecialMember(Class, CXXMoveConstructor, Quals & Qualifiers::Const, |
| 3034 | Quals & Qualifiers::Volatile, false, false, false); |
Sebastian Redl | 22653ba | 2011-08-30 19:58:05 +0000 | [diff] [blame] | 3035 | |
| 3036 | return cast_or_null<CXXConstructorDecl>(Result->getMethod()); |
| 3037 | } |
| 3038 | |
Douglas Gregor | 52b7282 | 2010-07-02 23:12:18 +0000 | [diff] [blame] | 3039 | /// \brief Look up the constructors for the given class. |
| 3040 | DeclContext::lookup_result Sema::LookupConstructors(CXXRecordDecl *Class) { |
Alexis Hunt | eef8ee0 | 2011-06-10 03:50:41 +0000 | [diff] [blame] | 3041 | // If the implicit constructors have not yet been declared, do so now. |
Richard Smith | 7d125a1 | 2012-11-27 21:20:31 +0000 | [diff] [blame] | 3042 | if (CanDeclareSpecialMemberFunction(Class)) { |
Alexis Hunt | ea6f032 | 2011-05-11 22:34:38 +0000 | [diff] [blame] | 3043 | if (Class->needsImplicitDefaultConstructor()) |
Douglas Gregor | 9672f92 | 2010-07-03 00:47:00 +0000 | [diff] [blame] | 3044 | DeclareImplicitDefaultConstructor(Class); |
Richard Smith | 2be35f5 | 2012-12-01 02:35:44 +0000 | [diff] [blame] | 3045 | if (Class->needsImplicitCopyConstructor()) |
Douglas Gregor | 9672f92 | 2010-07-03 00:47:00 +0000 | [diff] [blame] | 3046 | DeclareImplicitCopyConstructor(Class); |
Richard Smith | 2bf7fdb | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 3047 | if (getLangOpts().CPlusPlus11 && Class->needsImplicitMoveConstructor()) |
Sebastian Redl | 22653ba | 2011-08-30 19:58:05 +0000 | [diff] [blame] | 3048 | DeclareImplicitMoveConstructor(Class); |
Douglas Gregor | 9672f92 | 2010-07-03 00:47:00 +0000 | [diff] [blame] | 3049 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3050 | |
Douglas Gregor | 52b7282 | 2010-07-02 23:12:18 +0000 | [diff] [blame] | 3051 | CanQualType T = Context.getCanonicalType(Context.getTypeDeclType(Class)); |
| 3052 | DeclarationName Name = Context.DeclarationNames.getCXXConstructorName(T); |
| 3053 | return Class->lookup(Name); |
| 3054 | } |
| 3055 | |
Alexis Hunt | 491ec60 | 2011-06-21 23:42:56 +0000 | [diff] [blame] | 3056 | /// \brief Look up the copying assignment operator for the given class. |
| 3057 | CXXMethodDecl *Sema::LookupCopyingAssignment(CXXRecordDecl *Class, |
| 3058 | unsigned Quals, bool RValueThis, |
Richard Smith | 83c478d | 2012-04-20 18:46:14 +0000 | [diff] [blame] | 3059 | unsigned ThisQuals) { |
Alexis Hunt | 491ec60 | 2011-06-21 23:42:56 +0000 | [diff] [blame] | 3060 | assert(!(Quals & ~(Qualifiers::Const | Qualifiers::Volatile)) && |
| 3061 | "non-const, non-volatile qualifiers for copy assignment arg"); |
| 3062 | assert(!(ThisQuals & ~(Qualifiers::Const | Qualifiers::Volatile)) && |
| 3063 | "non-const, non-volatile qualifiers for copy assignment this"); |
| 3064 | SpecialMemberOverloadResult *Result = |
| 3065 | LookupSpecialMember(Class, CXXCopyAssignment, Quals & Qualifiers::Const, |
| 3066 | Quals & Qualifiers::Volatile, RValueThis, |
| 3067 | ThisQuals & Qualifiers::Const, |
| 3068 | ThisQuals & Qualifiers::Volatile); |
| 3069 | |
Alexis Hunt | 491ec60 | 2011-06-21 23:42:56 +0000 | [diff] [blame] | 3070 | return Result->getMethod(); |
| 3071 | } |
| 3072 | |
Sebastian Redl | 22653ba | 2011-08-30 19:58:05 +0000 | [diff] [blame] | 3073 | /// \brief Look up the moving assignment operator for the given class. |
| 3074 | CXXMethodDecl *Sema::LookupMovingAssignment(CXXRecordDecl *Class, |
Richard Smith | 1c6461e | 2012-07-18 03:36:00 +0000 | [diff] [blame] | 3075 | unsigned Quals, |
Sebastian Redl | 22653ba | 2011-08-30 19:58:05 +0000 | [diff] [blame] | 3076 | bool RValueThis, |
| 3077 | unsigned ThisQuals) { |
| 3078 | assert(!(ThisQuals & ~(Qualifiers::Const | Qualifiers::Volatile)) && |
| 3079 | "non-const, non-volatile qualifiers for copy assignment this"); |
| 3080 | SpecialMemberOverloadResult *Result = |
Richard Smith | 1c6461e | 2012-07-18 03:36:00 +0000 | [diff] [blame] | 3081 | LookupSpecialMember(Class, CXXMoveAssignment, Quals & Qualifiers::Const, |
| 3082 | Quals & Qualifiers::Volatile, RValueThis, |
Sebastian Redl | 22653ba | 2011-08-30 19:58:05 +0000 | [diff] [blame] | 3083 | ThisQuals & Qualifiers::Const, |
| 3084 | ThisQuals & Qualifiers::Volatile); |
| 3085 | |
| 3086 | return Result->getMethod(); |
| 3087 | } |
| 3088 | |
Douglas Gregor | e71edda | 2010-07-01 22:47:18 +0000 | [diff] [blame] | 3089 | /// \brief Look for the destructor of the given class. |
| 3090 | /// |
Alexis Hunt | 967ea7c | 2011-06-03 21:10:40 +0000 | [diff] [blame] | 3091 | /// During semantic analysis, this routine should be used in lieu of |
| 3092 | /// CXXRecordDecl::getDestructor(). |
Douglas Gregor | e71edda | 2010-07-01 22:47:18 +0000 | [diff] [blame] | 3093 | /// |
| 3094 | /// \returns The destructor for this class. |
| 3095 | CXXDestructorDecl *Sema::LookupDestructor(CXXRecordDecl *Class) { |
Alexis Hunt | 4ac55e3 | 2011-06-04 04:32:43 +0000 | [diff] [blame] | 3096 | return cast<CXXDestructorDecl>(LookupSpecialMember(Class, CXXDestructor, |
| 3097 | false, false, false, |
| 3098 | false, false)->getMethod()); |
Douglas Gregor | e71edda | 2010-07-01 22:47:18 +0000 | [diff] [blame] | 3099 | } |
| 3100 | |
Richard Smith | bcc22fc | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 3101 | /// LookupLiteralOperator - Determine which literal operator should be used for |
| 3102 | /// a user-defined literal, per C++11 [lex.ext]. |
| 3103 | /// |
| 3104 | /// Normal overload resolution is not used to select which literal operator to |
| 3105 | /// call for a user-defined literal. Look up the provided literal operator name, |
| 3106 | /// and filter the results to the appropriate set for the given argument types. |
| 3107 | Sema::LiteralOperatorLookupResult |
| 3108 | Sema::LookupLiteralOperator(Scope *S, LookupResult &R, |
| 3109 | ArrayRef<QualType> ArgTys, |
Richard Smith | b8b41d3 | 2013-10-07 19:57:58 +0000 | [diff] [blame] | 3110 | bool AllowRaw, bool AllowTemplate, |
| 3111 | bool AllowStringTemplate) { |
Richard Smith | bcc22fc | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 3112 | LookupName(R, S); |
| 3113 | assert(R.getResultKind() != LookupResult::Ambiguous && |
| 3114 | "literal operator lookup can't be ambiguous"); |
| 3115 | |
| 3116 | // Filter the lookup results appropriately. |
| 3117 | LookupResult::Filter F = R.makeFilter(); |
| 3118 | |
Richard Smith | bcc22fc | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 3119 | bool FoundRaw = false; |
Richard Smith | b8b41d3 | 2013-10-07 19:57:58 +0000 | [diff] [blame] | 3120 | bool FoundTemplate = false; |
| 3121 | bool FoundStringTemplate = false; |
Richard Smith | bcc22fc | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 3122 | bool FoundExactMatch = false; |
| 3123 | |
| 3124 | while (F.hasNext()) { |
| 3125 | Decl *D = F.next(); |
| 3126 | if (UsingShadowDecl *USD = dyn_cast<UsingShadowDecl>(D)) |
| 3127 | D = USD->getTargetDecl(); |
| 3128 | |
Douglas Gregor | c197057 | 2013-04-10 05:18:00 +0000 | [diff] [blame] | 3129 | // If the declaration we found is invalid, skip it. |
| 3130 | if (D->isInvalidDecl()) { |
| 3131 | F.erase(); |
| 3132 | continue; |
| 3133 | } |
| 3134 | |
Richard Smith | b8b41d3 | 2013-10-07 19:57:58 +0000 | [diff] [blame] | 3135 | bool IsRaw = false; |
| 3136 | bool IsTemplate = false; |
| 3137 | bool IsStringTemplate = false; |
| 3138 | bool IsExactMatch = false; |
| 3139 | |
Richard Smith | bcc22fc | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 3140 | if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { |
| 3141 | if (FD->getNumParams() == 1 && |
| 3142 | FD->getParamDecl(0)->getType()->getAs<PointerType>()) |
| 3143 | IsRaw = true; |
Richard Smith | 550de45 | 2013-01-15 07:12:59 +0000 | [diff] [blame] | 3144 | else if (FD->getNumParams() == ArgTys.size()) { |
Richard Smith | bcc22fc | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 3145 | IsExactMatch = true; |
| 3146 | for (unsigned ArgIdx = 0; ArgIdx != ArgTys.size(); ++ArgIdx) { |
| 3147 | QualType ParamTy = FD->getParamDecl(ArgIdx)->getType(); |
| 3148 | if (!Context.hasSameUnqualifiedType(ArgTys[ArgIdx], ParamTy)) { |
| 3149 | IsExactMatch = false; |
| 3150 | break; |
| 3151 | } |
| 3152 | } |
| 3153 | } |
| 3154 | } |
Richard Smith | b8b41d3 | 2013-10-07 19:57:58 +0000 | [diff] [blame] | 3155 | if (FunctionTemplateDecl *FD = dyn_cast<FunctionTemplateDecl>(D)) { |
| 3156 | TemplateParameterList *Params = FD->getTemplateParameters(); |
| 3157 | if (Params->size() == 1) |
| 3158 | IsTemplate = true; |
| 3159 | else |
| 3160 | IsStringTemplate = true; |
| 3161 | } |
Richard Smith | bcc22fc | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 3162 | |
| 3163 | if (IsExactMatch) { |
| 3164 | FoundExactMatch = true; |
Richard Smith | b8b41d3 | 2013-10-07 19:57:58 +0000 | [diff] [blame] | 3165 | AllowRaw = false; |
| 3166 | AllowTemplate = false; |
| 3167 | AllowStringTemplate = false; |
| 3168 | if (FoundRaw || FoundTemplate || FoundStringTemplate) { |
Richard Smith | bcc22fc | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 3169 | // Go through again and remove the raw and template decls we've |
| 3170 | // already found. |
| 3171 | F.restart(); |
Richard Smith | b8b41d3 | 2013-10-07 19:57:58 +0000 | [diff] [blame] | 3172 | FoundRaw = FoundTemplate = FoundStringTemplate = false; |
Richard Smith | bcc22fc | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 3173 | } |
Richard Smith | b8b41d3 | 2013-10-07 19:57:58 +0000 | [diff] [blame] | 3174 | } else if (AllowRaw && IsRaw) { |
| 3175 | FoundRaw = true; |
| 3176 | } else if (AllowTemplate && IsTemplate) { |
| 3177 | FoundTemplate = true; |
| 3178 | } else if (AllowStringTemplate && IsStringTemplate) { |
| 3179 | FoundStringTemplate = true; |
Richard Smith | bcc22fc | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 3180 | } else { |
| 3181 | F.erase(); |
| 3182 | } |
| 3183 | } |
| 3184 | |
| 3185 | F.done(); |
| 3186 | |
| 3187 | // C++11 [lex.ext]p3, p4: If S contains a literal operator with a matching |
| 3188 | // parameter type, that is used in preference to a raw literal operator |
| 3189 | // or literal operator template. |
| 3190 | if (FoundExactMatch) |
| 3191 | return LOLR_Cooked; |
| 3192 | |
| 3193 | // C++11 [lex.ext]p3, p4: S shall contain a raw literal operator or a literal |
| 3194 | // operator template, but not both. |
| 3195 | if (FoundRaw && FoundTemplate) { |
| 3196 | Diag(R.getNameLoc(), diag::err_ovl_ambiguous_call) << R.getLookupName(); |
Alp Toker | a2794f9 | 2014-01-22 07:29:52 +0000 | [diff] [blame] | 3197 | for (LookupResult::iterator I = R.begin(), E = R.end(); I != E; ++I) |
Richard Smith | c2bebe9 | 2016-05-11 20:37:46 +0000 | [diff] [blame] | 3198 | NoteOverloadCandidate(*I, (*I)->getUnderlyingDecl()->getAsFunction()); |
Richard Smith | bcc22fc | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 3199 | return LOLR_Error; |
| 3200 | } |
| 3201 | |
| 3202 | if (FoundRaw) |
| 3203 | return LOLR_Raw; |
| 3204 | |
| 3205 | if (FoundTemplate) |
| 3206 | return LOLR_Template; |
| 3207 | |
Richard Smith | b8b41d3 | 2013-10-07 19:57:58 +0000 | [diff] [blame] | 3208 | if (FoundStringTemplate) |
| 3209 | return LOLR_StringTemplate; |
| 3210 | |
Richard Smith | bcc22fc | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 3211 | // Didn't find anything we could use. |
| 3212 | Diag(R.getNameLoc(), diag::err_ovl_no_viable_literal_operator) |
| 3213 | << R.getLookupName() << (int)ArgTys.size() << ArgTys[0] |
Richard Smith | b8b41d3 | 2013-10-07 19:57:58 +0000 | [diff] [blame] | 3214 | << (ArgTys.size() == 2 ? ArgTys[1] : QualType()) << AllowRaw |
| 3215 | << (AllowTemplate || AllowStringTemplate); |
Richard Smith | bcc22fc | 2012-03-09 08:00:36 +0000 | [diff] [blame] | 3216 | return LOLR_Error; |
| 3217 | } |
| 3218 | |
John McCall | 8fe6808 | 2010-01-26 07:16:45 +0000 | [diff] [blame] | 3219 | void ADLResult::insert(NamedDecl *New) { |
| 3220 | NamedDecl *&Old = Decls[cast<NamedDecl>(New->getCanonicalDecl())]; |
| 3221 | |
| 3222 | // If we haven't yet seen a decl for this key, or the last decl |
| 3223 | // was exactly this one, we're done. |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 3224 | if (Old == nullptr || Old == New) { |
John McCall | 8fe6808 | 2010-01-26 07:16:45 +0000 | [diff] [blame] | 3225 | Old = New; |
| 3226 | return; |
| 3227 | } |
| 3228 | |
| 3229 | // Otherwise, decide which is a more recent redeclaration. |
Alp Toker | a2794f9 | 2014-01-22 07:29:52 +0000 | [diff] [blame] | 3230 | FunctionDecl *OldFD = Old->getAsFunction(); |
| 3231 | FunctionDecl *NewFD = New->getAsFunction(); |
John McCall | 8fe6808 | 2010-01-26 07:16:45 +0000 | [diff] [blame] | 3232 | |
| 3233 | FunctionDecl *Cursor = NewFD; |
| 3234 | while (true) { |
Douglas Gregor | ec9fd13 | 2012-01-14 16:38:05 +0000 | [diff] [blame] | 3235 | Cursor = Cursor->getPreviousDecl(); |
John McCall | 8fe6808 | 2010-01-26 07:16:45 +0000 | [diff] [blame] | 3236 | |
| 3237 | // If we got to the end without finding OldFD, OldFD is the newer |
| 3238 | // declaration; leave things as they are. |
| 3239 | if (!Cursor) return; |
| 3240 | |
| 3241 | // If we do find OldFD, then NewFD is newer. |
| 3242 | if (Cursor == OldFD) break; |
| 3243 | |
| 3244 | // Otherwise, keep looking. |
| 3245 | } |
| 3246 | |
| 3247 | Old = New; |
| 3248 | } |
| 3249 | |
Richard Smith | 100b24a | 2014-04-17 01:52:14 +0000 | [diff] [blame] | 3250 | void Sema::ArgumentDependentLookup(DeclarationName Name, SourceLocation Loc, |
| 3251 | ArrayRef<Expr *> Args, ADLResult &Result) { |
Douglas Gregor | d2b7ef6 | 2009-03-13 00:33:25 +0000 | [diff] [blame] | 3252 | // Find all of the associated namespaces and classes based on the |
| 3253 | // arguments we have. |
| 3254 | AssociatedNamespaceSet AssociatedNamespaces; |
| 3255 | AssociatedClassSet AssociatedClasses; |
John McCall | 7d8b041 | 2012-08-24 20:38:34 +0000 | [diff] [blame] | 3256 | FindAssociatedClassesAndNamespaces(Loc, Args, |
John McCall | c7e8e79 | 2009-08-07 22:18:02 +0000 | [diff] [blame] | 3257 | AssociatedNamespaces, |
| 3258 | AssociatedClasses); |
Douglas Gregor | d2b7ef6 | 2009-03-13 00:33:25 +0000 | [diff] [blame] | 3259 | |
| 3260 | // C++ [basic.lookup.argdep]p3: |
Douglas Gregor | d2b7ef6 | 2009-03-13 00:33:25 +0000 | [diff] [blame] | 3261 | // Let X be the lookup set produced by unqualified lookup (3.4.1) |
| 3262 | // and let Y be the lookup set produced by argument dependent |
| 3263 | // lookup (defined as follows). If X contains [...] then Y is |
| 3264 | // empty. Otherwise Y is the set of declarations found in the |
| 3265 | // namespaces associated with the argument types as described |
| 3266 | // below. The set of declarations found by the lookup of the name |
| 3267 | // is the union of X and Y. |
| 3268 | // |
| 3269 | // Here, we compute Y and add its members to the overloaded |
| 3270 | // candidate set. |
Aaron Ballman | 1e606f4 | 2014-07-15 22:03:49 +0000 | [diff] [blame] | 3271 | for (auto *NS : AssociatedNamespaces) { |
Douglas Gregor | d2b7ef6 | 2009-03-13 00:33:25 +0000 | [diff] [blame] | 3272 | // When considering an associated namespace, the lookup is the |
| 3273 | // same as the lookup performed when the associated namespace is |
| 3274 | // used as a qualifier (3.4.3.2) except that: |
| 3275 | // |
| 3276 | // -- Any using-directives in the associated namespace are |
| 3277 | // ignored. |
| 3278 | // |
John McCall | c7e8e79 | 2009-08-07 22:18:02 +0000 | [diff] [blame] | 3279 | // -- Any namespace-scope friend functions declared in |
Douglas Gregor | d2b7ef6 | 2009-03-13 00:33:25 +0000 | [diff] [blame] | 3280 | // associated classes are visible within their respective |
| 3281 | // namespaces even if they are not visible during an ordinary |
| 3282 | // lookup (11.4). |
Aaron Ballman | 1e606f4 | 2014-07-15 22:03:49 +0000 | [diff] [blame] | 3283 | DeclContext::lookup_result R = NS->lookup(Name); |
| 3284 | for (auto *D : R) { |
John McCall | aa74a0c | 2009-08-28 07:59:38 +0000 | [diff] [blame] | 3285 | // If the only declaration here is an ordinary friend, consider |
| 3286 | // it only if it was declared in an associated classes. |
Richard Smith | 541b38b | 2013-09-20 01:15:31 +0000 | [diff] [blame] | 3287 | if ((D->getIdentifierNamespace() & Decl::IDNS_Ordinary) == 0) { |
| 3288 | // If it's neither ordinarily visible nor a friend, we can't find it. |
| 3289 | if ((D->getIdentifierNamespace() & Decl::IDNS_OrdinaryFriend) == 0) |
| 3290 | continue; |
| 3291 | |
Richard Smith | 6401768 | 2013-07-17 23:53:16 +0000 | [diff] [blame] | 3292 | bool DeclaredInAssociatedClass = false; |
| 3293 | for (Decl *DI = D; DI; DI = DI->getPreviousDecl()) { |
| 3294 | DeclContext *LexDC = DI->getLexicalDeclContext(); |
| 3295 | if (isa<CXXRecordDecl>(LexDC) && |
Richard Smith | 82b8d4e | 2015-12-18 22:19:11 +0000 | [diff] [blame] | 3296 | AssociatedClasses.count(cast<CXXRecordDecl>(LexDC)) && |
| 3297 | isVisible(cast<NamedDecl>(DI))) { |
Richard Smith | 6401768 | 2013-07-17 23:53:16 +0000 | [diff] [blame] | 3298 | DeclaredInAssociatedClass = true; |
| 3299 | break; |
| 3300 | } |
| 3301 | } |
| 3302 | if (!DeclaredInAssociatedClass) |
John McCall | d1e9d83 | 2009-08-11 06:59:38 +0000 | [diff] [blame] | 3303 | continue; |
| 3304 | } |
Mike Stump | 11289f4 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3305 | |
John McCall | 91f61fc | 2010-01-26 06:04:06 +0000 | [diff] [blame] | 3306 | if (isa<UsingShadowDecl>(D)) |
| 3307 | D = cast<UsingShadowDecl>(D)->getTargetDecl(); |
John McCall | 4c4c1df | 2010-01-26 03:27:55 +0000 | [diff] [blame] | 3308 | |
Richard Smith | 100b24a | 2014-04-17 01:52:14 +0000 | [diff] [blame] | 3309 | if (!isa<FunctionDecl>(D) && !isa<FunctionTemplateDecl>(D)) |
John McCall | 8fe6808 | 2010-01-26 07:16:45 +0000 | [diff] [blame] | 3310 | continue; |
| 3311 | |
Richard Smith | a143107 | 2015-06-12 01:32:13 +0000 | [diff] [blame] | 3312 | if (!isVisible(D) && !(D = findAcceptableDecl(*this, D))) |
| 3313 | continue; |
| 3314 | |
John McCall | 8fe6808 | 2010-01-26 07:16:45 +0000 | [diff] [blame] | 3315 | Result.insert(D); |
Douglas Gregor | 6127ca4 | 2009-06-23 20:14:09 +0000 | [diff] [blame] | 3316 | } |
| 3317 | } |
Douglas Gregor | d2b7ef6 | 2009-03-13 00:33:25 +0000 | [diff] [blame] | 3318 | } |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3319 | |
| 3320 | //---------------------------------------------------------------------------- |
| 3321 | // Search for all visible declarations. |
| 3322 | //---------------------------------------------------------------------------- |
Angel Garcia Gomez | 637d1e6 | 2015-10-20 13:23:58 +0000 | [diff] [blame] | 3323 | VisibleDeclConsumer::~VisibleDeclConsumer() { } |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3324 | |
Richard Smith | e156254d | 2013-08-20 20:35:18 +0000 | [diff] [blame] | 3325 | bool VisibleDeclConsumer::includeHiddenDecls() const { return false; } |
| 3326 | |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3327 | namespace { |
| 3328 | |
| 3329 | class ShadowContextRAII; |
| 3330 | |
| 3331 | class VisibleDeclsRecord { |
| 3332 | public: |
| 3333 | /// \brief An entry in the shadow map, which is optimized to store a |
| 3334 | /// single declaration (the common case) but can also store a list |
| 3335 | /// of declarations. |
Chris Lattner | 83cfc7c | 2011-07-18 01:54:02 +0000 | [diff] [blame] | 3336 | typedef llvm::TinyPtrVector<NamedDecl*> ShadowMapEntry; |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3337 | |
| 3338 | private: |
| 3339 | /// \brief A mapping from declaration names to the declarations that have |
| 3340 | /// this name within a particular scope. |
| 3341 | typedef llvm::DenseMap<DeclarationName, ShadowMapEntry> ShadowMap; |
| 3342 | |
| 3343 | /// \brief A list of shadow maps, which is used to model name hiding. |
| 3344 | std::list<ShadowMap> ShadowMaps; |
| 3345 | |
| 3346 | /// \brief The declaration contexts we have already visited. |
| 3347 | llvm::SmallPtrSet<DeclContext *, 8> VisitedContexts; |
| 3348 | |
| 3349 | friend class ShadowContextRAII; |
| 3350 | |
| 3351 | public: |
| 3352 | /// \brief Determine whether we have already visited this context |
| 3353 | /// (and, if not, note that we are going to visit that context now). |
| 3354 | bool visitedContext(DeclContext *Ctx) { |
David Blaikie | 82e95a3 | 2014-11-19 07:49:47 +0000 | [diff] [blame] | 3355 | return !VisitedContexts.insert(Ctx).second; |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3356 | } |
| 3357 | |
Douglas Gregor | 3998219 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 3358 | bool alreadyVisitedContext(DeclContext *Ctx) { |
| 3359 | return VisitedContexts.count(Ctx); |
| 3360 | } |
| 3361 | |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3362 | /// \brief Determine whether the given declaration is hidden in the |
| 3363 | /// current scope. |
| 3364 | /// |
| 3365 | /// \returns the declaration that hides the given declaration, or |
| 3366 | /// NULL if no such declaration exists. |
| 3367 | NamedDecl *checkHidden(NamedDecl *ND); |
| 3368 | |
| 3369 | /// \brief Add a declaration to the current shadow map. |
Chris Lattner | 83cfc7c | 2011-07-18 01:54:02 +0000 | [diff] [blame] | 3370 | void add(NamedDecl *ND) { |
| 3371 | ShadowMaps.back()[ND->getDeclName()].push_back(ND); |
| 3372 | } |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3373 | }; |
| 3374 | |
| 3375 | /// \brief RAII object that records when we've entered a shadow context. |
| 3376 | class ShadowContextRAII { |
| 3377 | VisibleDeclsRecord &Visible; |
| 3378 | |
| 3379 | typedef VisibleDeclsRecord::ShadowMap ShadowMap; |
| 3380 | |
| 3381 | public: |
| 3382 | ShadowContextRAII(VisibleDeclsRecord &Visible) : Visible(Visible) { |
Benjamin Kramer | 3204b15 | 2015-05-29 19:42:19 +0000 | [diff] [blame] | 3383 | Visible.ShadowMaps.emplace_back(); |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3384 | } |
| 3385 | |
| 3386 | ~ShadowContextRAII() { |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3387 | Visible.ShadowMaps.pop_back(); |
| 3388 | } |
| 3389 | }; |
| 3390 | |
| 3391 | } // end anonymous namespace |
| 3392 | |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3393 | NamedDecl *VisibleDeclsRecord::checkHidden(NamedDecl *ND) { |
| 3394 | unsigned IDNS = ND->getIdentifierNamespace(); |
| 3395 | std::list<ShadowMap>::reverse_iterator SM = ShadowMaps.rbegin(); |
| 3396 | for (std::list<ShadowMap>::reverse_iterator SMEnd = ShadowMaps.rend(); |
| 3397 | SM != SMEnd; ++SM) { |
| 3398 | ShadowMap::iterator Pos = SM->find(ND->getDeclName()); |
| 3399 | if (Pos == SM->end()) |
| 3400 | continue; |
| 3401 | |
Aaron Ballman | 1e606f4 | 2014-07-15 22:03:49 +0000 | [diff] [blame] | 3402 | for (auto *D : Pos->second) { |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3403 | // A tag declaration does not hide a non-tag declaration. |
Aaron Ballman | 1e606f4 | 2014-07-15 22:03:49 +0000 | [diff] [blame] | 3404 | if (D->hasTagIdentifierNamespace() && |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3405 | (IDNS & (Decl::IDNS_Member | Decl::IDNS_Ordinary | |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3406 | Decl::IDNS_ObjCProtocol))) |
| 3407 | continue; |
| 3408 | |
| 3409 | // Protocols are in distinct namespaces from everything else. |
Aaron Ballman | 1e606f4 | 2014-07-15 22:03:49 +0000 | [diff] [blame] | 3410 | if (((D->getIdentifierNamespace() & Decl::IDNS_ObjCProtocol) |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3411 | || (IDNS & Decl::IDNS_ObjCProtocol)) && |
Aaron Ballman | 1e606f4 | 2014-07-15 22:03:49 +0000 | [diff] [blame] | 3412 | D->getIdentifierNamespace() != IDNS) |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3413 | continue; |
| 3414 | |
Douglas Gregor | 09bbc65 | 2010-01-14 15:47:35 +0000 | [diff] [blame] | 3415 | // Functions and function templates in the same scope overload |
| 3416 | // rather than hide. FIXME: Look for hiding based on function |
| 3417 | // signatures! |
Aaron Ballman | 1e606f4 | 2014-07-15 22:03:49 +0000 | [diff] [blame] | 3418 | if (D->getUnderlyingDecl()->isFunctionOrFunctionTemplate() && |
Alp Toker | a2794f9 | 2014-01-22 07:29:52 +0000 | [diff] [blame] | 3419 | ND->getUnderlyingDecl()->isFunctionOrFunctionTemplate() && |
Douglas Gregor | 09bbc65 | 2010-01-14 15:47:35 +0000 | [diff] [blame] | 3420 | SM == ShadowMaps.rbegin()) |
Douglas Gregor | 200c99d | 2010-01-14 03:35:48 +0000 | [diff] [blame] | 3421 | continue; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3422 | |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3423 | // We've found a declaration that hides this one. |
Aaron Ballman | 1e606f4 | 2014-07-15 22:03:49 +0000 | [diff] [blame] | 3424 | return D; |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3425 | } |
| 3426 | } |
| 3427 | |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 3428 | return nullptr; |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3429 | } |
| 3430 | |
| 3431 | static void LookupVisibleDecls(DeclContext *Ctx, LookupResult &Result, |
| 3432 | bool QualifiedNameLookup, |
Douglas Gregor | 09bbc65 | 2010-01-14 15:47:35 +0000 | [diff] [blame] | 3433 | bool InBaseClass, |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3434 | VisibleDeclConsumer &Consumer, |
| 3435 | VisibleDeclsRecord &Visited) { |
Douglas Gregor | 0c8a172 | 2010-02-04 23:42:48 +0000 | [diff] [blame] | 3436 | if (!Ctx) |
| 3437 | return; |
| 3438 | |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3439 | // Make sure we don't visit the same context twice. |
| 3440 | if (Visited.visitedContext(Ctx->getPrimaryContext())) |
| 3441 | return; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3442 | |
Richard Smith | 9e2341d | 2015-03-23 03:25:59 +0000 | [diff] [blame] | 3443 | // Outside C++, lookup results for the TU live on identifiers. |
| 3444 | if (isa<TranslationUnitDecl>(Ctx) && |
| 3445 | !Result.getSema().getLangOpts().CPlusPlus) { |
| 3446 | auto &S = Result.getSema(); |
| 3447 | auto &Idents = S.Context.Idents; |
| 3448 | |
| 3449 | // Ensure all external identifiers are in the identifier table. |
| 3450 | if (IdentifierInfoLookup *External = Idents.getExternalIdentifierLookup()) { |
| 3451 | std::unique_ptr<IdentifierIterator> Iter(External->getIdentifiers()); |
| 3452 | for (StringRef Name = Iter->Next(); !Name.empty(); Name = Iter->Next()) |
| 3453 | Idents.get(Name); |
| 3454 | } |
| 3455 | |
| 3456 | // Walk all lookup results in the TU for each identifier. |
| 3457 | for (const auto &Ident : Idents) { |
| 3458 | for (auto I = S.IdResolver.begin(Ident.getValue()), |
| 3459 | E = S.IdResolver.end(); |
| 3460 | I != E; ++I) { |
| 3461 | if (S.IdResolver.isDeclInScope(*I, Ctx)) { |
| 3462 | if (NamedDecl *ND = Result.getAcceptableDecl(*I)) { |
| 3463 | Consumer.FoundDecl(ND, Visited.checkHidden(ND), Ctx, InBaseClass); |
| 3464 | Visited.add(ND); |
| 3465 | } |
| 3466 | } |
| 3467 | } |
| 3468 | } |
| 3469 | |
| 3470 | return; |
| 3471 | } |
| 3472 | |
Douglas Gregor | 7454c56 | 2010-07-02 20:37:36 +0000 | [diff] [blame] | 3473 | if (CXXRecordDecl *Class = dyn_cast<CXXRecordDecl>(Ctx)) |
| 3474 | Result.getSema().ForceDeclarationOfImplicitMembers(Class); |
| 3475 | |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3476 | // Enumerate all of the results in this context. |
Richard Trieu | 20abd6b | 2015-04-15 03:48:48 +0000 | [diff] [blame] | 3477 | for (DeclContextLookupResult R : Ctx->lookups()) { |
Richard Smith | 9e2341d | 2015-03-23 03:25:59 +0000 | [diff] [blame] | 3478 | for (auto *D : R) { |
| 3479 | if (auto *ND = Result.getAcceptableDecl(D)) { |
| 3480 | Consumer.FoundDecl(ND, Visited.checkHidden(ND), Ctx, InBaseClass); |
| 3481 | Visited.add(ND); |
Douglas Gregor | a3b23b0 | 2010-12-09 21:44:02 +0000 | [diff] [blame] | 3482 | } |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3483 | } |
| 3484 | } |
| 3485 | |
| 3486 | // Traverse using directives for qualified name lookup. |
| 3487 | if (QualifiedNameLookup) { |
| 3488 | ShadowContextRAII Shadow(Visited); |
Aaron Ballman | 804a7fb | 2014-03-17 17:14:12 +0000 | [diff] [blame] | 3489 | for (auto I : Ctx->using_directives()) { |
Aaron Ballman | 63ab760 | 2014-03-07 13:44:44 +0000 | [diff] [blame] | 3490 | LookupVisibleDecls(I->getNominatedNamespace(), Result, |
Douglas Gregor | 09bbc65 | 2010-01-14 15:47:35 +0000 | [diff] [blame] | 3491 | QualifiedNameLookup, InBaseClass, Consumer, Visited); |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3492 | } |
| 3493 | } |
| 3494 | |
Douglas Gregor | 35b0bac | 2010-01-03 18:01:57 +0000 | [diff] [blame] | 3495 | // Traverse the contexts of inherited C++ classes. |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3496 | if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(Ctx)) { |
John McCall | 67da35c | 2010-02-04 22:26:26 +0000 | [diff] [blame] | 3497 | if (!Record->hasDefinition()) |
| 3498 | return; |
| 3499 | |
Aaron Ballman | 574705e | 2014-03-13 15:41:46 +0000 | [diff] [blame] | 3500 | for (const auto &B : Record->bases()) { |
| 3501 | QualType BaseType = B.getType(); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3502 | |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3503 | // Don't look into dependent bases, because name lookup can't look |
| 3504 | // there anyway. |
| 3505 | if (BaseType->isDependentType()) |
| 3506 | continue; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3507 | |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3508 | const RecordType *Record = BaseType->getAs<RecordType>(); |
| 3509 | if (!Record) |
| 3510 | continue; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3511 | |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3512 | // FIXME: It would be nice to be able to determine whether referencing |
| 3513 | // a particular member would be ambiguous. For example, given |
| 3514 | // |
| 3515 | // struct A { int member; }; |
| 3516 | // struct B { int member; }; |
| 3517 | // struct C : A, B { }; |
| 3518 | // |
| 3519 | // void f(C *c) { c->### } |
| 3520 | // |
| 3521 | // accessing 'member' would result in an ambiguity. However, we |
| 3522 | // could be smart enough to qualify the member with the base |
| 3523 | // class, e.g., |
| 3524 | // |
| 3525 | // c->B::member |
| 3526 | // |
| 3527 | // or |
| 3528 | // |
| 3529 | // c->A::member |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3530 | |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3531 | // Find results in this base class (and its bases). |
| 3532 | ShadowContextRAII Shadow(Visited); |
| 3533 | LookupVisibleDecls(Record->getDecl(), Result, QualifiedNameLookup, |
Douglas Gregor | 09bbc65 | 2010-01-14 15:47:35 +0000 | [diff] [blame] | 3534 | true, Consumer, Visited); |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3535 | } |
| 3536 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3537 | |
Douglas Gregor | 35b0bac | 2010-01-03 18:01:57 +0000 | [diff] [blame] | 3538 | // Traverse the contexts of Objective-C classes. |
| 3539 | if (ObjCInterfaceDecl *IFace = dyn_cast<ObjCInterfaceDecl>(Ctx)) { |
| 3540 | // Traverse categories. |
Aaron Ballman | 3fe486a | 2014-03-13 21:23:55 +0000 | [diff] [blame] | 3541 | for (auto *Cat : IFace->visible_categories()) { |
Douglas Gregor | 35b0bac | 2010-01-03 18:01:57 +0000 | [diff] [blame] | 3542 | ShadowContextRAII Shadow(Visited); |
Aaron Ballman | 3fe486a | 2014-03-13 21:23:55 +0000 | [diff] [blame] | 3543 | LookupVisibleDecls(Cat, Result, QualifiedNameLookup, false, |
Douglas Gregor | 09bbc65 | 2010-01-14 15:47:35 +0000 | [diff] [blame] | 3544 | Consumer, Visited); |
Douglas Gregor | 35b0bac | 2010-01-03 18:01:57 +0000 | [diff] [blame] | 3545 | } |
| 3546 | |
| 3547 | // Traverse protocols. |
Aaron Ballman | a9f49e3 | 2014-03-13 20:55:22 +0000 | [diff] [blame] | 3548 | for (auto *I : IFace->all_referenced_protocols()) { |
Douglas Gregor | 35b0bac | 2010-01-03 18:01:57 +0000 | [diff] [blame] | 3549 | ShadowContextRAII Shadow(Visited); |
Aaron Ballman | a9f49e3 | 2014-03-13 20:55:22 +0000 | [diff] [blame] | 3550 | LookupVisibleDecls(I, Result, QualifiedNameLookup, false, Consumer, |
Douglas Gregor | 09bbc65 | 2010-01-14 15:47:35 +0000 | [diff] [blame] | 3551 | Visited); |
Douglas Gregor | 35b0bac | 2010-01-03 18:01:57 +0000 | [diff] [blame] | 3552 | } |
| 3553 | |
| 3554 | // Traverse the superclass. |
| 3555 | if (IFace->getSuperClass()) { |
| 3556 | ShadowContextRAII Shadow(Visited); |
| 3557 | LookupVisibleDecls(IFace->getSuperClass(), Result, QualifiedNameLookup, |
Douglas Gregor | 09bbc65 | 2010-01-14 15:47:35 +0000 | [diff] [blame] | 3558 | true, Consumer, Visited); |
Douglas Gregor | 35b0bac | 2010-01-03 18:01:57 +0000 | [diff] [blame] | 3559 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3560 | |
Douglas Gregor | 0b59e80 | 2010-04-19 18:02:19 +0000 | [diff] [blame] | 3561 | // If there is an implementation, traverse it. We do this to find |
| 3562 | // synthesized ivars. |
| 3563 | if (IFace->getImplementation()) { |
| 3564 | ShadowContextRAII Shadow(Visited); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3565 | LookupVisibleDecls(IFace->getImplementation(), Result, |
Nick Lewycky | 13668f2 | 2012-04-03 20:26:45 +0000 | [diff] [blame] | 3566 | QualifiedNameLookup, InBaseClass, Consumer, Visited); |
Douglas Gregor | 0b59e80 | 2010-04-19 18:02:19 +0000 | [diff] [blame] | 3567 | } |
Douglas Gregor | 35b0bac | 2010-01-03 18:01:57 +0000 | [diff] [blame] | 3568 | } else if (ObjCProtocolDecl *Protocol = dyn_cast<ObjCProtocolDecl>(Ctx)) { |
Aaron Ballman | 0f6e64d | 2014-03-13 22:58:06 +0000 | [diff] [blame] | 3569 | for (auto *I : Protocol->protocols()) { |
Douglas Gregor | 35b0bac | 2010-01-03 18:01:57 +0000 | [diff] [blame] | 3570 | ShadowContextRAII Shadow(Visited); |
Aaron Ballman | 0f6e64d | 2014-03-13 22:58:06 +0000 | [diff] [blame] | 3571 | LookupVisibleDecls(I, Result, QualifiedNameLookup, false, Consumer, |
Douglas Gregor | 09bbc65 | 2010-01-14 15:47:35 +0000 | [diff] [blame] | 3572 | Visited); |
Douglas Gregor | 35b0bac | 2010-01-03 18:01:57 +0000 | [diff] [blame] | 3573 | } |
| 3574 | } else if (ObjCCategoryDecl *Category = dyn_cast<ObjCCategoryDecl>(Ctx)) { |
Aaron Ballman | 19a4176 | 2014-03-14 12:55:57 +0000 | [diff] [blame] | 3575 | for (auto *I : Category->protocols()) { |
Douglas Gregor | 35b0bac | 2010-01-03 18:01:57 +0000 | [diff] [blame] | 3576 | ShadowContextRAII Shadow(Visited); |
Aaron Ballman | 19a4176 | 2014-03-14 12:55:57 +0000 | [diff] [blame] | 3577 | LookupVisibleDecls(I, Result, QualifiedNameLookup, false, Consumer, |
Douglas Gregor | 09bbc65 | 2010-01-14 15:47:35 +0000 | [diff] [blame] | 3578 | Visited); |
Douglas Gregor | 35b0bac | 2010-01-03 18:01:57 +0000 | [diff] [blame] | 3579 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3580 | |
Douglas Gregor | 0b59e80 | 2010-04-19 18:02:19 +0000 | [diff] [blame] | 3581 | // If there is an implementation, traverse it. |
| 3582 | if (Category->getImplementation()) { |
| 3583 | ShadowContextRAII Shadow(Visited); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3584 | LookupVisibleDecls(Category->getImplementation(), Result, |
Douglas Gregor | 0b59e80 | 2010-04-19 18:02:19 +0000 | [diff] [blame] | 3585 | QualifiedNameLookup, true, Consumer, Visited); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3586 | } |
Douglas Gregor | 35b0bac | 2010-01-03 18:01:57 +0000 | [diff] [blame] | 3587 | } |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3588 | } |
| 3589 | |
| 3590 | static void LookupVisibleDecls(Scope *S, LookupResult &Result, |
| 3591 | UnqualUsingDirectiveSet &UDirs, |
| 3592 | VisibleDeclConsumer &Consumer, |
| 3593 | VisibleDeclsRecord &Visited) { |
| 3594 | if (!S) |
| 3595 | return; |
| 3596 | |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3597 | if (!S->getEntity() || |
| 3598 | (!S->getParent() && |
Ted Kremenek | c37877d | 2013-10-08 17:08:03 +0000 | [diff] [blame] | 3599 | !Visited.alreadyVisitedContext(S->getEntity())) || |
| 3600 | (S->getEntity())->isFunctionOrMethod()) { |
Richard Smith | 541b38b | 2013-09-20 01:15:31 +0000 | [diff] [blame] | 3601 | FindLocalExternScope FindLocals(Result); |
Douglas Gregor | 712dcfe | 2010-01-07 00:31:29 +0000 | [diff] [blame] | 3602 | // Walk through the declarations in this Scope. |
Aaron Ballman | 35c5495 | 2014-03-17 16:55:25 +0000 | [diff] [blame] | 3603 | for (auto *D : S->decls()) { |
| 3604 | if (NamedDecl *ND = dyn_cast<NamedDecl>(D)) |
Douglas Gregor | 4a81456 | 2011-12-14 16:03:29 +0000 | [diff] [blame] | 3605 | if ((ND = Result.getAcceptableDecl(ND))) { |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 3606 | Consumer.FoundDecl(ND, Visited.checkHidden(ND), nullptr, false); |
Douglas Gregor | 712dcfe | 2010-01-07 00:31:29 +0000 | [diff] [blame] | 3607 | Visited.add(ND); |
| 3608 | } |
| 3609 | } |
| 3610 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3611 | |
Douglas Gregor | 6623006 | 2010-03-15 14:33:29 +0000 | [diff] [blame] | 3612 | // FIXME: C++ [temp.local]p8 |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 3613 | DeclContext *Entity = nullptr; |
Douglas Gregor | 4f24863 | 2010-01-01 17:44:25 +0000 | [diff] [blame] | 3614 | if (S->getEntity()) { |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3615 | // Look into this scope's declaration context, along with any of its |
| 3616 | // parent lookup contexts (e.g., enclosing classes), up to the point |
| 3617 | // where we hit the context stored in the next outer scope. |
Ted Kremenek | c37877d | 2013-10-08 17:08:03 +0000 | [diff] [blame] | 3618 | Entity = S->getEntity(); |
Douglas Gregor | 6623006 | 2010-03-15 14:33:29 +0000 | [diff] [blame] | 3619 | DeclContext *OuterCtx = findOuterContext(S).first; // FIXME |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3620 | |
Douglas Gregor | ea16606 | 2010-03-15 15:26:48 +0000 | [diff] [blame] | 3621 | for (DeclContext *Ctx = Entity; Ctx && !Ctx->Equals(OuterCtx); |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3622 | Ctx = Ctx->getLookupParent()) { |
Douglas Gregor | 35b0bac | 2010-01-03 18:01:57 +0000 | [diff] [blame] | 3623 | if (ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(Ctx)) { |
| 3624 | if (Method->isInstanceMethod()) { |
| 3625 | // For instance methods, look for ivars in the method's interface. |
| 3626 | LookupResult IvarResult(Result.getSema(), Result.getLookupName(), |
| 3627 | Result.getNameLoc(), Sema::LookupMemberName); |
Douglas Gregor | 05fcf84 | 2010-11-02 20:36:02 +0000 | [diff] [blame] | 3628 | if (ObjCInterfaceDecl *IFace = Method->getClassInterface()) { |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3629 | LookupVisibleDecls(IFace, IvarResult, /*QualifiedNameLookup=*/false, |
Richard Smith | e156254d | 2013-08-20 20:35:18 +0000 | [diff] [blame] | 3630 | /*InBaseClass=*/false, Consumer, Visited); |
Douglas Gregor | 05fcf84 | 2010-11-02 20:36:02 +0000 | [diff] [blame] | 3631 | } |
Douglas Gregor | 35b0bac | 2010-01-03 18:01:57 +0000 | [diff] [blame] | 3632 | } |
| 3633 | |
| 3634 | // We've already performed all of the name lookup that we need |
| 3635 | // to for Objective-C methods; the next context will be the |
| 3636 | // outer scope. |
| 3637 | break; |
| 3638 | } |
| 3639 | |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3640 | if (Ctx->isFunctionOrMethod()) |
| 3641 | continue; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3642 | |
| 3643 | LookupVisibleDecls(Ctx, Result, /*QualifiedNameLookup=*/false, |
Douglas Gregor | 09bbc65 | 2010-01-14 15:47:35 +0000 | [diff] [blame] | 3644 | /*InBaseClass=*/false, Consumer, Visited); |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3645 | } |
| 3646 | } else if (!S->getParent()) { |
| 3647 | // Look into the translation unit scope. We walk through the translation |
| 3648 | // unit's declaration context, because the Scope itself won't have all of |
| 3649 | // the declarations if we loaded a precompiled header. |
| 3650 | // FIXME: We would like the translation unit's Scope object to point to the |
| 3651 | // translation unit, so we don't need this special "if" branch. However, |
| 3652 | // 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] | 3653 | // translation unit decl when the IdentifierInfo chains would suffice. |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3654 | // 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] | 3655 | // in DeclContexts unless we have to" optimization), we can eliminate this. |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3656 | Entity = Result.getSema().Context.getTranslationUnitDecl(); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3657 | LookupVisibleDecls(Entity, Result, /*QualifiedNameLookup=*/false, |
Douglas Gregor | 09bbc65 | 2010-01-14 15:47:35 +0000 | [diff] [blame] | 3658 | /*InBaseClass=*/false, Consumer, Visited); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3659 | } |
| 3660 | |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3661 | if (Entity) { |
| 3662 | // Lookup visible declarations in any namespaces found by using |
| 3663 | // directives. |
Benjamin Kramer | b4ef668 | 2015-02-06 17:25:10 +0000 | [diff] [blame] | 3664 | for (const UnqualUsingEntry &UUE : UDirs.getNamespacesFor(Entity)) |
| 3665 | LookupVisibleDecls(const_cast<DeclContext *>(UUE.getNominatedNamespace()), |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3666 | Result, /*QualifiedNameLookup=*/false, |
Douglas Gregor | 09bbc65 | 2010-01-14 15:47:35 +0000 | [diff] [blame] | 3667 | /*InBaseClass=*/false, Consumer, Visited); |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3668 | } |
| 3669 | |
| 3670 | // Lookup names in the parent scope. |
| 3671 | ShadowContextRAII Shadow(Visited); |
| 3672 | LookupVisibleDecls(S->getParent(), Result, UDirs, Consumer, Visited); |
| 3673 | } |
| 3674 | |
| 3675 | void Sema::LookupVisibleDecls(Scope *S, LookupNameKind Kind, |
Douglas Gregor | 3998219 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 3676 | VisibleDeclConsumer &Consumer, |
| 3677 | bool IncludeGlobalScope) { |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3678 | // Determine the set of using directives available during |
| 3679 | // unqualified name lookup. |
| 3680 | Scope *Initial = S; |
| 3681 | UnqualUsingDirectiveSet UDirs; |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3682 | if (getLangOpts().CPlusPlus) { |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3683 | // Find the first namespace or translation-unit scope. |
| 3684 | while (S && !isNamespaceOrTranslationUnitScope(S)) |
| 3685 | S = S->getParent(); |
| 3686 | |
| 3687 | UDirs.visitScopeChain(Initial, S); |
| 3688 | } |
| 3689 | UDirs.done(); |
| 3690 | |
| 3691 | // Look for visible declarations. |
| 3692 | LookupResult Result(*this, DeclarationName(), SourceLocation(), Kind); |
Richard Smith | e156254d | 2013-08-20 20:35:18 +0000 | [diff] [blame] | 3693 | Result.setAllowHidden(Consumer.includeHiddenDecls()); |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3694 | VisibleDeclsRecord Visited; |
Douglas Gregor | 3998219 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 3695 | if (!IncludeGlobalScope) |
| 3696 | Visited.visitedContext(Context.getTranslationUnitDecl()); |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3697 | ShadowContextRAII Shadow(Visited); |
| 3698 | ::LookupVisibleDecls(Initial, Result, UDirs, Consumer, Visited); |
| 3699 | } |
| 3700 | |
| 3701 | void Sema::LookupVisibleDecls(DeclContext *Ctx, LookupNameKind Kind, |
Douglas Gregor | 3998219 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 3702 | VisibleDeclConsumer &Consumer, |
| 3703 | bool IncludeGlobalScope) { |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3704 | LookupResult Result(*this, DeclarationName(), SourceLocation(), Kind); |
Richard Smith | e156254d | 2013-08-20 20:35:18 +0000 | [diff] [blame] | 3705 | Result.setAllowHidden(Consumer.includeHiddenDecls()); |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3706 | VisibleDeclsRecord Visited; |
Douglas Gregor | 3998219 | 2010-08-15 06:18:01 +0000 | [diff] [blame] | 3707 | if (!IncludeGlobalScope) |
| 3708 | Visited.visitedContext(Context.getTranslationUnitDecl()); |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3709 | ShadowContextRAII Shadow(Visited); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3710 | ::LookupVisibleDecls(Ctx, Result, /*QualifiedNameLookup=*/true, |
Douglas Gregor | 09bbc65 | 2010-01-14 15:47:35 +0000 | [diff] [blame] | 3711 | /*InBaseClass=*/false, Consumer, Visited); |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3712 | } |
| 3713 | |
Chris Lattner | 43e7f31 | 2011-02-18 02:08:43 +0000 | [diff] [blame] | 3714 | /// LookupOrCreateLabel - Do a name lookup of a label with the specified name. |
Abramo Bagnara | 1c3af96 | 2011-03-05 18:21:20 +0000 | [diff] [blame] | 3715 | /// If GnuLabelLoc is a valid source location, then this is a definition |
| 3716 | /// of an __label__ label name, otherwise it is a normal label definition |
| 3717 | /// or use. |
Chris Lattner | 43e7f31 | 2011-02-18 02:08:43 +0000 | [diff] [blame] | 3718 | LabelDecl *Sema::LookupOrCreateLabel(IdentifierInfo *II, SourceLocation Loc, |
Abramo Bagnara | 1c3af96 | 2011-03-05 18:21:20 +0000 | [diff] [blame] | 3719 | SourceLocation GnuLabelLoc) { |
Chris Lattner | ebb5c6c | 2011-02-18 01:27:55 +0000 | [diff] [blame] | 3720 | // 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] | 3721 | NamedDecl *Res = nullptr; |
Abramo Bagnara | 1c3af96 | 2011-03-05 18:21:20 +0000 | [diff] [blame] | 3722 | |
| 3723 | if (GnuLabelLoc.isValid()) { |
| 3724 | // Local label definitions always shadow existing labels. |
| 3725 | Res = LabelDecl::Create(Context, CurContext, Loc, II, GnuLabelLoc); |
| 3726 | Scope *S = CurScope; |
| 3727 | PushOnScopeChains(Res, S, true); |
| 3728 | return cast<LabelDecl>(Res); |
| 3729 | } |
| 3730 | |
| 3731 | // Not a GNU local label. |
| 3732 | Res = LookupSingleName(CurScope, II, Loc, LookupLabel, NotForRedeclaration); |
| 3733 | // If we found a label, check to see if it is in the same context as us. |
| 3734 | // 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] | 3735 | if (Res && Res->getDeclContext() != CurContext) |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 3736 | Res = nullptr; |
| 3737 | if (!Res) { |
Chris Lattner | ebb5c6c | 2011-02-18 01:27:55 +0000 | [diff] [blame] | 3738 | // If not forward referenced or defined already, create the backing decl. |
Abramo Bagnara | 1c3af96 | 2011-03-05 18:21:20 +0000 | [diff] [blame] | 3739 | Res = LabelDecl::Create(Context, CurContext, Loc, II); |
| 3740 | Scope *S = CurScope->getFnParent(); |
Chris Lattner | 9ba479b | 2011-02-18 21:16:39 +0000 | [diff] [blame] | 3741 | assert(S && "Not in a function?"); |
| 3742 | PushOnScopeChains(Res, S, true); |
Chris Lattner | ebb5c6c | 2011-02-18 01:27:55 +0000 | [diff] [blame] | 3743 | } |
Chris Lattner | ebb5c6c | 2011-02-18 01:27:55 +0000 | [diff] [blame] | 3744 | return cast<LabelDecl>(Res); |
| 3745 | } |
| 3746 | |
| 3747 | //===----------------------------------------------------------------------===// |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3748 | // Typo correction |
Chris Lattner | ebb5c6c | 2011-02-18 01:27:55 +0000 | [diff] [blame] | 3749 | //===----------------------------------------------------------------------===// |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3750 | |
Kaelyn Takata | 0fc7519 | 2014-06-11 18:06:56 +0000 | [diff] [blame] | 3751 | static bool isCandidateViable(CorrectionCandidateCallback &CCC, |
| 3752 | TypoCorrection &Candidate) { |
| 3753 | Candidate.setCallbackDistance(CCC.RankCandidate(Candidate)); |
| 3754 | return Candidate.getEditDistance(false) != TypoCorrection::InvalidDistance; |
| 3755 | } |
| 3756 | |
| 3757 | static void LookupPotentialTypoResult(Sema &SemaRef, |
| 3758 | LookupResult &Res, |
| 3759 | IdentifierInfo *Name, |
| 3760 | Scope *S, CXXScopeSpec *SS, |
| 3761 | DeclContext *MemberContext, |
| 3762 | bool EnteringContext, |
| 3763 | bool isObjCIvarLookup, |
| 3764 | bool FindHidden); |
| 3765 | |
Kaelyn Takata | 9ab7fb6 | 2014-10-27 18:07:40 +0000 | [diff] [blame] | 3766 | /// \brief Check whether the declarations found for a typo correction are |
| 3767 | /// visible, and if none of them are, convert the correction to an 'import |
| 3768 | /// a module' correction. |
| 3769 | static void checkCorrectionVisibility(Sema &SemaRef, TypoCorrection &TC) { |
| 3770 | if (TC.begin() == TC.end()) |
| 3771 | return; |
| 3772 | |
| 3773 | TypoCorrection::decl_iterator DI = TC.begin(), DE = TC.end(); |
| 3774 | |
| 3775 | for (/**/; DI != DE; ++DI) |
| 3776 | if (!LookupResult::isVisible(SemaRef, *DI)) |
| 3777 | break; |
| 3778 | // Nothing to do if all decls are visible. |
| 3779 | if (DI == DE) |
| 3780 | return; |
| 3781 | |
| 3782 | llvm::SmallVector<NamedDecl*, 4> NewDecls(TC.begin(), DI); |
| 3783 | bool AnyVisibleDecls = !NewDecls.empty(); |
| 3784 | |
| 3785 | for (/**/; DI != DE; ++DI) { |
| 3786 | NamedDecl *VisibleDecl = *DI; |
| 3787 | if (!LookupResult::isVisible(SemaRef, *DI)) |
| 3788 | VisibleDecl = findAcceptableDecl(SemaRef, *DI); |
| 3789 | |
| 3790 | if (VisibleDecl) { |
| 3791 | if (!AnyVisibleDecls) { |
| 3792 | // Found a visible decl, discard all hidden ones. |
| 3793 | AnyVisibleDecls = true; |
| 3794 | NewDecls.clear(); |
| 3795 | } |
| 3796 | NewDecls.push_back(VisibleDecl); |
| 3797 | } else if (!AnyVisibleDecls && !(*DI)->isModulePrivate()) |
| 3798 | NewDecls.push_back(*DI); |
| 3799 | } |
| 3800 | |
| 3801 | if (NewDecls.empty()) |
| 3802 | TC = TypoCorrection(); |
| 3803 | else { |
| 3804 | TC.setCorrectionDecls(NewDecls); |
| 3805 | TC.setRequiresImport(!AnyVisibleDecls); |
| 3806 | } |
| 3807 | } |
| 3808 | |
Kaelyn Takata | 0fc7519 | 2014-06-11 18:06:56 +0000 | [diff] [blame] | 3809 | // Fill the supplied vector with the IdentifierInfo pointers for each piece of |
| 3810 | // the given NestedNameSpecifier (i.e. given a NestedNameSpecifier "foo::bar::", |
| 3811 | // fill the vector with the IdentifierInfo pointers for "foo" and "bar"). |
| 3812 | static void getNestedNameSpecifierIdentifiers( |
| 3813 | NestedNameSpecifier *NNS, |
| 3814 | SmallVectorImpl<const IdentifierInfo*> &Identifiers) { |
| 3815 | if (NestedNameSpecifier *Prefix = NNS->getPrefix()) |
| 3816 | getNestedNameSpecifierIdentifiers(Prefix, Identifiers); |
| 3817 | else |
| 3818 | Identifiers.clear(); |
| 3819 | |
| 3820 | const IdentifierInfo *II = nullptr; |
| 3821 | |
| 3822 | switch (NNS->getKind()) { |
| 3823 | case NestedNameSpecifier::Identifier: |
| 3824 | II = NNS->getAsIdentifier(); |
| 3825 | break; |
| 3826 | |
| 3827 | case NestedNameSpecifier::Namespace: |
| 3828 | if (NNS->getAsNamespace()->isAnonymousNamespace()) |
| 3829 | return; |
| 3830 | II = NNS->getAsNamespace()->getIdentifier(); |
| 3831 | break; |
| 3832 | |
| 3833 | case NestedNameSpecifier::NamespaceAlias: |
| 3834 | II = NNS->getAsNamespaceAlias()->getIdentifier(); |
| 3835 | break; |
| 3836 | |
| 3837 | case NestedNameSpecifier::TypeSpecWithTemplate: |
| 3838 | case NestedNameSpecifier::TypeSpec: |
| 3839 | II = QualType(NNS->getAsType(), 0).getBaseTypeIdentifier(); |
| 3840 | break; |
| 3841 | |
| 3842 | case NestedNameSpecifier::Global: |
Nikola Smiljanic | 6786024 | 2014-09-26 00:28:20 +0000 | [diff] [blame] | 3843 | case NestedNameSpecifier::Super: |
Kaelyn Takata | 0fc7519 | 2014-06-11 18:06:56 +0000 | [diff] [blame] | 3844 | return; |
| 3845 | } |
| 3846 | |
| 3847 | if (II) |
| 3848 | Identifiers.push_back(II); |
| 3849 | } |
| 3850 | |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3851 | void TypoCorrectionConsumer::FoundDecl(NamedDecl *ND, NamedDecl *Hiding, |
Erik Verbruggen | 2e657ff | 2011-10-06 07:27:49 +0000 | [diff] [blame] | 3852 | DeclContext *Ctx, bool InBaseClass) { |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3853 | // Don't consider hidden names for typo correction. |
| 3854 | if (Hiding) |
| 3855 | return; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3856 | |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 3857 | // Only consider entities with identifiers for names, ignoring |
| 3858 | // special names (constructors, overloaded operators, selectors, |
| 3859 | // etc.). |
| 3860 | IdentifierInfo *Name = ND->getIdentifier(); |
| 3861 | if (!Name) |
| 3862 | return; |
| 3863 | |
Richard Smith | e156254d | 2013-08-20 20:35:18 +0000 | [diff] [blame] | 3864 | // Only consider visible declarations and declarations from modules with |
| 3865 | // names that exactly match. |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 3866 | if (!LookupResult::isVisible(SemaRef, ND) && Name != Typo && |
Richard Smith | e156254d | 2013-08-20 20:35:18 +0000 | [diff] [blame] | 3867 | !findAcceptableDecl(SemaRef, ND)) |
| 3868 | return; |
| 3869 | |
Douglas Gregor | 57756ea | 2010-10-14 22:11:03 +0000 | [diff] [blame] | 3870 | FoundName(Name->getName()); |
| 3871 | } |
| 3872 | |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 3873 | void TypoCorrectionConsumer::FoundName(StringRef Name) { |
Kaelyn Uhrain | 653ff24 | 2013-10-02 18:26:35 +0000 | [diff] [blame] | 3874 | // Compute the edit distance between the typo and the name of this |
| 3875 | // entity, and add the identifier to the list of results. |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 3876 | addName(Name, nullptr); |
Kaelyn Uhrain | 653ff24 | 2013-10-02 18:26:35 +0000 | [diff] [blame] | 3877 | } |
| 3878 | |
| 3879 | void TypoCorrectionConsumer::addKeywordResult(StringRef Keyword) { |
| 3880 | // Compute the edit distance between the typo and this keyword, |
| 3881 | // and add the keyword to the list of results. |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 3882 | addName(Keyword, nullptr, nullptr, true); |
Kaelyn Uhrain | 653ff24 | 2013-10-02 18:26:35 +0000 | [diff] [blame] | 3883 | } |
| 3884 | |
| 3885 | void TypoCorrectionConsumer::addName(StringRef Name, NamedDecl *ND, |
| 3886 | NestedNameSpecifier *NNS, bool isKeyword) { |
Douglas Gregor | 93910a5 | 2010-10-19 19:39:10 +0000 | [diff] [blame] | 3887 | // Use a simple length-based heuristic to determine the minimum possible |
| 3888 | // edit distance. If the minimum isn't good enough, bail out early. |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 3889 | StringRef TypoStr = Typo->getName(); |
| 3890 | unsigned MinED = abs((int)Name.size() - (int)TypoStr.size()); |
| 3891 | if (MinED && TypoStr.size() / MinED < 3) |
Douglas Gregor | 93910a5 | 2010-10-19 19:39:10 +0000 | [diff] [blame] | 3892 | return; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3893 | |
Douglas Gregor | c1fb15e | 2010-10-19 22:14:33 +0000 | [diff] [blame] | 3894 | // Compute an upper bound on the allowable edit distance, so that the |
| 3895 | // edit-distance algorithm can short-circuit. |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 3896 | unsigned UpperBound = (TypoStr.size() + 2) / 3 + 1; |
| 3897 | unsigned ED = TypoStr.edit_distance(Name, true, UpperBound); |
Kaelyn Uhrain | 653ff24 | 2013-10-02 18:26:35 +0000 | [diff] [blame] | 3898 | if (ED >= UpperBound) return; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 3899 | |
Kaelyn Uhrain | 653ff24 | 2013-10-02 18:26:35 +0000 | [diff] [blame] | 3900 | TypoCorrection TC(&SemaRef.Context.Idents.get(Name), ND, NNS, ED); |
Kaelyn Uhrain | acbdc57 | 2011-08-03 20:36:05 +0000 | [diff] [blame] | 3901 | if (isKeyword) TC.makeKeyword(); |
Kaelyn Takata | 0a31302 | 2014-11-20 22:06:26 +0000 | [diff] [blame] | 3902 | TC.setCorrectionRange(nullptr, Result.getLookupNameInfo()); |
Kaelyn Uhrain | acbdc57 | 2011-08-03 20:36:05 +0000 | [diff] [blame] | 3903 | addCorrection(TC); |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 3904 | } |
| 3905 | |
Kaelyn Takata | d2287c3 | 2014-10-27 18:07:13 +0000 | [diff] [blame] | 3906 | static const unsigned MaxTypoDistanceResultSets = 5; |
| 3907 | |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 3908 | void TypoCorrectionConsumer::addCorrection(TypoCorrection Correction) { |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 3909 | StringRef TypoStr = Typo->getName(); |
Chris Lattner | 0e62c1c | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 3910 | StringRef Name = Correction.getCorrectionAsIdentifierInfo()->getName(); |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 3911 | |
| 3912 | // For very short typos, ignore potential corrections that have a different |
| 3913 | // base identifier from the typo or which have a normalized edit distance |
| 3914 | // longer than the typo itself. |
| 3915 | if (TypoStr.size() < 3 && |
| 3916 | (Name != TypoStr || Correction.getEditDistance(true) > TypoStr.size())) |
| 3917 | return; |
| 3918 | |
| 3919 | // If the correction is resolved but is not viable, ignore it. |
Kaelyn Takata | 9ab7fb6 | 2014-10-27 18:07:40 +0000 | [diff] [blame] | 3920 | if (Correction.isResolved()) { |
| 3921 | checkCorrectionVisibility(SemaRef, Correction); |
| 3922 | if (!Correction || !isCandidateViable(*CorrectionValidator, Correction)) |
| 3923 | return; |
| 3924 | } |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 3925 | |
Kaelyn Uhrain | ba896f1 | 2012-06-01 18:11:16 +0000 | [diff] [blame] | 3926 | TypoResultList &CList = |
| 3927 | CorrectionResults[Correction.getEditDistance(false)][Name]; |
Chandler Carruth | 7d85c9b | 2011-06-28 22:48:40 +0000 | [diff] [blame] | 3928 | |
Kaelyn Uhrain | ba896f1 | 2012-06-01 18:11:16 +0000 | [diff] [blame] | 3929 | if (!CList.empty() && !CList.back().isResolved()) |
| 3930 | CList.pop_back(); |
| 3931 | if (NamedDecl *NewND = Correction.getCorrectionDecl()) { |
| 3932 | std::string CorrectionStr = Correction.getAsString(SemaRef.getLangOpts()); |
| 3933 | for (TypoResultList::iterator RI = CList.begin(), RIEnd = CList.end(); |
| 3934 | RI != RIEnd; ++RI) { |
| 3935 | // If the Correction refers to a decl already in the result list, |
| 3936 | // replace the existing result if the string representation of Correction |
| 3937 | // comes before the current result alphabetically, then stop as there is |
| 3938 | // nothing more to be done to add Correction to the candidate set. |
| 3939 | if (RI->getCorrectionDecl() == NewND) { |
| 3940 | if (CorrectionStr < RI->getAsString(SemaRef.getLangOpts())) |
| 3941 | *RI = Correction; |
| 3942 | return; |
| 3943 | } |
| 3944 | } |
| 3945 | } |
| 3946 | if (CList.empty() || Correction.isResolved()) |
| 3947 | CList.push_back(Correction); |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 3948 | |
Kaelyn Uhrain | 34fab55 | 2012-05-31 23:32:58 +0000 | [diff] [blame] | 3949 | while (CorrectionResults.size() > MaxTypoDistanceResultSets) |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 3950 | CorrectionResults.erase(std::prev(CorrectionResults.end())); |
| 3951 | } |
| 3952 | |
| 3953 | void TypoCorrectionConsumer::addNamespaces( |
| 3954 | const llvm::MapVector<NamespaceDecl *, bool> &KnownNamespaces) { |
| 3955 | SearchNamespaces = true; |
| 3956 | |
| 3957 | for (auto KNPair : KnownNamespaces) |
| 3958 | Namespaces.addNameSpecifier(KNPair.first); |
| 3959 | |
| 3960 | bool SSIsTemplate = false; |
| 3961 | if (NestedNameSpecifier *NNS = |
| 3962 | (SS && SS->isValid()) ? SS->getScopeRep() : nullptr) { |
| 3963 | if (const Type *T = NNS->getAsType()) |
| 3964 | SSIsTemplate = T->getTypeClass() == Type::TemplateSpecialization; |
| 3965 | } |
Richard Smith | 2a40fb7 | 2015-11-18 01:19:02 +0000 | [diff] [blame] | 3966 | // Do not transform this into an iterator-based loop. The loop body can |
| 3967 | // trigger the creation of further types (through lazy deserialization) and |
| 3968 | // invalide iterators into this list. |
| 3969 | auto &Types = SemaRef.getASTContext().getTypes(); |
| 3970 | for (unsigned I = 0; I != Types.size(); ++I) { |
| 3971 | const auto *TI = Types[I]; |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 3972 | if (CXXRecordDecl *CD = TI->getAsCXXRecordDecl()) { |
| 3973 | CD = CD->getCanonicalDecl(); |
| 3974 | if (!CD->isDependentType() && !CD->isAnonymousStructOrUnion() && |
| 3975 | !CD->isUnion() && CD->getIdentifier() && |
| 3976 | (SSIsTemplate || !isa<ClassTemplateSpecializationDecl>(CD)) && |
| 3977 | (CD->isBeingDefined() || CD->isCompleteDefinition())) |
| 3978 | Namespaces.addNameSpecifier(CD); |
| 3979 | } |
| 3980 | } |
| 3981 | } |
| 3982 | |
Kaelyn Takata | 0d6a3ed | 2014-10-27 18:07:34 +0000 | [diff] [blame] | 3983 | const TypoCorrection &TypoCorrectionConsumer::getNextCorrection() { |
| 3984 | if (++CurrentTCIndex < ValidatedCorrections.size()) |
| 3985 | return ValidatedCorrections[CurrentTCIndex]; |
| 3986 | |
| 3987 | CurrentTCIndex = ValidatedCorrections.size(); |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 3988 | while (!CorrectionResults.empty()) { |
| 3989 | auto DI = CorrectionResults.begin(); |
| 3990 | if (DI->second.empty()) { |
| 3991 | CorrectionResults.erase(DI); |
| 3992 | continue; |
| 3993 | } |
| 3994 | |
| 3995 | auto RI = DI->second.begin(); |
| 3996 | if (RI->second.empty()) { |
| 3997 | DI->second.erase(RI); |
| 3998 | performQualifiedLookups(); |
| 3999 | continue; |
| 4000 | } |
| 4001 | |
| 4002 | TypoCorrection TC = RI->second.pop_back_val(); |
Kaelyn Takata | 9ab7fb6 | 2014-10-27 18:07:40 +0000 | [diff] [blame] | 4003 | if (TC.isResolved() || TC.requiresImport() || resolveCorrection(TC)) { |
Kaelyn Takata | 0d6a3ed | 2014-10-27 18:07:34 +0000 | [diff] [blame] | 4004 | ValidatedCorrections.push_back(TC); |
| 4005 | return ValidatedCorrections[CurrentTCIndex]; |
| 4006 | } |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 4007 | } |
Kaelyn Takata | 0d6a3ed | 2014-10-27 18:07:34 +0000 | [diff] [blame] | 4008 | return ValidatedCorrections[0]; // The empty correction. |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 4009 | } |
| 4010 | |
| 4011 | bool TypoCorrectionConsumer::resolveCorrection(TypoCorrection &Candidate) { |
| 4012 | IdentifierInfo *Name = Candidate.getCorrectionAsIdentifierInfo(); |
| 4013 | DeclContext *TempMemberContext = MemberContext; |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4014 | CXXScopeSpec *TempSS = SS.get(); |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 4015 | retry_lookup: |
| 4016 | LookupPotentialTypoResult(SemaRef, Result, Name, S, TempSS, TempMemberContext, |
| 4017 | EnteringContext, |
Kaelyn Takata | 89c881b | 2014-10-27 18:07:29 +0000 | [diff] [blame] | 4018 | CorrectionValidator->IsObjCIvarLookup, |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 4019 | Name == Typo && !Candidate.WillReplaceSpecifier()); |
| 4020 | switch (Result.getResultKind()) { |
| 4021 | case LookupResult::NotFound: |
| 4022 | case LookupResult::NotFoundInCurrentInstantiation: |
| 4023 | case LookupResult::FoundUnresolvedValue: |
| 4024 | if (TempSS) { |
| 4025 | // Immediately retry the lookup without the given CXXScopeSpec |
| 4026 | TempSS = nullptr; |
| 4027 | Candidate.WillReplaceSpecifier(true); |
| 4028 | goto retry_lookup; |
| 4029 | } |
| 4030 | if (TempMemberContext) { |
| 4031 | if (SS && !TempSS) |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4032 | TempSS = SS.get(); |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 4033 | TempMemberContext = nullptr; |
| 4034 | goto retry_lookup; |
| 4035 | } |
| 4036 | if (SearchNamespaces) |
| 4037 | QualifiedResults.push_back(Candidate); |
| 4038 | break; |
| 4039 | |
| 4040 | case LookupResult::Ambiguous: |
| 4041 | // We don't deal with ambiguities. |
| 4042 | break; |
| 4043 | |
| 4044 | case LookupResult::Found: |
| 4045 | case LookupResult::FoundOverloaded: |
| 4046 | // Store all of the Decls for overloaded symbols |
| 4047 | for (auto *TRD : Result) |
| 4048 | Candidate.addCorrectionDecl(TRD); |
Kaelyn Takata | 9ab7fb6 | 2014-10-27 18:07:40 +0000 | [diff] [blame] | 4049 | checkCorrectionVisibility(SemaRef, Candidate); |
Kaelyn Takata | 89c881b | 2014-10-27 18:07:29 +0000 | [diff] [blame] | 4050 | if (!isCandidateViable(*CorrectionValidator, Candidate)) { |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 4051 | if (SearchNamespaces) |
| 4052 | QualifiedResults.push_back(Candidate); |
| 4053 | break; |
| 4054 | } |
Kaelyn Takata | 20deb1d | 2015-01-28 00:46:09 +0000 | [diff] [blame] | 4055 | Candidate.setCorrectionRange(SS.get(), Result.getLookupNameInfo()); |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 4056 | return true; |
| 4057 | } |
| 4058 | return false; |
| 4059 | } |
| 4060 | |
| 4061 | void TypoCorrectionConsumer::performQualifiedLookups() { |
| 4062 | unsigned TypoLen = Typo->getName().size(); |
Benjamin Kramer | 2e018ef | 2016-05-27 13:36:58 +0000 | [diff] [blame^] | 4063 | for (const TypoCorrection &QR : QualifiedResults) { |
| 4064 | for (const auto &NSI : Namespaces) { |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 4065 | DeclContext *Ctx = NSI.DeclCtx; |
| 4066 | const Type *NSType = NSI.NameSpecifier->getAsType(); |
| 4067 | |
| 4068 | // If the current NestedNameSpecifier refers to a class and the |
| 4069 | // current correction candidate is the name of that class, then skip |
| 4070 | // it as it is unlikely a qualified version of the class' constructor |
| 4071 | // is an appropriate correction. |
Hans Wennborg | dcfba33 | 2015-10-06 23:40:43 +0000 | [diff] [blame] | 4072 | if (CXXRecordDecl *NSDecl = NSType ? NSType->getAsCXXRecordDecl() : |
| 4073 | nullptr) { |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 4074 | if (NSDecl->getIdentifier() == QR.getCorrectionAsIdentifierInfo()) |
| 4075 | continue; |
| 4076 | } |
| 4077 | |
| 4078 | TypoCorrection TC(QR); |
| 4079 | TC.ClearCorrectionDecls(); |
| 4080 | TC.setCorrectionSpecifier(NSI.NameSpecifier); |
| 4081 | TC.setQualifierDistance(NSI.EditDistance); |
| 4082 | TC.setCallbackDistance(0); // Reset the callback distance |
| 4083 | |
| 4084 | // If the current correction candidate and namespace combination are |
| 4085 | // too far away from the original typo based on the normalized edit |
| 4086 | // distance, then skip performing a qualified name lookup. |
| 4087 | unsigned TmpED = TC.getEditDistance(true); |
| 4088 | if (QR.getCorrectionAsIdentifierInfo() != Typo && TmpED && |
| 4089 | TypoLen / TmpED < 3) |
| 4090 | continue; |
| 4091 | |
| 4092 | Result.clear(); |
| 4093 | Result.setLookupName(QR.getCorrectionAsIdentifierInfo()); |
| 4094 | if (!SemaRef.LookupQualifiedName(Result, Ctx)) |
| 4095 | continue; |
| 4096 | |
| 4097 | // Any corrections added below will be validated in subsequent |
| 4098 | // iterations of the main while() loop over the Consumer's contents. |
| 4099 | switch (Result.getResultKind()) { |
| 4100 | case LookupResult::Found: |
| 4101 | case LookupResult::FoundOverloaded: { |
| 4102 | if (SS && SS->isValid()) { |
| 4103 | std::string NewQualified = TC.getAsString(SemaRef.getLangOpts()); |
| 4104 | std::string OldQualified; |
| 4105 | llvm::raw_string_ostream OldOStream(OldQualified); |
| 4106 | SS->getScopeRep()->print(OldOStream, SemaRef.getPrintingPolicy()); |
| 4107 | OldOStream << Typo->getName(); |
| 4108 | // If correction candidate would be an identical written qualified |
| 4109 | // identifer, then the existing CXXScopeSpec probably included a |
| 4110 | // typedef that didn't get accounted for properly. |
| 4111 | if (OldOStream.str() == NewQualified) |
| 4112 | break; |
| 4113 | } |
| 4114 | for (LookupResult::iterator TRD = Result.begin(), TRDEnd = Result.end(); |
| 4115 | TRD != TRDEnd; ++TRD) { |
| 4116 | if (SemaRef.CheckMemberAccess(TC.getCorrectionRange().getBegin(), |
| 4117 | NSType ? NSType->getAsCXXRecordDecl() |
| 4118 | : nullptr, |
| 4119 | TRD.getPair()) == Sema::AR_accessible) |
| 4120 | TC.addCorrectionDecl(*TRD); |
| 4121 | } |
Kaelyn Takata | 0a31302 | 2014-11-20 22:06:26 +0000 | [diff] [blame] | 4122 | if (TC.isResolved()) { |
| 4123 | TC.setCorrectionRange(SS.get(), Result.getLookupNameInfo()); |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 4124 | addCorrection(TC); |
Kaelyn Takata | 0a31302 | 2014-11-20 22:06:26 +0000 | [diff] [blame] | 4125 | } |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 4126 | break; |
| 4127 | } |
| 4128 | case LookupResult::NotFound: |
| 4129 | case LookupResult::NotFoundInCurrentInstantiation: |
| 4130 | case LookupResult::Ambiguous: |
| 4131 | case LookupResult::FoundUnresolvedValue: |
| 4132 | break; |
| 4133 | } |
| 4134 | } |
| 4135 | } |
| 4136 | QualifiedResults.clear(); |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4137 | } |
| 4138 | |
Kaelyn Takata | cd7c3a9 | 2014-06-11 18:33:46 +0000 | [diff] [blame] | 4139 | TypoCorrectionConsumer::NamespaceSpecifierSet::NamespaceSpecifierSet( |
| 4140 | ASTContext &Context, DeclContext *CurContext, CXXScopeSpec *CurScopeSpec) |
Benjamin Kramer | 1553727 | 2015-03-13 16:10:42 +0000 | [diff] [blame] | 4141 | : Context(Context), CurContextChain(buildContextChain(CurContext)) { |
Kaelyn Takata | cd7c3a9 | 2014-06-11 18:33:46 +0000 | [diff] [blame] | 4142 | if (NestedNameSpecifier *NNS = |
| 4143 | CurScopeSpec ? CurScopeSpec->getScopeRep() : nullptr) { |
| 4144 | llvm::raw_string_ostream SpecifierOStream(CurNameSpecifier); |
| 4145 | NNS->print(SpecifierOStream, Context.getPrintingPolicy()); |
| 4146 | |
| 4147 | getNestedNameSpecifierIdentifiers(NNS, CurNameSpecifierIdentifiers); |
| 4148 | } |
| 4149 | // Build the list of identifiers that would be used for an absolute |
| 4150 | // (from the global context) NestedNameSpecifier referring to the current |
| 4151 | // context. |
| 4152 | for (DeclContextList::reverse_iterator C = CurContextChain.rbegin(), |
| 4153 | CEnd = CurContextChain.rend(); |
| 4154 | C != CEnd; ++C) { |
| 4155 | if (NamespaceDecl *ND = dyn_cast_or_null<NamespaceDecl>(*C)) |
| 4156 | CurContextIdentifiers.push_back(ND->getIdentifier()); |
| 4157 | } |
| 4158 | |
| 4159 | // Add the global context as a NestedNameSpecifier |
Hans Wennborg | 6601013 | 2014-06-11 21:24:13 +0000 | [diff] [blame] | 4160 | SpecifierInfo SI = {cast<DeclContext>(Context.getTranslationUnitDecl()), |
| 4161 | NestedNameSpecifier::GlobalSpecifier(Context), 1}; |
| 4162 | DistanceMap[1].push_back(SI); |
Kaelyn Takata | cd7c3a9 | 2014-06-11 18:33:46 +0000 | [diff] [blame] | 4163 | } |
| 4164 | |
Kaelyn Takata | 7dcc0e6 | 2014-06-11 18:07:08 +0000 | [diff] [blame] | 4165 | auto TypoCorrectionConsumer::NamespaceSpecifierSet::buildContextChain( |
| 4166 | DeclContext *Start) -> DeclContextList { |
Nick Lewycky | 0d9b319 | 2013-04-08 21:55:21 +0000 | [diff] [blame] | 4167 | assert(Start && "Building a context chain from a null context"); |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4168 | DeclContextList Chain; |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 4169 | for (DeclContext *DC = Start->getPrimaryContext(); DC != nullptr; |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4170 | DC = DC->getLookupParent()) { |
| 4171 | NamespaceDecl *ND = dyn_cast_or_null<NamespaceDecl>(DC); |
| 4172 | if (!DC->isInlineNamespace() && !DC->isTransparentContext() && |
| 4173 | !(ND && ND->isAnonymousNamespace())) |
| 4174 | Chain.push_back(DC->getPrimaryContext()); |
| 4175 | } |
| 4176 | return Chain; |
| 4177 | } |
| 4178 | |
Kaelyn Takata | a5bdbc8 | 2014-06-11 18:07:05 +0000 | [diff] [blame] | 4179 | unsigned |
| 4180 | TypoCorrectionConsumer::NamespaceSpecifierSet::buildNestedNameSpecifier( |
| 4181 | DeclContextList &DeclChain, NestedNameSpecifier *&NNS) { |
Kaelyn Uhrain | f7b63e3 | 2013-10-19 00:04:52 +0000 | [diff] [blame] | 4182 | unsigned NumSpecifiers = 0; |
| 4183 | for (DeclContextList::reverse_iterator C = DeclChain.rbegin(), |
| 4184 | CEnd = DeclChain.rend(); |
| 4185 | C != CEnd; ++C) { |
| 4186 | if (NamespaceDecl *ND = dyn_cast_or_null<NamespaceDecl>(*C)) { |
| 4187 | NNS = NestedNameSpecifier::Create(Context, NNS, ND); |
| 4188 | ++NumSpecifiers; |
| 4189 | } else if (RecordDecl *RD = dyn_cast_or_null<RecordDecl>(*C)) { |
| 4190 | NNS = NestedNameSpecifier::Create(Context, NNS, RD->isTemplateDecl(), |
| 4191 | RD->getTypeForDecl()); |
| 4192 | ++NumSpecifiers; |
| 4193 | } |
| 4194 | } |
| 4195 | return NumSpecifiers; |
| 4196 | } |
| 4197 | |
Kaelyn Takata | a5bdbc8 | 2014-06-11 18:07:05 +0000 | [diff] [blame] | 4198 | void TypoCorrectionConsumer::NamespaceSpecifierSet::addNameSpecifier( |
| 4199 | DeclContext *Ctx) { |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 4200 | NestedNameSpecifier *NNS = nullptr; |
Kaelyn Uhrain | 95995be | 2013-09-26 19:10:29 +0000 | [diff] [blame] | 4201 | unsigned NumSpecifiers = 0; |
Kaelyn Takata | 0fc7519 | 2014-06-11 18:06:56 +0000 | [diff] [blame] | 4202 | DeclContextList NamespaceDeclChain(buildContextChain(Ctx)); |
Kaelyn Uhrain | 95995be | 2013-09-26 19:10:29 +0000 | [diff] [blame] | 4203 | DeclContextList FullNamespaceDeclChain(NamespaceDeclChain); |
| 4204 | |
| 4205 | // Eliminate common elements from the two DeclContext chains. |
| 4206 | for (DeclContextList::reverse_iterator C = CurContextChain.rbegin(), |
| 4207 | CEnd = CurContextChain.rend(); |
| 4208 | C != CEnd && !NamespaceDeclChain.empty() && |
| 4209 | NamespaceDeclChain.back() == *C; ++C) { |
| 4210 | NamespaceDeclChain.pop_back(); |
| 4211 | } |
| 4212 | |
Kaelyn Uhrain | f7b63e3 | 2013-10-19 00:04:52 +0000 | [diff] [blame] | 4213 | // Build the NestedNameSpecifier from what is left of the NamespaceDeclChain |
Kaelyn Takata | a5bdbc8 | 2014-06-11 18:07:05 +0000 | [diff] [blame] | 4214 | NumSpecifiers = buildNestedNameSpecifier(NamespaceDeclChain, NNS); |
Kaelyn Uhrain | f7b63e3 | 2013-10-19 00:04:52 +0000 | [diff] [blame] | 4215 | |
Kaelyn Uhrain | 95995be | 2013-09-26 19:10:29 +0000 | [diff] [blame] | 4216 | // Add an explicit leading '::' specifier if needed. |
| 4217 | if (NamespaceDeclChain.empty()) { |
Kaelyn Uhrain | f7b63e3 | 2013-10-19 00:04:52 +0000 | [diff] [blame] | 4218 | // Rebuild the NestedNameSpecifier as a globally-qualified specifier. |
Kaelyn Uhrain | 95995be | 2013-09-26 19:10:29 +0000 | [diff] [blame] | 4219 | NNS = NestedNameSpecifier::GlobalSpecifier(Context); |
Kaelyn Uhrain | f7b63e3 | 2013-10-19 00:04:52 +0000 | [diff] [blame] | 4220 | NumSpecifiers = |
Kaelyn Takata | a5bdbc8 | 2014-06-11 18:07:05 +0000 | [diff] [blame] | 4221 | buildNestedNameSpecifier(FullNamespaceDeclChain, NNS); |
Kaelyn Uhrain | 653ff24 | 2013-10-02 18:26:35 +0000 | [diff] [blame] | 4222 | } else if (NamedDecl *ND = |
| 4223 | dyn_cast_or_null<NamedDecl>(NamespaceDeclChain.back())) { |
Kaelyn Uhrain | 95995be | 2013-09-26 19:10:29 +0000 | [diff] [blame] | 4224 | IdentifierInfo *Name = ND->getIdentifier(); |
Kaelyn Uhrain | f7b63e3 | 2013-10-19 00:04:52 +0000 | [diff] [blame] | 4225 | bool SameNameSpecifier = false; |
| 4226 | if (std::find(CurNameSpecifierIdentifiers.begin(), |
Kaelyn Uhrain | 95995be | 2013-09-26 19:10:29 +0000 | [diff] [blame] | 4227 | CurNameSpecifierIdentifiers.end(), |
| 4228 | Name) != CurNameSpecifierIdentifiers.end()) { |
Kaelyn Uhrain | f7b63e3 | 2013-10-19 00:04:52 +0000 | [diff] [blame] | 4229 | std::string NewNameSpecifier; |
| 4230 | llvm::raw_string_ostream SpecifierOStream(NewNameSpecifier); |
| 4231 | SmallVector<const IdentifierInfo *, 4> NewNameSpecifierIdentifiers; |
| 4232 | getNestedNameSpecifierIdentifiers(NNS, NewNameSpecifierIdentifiers); |
| 4233 | NNS->print(SpecifierOStream, Context.getPrintingPolicy()); |
| 4234 | SpecifierOStream.flush(); |
| 4235 | SameNameSpecifier = NewNameSpecifier == CurNameSpecifier; |
Kaelyn Uhrain | 95995be | 2013-09-26 19:10:29 +0000 | [diff] [blame] | 4236 | } |
Kaelyn Uhrain | f7b63e3 | 2013-10-19 00:04:52 +0000 | [diff] [blame] | 4237 | if (SameNameSpecifier || |
| 4238 | std::find(CurContextIdentifiers.begin(), CurContextIdentifiers.end(), |
| 4239 | Name) != CurContextIdentifiers.end()) { |
| 4240 | // Rebuild the NestedNameSpecifier as a globally-qualified specifier. |
| 4241 | NNS = NestedNameSpecifier::GlobalSpecifier(Context); |
| 4242 | NumSpecifiers = |
Kaelyn Takata | a5bdbc8 | 2014-06-11 18:07:05 +0000 | [diff] [blame] | 4243 | buildNestedNameSpecifier(FullNamespaceDeclChain, NNS); |
Kaelyn Uhrain | 95995be | 2013-09-26 19:10:29 +0000 | [diff] [blame] | 4244 | } |
| 4245 | } |
| 4246 | |
| 4247 | // If the built NestedNameSpecifier would be replacing an existing |
| 4248 | // NestedNameSpecifier, use the number of component identifiers that |
| 4249 | // would need to be changed as the edit distance instead of the number |
| 4250 | // of components in the built NestedNameSpecifier. |
| 4251 | if (NNS && !CurNameSpecifierIdentifiers.empty()) { |
| 4252 | SmallVector<const IdentifierInfo*, 4> NewNameSpecifierIdentifiers; |
| 4253 | getNestedNameSpecifierIdentifiers(NNS, NewNameSpecifierIdentifiers); |
| 4254 | NumSpecifiers = llvm::ComputeEditDistance( |
Craig Topper | 8c2a2a0 | 2014-08-30 16:55:39 +0000 | [diff] [blame] | 4255 | llvm::makeArrayRef(CurNameSpecifierIdentifiers), |
| 4256 | llvm::makeArrayRef(NewNameSpecifierIdentifiers)); |
Kaelyn Uhrain | 95995be | 2013-09-26 19:10:29 +0000 | [diff] [blame] | 4257 | } |
| 4258 | |
Hans Wennborg | 6601013 | 2014-06-11 21:24:13 +0000 | [diff] [blame] | 4259 | SpecifierInfo SI = {Ctx, NNS, NumSpecifiers}; |
| 4260 | DistanceMap[NumSpecifiers].push_back(SI); |
Kaelyn Uhrain | 95995be | 2013-09-26 19:10:29 +0000 | [diff] [blame] | 4261 | } |
| 4262 | |
Douglas Gregor | d507d77 | 2010-10-20 03:06:34 +0000 | [diff] [blame] | 4263 | /// \brief Perform name lookup for a possible result for typo correction. |
| 4264 | static void LookupPotentialTypoResult(Sema &SemaRef, |
| 4265 | LookupResult &Res, |
| 4266 | IdentifierInfo *Name, |
| 4267 | Scope *S, CXXScopeSpec *SS, |
| 4268 | DeclContext *MemberContext, |
| 4269 | bool EnteringContext, |
Richard Smith | e156254d | 2013-08-20 20:35:18 +0000 | [diff] [blame] | 4270 | bool isObjCIvarLookup, |
| 4271 | bool FindHidden) { |
Douglas Gregor | d507d77 | 2010-10-20 03:06:34 +0000 | [diff] [blame] | 4272 | Res.suppressDiagnostics(); |
| 4273 | Res.clear(); |
| 4274 | Res.setLookupName(Name); |
Richard Smith | e156254d | 2013-08-20 20:35:18 +0000 | [diff] [blame] | 4275 | Res.setAllowHidden(FindHidden); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4276 | if (MemberContext) { |
Douglas Gregor | d507d77 | 2010-10-20 03:06:34 +0000 | [diff] [blame] | 4277 | if (ObjCInterfaceDecl *Class = dyn_cast<ObjCInterfaceDecl>(MemberContext)) { |
Kaelyn Uhrain | 2d317ed | 2012-01-11 19:37:46 +0000 | [diff] [blame] | 4278 | if (isObjCIvarLookup) { |
Douglas Gregor | d507d77 | 2010-10-20 03:06:34 +0000 | [diff] [blame] | 4279 | if (ObjCIvarDecl *Ivar = Class->lookupInstanceVariable(Name)) { |
| 4280 | Res.addDecl(Ivar); |
| 4281 | Res.resolveKind(); |
| 4282 | return; |
| 4283 | } |
| 4284 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4285 | |
Manman Ren | 5b78640 | 2016-01-28 18:49:28 +0000 | [diff] [blame] | 4286 | if (ObjCPropertyDecl *Prop = Class->FindPropertyDeclaration( |
| 4287 | Name, ObjCPropertyQueryKind::OBJC_PR_query_instance)) { |
Douglas Gregor | d507d77 | 2010-10-20 03:06:34 +0000 | [diff] [blame] | 4288 | Res.addDecl(Prop); |
| 4289 | Res.resolveKind(); |
| 4290 | return; |
| 4291 | } |
| 4292 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4293 | |
Douglas Gregor | d507d77 | 2010-10-20 03:06:34 +0000 | [diff] [blame] | 4294 | SemaRef.LookupQualifiedName(Res, MemberContext); |
| 4295 | return; |
| 4296 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4297 | |
| 4298 | SemaRef.LookupParsedName(Res, S, SS, /*AllowBuiltinCreation=*/false, |
Douglas Gregor | d507d77 | 2010-10-20 03:06:34 +0000 | [diff] [blame] | 4299 | EnteringContext); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4300 | |
Douglas Gregor | d507d77 | 2010-10-20 03:06:34 +0000 | [diff] [blame] | 4301 | // Fake ivar lookup; this should really be part of |
| 4302 | // LookupParsedName. |
| 4303 | if (ObjCMethodDecl *Method = SemaRef.getCurMethodDecl()) { |
| 4304 | if (Method->isInstanceMethod() && Method->getClassInterface() && |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4305 | (Res.empty() || |
Douglas Gregor | d507d77 | 2010-10-20 03:06:34 +0000 | [diff] [blame] | 4306 | (Res.isSingleResult() && |
| 4307 | Res.getFoundDecl()->isDefinedOutsideFunctionOrMethod()))) { |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4308 | if (ObjCIvarDecl *IV |
Douglas Gregor | d507d77 | 2010-10-20 03:06:34 +0000 | [diff] [blame] | 4309 | = Method->getClassInterface()->lookupInstanceVariable(Name)) { |
| 4310 | Res.addDecl(IV); |
| 4311 | Res.resolveKind(); |
| 4312 | } |
| 4313 | } |
| 4314 | } |
| 4315 | } |
| 4316 | |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4317 | /// \brief Add keywords to the consumer as possible typo corrections. |
| 4318 | static void AddKeywordsToConsumer(Sema &SemaRef, |
| 4319 | TypoCorrectionConsumer &Consumer, |
Richard Smith | b3a1df0 | 2012-06-08 21:35:42 +0000 | [diff] [blame] | 4320 | Scope *S, CorrectionCandidateCallback &CCC, |
| 4321 | bool AfterNestedNameSpecifier) { |
| 4322 | if (AfterNestedNameSpecifier) { |
| 4323 | // For 'X::', we know exactly which keywords can appear next. |
| 4324 | Consumer.addKeywordResult("template"); |
| 4325 | if (CCC.WantExpressionKeywords) |
| 4326 | Consumer.addKeywordResult("operator"); |
| 4327 | return; |
| 4328 | } |
| 4329 | |
Kaelyn Uhrain | 2d317ed | 2012-01-11 19:37:46 +0000 | [diff] [blame] | 4330 | if (CCC.WantObjCSuper) |
| 4331 | Consumer.addKeywordResult("super"); |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4332 | |
Kaelyn Uhrain | 2d317ed | 2012-01-11 19:37:46 +0000 | [diff] [blame] | 4333 | if (CCC.WantTypeSpecifiers) { |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4334 | // Add type-specifier keywords to the set of results. |
Craig Topper | d6d31ac | 2013-07-15 08:24:27 +0000 | [diff] [blame] | 4335 | static const char *const CTypeSpecs[] = { |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4336 | "char", "const", "double", "enum", "float", "int", "long", "short", |
Douglas Gregor | 3b22a88 | 2011-07-01 21:27:45 +0000 | [diff] [blame] | 4337 | "signed", "struct", "union", "unsigned", "void", "volatile", |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4338 | "_Complex", "_Imaginary", |
| 4339 | // storage-specifiers as well |
| 4340 | "extern", "inline", "static", "typedef" |
| 4341 | }; |
| 4342 | |
Craig Topper | e5ce831 | 2013-07-15 03:38:40 +0000 | [diff] [blame] | 4343 | const unsigned NumCTypeSpecs = llvm::array_lengthof(CTypeSpecs); |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4344 | for (unsigned I = 0; I != NumCTypeSpecs; ++I) |
| 4345 | Consumer.addKeywordResult(CTypeSpecs[I]); |
| 4346 | |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4347 | if (SemaRef.getLangOpts().C99) |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4348 | Consumer.addKeywordResult("restrict"); |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4349 | if (SemaRef.getLangOpts().Bool || SemaRef.getLangOpts().CPlusPlus) |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4350 | Consumer.addKeywordResult("bool"); |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4351 | else if (SemaRef.getLangOpts().C99) |
Douglas Gregor | 3b22a88 | 2011-07-01 21:27:45 +0000 | [diff] [blame] | 4352 | Consumer.addKeywordResult("_Bool"); |
| 4353 | |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4354 | if (SemaRef.getLangOpts().CPlusPlus) { |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4355 | Consumer.addKeywordResult("class"); |
| 4356 | Consumer.addKeywordResult("typename"); |
| 4357 | Consumer.addKeywordResult("wchar_t"); |
| 4358 | |
Richard Smith | 2bf7fdb | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 4359 | if (SemaRef.getLangOpts().CPlusPlus11) { |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4360 | Consumer.addKeywordResult("char16_t"); |
| 4361 | Consumer.addKeywordResult("char32_t"); |
| 4362 | Consumer.addKeywordResult("constexpr"); |
| 4363 | Consumer.addKeywordResult("decltype"); |
| 4364 | Consumer.addKeywordResult("thread_local"); |
| 4365 | } |
| 4366 | } |
| 4367 | |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4368 | if (SemaRef.getLangOpts().GNUMode) |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4369 | Consumer.addKeywordResult("typeof"); |
Kaelyn Takata | b04846b | 2014-07-28 18:14:02 +0000 | [diff] [blame] | 4370 | } else if (CCC.WantFunctionLikeCasts) { |
| 4371 | static const char *const CastableTypeSpecs[] = { |
| 4372 | "char", "double", "float", "int", "long", "short", |
| 4373 | "signed", "unsigned", "void" |
| 4374 | }; |
| 4375 | for (auto *kw : CastableTypeSpecs) |
| 4376 | Consumer.addKeywordResult(kw); |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4377 | } |
| 4378 | |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4379 | if (CCC.WantCXXNamedCasts && SemaRef.getLangOpts().CPlusPlus) { |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4380 | Consumer.addKeywordResult("const_cast"); |
| 4381 | Consumer.addKeywordResult("dynamic_cast"); |
| 4382 | Consumer.addKeywordResult("reinterpret_cast"); |
| 4383 | Consumer.addKeywordResult("static_cast"); |
| 4384 | } |
| 4385 | |
Kaelyn Uhrain | 2d317ed | 2012-01-11 19:37:46 +0000 | [diff] [blame] | 4386 | if (CCC.WantExpressionKeywords) { |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4387 | Consumer.addKeywordResult("sizeof"); |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4388 | if (SemaRef.getLangOpts().Bool || SemaRef.getLangOpts().CPlusPlus) { |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4389 | Consumer.addKeywordResult("false"); |
| 4390 | Consumer.addKeywordResult("true"); |
| 4391 | } |
| 4392 | |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4393 | if (SemaRef.getLangOpts().CPlusPlus) { |
Craig Topper | d6d31ac | 2013-07-15 08:24:27 +0000 | [diff] [blame] | 4394 | static const char *const CXXExprs[] = { |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4395 | "delete", "new", "operator", "throw", "typeid" |
| 4396 | }; |
Craig Topper | e5ce831 | 2013-07-15 03:38:40 +0000 | [diff] [blame] | 4397 | const unsigned NumCXXExprs = llvm::array_lengthof(CXXExprs); |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4398 | for (unsigned I = 0; I != NumCXXExprs; ++I) |
| 4399 | Consumer.addKeywordResult(CXXExprs[I]); |
| 4400 | |
| 4401 | if (isa<CXXMethodDecl>(SemaRef.CurContext) && |
| 4402 | cast<CXXMethodDecl>(SemaRef.CurContext)->isInstance()) |
| 4403 | Consumer.addKeywordResult("this"); |
| 4404 | |
Richard Smith | 2bf7fdb | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 4405 | if (SemaRef.getLangOpts().CPlusPlus11) { |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4406 | Consumer.addKeywordResult("alignof"); |
| 4407 | Consumer.addKeywordResult("nullptr"); |
| 4408 | } |
| 4409 | } |
Jordan Rose | 58d5472 | 2012-06-30 21:33:57 +0000 | [diff] [blame] | 4410 | |
| 4411 | if (SemaRef.getLangOpts().C11) { |
| 4412 | // FIXME: We should not suggest _Alignof if the alignof macro |
| 4413 | // is present. |
| 4414 | Consumer.addKeywordResult("_Alignof"); |
| 4415 | } |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4416 | } |
| 4417 | |
Kaelyn Uhrain | 2d317ed | 2012-01-11 19:37:46 +0000 | [diff] [blame] | 4418 | if (CCC.WantRemainingKeywords) { |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4419 | if (SemaRef.getCurFunctionOrMethodDecl() || SemaRef.getCurBlock()) { |
| 4420 | // Statements. |
Craig Topper | d6d31ac | 2013-07-15 08:24:27 +0000 | [diff] [blame] | 4421 | static const char *const CStmts[] = { |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4422 | "do", "else", "for", "goto", "if", "return", "switch", "while" }; |
Craig Topper | e5ce831 | 2013-07-15 03:38:40 +0000 | [diff] [blame] | 4423 | const unsigned NumCStmts = llvm::array_lengthof(CStmts); |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4424 | for (unsigned I = 0; I != NumCStmts; ++I) |
| 4425 | Consumer.addKeywordResult(CStmts[I]); |
| 4426 | |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4427 | if (SemaRef.getLangOpts().CPlusPlus) { |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4428 | Consumer.addKeywordResult("catch"); |
| 4429 | Consumer.addKeywordResult("try"); |
| 4430 | } |
| 4431 | |
| 4432 | if (S && S->getBreakParent()) |
| 4433 | Consumer.addKeywordResult("break"); |
| 4434 | |
| 4435 | if (S && S->getContinueParent()) |
| 4436 | Consumer.addKeywordResult("continue"); |
| 4437 | |
| 4438 | if (!SemaRef.getCurFunction()->SwitchStack.empty()) { |
| 4439 | Consumer.addKeywordResult("case"); |
| 4440 | Consumer.addKeywordResult("default"); |
| 4441 | } |
| 4442 | } else { |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4443 | if (SemaRef.getLangOpts().CPlusPlus) { |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4444 | Consumer.addKeywordResult("namespace"); |
| 4445 | Consumer.addKeywordResult("template"); |
| 4446 | } |
| 4447 | |
| 4448 | if (S && S->isClassScope()) { |
| 4449 | Consumer.addKeywordResult("explicit"); |
| 4450 | Consumer.addKeywordResult("friend"); |
| 4451 | Consumer.addKeywordResult("mutable"); |
| 4452 | Consumer.addKeywordResult("private"); |
| 4453 | Consumer.addKeywordResult("protected"); |
| 4454 | Consumer.addKeywordResult("public"); |
| 4455 | Consumer.addKeywordResult("virtual"); |
| 4456 | } |
| 4457 | } |
| 4458 | |
David Blaikie | bbafb8a | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 4459 | if (SemaRef.getLangOpts().CPlusPlus) { |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4460 | Consumer.addKeywordResult("using"); |
| 4461 | |
Richard Smith | 2bf7fdb | 2013-01-02 11:42:31 +0000 | [diff] [blame] | 4462 | if (SemaRef.getLangOpts().CPlusPlus11) |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4463 | Consumer.addKeywordResult("static_assert"); |
| 4464 | } |
| 4465 | } |
| 4466 | } |
| 4467 | |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4468 | std::unique_ptr<TypoCorrectionConsumer> Sema::makeTypoCorrectionConsumer( |
| 4469 | const DeclarationNameInfo &TypoName, Sema::LookupNameKind LookupKind, |
| 4470 | Scope *S, CXXScopeSpec *SS, |
| 4471 | std::unique_ptr<CorrectionCandidateCallback> CCC, |
| 4472 | DeclContext *MemberContext, bool EnteringContext, |
Nick Lewycky | 2465326 | 2014-12-16 21:39:02 +0000 | [diff] [blame] | 4473 | const ObjCObjectPointerType *OPT, bool ErrorRecovery) { |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4474 | |
| 4475 | if (Diags.hasFatalErrorOccurred() || !getLangOpts().SpellChecking || |
| 4476 | DisableTypoCorrection) |
| 4477 | return nullptr; |
| 4478 | |
| 4479 | // In Microsoft mode, don't perform typo correction in a template member |
| 4480 | // function dependent context because it interferes with the "lookup into |
| 4481 | // dependent bases of class templates" feature. |
| 4482 | if (getLangOpts().MSVCCompat && CurContext->isDependentContext() && |
| 4483 | isa<CXXMethodDecl>(CurContext)) |
| 4484 | return nullptr; |
| 4485 | |
| 4486 | // We only attempt to correct typos for identifiers. |
| 4487 | IdentifierInfo *Typo = TypoName.getName().getAsIdentifierInfo(); |
| 4488 | if (!Typo) |
| 4489 | return nullptr; |
| 4490 | |
| 4491 | // If the scope specifier itself was invalid, don't try to correct |
| 4492 | // typos. |
| 4493 | if (SS && SS->isInvalid()) |
| 4494 | return nullptr; |
| 4495 | |
| 4496 | // Never try to correct typos during template deduction or |
| 4497 | // instantiation. |
| 4498 | if (!ActiveTemplateInstantiations.empty()) |
| 4499 | return nullptr; |
| 4500 | |
| 4501 | // Don't try to correct 'super'. |
| 4502 | if (S && S->isInObjcMethodScope() && Typo == getSuperIdentifier()) |
| 4503 | return nullptr; |
| 4504 | |
| 4505 | // Abort if typo correction already failed for this specific typo. |
| 4506 | IdentifierSourceLocations::iterator locs = TypoCorrectionFailures.find(Typo); |
| 4507 | if (locs != TypoCorrectionFailures.end() && |
| 4508 | locs->second.count(TypoName.getLoc())) |
| 4509 | return nullptr; |
| 4510 | |
| 4511 | // Don't try to correct the identifier "vector" when in AltiVec mode. |
| 4512 | // TODO: Figure out why typo correction misbehaves in this case, fix it, and |
| 4513 | // remove this workaround. |
Ulrich Weigand | 3c5038a | 2015-07-30 14:08:36 +0000 | [diff] [blame] | 4514 | if ((getLangOpts().AltiVec || getLangOpts().ZVector) && Typo->isStr("vector")) |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4515 | return nullptr; |
| 4516 | |
Nick Lewycky | 2465326 | 2014-12-16 21:39:02 +0000 | [diff] [blame] | 4517 | // Provide a stop gap for files that are just seriously broken. Trying |
| 4518 | // to correct all typos can turn into a HUGE performance penalty, causing |
| 4519 | // some files to take minutes to get rejected by the parser. |
| 4520 | unsigned Limit = getDiagnostics().getDiagnosticOptions().SpellCheckingLimit; |
| 4521 | if (Limit && TyposCorrected >= Limit) |
| 4522 | return nullptr; |
| 4523 | ++TyposCorrected; |
| 4524 | |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4525 | // If we're handling a missing symbol error, using modules, and the |
| 4526 | // special search all modules option is used, look for a missing import. |
| 4527 | if (ErrorRecovery && getLangOpts().Modules && |
| 4528 | getLangOpts().ModulesSearchAll) { |
| 4529 | // The following has the side effect of loading the missing module. |
| 4530 | getModuleLoader().lookupMissingImports(Typo->getName(), |
| 4531 | TypoName.getLocStart()); |
| 4532 | } |
| 4533 | |
| 4534 | CorrectionCandidateCallback &CCCRef = *CCC; |
| 4535 | auto Consumer = llvm::make_unique<TypoCorrectionConsumer>( |
| 4536 | *this, TypoName, LookupKind, S, SS, std::move(CCC), MemberContext, |
| 4537 | EnteringContext); |
| 4538 | |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4539 | // Perform name lookup to find visible, similarly-named entities. |
Nick Lewycky | 2465326 | 2014-12-16 21:39:02 +0000 | [diff] [blame] | 4540 | bool IsUnqualifiedLookup = false; |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4541 | DeclContext *QualifiedDC = MemberContext; |
| 4542 | if (MemberContext) { |
| 4543 | LookupVisibleDecls(MemberContext, LookupKind, *Consumer); |
| 4544 | |
| 4545 | // Look in qualified interfaces. |
| 4546 | if (OPT) { |
| 4547 | for (auto *I : OPT->quals()) |
| 4548 | LookupVisibleDecls(I, LookupKind, *Consumer); |
| 4549 | } |
| 4550 | } else if (SS && SS->isSet()) { |
| 4551 | QualifiedDC = computeDeclContext(*SS, EnteringContext); |
| 4552 | if (!QualifiedDC) |
| 4553 | return nullptr; |
| 4554 | |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4555 | LookupVisibleDecls(QualifiedDC, LookupKind, *Consumer); |
| 4556 | } else { |
| 4557 | IsUnqualifiedLookup = true; |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4558 | } |
| 4559 | |
| 4560 | // Determine whether we are going to search in the various namespaces for |
| 4561 | // corrections. |
| 4562 | bool SearchNamespaces |
| 4563 | = getLangOpts().CPlusPlus && |
| 4564 | (IsUnqualifiedLookup || (SS && SS->isSet())); |
| 4565 | |
| 4566 | if (IsUnqualifiedLookup || SearchNamespaces) { |
| 4567 | // For unqualified lookup, look through all of the names that we have |
| 4568 | // seen in this translation unit. |
| 4569 | // FIXME: Re-add the ability to skip very unlikely potential corrections. |
| 4570 | for (const auto &I : Context.Idents) |
| 4571 | Consumer->FoundName(I.getKey()); |
| 4572 | |
| 4573 | // Walk through identifiers in external identifier sources. |
| 4574 | // FIXME: Re-add the ability to skip very unlikely potential corrections. |
| 4575 | if (IdentifierInfoLookup *External |
| 4576 | = Context.Idents.getExternalIdentifierLookup()) { |
| 4577 | std::unique_ptr<IdentifierIterator> Iter(External->getIdentifiers()); |
| 4578 | do { |
| 4579 | StringRef Name = Iter->Next(); |
| 4580 | if (Name.empty()) |
| 4581 | break; |
| 4582 | |
| 4583 | Consumer->FoundName(Name); |
| 4584 | } while (true); |
| 4585 | } |
| 4586 | } |
| 4587 | |
| 4588 | AddKeywordsToConsumer(*this, *Consumer, S, CCCRef, SS && SS->isNotEmpty()); |
| 4589 | |
| 4590 | // Build the NestedNameSpecifiers for the KnownNamespaces, if we're going |
| 4591 | // to search those namespaces. |
| 4592 | if (SearchNamespaces) { |
| 4593 | // Load any externally-known namespaces. |
| 4594 | if (ExternalSource && !LoadedExternalKnownNamespaces) { |
| 4595 | SmallVector<NamespaceDecl *, 4> ExternalKnownNamespaces; |
| 4596 | LoadedExternalKnownNamespaces = true; |
| 4597 | ExternalSource->ReadKnownNamespaces(ExternalKnownNamespaces); |
| 4598 | for (auto *N : ExternalKnownNamespaces) |
| 4599 | KnownNamespaces[N] = true; |
| 4600 | } |
| 4601 | |
| 4602 | Consumer->addNamespaces(KnownNamespaces); |
| 4603 | } |
| 4604 | |
| 4605 | return Consumer; |
| 4606 | } |
| 4607 | |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 4608 | /// \brief Try to "correct" a typo in the source code by finding |
| 4609 | /// visible declarations whose names are similar to the name that was |
| 4610 | /// present in the source code. |
| 4611 | /// |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4612 | /// \param TypoName the \c DeclarationNameInfo structure that contains |
| 4613 | /// the name that was present in the source code along with its location. |
| 4614 | /// |
| 4615 | /// \param LookupKind the name-lookup criteria used to search for the name. |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 4616 | /// |
| 4617 | /// \param S the scope in which name lookup occurs. |
| 4618 | /// |
| 4619 | /// \param SS the nested-name-specifier that precedes the name we're |
| 4620 | /// looking for, if present. |
| 4621 | /// |
Kaelyn Uhrain | 2d317ed | 2012-01-11 19:37:46 +0000 | [diff] [blame] | 4622 | /// \param CCC A CorrectionCandidateCallback object that provides further |
| 4623 | /// validation of typo correction candidates. It also provides flags for |
| 4624 | /// determining the set of keywords permitted. |
| 4625 | /// |
Douglas Gregor | af2bd47 | 2009-12-31 07:42:17 +0000 | [diff] [blame] | 4626 | /// \param MemberContext if non-NULL, the context in which to look for |
| 4627 | /// a member access expression. |
| 4628 | /// |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4629 | /// \param EnteringContext whether we're entering the context described by |
Douglas Gregor | 598b08f | 2009-12-31 05:20:13 +0000 | [diff] [blame] | 4630 | /// the nested-name-specifier SS. |
| 4631 | /// |
Douglas Gregor | 35b0bac | 2010-01-03 18:01:57 +0000 | [diff] [blame] | 4632 | /// \param OPT when non-NULL, the search for visible declarations will |
| 4633 | /// also walk the protocols in the qualified interfaces of \p OPT. |
| 4634 | /// |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4635 | /// \returns a \c TypoCorrection containing the corrected name if the typo |
| 4636 | /// along with information such as the \c NamedDecl where the corrected name |
| 4637 | /// was declared, and any additional \c NestedNameSpecifier needed to access |
| 4638 | /// it (C++ only). The \c TypoCorrection is empty if there is no correction. |
| 4639 | TypoCorrection Sema::CorrectTypo(const DeclarationNameInfo &TypoName, |
| 4640 | Sema::LookupNameKind LookupKind, |
| 4641 | Scope *S, CXXScopeSpec *SS, |
Kaelyn Takata | 89c881b | 2014-10-27 18:07:29 +0000 | [diff] [blame] | 4642 | std::unique_ptr<CorrectionCandidateCallback> CCC, |
John Thompson | 2255f2c | 2014-04-23 12:57:01 +0000 | [diff] [blame] | 4643 | CorrectTypoKind Mode, |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4644 | DeclContext *MemberContext, |
| 4645 | bool EnteringContext, |
Kaelyn Uhrain | 0e23844 | 2013-09-27 19:40:08 +0000 | [diff] [blame] | 4646 | const ObjCObjectPointerType *OPT, |
| 4647 | bool RecordFailure) { |
Kaelyn Takata | 89c881b | 2014-10-27 18:07:29 +0000 | [diff] [blame] | 4648 | assert(CCC && "CorrectTypo requires a CorrectionCandidateCallback"); |
| 4649 | |
Kaelyn Uhrain | f0aabda | 2013-08-12 19:54:38 +0000 | [diff] [blame] | 4650 | // Always let the ExternalSource have the first chance at correction, even |
| 4651 | // if we would otherwise have given up. |
| 4652 | if (ExternalSource) { |
| 4653 | if (TypoCorrection Correction = ExternalSource->CorrectTypo( |
Kaelyn Takata | 89c881b | 2014-10-27 18:07:29 +0000 | [diff] [blame] | 4654 | TypoName, LookupKind, S, SS, *CCC, MemberContext, EnteringContext, OPT)) |
Kaelyn Uhrain | f0aabda | 2013-08-12 19:54:38 +0000 | [diff] [blame] | 4655 | return Correction; |
| 4656 | } |
| 4657 | |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4658 | // Ugly hack equivalent to CTC == CTC_ObjCMessageReceiver; |
| 4659 | // WantObjCSuper is only true for CTC_ObjCMessageReceiver and for |
| 4660 | // some instances of CTC_Unknown, while WantRemainingKeywords is true |
| 4661 | // for CTC_Unknown but not for CTC_ObjCMessageReceiver. |
| 4662 | bool ObjCMessageReceiver = CCC->WantObjCSuper && !CCC->WantRemainingKeywords; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4663 | |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4664 | IdentifierInfo *Typo = TypoName.getName().getAsIdentifierInfo(); |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4665 | auto Consumer = makeTypoCorrectionConsumer( |
| 4666 | TypoName, LookupKind, S, SS, std::move(CCC), MemberContext, |
Nick Lewycky | 2465326 | 2014-12-16 21:39:02 +0000 | [diff] [blame] | 4667 | EnteringContext, OPT, Mode == CTK_ErrorRecovery); |
Douglas Gregor | 35b0bac | 2010-01-03 18:01:57 +0000 | [diff] [blame] | 4668 | |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4669 | if (!Consumer) |
| 4670 | return TypoCorrection(); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4671 | |
Douglas Gregor | 280e1ee | 2010-04-14 20:04:41 +0000 | [diff] [blame] | 4672 | // If we haven't found anything, we're done. |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4673 | if (Consumer->empty()) |
Nick Lewycky | 2465326 | 2014-12-16 21:39:02 +0000 | [diff] [blame] | 4674 | return FailedCorrection(Typo, TypoName.getLoc(), RecordFailure); |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 4675 | |
Kaelyn Uhrain | 493ea63 | 2012-06-06 20:54:51 +0000 | [diff] [blame] | 4676 | // Make sure the best edit distance (prior to adding any namespace qualifiers) |
| 4677 | // 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] | 4678 | unsigned ED = Consumer->getBestEditDistance(true); |
| 4679 | unsigned TypoLen = Typo->getName().size(); |
Kaelyn Uhrain | 653ff24 | 2013-10-02 18:26:35 +0000 | [diff] [blame] | 4680 | if (ED > 0 && TypoLen / ED < 3) |
Nick Lewycky | 2465326 | 2014-12-16 21:39:02 +0000 | [diff] [blame] | 4681 | return FailedCorrection(Typo, TypoName.getLoc(), RecordFailure); |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4682 | |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4683 | TypoCorrection BestTC = Consumer->getNextCorrection(); |
| 4684 | TypoCorrection SecondBestTC = Consumer->getNextCorrection(); |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 4685 | if (!BestTC) |
Kaelyn Uhrain | 0e23844 | 2013-09-27 19:40:08 +0000 | [diff] [blame] | 4686 | return FailedCorrection(Typo, TypoName.getLoc(), RecordFailure); |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4687 | |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 4688 | ED = BestTC.getEditDistance(); |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4689 | |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4690 | if (TypoLen >= 3 && ED > 0 && TypoLen / ED < 3) { |
Kaelyn Uhrain | cb7a040 | 2012-01-23 20:18:59 +0000 | [diff] [blame] | 4691 | // If this was an unqualified lookup and we believe the callback |
| 4692 | // object wouldn't have filtered out possible corrections, note |
| 4693 | // that no correction was found. |
Nick Lewycky | 2465326 | 2014-12-16 21:39:02 +0000 | [diff] [blame] | 4694 | return FailedCorrection(Typo, TypoName.getLoc(), RecordFailure); |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4695 | } |
| 4696 | |
Douglas Gregor | 0afa7f6 | 2010-10-14 20:34:08 +0000 | [diff] [blame] | 4697 | // If only a single name remains, return that result. |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 4698 | if (!SecondBestTC || |
| 4699 | SecondBestTC.getEditDistance(false) > BestTC.getEditDistance(false)) { |
| 4700 | const TypoCorrection &Result = BestTC; |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4701 | |
Douglas Gregor | 2a1d72d | 2010-10-26 17:18:00 +0000 | [diff] [blame] | 4702 | // Don't correct to a keyword that's the same as the typo; the keyword |
| 4703 | // wasn't actually in scope. |
Kaelyn Uhrain | 0e23844 | 2013-09-27 19:40:08 +0000 | [diff] [blame] | 4704 | if (ED == 0 && Result.isKeyword()) |
| 4705 | return FailedCorrection(Typo, TypoName.getLoc(), RecordFailure); |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4706 | |
David Blaikie | 04ea41c | 2012-10-12 20:00:44 +0000 | [diff] [blame] | 4707 | TypoCorrection TC = Result; |
| 4708 | TC.setCorrectionRange(SS, TypoName); |
Kaelyn Takata | a95ebc6 | 2014-06-17 23:47:29 +0000 | [diff] [blame] | 4709 | checkCorrectionVisibility(*this, TC); |
David Blaikie | 04ea41c | 2012-10-12 20:00:44 +0000 | [diff] [blame] | 4710 | return TC; |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4711 | } else if (SecondBestTC && ObjCMessageReceiver) { |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4712 | // Prefer 'super' when we're completing in a message-receiver |
| 4713 | // context. |
| 4714 | |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 4715 | if (BestTC.getCorrection().getAsString() != "super") { |
| 4716 | if (SecondBestTC.getCorrection().getAsString() == "super") |
| 4717 | BestTC = SecondBestTC; |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4718 | else if ((*Consumer)["super"].front().isKeyword()) |
| 4719 | BestTC = (*Consumer)["super"].front(); |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 4720 | } |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4721 | // Don't correct to a keyword that's the same as the typo; the keyword |
| 4722 | // wasn't actually in scope. |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 4723 | if (BestTC.getEditDistance() == 0 || |
| 4724 | BestTC.getCorrection().getAsString() != "super") |
Kaelyn Uhrain | 0e23844 | 2013-09-27 19:40:08 +0000 | [diff] [blame] | 4725 | return FailedCorrection(Typo, TypoName.getLoc(), RecordFailure); |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4726 | |
Kaelyn Takata | 68fdd59 | 2014-06-11 18:07:01 +0000 | [diff] [blame] | 4727 | BestTC.setCorrectionRange(SS, TypoName); |
| 4728 | return BestTC; |
Douglas Gregor | af9eb59 | 2010-10-15 13:35:25 +0000 | [diff] [blame] | 4729 | } |
NAKAMURA Takumi | f9cbcc4 | 2011-01-27 07:10:08 +0000 | [diff] [blame] | 4730 | |
Kaelyn Takata | 73429fd | 2014-06-10 21:03:49 +0000 | [diff] [blame] | 4731 | // Record the failure's location if needed and return an empty correction. If |
| 4732 | // this was an unqualified lookup and we believe the callback object did not |
| 4733 | // filter out possible corrections, also cache the failure for the typo. |
Kaelyn Takata | ae9e97c | 2015-01-16 22:11:04 +0000 | [diff] [blame] | 4734 | return FailedCorrection(Typo, TypoName.getLoc(), RecordFailure && !SecondBestTC); |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4735 | } |
| 4736 | |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4737 | /// \brief Try to "correct" a typo in the source code by finding |
| 4738 | /// visible declarations whose names are similar to the name that was |
| 4739 | /// present in the source code. |
| 4740 | /// |
| 4741 | /// \param TypoName the \c DeclarationNameInfo structure that contains |
| 4742 | /// the name that was present in the source code along with its location. |
| 4743 | /// |
| 4744 | /// \param LookupKind the name-lookup criteria used to search for the name. |
| 4745 | /// |
| 4746 | /// \param S the scope in which name lookup occurs. |
| 4747 | /// |
| 4748 | /// \param SS the nested-name-specifier that precedes the name we're |
| 4749 | /// looking for, if present. |
| 4750 | /// |
| 4751 | /// \param CCC A CorrectionCandidateCallback object that provides further |
| 4752 | /// validation of typo correction candidates. It also provides flags for |
| 4753 | /// determining the set of keywords permitted. |
| 4754 | /// |
| 4755 | /// \param TDG A TypoDiagnosticGenerator functor that will be used to print |
| 4756 | /// diagnostics when the actual typo correction is attempted. |
| 4757 | /// |
Kaelyn Takata | 8363f04 | 2014-10-27 18:07:42 +0000 | [diff] [blame] | 4758 | /// \param TRC A TypoRecoveryCallback functor that will be used to build an |
| 4759 | /// Expr from a typo correction candidate. |
| 4760 | /// |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4761 | /// \param MemberContext if non-NULL, the context in which to look for |
| 4762 | /// a member access expression. |
| 4763 | /// |
| 4764 | /// \param EnteringContext whether we're entering the context described by |
| 4765 | /// the nested-name-specifier SS. |
| 4766 | /// |
| 4767 | /// \param OPT when non-NULL, the search for visible declarations will |
| 4768 | /// also walk the protocols in the qualified interfaces of \p OPT. |
| 4769 | /// |
| 4770 | /// \returns a new \c TypoExpr that will later be replaced in the AST with an |
| 4771 | /// Expr representing the result of performing typo correction, or nullptr if |
| 4772 | /// typo correction is not possible. If nullptr is returned, no diagnostics will |
| 4773 | /// be emitted and it is the responsibility of the caller to emit any that are |
| 4774 | /// needed. |
| 4775 | TypoExpr *Sema::CorrectTypoDelayed( |
| 4776 | const DeclarationNameInfo &TypoName, Sema::LookupNameKind LookupKind, |
| 4777 | Scope *S, CXXScopeSpec *SS, |
| 4778 | std::unique_ptr<CorrectionCandidateCallback> CCC, |
Kaelyn Takata | 8363f04 | 2014-10-27 18:07:42 +0000 | [diff] [blame] | 4779 | TypoDiagnosticGenerator TDG, TypoRecoveryCallback TRC, CorrectTypoKind Mode, |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4780 | DeclContext *MemberContext, bool EnteringContext, |
| 4781 | const ObjCObjectPointerType *OPT) { |
| 4782 | assert(CCC && "CorrectTypoDelayed requires a CorrectionCandidateCallback"); |
| 4783 | |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4784 | auto Consumer = makeTypoCorrectionConsumer( |
| 4785 | TypoName, LookupKind, S, SS, std::move(CCC), MemberContext, |
Kaelyn Takata | ae9e97c | 2015-01-16 22:11:04 +0000 | [diff] [blame] | 4786 | EnteringContext, OPT, Mode == CTK_ErrorRecovery); |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4787 | |
Benjamin Kramer | b872733 | 2016-05-19 10:46:10 +0000 | [diff] [blame] | 4788 | // Give the external sema source a chance to correct the typo. |
| 4789 | TypoCorrection ExternalTypo; |
| 4790 | if (ExternalSource && Consumer) { |
| 4791 | ExternalTypo = ExternalSource->CorrectTypo( |
Benjamin Kramer | 97d7a66 | 2016-05-19 21:53:33 +0000 | [diff] [blame] | 4792 | TypoName, LookupKind, S, SS, *Consumer->getCorrectionValidator(), |
| 4793 | MemberContext, EnteringContext, OPT); |
Benjamin Kramer | b872733 | 2016-05-19 10:46:10 +0000 | [diff] [blame] | 4794 | if (ExternalTypo) |
| 4795 | Consumer->addCorrection(ExternalTypo); |
| 4796 | } |
| 4797 | |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4798 | if (!Consumer || Consumer->empty()) |
| 4799 | return nullptr; |
| 4800 | |
| 4801 | // Make sure the best edit distance (prior to adding any namespace qualifiers) |
| 4802 | // is not more that about a third of the length of the typo's identifier. |
| 4803 | unsigned ED = Consumer->getBestEditDistance(true); |
| 4804 | IdentifierInfo *Typo = TypoName.getName().getAsIdentifierInfo(); |
Benjamin Kramer | b872733 | 2016-05-19 10:46:10 +0000 | [diff] [blame] | 4805 | if (!ExternalTypo && ED > 0 && Typo->getName().size() / ED < 3) |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4806 | return nullptr; |
| 4807 | |
| 4808 | ExprEvalContexts.back().NumTypos++; |
Kaelyn Takata | 8363f04 | 2014-10-27 18:07:42 +0000 | [diff] [blame] | 4809 | return createDelayedTypo(std::move(Consumer), std::move(TDG), std::move(TRC)); |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 4810 | } |
| 4811 | |
Kaelyn Uhrain | acbdc57 | 2011-08-03 20:36:05 +0000 | [diff] [blame] | 4812 | void TypoCorrection::addCorrectionDecl(NamedDecl *CDecl) { |
| 4813 | if (!CDecl) return; |
| 4814 | |
| 4815 | if (isKeyword()) |
| 4816 | CorrectionDecls.clear(); |
| 4817 | |
Richard Smith | de6d6c4 | 2015-12-29 19:43:10 +0000 | [diff] [blame] | 4818 | CorrectionDecls.push_back(CDecl); |
Kaelyn Uhrain | acbdc57 | 2011-08-03 20:36:05 +0000 | [diff] [blame] | 4819 | |
| 4820 | if (!CorrectionName) |
| 4821 | CorrectionName = CDecl->getDeclName(); |
| 4822 | } |
| 4823 | |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4824 | std::string TypoCorrection::getAsString(const LangOptions &LO) const { |
| 4825 | if (CorrectionNameSpec) { |
| 4826 | std::string tmpBuffer; |
| 4827 | llvm::raw_string_ostream PrefixOStream(tmpBuffer); |
| 4828 | CorrectionNameSpec->print(PrefixOStream, PrintingPolicy(LO)); |
David Blaikie | d4da872 | 2013-05-14 21:04:00 +0000 | [diff] [blame] | 4829 | PrefixOStream << CorrectionName; |
Benjamin Kramer | 73faad6 | 2012-04-14 08:26:28 +0000 | [diff] [blame] | 4830 | return PrefixOStream.str(); |
Douglas Gregor | c2fa169 | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4831 | } |
| 4832 | |
| 4833 | return CorrectionName.getAsString(); |
Douglas Gregor | 2d43530 | 2009-12-30 17:04:44 +0000 | [diff] [blame] | 4834 | } |
Kaelyn Uhrain | 989b7ca | 2013-04-03 16:59:49 +0000 | [diff] [blame] | 4835 | |
Nico Weber | b58e51c | 2014-11-19 05:21:39 +0000 | [diff] [blame] | 4836 | bool CorrectionCandidateCallback::ValidateCandidate( |
| 4837 | const TypoCorrection &candidate) { |
Kaelyn Uhrain | 989b7ca | 2013-04-03 16:59:49 +0000 | [diff] [blame] | 4838 | if (!candidate.isResolved()) |
| 4839 | return true; |
| 4840 | |
| 4841 | if (candidate.isKeyword()) |
| 4842 | return WantTypeSpecifiers || WantExpressionKeywords || WantCXXNamedCasts || |
| 4843 | WantRemainingKeywords || WantObjCSuper; |
| 4844 | |
Nick Lewycky | 9ea8efa | 2014-06-23 22:57:51 +0000 | [diff] [blame] | 4845 | bool HasNonType = false; |
| 4846 | bool HasStaticMethod = false; |
| 4847 | bool HasNonStaticMethod = false; |
| 4848 | for (Decl *D : candidate) { |
| 4849 | if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(D)) |
| 4850 | D = FTD->getTemplatedDecl(); |
| 4851 | if (CXXMethodDecl *Method = dyn_cast<CXXMethodDecl>(D)) { |
| 4852 | if (Method->isStatic()) |
| 4853 | HasStaticMethod = true; |
| 4854 | else |
| 4855 | HasNonStaticMethod = true; |
| 4856 | } |
| 4857 | if (!isa<TypeDecl>(D)) |
| 4858 | HasNonType = true; |
Kaelyn Uhrain | 989b7ca | 2013-04-03 16:59:49 +0000 | [diff] [blame] | 4859 | } |
| 4860 | |
Nick Lewycky | 9ea8efa | 2014-06-23 22:57:51 +0000 | [diff] [blame] | 4861 | if (IsAddressOfOperand && HasNonStaticMethod && !HasStaticMethod && |
| 4862 | !candidate.getCorrectionSpecifier()) |
| 4863 | return false; |
| 4864 | |
| 4865 | return WantTypeSpecifiers || HasNonType; |
Kaelyn Uhrain | 989b7ca | 2013-04-03 16:59:49 +0000 | [diff] [blame] | 4866 | } |
Kaelyn Uhrain | 53e7219 | 2013-07-08 23:13:39 +0000 | [diff] [blame] | 4867 | |
| 4868 | FunctionCallFilterCCC::FunctionCallFilterCCC(Sema &SemaRef, unsigned NumArgs, |
Kaelyn Uhrain | b4b1475 | 2014-02-28 18:12:42 +0000 | [diff] [blame] | 4869 | bool HasExplicitTemplateArgs, |
Kaelyn Takata | fb271f0 | 2014-04-04 22:16:30 +0000 | [diff] [blame] | 4870 | MemberExpr *ME) |
Kaelyn Uhrain | b4b1475 | 2014-02-28 18:12:42 +0000 | [diff] [blame] | 4871 | : NumArgs(NumArgs), HasExplicitTemplateArgs(HasExplicitTemplateArgs), |
Kaelyn Takata | fb271f0 | 2014-04-04 22:16:30 +0000 | [diff] [blame] | 4872 | CurContext(SemaRef.CurContext), MemberFn(ME) { |
Kaelyn Takata | b04846b | 2014-07-28 18:14:02 +0000 | [diff] [blame] | 4873 | WantTypeSpecifiers = false; |
| 4874 | WantFunctionLikeCasts = SemaRef.getLangOpts().CPlusPlus && NumArgs == 1; |
Kaelyn Uhrain | 53e7219 | 2013-07-08 23:13:39 +0000 | [diff] [blame] | 4875 | WantRemainingKeywords = false; |
| 4876 | } |
| 4877 | |
| 4878 | bool FunctionCallFilterCCC::ValidateCandidate(const TypoCorrection &candidate) { |
| 4879 | if (!candidate.getCorrectionDecl()) |
| 4880 | return candidate.isKeyword(); |
| 4881 | |
Aaron Ballman | 1e606f4 | 2014-07-15 22:03:49 +0000 | [diff] [blame] | 4882 | for (auto *C : candidate) { |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 4883 | FunctionDecl *FD = nullptr; |
Aaron Ballman | 1e606f4 | 2014-07-15 22:03:49 +0000 | [diff] [blame] | 4884 | NamedDecl *ND = C->getUnderlyingDecl(); |
Kaelyn Uhrain | 53e7219 | 2013-07-08 23:13:39 +0000 | [diff] [blame] | 4885 | if (FunctionTemplateDecl *FTD = dyn_cast<FunctionTemplateDecl>(ND)) |
| 4886 | FD = FTD->getTemplatedDecl(); |
| 4887 | if (!HasExplicitTemplateArgs && !FD) { |
| 4888 | if (!(FD = dyn_cast<FunctionDecl>(ND)) && isa<ValueDecl>(ND)) { |
| 4889 | // If the Decl is neither a function nor a template function, |
| 4890 | // determine if it is a pointer or reference to a function. If so, |
| 4891 | // check against the number of arguments expected for the pointee. |
| 4892 | QualType ValType = cast<ValueDecl>(ND)->getType(); |
| 4893 | if (ValType->isAnyPointerType() || ValType->isReferenceType()) |
| 4894 | ValType = ValType->getPointeeType(); |
| 4895 | if (const FunctionProtoType *FPT = ValType->getAs<FunctionProtoType>()) |
Alp Toker | 9cacbab | 2014-01-20 20:26:09 +0000 | [diff] [blame] | 4896 | if (FPT->getNumParams() == NumArgs) |
Kaelyn Uhrain | 53e7219 | 2013-07-08 23:13:39 +0000 | [diff] [blame] | 4897 | return true; |
| 4898 | } |
| 4899 | } |
Kaelyn Uhrain | b4b1475 | 2014-02-28 18:12:42 +0000 | [diff] [blame] | 4900 | |
| 4901 | // Skip the current candidate if it is not a FunctionDecl or does not accept |
| 4902 | // the current number of arguments. |
| 4903 | if (!FD || !(FD->getNumParams() >= NumArgs && |
| 4904 | FD->getMinRequiredArguments() <= NumArgs)) |
| 4905 | continue; |
| 4906 | |
Kaelyn Takata | fb271f0 | 2014-04-04 22:16:30 +0000 | [diff] [blame] | 4907 | // If the current candidate is a non-static C++ method, skip the candidate |
| 4908 | // unless the method being corrected--or the current DeclContext, if the |
| 4909 | // function being corrected is not a method--is a method in the same class |
| 4910 | // or a descendent class of the candidate's parent class. |
Kaelyn Uhrain | b4b1475 | 2014-02-28 18:12:42 +0000 | [diff] [blame] | 4911 | if (CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD)) { |
Kaelyn Takata | fb271f0 | 2014-04-04 22:16:30 +0000 | [diff] [blame] | 4912 | if (MemberFn || !MD->isStatic()) { |
| 4913 | CXXMethodDecl *CurMD = |
| 4914 | MemberFn |
| 4915 | ? dyn_cast_or_null<CXXMethodDecl>(MemberFn->getMemberDecl()) |
| 4916 | : dyn_cast_or_null<CXXMethodDecl>(CurContext); |
Kaelyn Uhrain | b4b1475 | 2014-02-28 18:12:42 +0000 | [diff] [blame] | 4917 | CXXRecordDecl *CurRD = |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 4918 | CurMD ? CurMD->getParent()->getCanonicalDecl() : nullptr; |
Kaelyn Uhrain | b4b1475 | 2014-02-28 18:12:42 +0000 | [diff] [blame] | 4919 | CXXRecordDecl *RD = MD->getParent()->getCanonicalDecl(); |
| 4920 | if (!CurRD || (CurRD != RD && !CurRD->isDerivedFrom(RD))) |
| 4921 | continue; |
| 4922 | } |
| 4923 | } |
| 4924 | return true; |
Kaelyn Uhrain | 53e7219 | 2013-07-08 23:13:39 +0000 | [diff] [blame] | 4925 | } |
| 4926 | return false; |
| 4927 | } |
Richard Smith | f9b1510 | 2013-08-17 00:46:16 +0000 | [diff] [blame] | 4928 | |
| 4929 | void Sema::diagnoseTypo(const TypoCorrection &Correction, |
| 4930 | const PartialDiagnostic &TypoDiag, |
| 4931 | bool ErrorRecovery) { |
| 4932 | diagnoseTypo(Correction, TypoDiag, PDiag(diag::note_previous_decl), |
| 4933 | ErrorRecovery); |
| 4934 | } |
| 4935 | |
Richard Smith | e156254d | 2013-08-20 20:35:18 +0000 | [diff] [blame] | 4936 | /// Find which declaration we should import to provide the definition of |
| 4937 | /// the given declaration. |
Richard Smith | 4241314 | 2015-05-15 20:05:43 +0000 | [diff] [blame] | 4938 | static NamedDecl *getDefinitionToImport(NamedDecl *D) { |
| 4939 | if (VarDecl *VD = dyn_cast<VarDecl>(D)) |
Richard Smith | e156254d | 2013-08-20 20:35:18 +0000 | [diff] [blame] | 4940 | return VD->getDefinition(); |
| 4941 | if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) |
Richard Smith | 4241314 | 2015-05-15 20:05:43 +0000 | [diff] [blame] | 4942 | return FD->isDefined(FD) ? const_cast<FunctionDecl*>(FD) : nullptr; |
| 4943 | if (TagDecl *TD = dyn_cast<TagDecl>(D)) |
Richard Smith | e156254d | 2013-08-20 20:35:18 +0000 | [diff] [blame] | 4944 | return TD->getDefinition(); |
Richard Smith | 4241314 | 2015-05-15 20:05:43 +0000 | [diff] [blame] | 4945 | if (ObjCInterfaceDecl *ID = dyn_cast<ObjCInterfaceDecl>(D)) |
Richard Smith | e156254d | 2013-08-20 20:35:18 +0000 | [diff] [blame] | 4946 | return ID->getDefinition(); |
Richard Smith | 4241314 | 2015-05-15 20:05:43 +0000 | [diff] [blame] | 4947 | if (ObjCProtocolDecl *PD = dyn_cast<ObjCProtocolDecl>(D)) |
Richard Smith | e156254d | 2013-08-20 20:35:18 +0000 | [diff] [blame] | 4948 | return PD->getDefinition(); |
Richard Smith | 4241314 | 2015-05-15 20:05:43 +0000 | [diff] [blame] | 4949 | if (TemplateDecl *TD = dyn_cast<TemplateDecl>(D)) |
Richard Smith | e156254d | 2013-08-20 20:35:18 +0000 | [diff] [blame] | 4950 | return getDefinitionToImport(TD->getTemplatedDecl()); |
Craig Topper | c3ec149 | 2014-05-26 06:22:03 +0000 | [diff] [blame] | 4951 | return nullptr; |
Richard Smith | e156254d | 2013-08-20 20:35:18 +0000 | [diff] [blame] | 4952 | } |
| 4953 | |
Richard Smith | f2b1eb9 | 2015-06-15 20:15:48 +0000 | [diff] [blame] | 4954 | void Sema::diagnoseMissingImport(SourceLocation Loc, NamedDecl *Decl, |
Richard Smith | 6739a10 | 2016-05-05 00:56:12 +0000 | [diff] [blame] | 4955 | MissingImportKind MIK, bool Recover) { |
Richard Smith | f2b1eb9 | 2015-06-15 20:15:48 +0000 | [diff] [blame] | 4956 | assert(!isVisible(Decl) && "missing import for non-hidden decl?"); |
| 4957 | |
| 4958 | // Suggest importing a module providing the definition of this entity, if |
| 4959 | // possible. |
| 4960 | NamedDecl *Def = getDefinitionToImport(Decl); |
| 4961 | if (!Def) |
| 4962 | Def = Decl; |
| 4963 | |
Richard Smith | f2b1eb9 | 2015-06-15 20:15:48 +0000 | [diff] [blame] | 4964 | Module *Owner = getOwningModule(Decl); |
| 4965 | assert(Owner && "definition of hidden declaration is not in a module"); |
| 4966 | |
Richard Smith | 35c1df5 | 2015-06-17 20:16:32 +0000 | [diff] [blame] | 4967 | llvm::SmallVector<Module*, 8> OwningModules; |
| 4968 | OwningModules.push_back(Owner); |
Richard Smith | f2b1eb9 | 2015-06-15 20:15:48 +0000 | [diff] [blame] | 4969 | auto Merged = Context.getModulesWithMergedDefinition(Decl); |
Richard Smith | 35c1df5 | 2015-06-17 20:16:32 +0000 | [diff] [blame] | 4970 | OwningModules.insert(OwningModules.end(), Merged.begin(), Merged.end()); |
| 4971 | |
Richard Smith | 6739a10 | 2016-05-05 00:56:12 +0000 | [diff] [blame] | 4972 | diagnoseMissingImport(Loc, Decl, Decl->getLocation(), OwningModules, MIK, |
Richard Smith | 35c1df5 | 2015-06-17 20:16:32 +0000 | [diff] [blame] | 4973 | Recover); |
| 4974 | } |
| 4975 | |
Richard Smith | 4eb8393 | 2016-04-27 21:57:05 +0000 | [diff] [blame] | 4976 | /// \brief Get a "quoted.h" or <angled.h> include path to use in a diagnostic |
| 4977 | /// suggesting the addition of a #include of the specified file. |
| 4978 | static std::string getIncludeStringForHeader(Preprocessor &PP, |
| 4979 | const FileEntry *E) { |
| 4980 | bool IsSystem; |
| 4981 | auto Path = |
| 4982 | PP.getHeaderSearchInfo().suggestPathToFileForDiagnostics(E, &IsSystem); |
| 4983 | return (IsSystem ? '<' : '"') + Path + (IsSystem ? '>' : '"'); |
| 4984 | } |
| 4985 | |
Richard Smith | 35c1df5 | 2015-06-17 20:16:32 +0000 | [diff] [blame] | 4986 | void Sema::diagnoseMissingImport(SourceLocation UseLoc, NamedDecl *Decl, |
| 4987 | SourceLocation DeclLoc, |
| 4988 | ArrayRef<Module *> Modules, |
| 4989 | MissingImportKind MIK, bool Recover) { |
| 4990 | assert(!Modules.empty()); |
| 4991 | |
| 4992 | if (Modules.size() > 1) { |
Richard Smith | f2b1eb9 | 2015-06-15 20:15:48 +0000 | [diff] [blame] | 4993 | std::string ModuleList; |
Richard Smith | f2b1eb9 | 2015-06-15 20:15:48 +0000 | [diff] [blame] | 4994 | unsigned N = 0; |
Richard Smith | 35c1df5 | 2015-06-17 20:16:32 +0000 | [diff] [blame] | 4995 | for (Module *M : Modules) { |
Richard Smith | f2b1eb9 | 2015-06-15 20:15:48 +0000 | [diff] [blame] | 4996 | ModuleList += "\n "; |
Richard Smith | 35c1df5 | 2015-06-17 20:16:32 +0000 | [diff] [blame] | 4997 | if (++N == 5 && N != Modules.size()) { |
Richard Smith | f2b1eb9 | 2015-06-15 20:15:48 +0000 | [diff] [blame] | 4998 | ModuleList += "[...]"; |
| 4999 | break; |
| 5000 | } |
| 5001 | ModuleList += M->getFullModuleName(); |
| 5002 | } |
| 5003 | |
Richard Smith | 35c1df5 | 2015-06-17 20:16:32 +0000 | [diff] [blame] | 5004 | Diag(UseLoc, diag::err_module_unimported_use_multiple) |
| 5005 | << (int)MIK << Decl << ModuleList; |
Richard Smith | 4eb8393 | 2016-04-27 21:57:05 +0000 | [diff] [blame] | 5006 | } else if (const FileEntry *E = |
| 5007 | PP.getModuleHeaderToIncludeForDiagnostics(UseLoc, DeclLoc)) { |
| 5008 | // The right way to make the declaration visible is to include a header; |
| 5009 | // suggest doing so. |
| 5010 | // |
| 5011 | // FIXME: Find a smart place to suggest inserting a #include, and add |
| 5012 | // a FixItHint there. |
| 5013 | Diag(UseLoc, diag::err_module_unimported_use_header) |
| 5014 | << (int)MIK << Decl << Modules[0]->getFullModuleName() |
| 5015 | << getIncludeStringForHeader(PP, E); |
Richard Smith | f2b1eb9 | 2015-06-15 20:15:48 +0000 | [diff] [blame] | 5016 | } else { |
Richard Smith | acef17a | 2016-05-05 02:14:06 +0000 | [diff] [blame] | 5017 | // FIXME: Add a FixItHint that imports the corresponding module. |
Richard Smith | 35c1df5 | 2015-06-17 20:16:32 +0000 | [diff] [blame] | 5018 | Diag(UseLoc, diag::err_module_unimported_use) |
| 5019 | << (int)MIK << Decl << Modules[0]->getFullModuleName(); |
Richard Smith | f2b1eb9 | 2015-06-15 20:15:48 +0000 | [diff] [blame] | 5020 | } |
Richard Smith | 35c1df5 | 2015-06-17 20:16:32 +0000 | [diff] [blame] | 5021 | |
| 5022 | unsigned DiagID; |
| 5023 | switch (MIK) { |
| 5024 | case MissingImportKind::Declaration: |
| 5025 | DiagID = diag::note_previous_declaration; |
| 5026 | break; |
| 5027 | case MissingImportKind::Definition: |
| 5028 | DiagID = diag::note_previous_definition; |
| 5029 | break; |
| 5030 | case MissingImportKind::DefaultArgument: |
| 5031 | DiagID = diag::note_default_argument_declared_here; |
| 5032 | break; |
Richard Smith | 6739a10 | 2016-05-05 00:56:12 +0000 | [diff] [blame] | 5033 | case MissingImportKind::ExplicitSpecialization: |
| 5034 | DiagID = diag::note_explicit_specialization_declared_here; |
| 5035 | break; |
| 5036 | case MissingImportKind::PartialSpecialization: |
| 5037 | DiagID = diag::note_partial_specialization_declared_here; |
| 5038 | break; |
Richard Smith | 35c1df5 | 2015-06-17 20:16:32 +0000 | [diff] [blame] | 5039 | } |
| 5040 | Diag(DeclLoc, DiagID); |
Richard Smith | f2b1eb9 | 2015-06-15 20:15:48 +0000 | [diff] [blame] | 5041 | |
| 5042 | // Try to recover by implicitly importing this module. |
| 5043 | if (Recover) |
Richard Smith | 35c1df5 | 2015-06-17 20:16:32 +0000 | [diff] [blame] | 5044 | createImplicitModuleImportForErrorRecovery(UseLoc, Modules[0]); |
Richard Smith | f2b1eb9 | 2015-06-15 20:15:48 +0000 | [diff] [blame] | 5045 | } |
| 5046 | |
Richard Smith | f9b1510 | 2013-08-17 00:46:16 +0000 | [diff] [blame] | 5047 | /// \brief Diagnose a successfully-corrected typo. Separated from the correction |
| 5048 | /// itself to allow external validation of the result, etc. |
| 5049 | /// |
| 5050 | /// \param Correction The result of performing typo correction. |
| 5051 | /// \param TypoDiag The diagnostic to produce. This will have the corrected |
| 5052 | /// string added to it (and usually also a fixit). |
| 5053 | /// \param PrevNote A note to use when indicating the location of the entity to |
| 5054 | /// which we are correcting. Will have the correction string added to it. |
| 5055 | /// \param ErrorRecovery If \c true (the default), the caller is going to |
| 5056 | /// recover from the typo as if the corrected string had been typed. |
| 5057 | /// In this case, \c PDiag must be an error, and we will attach a fixit |
| 5058 | /// to it. |
| 5059 | void Sema::diagnoseTypo(const TypoCorrection &Correction, |
| 5060 | const PartialDiagnostic &TypoDiag, |
| 5061 | const PartialDiagnostic &PrevNote, |
| 5062 | bool ErrorRecovery) { |
| 5063 | std::string CorrectedStr = Correction.getAsString(getLangOpts()); |
| 5064 | std::string CorrectedQuotedStr = Correction.getQuoted(getLangOpts()); |
| 5065 | FixItHint FixTypo = FixItHint::CreateReplacement( |
| 5066 | Correction.getCorrectionRange(), CorrectedStr); |
| 5067 | |
Richard Smith | e156254d | 2013-08-20 20:35:18 +0000 | [diff] [blame] | 5068 | // Maybe we're just missing a module import. |
| 5069 | if (Correction.requiresImport()) { |
Richard Smith | de6d6c4 | 2015-12-29 19:43:10 +0000 | [diff] [blame] | 5070 | NamedDecl *Decl = Correction.getFoundDecl(); |
Richard Smith | e156254d | 2013-08-20 20:35:18 +0000 | [diff] [blame] | 5071 | assert(Decl && "import required but no declaration to import"); |
| 5072 | |
Richard Smith | f2b1eb9 | 2015-06-15 20:15:48 +0000 | [diff] [blame] | 5073 | diagnoseMissingImport(Correction.getCorrectionRange().getBegin(), Decl, |
Richard Smith | 6739a10 | 2016-05-05 00:56:12 +0000 | [diff] [blame] | 5074 | MissingImportKind::Declaration, ErrorRecovery); |
Richard Smith | e156254d | 2013-08-20 20:35:18 +0000 | [diff] [blame] | 5075 | return; |
| 5076 | } |
| 5077 | |
Richard Smith | f9b1510 | 2013-08-17 00:46:16 +0000 | [diff] [blame] | 5078 | Diag(Correction.getCorrectionRange().getBegin(), TypoDiag) |
| 5079 | << CorrectedQuotedStr << (ErrorRecovery ? FixTypo : FixItHint()); |
| 5080 | |
| 5081 | NamedDecl *ChosenDecl = |
Richard Smith | de6d6c4 | 2015-12-29 19:43:10 +0000 | [diff] [blame] | 5082 | Correction.isKeyword() ? nullptr : Correction.getFoundDecl(); |
Richard Smith | f9b1510 | 2013-08-17 00:46:16 +0000 | [diff] [blame] | 5083 | if (PrevNote.getDiagID() && ChosenDecl) |
| 5084 | Diag(ChosenDecl->getLocation(), PrevNote) |
| 5085 | << CorrectedQuotedStr << (ErrorRecovery ? FixItHint() : FixTypo); |
| 5086 | } |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 5087 | |
Kaelyn Takata | 8363f04 | 2014-10-27 18:07:42 +0000 | [diff] [blame] | 5088 | TypoExpr *Sema::createDelayedTypo(std::unique_ptr<TypoCorrectionConsumer> TCC, |
| 5089 | TypoDiagnosticGenerator TDG, |
| 5090 | TypoRecoveryCallback TRC) { |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 5091 | assert(TCC && "createDelayedTypo requires a valid TypoCorrectionConsumer"); |
| 5092 | auto TE = new (Context) TypoExpr(Context.DependentTy); |
| 5093 | auto &State = DelayedTypos[TE]; |
| 5094 | State.Consumer = std::move(TCC); |
| 5095 | State.DiagHandler = std::move(TDG); |
Kaelyn Takata | 8363f04 | 2014-10-27 18:07:42 +0000 | [diff] [blame] | 5096 | State.RecoveryHandler = std::move(TRC); |
Kaelyn Takata | 6c75951 | 2014-10-27 18:07:37 +0000 | [diff] [blame] | 5097 | return TE; |
| 5098 | } |
| 5099 | |
| 5100 | const Sema::TypoExprState &Sema::getTypoExprState(TypoExpr *TE) const { |
| 5101 | auto Entry = DelayedTypos.find(TE); |
| 5102 | assert(Entry != DelayedTypos.end() && |
| 5103 | "Failed to get the state for a TypoExpr!"); |
| 5104 | return Entry->second; |
| 5105 | } |
| 5106 | |
| 5107 | void Sema::clearDelayedTypo(TypoExpr *TE) { |
| 5108 | DelayedTypos.erase(TE); |
| 5109 | } |
Richard Smith | ba3a4f9 | 2016-01-12 21:59:26 +0000 | [diff] [blame] | 5110 | |
| 5111 | void Sema::ActOnPragmaDump(Scope *S, SourceLocation IILoc, IdentifierInfo *II) { |
| 5112 | DeclarationNameInfo Name(II, IILoc); |
| 5113 | LookupResult R(*this, Name, LookupAnyName, Sema::NotForRedeclaration); |
| 5114 | R.suppressDiagnostics(); |
| 5115 | R.setHideTags(false); |
| 5116 | LookupName(R, S); |
| 5117 | R.dump(); |
| 5118 | } |