Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 1 | //===--- DeclBase.cpp - Declaration AST Node Implementation ---------------===// |
| 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 the Decl and DeclContext classes. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "clang/AST/DeclBase.h" |
Chandler Carruth | 55fc873 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 15 | #include "clang/AST/ASTContext.h" |
| 16 | #include "clang/AST/ASTMutationListener.h" |
| 17 | #include "clang/AST/Attr.h" |
Douglas Gregor | 64650af | 2009-02-02 23:39:07 +0000 | [diff] [blame] | 18 | #include "clang/AST/Decl.h" |
Argyrios Kyrtzidis | d3bb44f | 2008-06-09 21:05:31 +0000 | [diff] [blame] | 19 | #include "clang/AST/DeclCXX.h" |
Chandler Carruth | 55fc873 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 20 | #include "clang/AST/DeclContextInternals.h" |
John McCall | 92b7f70 | 2010-03-11 07:50:04 +0000 | [diff] [blame] | 21 | #include "clang/AST/DeclFriend.h" |
Douglas Gregor | aaba5e3 | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 22 | #include "clang/AST/DeclObjC.h" |
Alexey Bataev | c640058 | 2013-03-22 06:34:35 +0000 | [diff] [blame] | 23 | #include "clang/AST/DeclOpenMP.h" |
Douglas Gregor | aaba5e3 | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 24 | #include "clang/AST/DeclTemplate.h" |
John McCall | 0c01d18 | 2010-03-24 05:22:00 +0000 | [diff] [blame] | 25 | #include "clang/AST/DependentDiagnostic.h" |
Benjamin Kramer | 2fa67ef | 2012-12-01 15:09:41 +0000 | [diff] [blame] | 26 | #include "clang/AST/ExternalASTSource.h" |
Sebastian Redl | d3a413d | 2009-04-26 20:35:05 +0000 | [diff] [blame] | 27 | #include "clang/AST/Stmt.h" |
| 28 | #include "clang/AST/StmtCXX.h" |
Benjamin Kramer | 2fa67ef | 2012-12-01 15:09:41 +0000 | [diff] [blame] | 29 | #include "clang/AST/Type.h" |
Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 30 | #include "clang/Basic/TargetInfo.h" |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 31 | #include "llvm/ADT/DenseMap.h" |
Chris Lattner | 49f28ca | 2009-03-05 08:00:35 +0000 | [diff] [blame] | 32 | #include "llvm/Support/raw_ostream.h" |
Douglas Gregor | 6ed40e3 | 2008-12-23 21:05:05 +0000 | [diff] [blame] | 33 | #include <algorithm> |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 34 | using namespace clang; |
| 35 | |
| 36 | //===----------------------------------------------------------------------===// |
| 37 | // Statistics |
| 38 | //===----------------------------------------------------------------------===// |
| 39 | |
Sean Hunt | 9a55591 | 2010-05-30 07:21:58 +0000 | [diff] [blame] | 40 | #define DECL(DERIVED, BASE) static int n##DERIVED##s = 0; |
| 41 | #define ABSTRACT_DECL(DECL) |
| 42 | #include "clang/AST/DeclNodes.inc" |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 43 | |
Douglas Gregor | 6bd9929 | 2013-02-09 01:35:03 +0000 | [diff] [blame] | 44 | void Decl::updateOutOfDate(IdentifierInfo &II) const { |
| 45 | getASTContext().getExternalSource()->updateOutOfDateIdentifier(II); |
| 46 | } |
| 47 | |
Douglas Gregor | 1e68ecc | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 48 | void *Decl::AllocateDeserializedDecl(const ASTContext &Context, |
| 49 | unsigned ID, |
| 50 | unsigned Size) { |
Douglas Gregor | 5d1f496 | 2012-01-05 23:49:36 +0000 | [diff] [blame] | 51 | // Allocate an extra 8 bytes worth of storage, which ensures that the |
Douglas Gregor | c6c8e0e | 2012-01-09 17:30:44 +0000 | [diff] [blame] | 52 | // resulting pointer will still be 8-byte aligned. |
Douglas Gregor | 5d1f496 | 2012-01-05 23:49:36 +0000 | [diff] [blame] | 53 | void *Start = Context.Allocate(Size + 8); |
| 54 | void *Result = (char*)Start + 8; |
Douglas Gregor | b6b60c1 | 2012-01-05 22:27:05 +0000 | [diff] [blame] | 55 | |
Douglas Gregor | c6c8e0e | 2012-01-09 17:30:44 +0000 | [diff] [blame] | 56 | unsigned *PrefixPtr = (unsigned *)Result - 2; |
| 57 | |
| 58 | // Zero out the first 4 bytes; this is used to store the owning module ID. |
| 59 | PrefixPtr[0] = 0; |
| 60 | |
| 61 | // Store the global declaration ID in the second 4 bytes. |
| 62 | PrefixPtr[1] = ID; |
Douglas Gregor | b6b60c1 | 2012-01-05 22:27:05 +0000 | [diff] [blame] | 63 | |
| 64 | return Result; |
Douglas Gregor | 1e68ecc | 2012-01-05 21:55:30 +0000 | [diff] [blame] | 65 | } |
| 66 | |
Douglas Gregor | ca2ab45 | 2013-01-12 01:29:50 +0000 | [diff] [blame] | 67 | Module *Decl::getOwningModuleSlow() const { |
| 68 | assert(isFromASTFile() && "Not from AST file?"); |
| 69 | return getASTContext().getExternalSource()->getModule(getOwningModuleID()); |
| 70 | } |
| 71 | |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 72 | const char *Decl::getDeclKindName() const { |
| 73 | switch (DeclKind) { |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 74 | default: llvm_unreachable("Declaration not in DeclNodes.inc!"); |
Sean Hunt | 9a55591 | 2010-05-30 07:21:58 +0000 | [diff] [blame] | 75 | #define DECL(DERIVED, BASE) case DERIVED: return #DERIVED; |
| 76 | #define ABSTRACT_DECL(DECL) |
| 77 | #include "clang/AST/DeclNodes.inc" |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 78 | } |
| 79 | } |
| 80 | |
Douglas Gregor | 4273857 | 2010-03-05 00:26:45 +0000 | [diff] [blame] | 81 | void Decl::setInvalidDecl(bool Invalid) { |
| 82 | InvalidDecl = Invalid; |
Argyrios Kyrtzidis | ba50b3e | 2012-03-09 21:09:04 +0000 | [diff] [blame] | 83 | if (Invalid && !isa<ParmVarDecl>(this)) { |
Douglas Gregor | 4273857 | 2010-03-05 00:26:45 +0000 | [diff] [blame] | 84 | // Defensive maneuver for ill-formed code: we're likely not to make it to |
| 85 | // a point where we set the access specifier, so default it to "public" |
| 86 | // to avoid triggering asserts elsewhere in the front end. |
| 87 | setAccess(AS_public); |
| 88 | } |
| 89 | } |
| 90 | |
Steve Naroff | 0a47393 | 2009-01-20 19:53:53 +0000 | [diff] [blame] | 91 | const char *DeclContext::getDeclKindName() const { |
| 92 | switch (DeclKind) { |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 93 | default: llvm_unreachable("Declaration context not in DeclNodes.inc!"); |
Sean Hunt | 9a55591 | 2010-05-30 07:21:58 +0000 | [diff] [blame] | 94 | #define DECL(DERIVED, BASE) case Decl::DERIVED: return #DERIVED; |
| 95 | #define ABSTRACT_DECL(DECL) |
| 96 | #include "clang/AST/DeclNodes.inc" |
Steve Naroff | 0a47393 | 2009-01-20 19:53:53 +0000 | [diff] [blame] | 97 | } |
| 98 | } |
| 99 | |
Daniel Dunbar | 02892a6 | 2012-03-05 21:42:49 +0000 | [diff] [blame] | 100 | bool Decl::StatisticsEnabled = false; |
| 101 | void Decl::EnableStatistics() { |
| 102 | StatisticsEnabled = true; |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 103 | } |
| 104 | |
| 105 | void Decl::PrintStats() { |
Chandler Carruth | b43c8ec | 2011-07-04 06:13:27 +0000 | [diff] [blame] | 106 | llvm::errs() << "\n*** Decl Stats:\n"; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 107 | |
Douglas Gregor | 64650af | 2009-02-02 23:39:07 +0000 | [diff] [blame] | 108 | int totalDecls = 0; |
Sean Hunt | 9a55591 | 2010-05-30 07:21:58 +0000 | [diff] [blame] | 109 | #define DECL(DERIVED, BASE) totalDecls += n##DERIVED##s; |
| 110 | #define ABSTRACT_DECL(DECL) |
| 111 | #include "clang/AST/DeclNodes.inc" |
Chandler Carruth | b43c8ec | 2011-07-04 06:13:27 +0000 | [diff] [blame] | 112 | llvm::errs() << " " << totalDecls << " decls total.\n"; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 113 | |
Douglas Gregor | 64650af | 2009-02-02 23:39:07 +0000 | [diff] [blame] | 114 | int totalBytes = 0; |
Sean Hunt | 9a55591 | 2010-05-30 07:21:58 +0000 | [diff] [blame] | 115 | #define DECL(DERIVED, BASE) \ |
| 116 | if (n##DERIVED##s > 0) { \ |
| 117 | totalBytes += (int)(n##DERIVED##s * sizeof(DERIVED##Decl)); \ |
Chandler Carruth | b43c8ec | 2011-07-04 06:13:27 +0000 | [diff] [blame] | 118 | llvm::errs() << " " << n##DERIVED##s << " " #DERIVED " decls, " \ |
| 119 | << sizeof(DERIVED##Decl) << " each (" \ |
| 120 | << n##DERIVED##s * sizeof(DERIVED##Decl) \ |
| 121 | << " bytes)\n"; \ |
Douglas Gregor | 64650af | 2009-02-02 23:39:07 +0000 | [diff] [blame] | 122 | } |
Sean Hunt | 9a55591 | 2010-05-30 07:21:58 +0000 | [diff] [blame] | 123 | #define ABSTRACT_DECL(DECL) |
| 124 | #include "clang/AST/DeclNodes.inc" |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 125 | |
Chandler Carruth | b43c8ec | 2011-07-04 06:13:27 +0000 | [diff] [blame] | 126 | llvm::errs() << "Total bytes = " << totalBytes << "\n"; |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 127 | } |
| 128 | |
Sean Hunt | 9a55591 | 2010-05-30 07:21:58 +0000 | [diff] [blame] | 129 | void Decl::add(Kind k) { |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 130 | switch (k) { |
Sean Hunt | 9a55591 | 2010-05-30 07:21:58 +0000 | [diff] [blame] | 131 | #define DECL(DERIVED, BASE) case DERIVED: ++n##DERIVED##s; break; |
| 132 | #define ABSTRACT_DECL(DECL) |
| 133 | #include "clang/AST/DeclNodes.inc" |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 134 | } |
| 135 | } |
| 136 | |
Anders Carlsson | 67e3320 | 2009-06-13 00:08:58 +0000 | [diff] [blame] | 137 | bool Decl::isTemplateParameterPack() const { |
| 138 | if (const TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(this)) |
| 139 | return TTP->isParameterPack(); |
Douglas Gregor | 10738d3 | 2010-12-23 23:51:58 +0000 | [diff] [blame] | 140 | if (const NonTypeTemplateParmDecl *NTTP |
Douglas Gregor | 61c4d28 | 2011-01-05 15:48:55 +0000 | [diff] [blame] | 141 | = dyn_cast<NonTypeTemplateParmDecl>(this)) |
Douglas Gregor | 10738d3 | 2010-12-23 23:51:58 +0000 | [diff] [blame] | 142 | return NTTP->isParameterPack(); |
Douglas Gregor | 61c4d28 | 2011-01-05 15:48:55 +0000 | [diff] [blame] | 143 | if (const TemplateTemplateParmDecl *TTP |
| 144 | = dyn_cast<TemplateTemplateParmDecl>(this)) |
| 145 | return TTP->isParameterPack(); |
Anders Carlsson | 67e3320 | 2009-06-13 00:08:58 +0000 | [diff] [blame] | 146 | return false; |
| 147 | } |
| 148 | |
Douglas Gregor | 1fe85ea | 2011-01-05 21:11:38 +0000 | [diff] [blame] | 149 | bool Decl::isParameterPack() const { |
| 150 | if (const ParmVarDecl *Parm = dyn_cast<ParmVarDecl>(this)) |
| 151 | return Parm->isParameterPack(); |
| 152 | |
| 153 | return isTemplateParameterPack(); |
| 154 | } |
| 155 | |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 156 | bool Decl::isFunctionOrFunctionTemplate() const { |
John McCall | 9488ea1 | 2009-11-17 05:59:44 +0000 | [diff] [blame] | 157 | if (const UsingShadowDecl *UD = dyn_cast<UsingShadowDecl>(this)) |
Anders Carlsson | 58badb7 | 2009-06-26 05:26:50 +0000 | [diff] [blame] | 158 | return UD->getTargetDecl()->isFunctionOrFunctionTemplate(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 159 | |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 160 | return isa<FunctionDecl>(this) || isa<FunctionTemplateDecl>(this); |
| 161 | } |
| 162 | |
Caitlin Sadowski | ed9d84a | 2011-09-08 17:42:31 +0000 | [diff] [blame] | 163 | bool Decl::isTemplateDecl() const { |
| 164 | return isa<TemplateDecl>(this); |
| 165 | } |
| 166 | |
Argyrios Kyrtzidis | c8680f4 | 2011-09-28 02:45:33 +0000 | [diff] [blame] | 167 | const DeclContext *Decl::getParentFunctionOrMethod() const { |
| 168 | for (const DeclContext *DC = getDeclContext(); |
| 169 | DC && !DC->isTranslationUnit() && !DC->isNamespace(); |
Douglas Gregor | 79c2278 | 2010-01-16 20:21:20 +0000 | [diff] [blame] | 170 | DC = DC->getParent()) |
| 171 | if (DC->isFunctionOrMethod()) |
Argyrios Kyrtzidis | c8680f4 | 2011-09-28 02:45:33 +0000 | [diff] [blame] | 172 | return DC; |
Douglas Gregor | 79c2278 | 2010-01-16 20:21:20 +0000 | [diff] [blame] | 173 | |
Argyrios Kyrtzidis | c8680f4 | 2011-09-28 02:45:33 +0000 | [diff] [blame] | 174 | return 0; |
Douglas Gregor | 79c2278 | 2010-01-16 20:21:20 +0000 | [diff] [blame] | 175 | } |
| 176 | |
Douglas Gregor | 4c3e0ee | 2011-02-17 08:47:29 +0000 | [diff] [blame] | 177 | |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 178 | //===----------------------------------------------------------------------===// |
Chris Lattner | 49f28ca | 2009-03-05 08:00:35 +0000 | [diff] [blame] | 179 | // PrettyStackTraceDecl Implementation |
| 180 | //===----------------------------------------------------------------------===// |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 181 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 182 | void PrettyStackTraceDecl::print(raw_ostream &OS) const { |
Chris Lattner | 49f28ca | 2009-03-05 08:00:35 +0000 | [diff] [blame] | 183 | SourceLocation TheLoc = Loc; |
| 184 | if (TheLoc.isInvalid() && TheDecl) |
| 185 | TheLoc = TheDecl->getLocation(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 186 | |
Chris Lattner | 49f28ca | 2009-03-05 08:00:35 +0000 | [diff] [blame] | 187 | if (TheLoc.isValid()) { |
| 188 | TheLoc.print(OS, SM); |
| 189 | OS << ": "; |
| 190 | } |
| 191 | |
| 192 | OS << Message; |
| 193 | |
Benjamin Kramer | b063ef0 | 2013-02-23 13:53:57 +0000 | [diff] [blame] | 194 | if (const NamedDecl *DN = dyn_cast_or_null<NamedDecl>(TheDecl)) { |
| 195 | OS << " '"; |
| 196 | DN->printQualifiedName(OS); |
| 197 | OS << '\''; |
| 198 | } |
Chris Lattner | 49f28ca | 2009-03-05 08:00:35 +0000 | [diff] [blame] | 199 | OS << '\n'; |
| 200 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 201 | |
Chris Lattner | 49f28ca | 2009-03-05 08:00:35 +0000 | [diff] [blame] | 202 | //===----------------------------------------------------------------------===// |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 203 | // Decl Implementation |
| 204 | //===----------------------------------------------------------------------===// |
| 205 | |
Douglas Gregor | da2142f | 2011-02-19 18:51:44 +0000 | [diff] [blame] | 206 | // Out-of-line virtual method providing a home for Decl. |
| 207 | Decl::~Decl() { } |
Douglas Gregor | f4a03cc | 2011-02-17 07:02:32 +0000 | [diff] [blame] | 208 | |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 209 | void Decl::setDeclContext(DeclContext *DC) { |
Chris Lattner | ee219fd | 2009-03-29 06:06:59 +0000 | [diff] [blame] | 210 | DeclCtx = DC; |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 211 | } |
| 212 | |
| 213 | void Decl::setLexicalDeclContext(DeclContext *DC) { |
| 214 | if (DC == getLexicalDeclContext()) |
| 215 | return; |
| 216 | |
| 217 | if (isInSemaDC()) { |
Argyrios Kyrtzidis | 4bbb850 | 2012-02-09 02:44:08 +0000 | [diff] [blame] | 218 | setDeclContextsImpl(getDeclContext(), DC, getASTContext()); |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 219 | } else { |
| 220 | getMultipleDC()->LexicalDC = DC; |
| 221 | } |
| 222 | } |
| 223 | |
Argyrios Kyrtzidis | 4bbb850 | 2012-02-09 02:44:08 +0000 | [diff] [blame] | 224 | void Decl::setDeclContextsImpl(DeclContext *SemaDC, DeclContext *LexicalDC, |
| 225 | ASTContext &Ctx) { |
| 226 | if (SemaDC == LexicalDC) { |
| 227 | DeclCtx = SemaDC; |
| 228 | } else { |
| 229 | Decl::MultipleDC *MDC = new (Ctx) Decl::MultipleDC(); |
| 230 | MDC->SemanticDC = SemaDC; |
| 231 | MDC->LexicalDC = LexicalDC; |
| 232 | DeclCtx = MDC; |
| 233 | } |
| 234 | } |
| 235 | |
John McCall | 9aeed32 | 2009-10-01 00:25:31 +0000 | [diff] [blame] | 236 | bool Decl::isInAnonymousNamespace() const { |
| 237 | const DeclContext *DC = getDeclContext(); |
| 238 | do { |
| 239 | if (const NamespaceDecl *ND = dyn_cast<NamespaceDecl>(DC)) |
| 240 | if (ND->isAnonymousNamespace()) |
| 241 | return true; |
| 242 | } while ((DC = DC->getParent())); |
| 243 | |
| 244 | return false; |
| 245 | } |
| 246 | |
Argyrios Kyrtzidis | 3708b3d | 2009-06-29 17:38:40 +0000 | [diff] [blame] | 247 | TranslationUnitDecl *Decl::getTranslationUnitDecl() { |
Argyrios Kyrtzidis | 9b34669 | 2009-06-30 02:34:53 +0000 | [diff] [blame] | 248 | if (TranslationUnitDecl *TUD = dyn_cast<TranslationUnitDecl>(this)) |
| 249 | return TUD; |
| 250 | |
Argyrios Kyrtzidis | 3708b3d | 2009-06-29 17:38:40 +0000 | [diff] [blame] | 251 | DeclContext *DC = getDeclContext(); |
| 252 | assert(DC && "This decl is not contained in a translation unit!"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 253 | |
Argyrios Kyrtzidis | 3708b3d | 2009-06-29 17:38:40 +0000 | [diff] [blame] | 254 | while (!DC->isTranslationUnit()) { |
| 255 | DC = DC->getParent(); |
| 256 | assert(DC && "This decl is not contained in a translation unit!"); |
| 257 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 258 | |
Argyrios Kyrtzidis | 3708b3d | 2009-06-29 17:38:40 +0000 | [diff] [blame] | 259 | return cast<TranslationUnitDecl>(DC); |
| 260 | } |
| 261 | |
| 262 | ASTContext &Decl::getASTContext() const { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 263 | return getTranslationUnitDecl()->getASTContext(); |
Argyrios Kyrtzidis | 3708b3d | 2009-06-29 17:38:40 +0000 | [diff] [blame] | 264 | } |
| 265 | |
Argyrios Kyrtzidis | 7b90340 | 2010-10-24 17:26:36 +0000 | [diff] [blame] | 266 | ASTMutationListener *Decl::getASTMutationListener() const { |
| 267 | return getASTContext().getASTMutationListener(); |
| 268 | } |
| 269 | |
Benjamin Kramer | 2fa67ef | 2012-12-01 15:09:41 +0000 | [diff] [blame] | 270 | unsigned Decl::getMaxAlignment() const { |
| 271 | if (!hasAttrs()) |
| 272 | return 0; |
| 273 | |
| 274 | unsigned Align = 0; |
| 275 | const AttrVec &V = getAttrs(); |
| 276 | ASTContext &Ctx = getASTContext(); |
| 277 | specific_attr_iterator<AlignedAttr> I(V.begin()), E(V.end()); |
| 278 | for (; I != E; ++I) |
| 279 | Align = std::max(Align, I->getAlignment(Ctx)); |
| 280 | return Align; |
| 281 | } |
| 282 | |
Douglas Gregor | c070cc6 | 2010-06-17 23:14:26 +0000 | [diff] [blame] | 283 | bool Decl::isUsed(bool CheckUsedAttr) const { |
Tanya Lattner | 12ead49 | 2010-02-17 02:17:21 +0000 | [diff] [blame] | 284 | if (Used) |
| 285 | return true; |
| 286 | |
| 287 | // Check for used attribute. |
Douglas Gregor | c070cc6 | 2010-06-17 23:14:26 +0000 | [diff] [blame] | 288 | if (CheckUsedAttr && hasAttr<UsedAttr>()) |
Tanya Lattner | 12ead49 | 2010-02-17 02:17:21 +0000 | [diff] [blame] | 289 | return true; |
Rafael Espindola | 919b7e6 | 2012-11-23 16:26:30 +0000 | [diff] [blame] | 290 | |
Tanya Lattner | 12ead49 | 2010-02-17 02:17:21 +0000 | [diff] [blame] | 291 | return false; |
| 292 | } |
| 293 | |
Argyrios Kyrtzidis | 6b6b42a | 2011-04-19 19:51:10 +0000 | [diff] [blame] | 294 | bool Decl::isReferenced() const { |
| 295 | if (Referenced) |
| 296 | return true; |
| 297 | |
| 298 | // Check redeclarations. |
| 299 | for (redecl_iterator I = redecls_begin(), E = redecls_end(); I != E; ++I) |
| 300 | if (I->Referenced) |
| 301 | return true; |
| 302 | |
| 303 | return false; |
| 304 | } |
| 305 | |
Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 306 | /// \brief Determine the availability of the given declaration based on |
| 307 | /// the target platform. |
| 308 | /// |
| 309 | /// When it returns an availability result other than \c AR_Available, |
| 310 | /// if the \p Message parameter is non-NULL, it will be set to a |
| 311 | /// string describing why the entity is unavailable. |
| 312 | /// |
| 313 | /// FIXME: Make these strings localizable, since they end up in |
| 314 | /// diagnostics. |
| 315 | static AvailabilityResult CheckAvailability(ASTContext &Context, |
| 316 | const AvailabilityAttr *A, |
| 317 | std::string *Message) { |
Douglas Gregor | bcfd1f5 | 2011-09-02 00:18:52 +0000 | [diff] [blame] | 318 | StringRef TargetPlatform = Context.getTargetInfo().getPlatformName(); |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 319 | StringRef PrettyPlatformName |
Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 320 | = AvailabilityAttr::getPrettyPlatformName(TargetPlatform); |
| 321 | if (PrettyPlatformName.empty()) |
| 322 | PrettyPlatformName = TargetPlatform; |
| 323 | |
Douglas Gregor | bcfd1f5 | 2011-09-02 00:18:52 +0000 | [diff] [blame] | 324 | VersionTuple TargetMinVersion = Context.getTargetInfo().getPlatformMinVersion(); |
Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 325 | if (TargetMinVersion.empty()) |
| 326 | return AR_Available; |
| 327 | |
| 328 | // Match the platform name. |
| 329 | if (A->getPlatform()->getName() != TargetPlatform) |
| 330 | return AR_Available; |
Fariborz Jahanian | 006e42f | 2011-12-10 00:28:41 +0000 | [diff] [blame] | 331 | |
| 332 | std::string HintMessage; |
| 333 | if (!A->getMessage().empty()) { |
| 334 | HintMessage = " - "; |
| 335 | HintMessage += A->getMessage(); |
| 336 | } |
| 337 | |
Douglas Gregor | b53e417 | 2011-03-26 03:35:55 +0000 | [diff] [blame] | 338 | // Make sure that this declaration has not been marked 'unavailable'. |
| 339 | if (A->getUnavailable()) { |
| 340 | if (Message) { |
| 341 | Message->clear(); |
| 342 | llvm::raw_string_ostream Out(*Message); |
Fariborz Jahanian | 006e42f | 2011-12-10 00:28:41 +0000 | [diff] [blame] | 343 | Out << "not available on " << PrettyPlatformName |
| 344 | << HintMessage; |
Douglas Gregor | b53e417 | 2011-03-26 03:35:55 +0000 | [diff] [blame] | 345 | } |
| 346 | |
| 347 | return AR_Unavailable; |
| 348 | } |
| 349 | |
Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 350 | // Make sure that this declaration has already been introduced. |
| 351 | if (!A->getIntroduced().empty() && |
| 352 | TargetMinVersion < A->getIntroduced()) { |
| 353 | if (Message) { |
| 354 | Message->clear(); |
| 355 | llvm::raw_string_ostream Out(*Message); |
| 356 | Out << "introduced in " << PrettyPlatformName << ' ' |
Fariborz Jahanian | 006e42f | 2011-12-10 00:28:41 +0000 | [diff] [blame] | 357 | << A->getIntroduced() << HintMessage; |
Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 358 | } |
| 359 | |
| 360 | return AR_NotYetIntroduced; |
| 361 | } |
| 362 | |
| 363 | // Make sure that this declaration hasn't been obsoleted. |
| 364 | if (!A->getObsoleted().empty() && TargetMinVersion >= A->getObsoleted()) { |
| 365 | if (Message) { |
| 366 | Message->clear(); |
| 367 | llvm::raw_string_ostream Out(*Message); |
| 368 | Out << "obsoleted in " << PrettyPlatformName << ' ' |
Fariborz Jahanian | 006e42f | 2011-12-10 00:28:41 +0000 | [diff] [blame] | 369 | << A->getObsoleted() << HintMessage; |
Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 370 | } |
| 371 | |
| 372 | return AR_Unavailable; |
| 373 | } |
| 374 | |
| 375 | // Make sure that this declaration hasn't been deprecated. |
| 376 | if (!A->getDeprecated().empty() && TargetMinVersion >= A->getDeprecated()) { |
| 377 | if (Message) { |
| 378 | Message->clear(); |
| 379 | llvm::raw_string_ostream Out(*Message); |
| 380 | Out << "first deprecated in " << PrettyPlatformName << ' ' |
Fariborz Jahanian | 006e42f | 2011-12-10 00:28:41 +0000 | [diff] [blame] | 381 | << A->getDeprecated() << HintMessage; |
Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 382 | } |
| 383 | |
| 384 | return AR_Deprecated; |
| 385 | } |
| 386 | |
| 387 | return AR_Available; |
| 388 | } |
| 389 | |
| 390 | AvailabilityResult Decl::getAvailability(std::string *Message) const { |
| 391 | AvailabilityResult Result = AR_Available; |
| 392 | std::string ResultMessage; |
| 393 | |
| 394 | for (attr_iterator A = attr_begin(), AEnd = attr_end(); A != AEnd; ++A) { |
| 395 | if (DeprecatedAttr *Deprecated = dyn_cast<DeprecatedAttr>(*A)) { |
| 396 | if (Result >= AR_Deprecated) |
| 397 | continue; |
| 398 | |
| 399 | if (Message) |
| 400 | ResultMessage = Deprecated->getMessage(); |
| 401 | |
| 402 | Result = AR_Deprecated; |
| 403 | continue; |
| 404 | } |
| 405 | |
| 406 | if (UnavailableAttr *Unavailable = dyn_cast<UnavailableAttr>(*A)) { |
| 407 | if (Message) |
| 408 | *Message = Unavailable->getMessage(); |
| 409 | return AR_Unavailable; |
| 410 | } |
| 411 | |
| 412 | if (AvailabilityAttr *Availability = dyn_cast<AvailabilityAttr>(*A)) { |
| 413 | AvailabilityResult AR = CheckAvailability(getASTContext(), Availability, |
| 414 | Message); |
| 415 | |
| 416 | if (AR == AR_Unavailable) |
| 417 | return AR_Unavailable; |
| 418 | |
| 419 | if (AR > Result) { |
| 420 | Result = AR; |
| 421 | if (Message) |
| 422 | ResultMessage.swap(*Message); |
| 423 | } |
| 424 | continue; |
| 425 | } |
| 426 | } |
| 427 | |
| 428 | if (Message) |
| 429 | Message->swap(ResultMessage); |
| 430 | return Result; |
| 431 | } |
| 432 | |
| 433 | bool Decl::canBeWeakImported(bool &IsDefinition) const { |
| 434 | IsDefinition = false; |
John McCall | 260611a | 2012-06-20 06:18:46 +0000 | [diff] [blame] | 435 | |
| 436 | // Variables, if they aren't definitions. |
Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 437 | if (const VarDecl *Var = dyn_cast<VarDecl>(this)) { |
Rafael Espindola | d2615cc | 2013-04-03 19:27:57 +0000 | [diff] [blame] | 438 | if (Var->isThisDeclarationADefinition()) { |
Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 439 | IsDefinition = true; |
| 440 | return false; |
| 441 | } |
John McCall | 260611a | 2012-06-20 06:18:46 +0000 | [diff] [blame] | 442 | return true; |
| 443 | |
| 444 | // Functions, if they aren't definitions. |
Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 445 | } else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(this)) { |
| 446 | if (FD->hasBody()) { |
| 447 | IsDefinition = true; |
| 448 | return false; |
| 449 | } |
John McCall | 260611a | 2012-06-20 06:18:46 +0000 | [diff] [blame] | 450 | return true; |
Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 451 | |
John McCall | 260611a | 2012-06-20 06:18:46 +0000 | [diff] [blame] | 452 | // Objective-C classes, if this is the non-fragile runtime. |
| 453 | } else if (isa<ObjCInterfaceDecl>(this) && |
John McCall | 0b92fcb | 2012-06-20 21:58:02 +0000 | [diff] [blame] | 454 | getASTContext().getLangOpts().ObjCRuntime.hasWeakClassImport()) { |
John McCall | 260611a | 2012-06-20 06:18:46 +0000 | [diff] [blame] | 455 | return true; |
| 456 | |
| 457 | // Nothing else. |
| 458 | } else { |
| 459 | return false; |
| 460 | } |
Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 461 | } |
| 462 | |
| 463 | bool Decl::isWeakImported() const { |
| 464 | bool IsDefinition; |
| 465 | if (!canBeWeakImported(IsDefinition)) |
| 466 | return false; |
| 467 | |
Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 468 | for (attr_iterator A = attr_begin(), AEnd = attr_end(); A != AEnd; ++A) { |
| 469 | if (isa<WeakImportAttr>(*A)) |
| 470 | return true; |
| 471 | |
| 472 | if (AvailabilityAttr *Availability = dyn_cast<AvailabilityAttr>(*A)) { |
| 473 | if (CheckAvailability(getASTContext(), Availability, 0) |
| 474 | == AR_NotYetIntroduced) |
| 475 | return true; |
| 476 | } |
| 477 | } |
| 478 | |
| 479 | return false; |
| 480 | } |
Tanya Lattner | 12ead49 | 2010-02-17 02:17:21 +0000 | [diff] [blame] | 481 | |
Chris Lattner | 769dbdf | 2009-03-27 20:18:19 +0000 | [diff] [blame] | 482 | unsigned Decl::getIdentifierNamespaceForKind(Kind DeclKind) { |
| 483 | switch (DeclKind) { |
John McCall | 9488ea1 | 2009-11-17 05:59:44 +0000 | [diff] [blame] | 484 | case Function: |
| 485 | case CXXMethod: |
| 486 | case CXXConstructor: |
| 487 | case CXXDestructor: |
| 488 | case CXXConversion: |
Chris Lattner | 769dbdf | 2009-03-27 20:18:19 +0000 | [diff] [blame] | 489 | case EnumConstant: |
| 490 | case Var: |
| 491 | case ImplicitParam: |
| 492 | case ParmVar: |
Chris Lattner | 769dbdf | 2009-03-27 20:18:19 +0000 | [diff] [blame] | 493 | case NonTypeTemplateParm: |
| 494 | case ObjCMethod: |
Daniel Dunbar | 00b40d3 | 2010-04-23 13:07:39 +0000 | [diff] [blame] | 495 | case ObjCProperty: |
John McCall | 76da55d | 2013-04-16 07:28:30 +0000 | [diff] [blame] | 496 | case MSProperty: |
Daniel Dunbar | 00b40d3 | 2010-04-23 13:07:39 +0000 | [diff] [blame] | 497 | return IDNS_Ordinary; |
Chris Lattner | ad8dcf4 | 2011-02-17 07:39:24 +0000 | [diff] [blame] | 498 | case Label: |
| 499 | return IDNS_Label; |
Francois Pichet | 87c2e12 | 2010-11-21 06:08:52 +0000 | [diff] [blame] | 500 | case IndirectField: |
| 501 | return IDNS_Ordinary | IDNS_Member; |
| 502 | |
John McCall | 0d6b164 | 2010-04-23 18:46:30 +0000 | [diff] [blame] | 503 | case ObjCCompatibleAlias: |
| 504 | case ObjCInterface: |
| 505 | return IDNS_Ordinary | IDNS_Type; |
| 506 | |
| 507 | case Typedef: |
Richard Smith | 162e1c1 | 2011-04-15 14:24:37 +0000 | [diff] [blame] | 508 | case TypeAlias: |
Richard Smith | 3e4c6c4 | 2011-05-05 21:57:07 +0000 | [diff] [blame] | 509 | case TypeAliasTemplate: |
John McCall | 0d6b164 | 2010-04-23 18:46:30 +0000 | [diff] [blame] | 510 | case UnresolvedUsingTypename: |
| 511 | case TemplateTypeParm: |
| 512 | return IDNS_Ordinary | IDNS_Type; |
| 513 | |
John McCall | 9488ea1 | 2009-11-17 05:59:44 +0000 | [diff] [blame] | 514 | case UsingShadow: |
| 515 | return 0; // we'll actually overwrite this later |
| 516 | |
John McCall | 7ba107a | 2009-11-18 02:36:19 +0000 | [diff] [blame] | 517 | case UnresolvedUsingValue: |
John McCall | 7ba107a | 2009-11-18 02:36:19 +0000 | [diff] [blame] | 518 | return IDNS_Ordinary | IDNS_Using; |
John McCall | 9488ea1 | 2009-11-17 05:59:44 +0000 | [diff] [blame] | 519 | |
| 520 | case Using: |
| 521 | return IDNS_Using; |
| 522 | |
Chris Lattner | 769dbdf | 2009-03-27 20:18:19 +0000 | [diff] [blame] | 523 | case ObjCProtocol: |
Douglas Gregor | 8fc463a | 2009-04-24 00:11:27 +0000 | [diff] [blame] | 524 | return IDNS_ObjCProtocol; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 525 | |
Chris Lattner | 769dbdf | 2009-03-27 20:18:19 +0000 | [diff] [blame] | 526 | case Field: |
| 527 | case ObjCAtDefsField: |
| 528 | case ObjCIvar: |
| 529 | return IDNS_Member; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 530 | |
Chris Lattner | 769dbdf | 2009-03-27 20:18:19 +0000 | [diff] [blame] | 531 | case Record: |
| 532 | case CXXRecord: |
| 533 | case Enum: |
John McCall | 0d6b164 | 2010-04-23 18:46:30 +0000 | [diff] [blame] | 534 | return IDNS_Tag | IDNS_Type; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 535 | |
Chris Lattner | 769dbdf | 2009-03-27 20:18:19 +0000 | [diff] [blame] | 536 | case Namespace: |
John McCall | 0d6b164 | 2010-04-23 18:46:30 +0000 | [diff] [blame] | 537 | case NamespaceAlias: |
| 538 | return IDNS_Namespace; |
| 539 | |
Chris Lattner | 769dbdf | 2009-03-27 20:18:19 +0000 | [diff] [blame] | 540 | case FunctionTemplate: |
John McCall | 0d6b164 | 2010-04-23 18:46:30 +0000 | [diff] [blame] | 541 | return IDNS_Ordinary; |
| 542 | |
Chris Lattner | 769dbdf | 2009-03-27 20:18:19 +0000 | [diff] [blame] | 543 | case ClassTemplate: |
| 544 | case TemplateTemplateParm: |
John McCall | 0d6b164 | 2010-04-23 18:46:30 +0000 | [diff] [blame] | 545 | return IDNS_Ordinary | IDNS_Tag | IDNS_Type; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 546 | |
Chris Lattner | 769dbdf | 2009-03-27 20:18:19 +0000 | [diff] [blame] | 547 | // Never have names. |
John McCall | 02cace7 | 2009-08-28 07:59:38 +0000 | [diff] [blame] | 548 | case Friend: |
John McCall | dd4a3b0 | 2009-09-16 22:47:08 +0000 | [diff] [blame] | 549 | case FriendTemplate: |
Abramo Bagnara | 6206d53 | 2010-06-05 05:09:32 +0000 | [diff] [blame] | 550 | case AccessSpec: |
Chris Lattner | 769dbdf | 2009-03-27 20:18:19 +0000 | [diff] [blame] | 551 | case LinkageSpec: |
| 552 | case FileScopeAsm: |
| 553 | case StaticAssert: |
Chris Lattner | 769dbdf | 2009-03-27 20:18:19 +0000 | [diff] [blame] | 554 | case ObjCPropertyImpl: |
Chris Lattner | 769dbdf | 2009-03-27 20:18:19 +0000 | [diff] [blame] | 555 | case Block: |
Tareq A. Siraj | 6afcf88 | 2013-04-16 19:37:38 +0000 | [diff] [blame] | 556 | case Captured: |
Chris Lattner | 769dbdf | 2009-03-27 20:18:19 +0000 | [diff] [blame] | 557 | case TranslationUnit: |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 558 | |
Chris Lattner | 769dbdf | 2009-03-27 20:18:19 +0000 | [diff] [blame] | 559 | case UsingDirective: |
| 560 | case ClassTemplateSpecialization: |
Douglas Gregor | c8ab256 | 2009-05-31 09:31:02 +0000 | [diff] [blame] | 561 | case ClassTemplatePartialSpecialization: |
Francois Pichet | af0f4d0 | 2011-08-14 03:52:19 +0000 | [diff] [blame] | 562 | case ClassScopeFunctionSpecialization: |
Douglas Gregor | bd4187b | 2010-04-22 23:19:50 +0000 | [diff] [blame] | 563 | case ObjCImplementation: |
| 564 | case ObjCCategory: |
| 565 | case ObjCCategoryImpl: |
Douglas Gregor | 15de72c | 2011-12-02 23:23:56 +0000 | [diff] [blame] | 566 | case Import: |
Alexey Bataev | c640058 | 2013-03-22 06:34:35 +0000 | [diff] [blame] | 567 | case OMPThreadPrivate: |
Michael Han | 684aa73 | 2013-02-22 17:15:32 +0000 | [diff] [blame] | 568 | case Empty: |
Douglas Gregor | bd4187b | 2010-04-22 23:19:50 +0000 | [diff] [blame] | 569 | // Never looked up by name. |
Chris Lattner | 769dbdf | 2009-03-27 20:18:19 +0000 | [diff] [blame] | 570 | return 0; |
| 571 | } |
John McCall | 9488ea1 | 2009-11-17 05:59:44 +0000 | [diff] [blame] | 572 | |
David Blaikie | 3026348 | 2012-01-20 21:50:17 +0000 | [diff] [blame] | 573 | llvm_unreachable("Invalid DeclKind!"); |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 574 | } |
| 575 | |
Argyrios Kyrtzidis | 4bbb850 | 2012-02-09 02:44:08 +0000 | [diff] [blame] | 576 | void Decl::setAttrsImpl(const AttrVec &attrs, ASTContext &Ctx) { |
Argyrios Kyrtzidis | 1715bf5 | 2010-06-11 23:09:25 +0000 | [diff] [blame] | 577 | assert(!HasAttrs && "Decl already contains attrs."); |
| 578 | |
Argyrios Kyrtzidis | 4bbb850 | 2012-02-09 02:44:08 +0000 | [diff] [blame] | 579 | AttrVec &AttrBlank = Ctx.getDeclAttrs(this); |
Sean Hunt | cf807c4 | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 580 | assert(AttrBlank.empty() && "HasAttrs was wrong?"); |
Argyrios Kyrtzidis | 1715bf5 | 2010-06-11 23:09:25 +0000 | [diff] [blame] | 581 | |
| 582 | AttrBlank = attrs; |
| 583 | HasAttrs = true; |
| 584 | } |
| 585 | |
Sean Hunt | cf807c4 | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 586 | void Decl::dropAttrs() { |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 587 | if (!HasAttrs) return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 588 | |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 589 | HasAttrs = false; |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 590 | getASTContext().eraseDeclAttrs(this); |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 591 | } |
| 592 | |
Sean Hunt | cf807c4 | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 593 | const AttrVec &Decl::getAttrs() const { |
| 594 | assert(HasAttrs && "No attrs to get!"); |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 595 | return getASTContext().getDeclAttrs(this); |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 596 | } |
| 597 | |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 598 | void Decl::swapAttrs(Decl *RHS) { |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 599 | bool HasLHSAttr = this->HasAttrs; |
| 600 | bool HasRHSAttr = RHS->HasAttrs; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 601 | |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 602 | // Usually, neither decl has attrs, nothing to do. |
| 603 | if (!HasLHSAttr && !HasRHSAttr) return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 604 | |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 605 | // If 'this' has no attrs, swap the other way. |
| 606 | if (!HasLHSAttr) |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 607 | return RHS->swapAttrs(this); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 608 | |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 609 | ASTContext &Context = getASTContext(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 610 | |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 611 | // Handle the case when both decls have attrs. |
| 612 | if (HasRHSAttr) { |
Douglas Gregor | 68584ed | 2009-06-18 16:11:24 +0000 | [diff] [blame] | 613 | std::swap(Context.getDeclAttrs(this), Context.getDeclAttrs(RHS)); |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 614 | return; |
| 615 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 616 | |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 617 | // Otherwise, LHS has an attr and RHS doesn't. |
Douglas Gregor | 68584ed | 2009-06-18 16:11:24 +0000 | [diff] [blame] | 618 | Context.getDeclAttrs(RHS) = Context.getDeclAttrs(this); |
| 619 | Context.eraseDeclAttrs(this); |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 620 | this->HasAttrs = false; |
| 621 | RHS->HasAttrs = true; |
| 622 | } |
| 623 | |
Argyrios Kyrtzidis | 42220c5 | 2008-10-12 16:14:48 +0000 | [diff] [blame] | 624 | Decl *Decl::castFromDeclContext (const DeclContext *D) { |
Argyrios Kyrtzidis | 3d7641e | 2009-02-16 14:29:28 +0000 | [diff] [blame] | 625 | Decl::Kind DK = D->getDeclKind(); |
| 626 | switch(DK) { |
Sean Hunt | 9a55591 | 2010-05-30 07:21:58 +0000 | [diff] [blame] | 627 | #define DECL(NAME, BASE) |
| 628 | #define DECL_CONTEXT(NAME) \ |
| 629 | case Decl::NAME: \ |
| 630 | return static_cast<NAME##Decl*>(const_cast<DeclContext*>(D)); |
| 631 | #define DECL_CONTEXT_BASE(NAME) |
| 632 | #include "clang/AST/DeclNodes.inc" |
Argyrios Kyrtzidis | 3d7641e | 2009-02-16 14:29:28 +0000 | [diff] [blame] | 633 | default: |
Sean Hunt | 9a55591 | 2010-05-30 07:21:58 +0000 | [diff] [blame] | 634 | #define DECL(NAME, BASE) |
| 635 | #define DECL_CONTEXT_BASE(NAME) \ |
| 636 | if (DK >= first##NAME && DK <= last##NAME) \ |
| 637 | return static_cast<NAME##Decl*>(const_cast<DeclContext*>(D)); |
| 638 | #include "clang/AST/DeclNodes.inc" |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 639 | llvm_unreachable("a decl that inherits DeclContext isn't handled"); |
Argyrios Kyrtzidis | 3d7641e | 2009-02-16 14:29:28 +0000 | [diff] [blame] | 640 | } |
Argyrios Kyrtzidis | 42220c5 | 2008-10-12 16:14:48 +0000 | [diff] [blame] | 641 | } |
| 642 | |
| 643 | DeclContext *Decl::castToDeclContext(const Decl *D) { |
Argyrios Kyrtzidis | 3d7641e | 2009-02-16 14:29:28 +0000 | [diff] [blame] | 644 | Decl::Kind DK = D->getKind(); |
| 645 | switch(DK) { |
Sean Hunt | 9a55591 | 2010-05-30 07:21:58 +0000 | [diff] [blame] | 646 | #define DECL(NAME, BASE) |
| 647 | #define DECL_CONTEXT(NAME) \ |
| 648 | case Decl::NAME: \ |
| 649 | return static_cast<NAME##Decl*>(const_cast<Decl*>(D)); |
| 650 | #define DECL_CONTEXT_BASE(NAME) |
| 651 | #include "clang/AST/DeclNodes.inc" |
Argyrios Kyrtzidis | 3d7641e | 2009-02-16 14:29:28 +0000 | [diff] [blame] | 652 | default: |
Sean Hunt | 9a55591 | 2010-05-30 07:21:58 +0000 | [diff] [blame] | 653 | #define DECL(NAME, BASE) |
| 654 | #define DECL_CONTEXT_BASE(NAME) \ |
| 655 | if (DK >= first##NAME && DK <= last##NAME) \ |
| 656 | return static_cast<NAME##Decl*>(const_cast<Decl*>(D)); |
| 657 | #include "clang/AST/DeclNodes.inc" |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 658 | llvm_unreachable("a decl that inherits DeclContext isn't handled"); |
Argyrios Kyrtzidis | 3d7641e | 2009-02-16 14:29:28 +0000 | [diff] [blame] | 659 | } |
Argyrios Kyrtzidis | 42220c5 | 2008-10-12 16:14:48 +0000 | [diff] [blame] | 660 | } |
| 661 | |
Argyrios Kyrtzidis | 6fb0aee | 2009-06-30 02:35:26 +0000 | [diff] [blame] | 662 | SourceLocation Decl::getBodyRBrace() const { |
Argyrios Kyrtzidis | 06a54a3 | 2010-07-07 11:31:19 +0000 | [diff] [blame] | 663 | // Special handling of FunctionDecl to avoid de-serializing the body from PCH. |
| 664 | // FunctionDecl stores EndRangeLoc for this purpose. |
| 665 | if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(this)) { |
| 666 | const FunctionDecl *Definition; |
| 667 | if (FD->hasBody(Definition)) |
| 668 | return Definition->getSourceRange().getEnd(); |
| 669 | return SourceLocation(); |
| 670 | } |
| 671 | |
Argyrios Kyrtzidis | 6717ef4 | 2010-07-07 11:31:27 +0000 | [diff] [blame] | 672 | if (Stmt *Body = getBody()) |
| 673 | return Body->getSourceRange().getEnd(); |
| 674 | |
| 675 | return SourceLocation(); |
Sebastian Redl | d3a413d | 2009-04-26 20:35:05 +0000 | [diff] [blame] | 676 | } |
| 677 | |
Anders Carlsson | 1329c27 | 2009-03-25 23:38:06 +0000 | [diff] [blame] | 678 | void Decl::CheckAccessDeclContext() const { |
Douglas Gregor | 3a1c36c | 2010-12-02 00:22:25 +0000 | [diff] [blame] | 679 | #ifndef NDEBUG |
John McCall | 46460a6 | 2010-01-20 21:53:11 +0000 | [diff] [blame] | 680 | // Suppress this check if any of the following hold: |
| 681 | // 1. this is the translation unit (and thus has no parent) |
| 682 | // 2. this is a template parameter (and thus doesn't belong to its context) |
Argyrios Kyrtzidis | d580e56 | 2010-09-08 21:58:42 +0000 | [diff] [blame] | 683 | // 3. this is a non-type template parameter |
| 684 | // 4. the context is not a record |
| 685 | // 5. it's invalid |
| 686 | // 6. it's a C++0x static_assert. |
Anders Carlsson | 35eda44 | 2009-08-29 20:47:47 +0000 | [diff] [blame] | 687 | if (isa<TranslationUnitDecl>(this) || |
Argyrios Kyrtzidis | 04aed0e | 2010-07-02 11:55:44 +0000 | [diff] [blame] | 688 | isa<TemplateTypeParmDecl>(this) || |
Argyrios Kyrtzidis | d580e56 | 2010-09-08 21:58:42 +0000 | [diff] [blame] | 689 | isa<NonTypeTemplateParmDecl>(this) || |
Douglas Gregor | fdd8ab1 | 2010-02-22 17:53:38 +0000 | [diff] [blame] | 690 | !isa<CXXRecordDecl>(getDeclContext()) || |
Argyrios Kyrtzidis | 65b63ec | 2010-09-08 21:32:35 +0000 | [diff] [blame] | 691 | isInvalidDecl() || |
| 692 | isa<StaticAssertDecl>(this) || |
| 693 | // FIXME: a ParmVarDecl can have ClassTemplateSpecialization |
| 694 | // as DeclContext (?). |
Argyrios Kyrtzidis | d580e56 | 2010-09-08 21:58:42 +0000 | [diff] [blame] | 695 | isa<ParmVarDecl>(this) || |
| 696 | // FIXME: a ClassTemplateSpecialization or CXXRecordDecl can have |
| 697 | // AS_none as access specifier. |
Francois Pichet | bc84532 | 2011-08-17 01:06:54 +0000 | [diff] [blame] | 698 | isa<CXXRecordDecl>(this) || |
| 699 | isa<ClassScopeFunctionSpecializationDecl>(this)) |
Anders Carlsson | 35eda44 | 2009-08-29 20:47:47 +0000 | [diff] [blame] | 700 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 701 | |
| 702 | assert(Access != AS_none && |
Anders Carlsson | 1329c27 | 2009-03-25 23:38:06 +0000 | [diff] [blame] | 703 | "Access specifier is AS_none inside a record decl"); |
Douglas Gregor | 3a1c36c | 2010-12-02 00:22:25 +0000 | [diff] [blame] | 704 | #endif |
Anders Carlsson | 1329c27 | 2009-03-25 23:38:06 +0000 | [diff] [blame] | 705 | } |
| 706 | |
John McCall | f5ebf9b | 2013-05-03 07:33:41 +0000 | [diff] [blame] | 707 | static Decl::Kind getKind(const Decl *D) { return D->getKind(); } |
| 708 | static Decl::Kind getKind(const DeclContext *DC) { return DC->getDeclKind(); } |
| 709 | |
| 710 | /// Starting at a given context (a Decl or DeclContext), look for a |
| 711 | /// code context that is not a closure (a lambda, block, etc.). |
| 712 | template <class T> static Decl *getNonClosureContext(T *D) { |
| 713 | if (getKind(D) == Decl::CXXMethod) { |
| 714 | CXXMethodDecl *MD = cast<CXXMethodDecl>(D); |
John McCall | 000817b | 2013-05-03 17:11:14 +0000 | [diff] [blame] | 715 | if (MD->getOverloadedOperator() == OO_Call && |
| 716 | MD->getParent()->isLambda()) |
John McCall | f5ebf9b | 2013-05-03 07:33:41 +0000 | [diff] [blame] | 717 | return getNonClosureContext(MD->getParent()->getParent()); |
| 718 | return MD; |
| 719 | } else if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) { |
| 720 | return FD; |
| 721 | } else if (ObjCMethodDecl *MD = dyn_cast<ObjCMethodDecl>(D)) { |
| 722 | return MD; |
| 723 | } else if (BlockDecl *BD = dyn_cast<BlockDecl>(D)) { |
| 724 | return getNonClosureContext(BD->getParent()); |
| 725 | } else if (CapturedDecl *CD = dyn_cast<CapturedDecl>(D)) { |
| 726 | return getNonClosureContext(CD->getParent()); |
| 727 | } else { |
| 728 | return 0; |
| 729 | } |
John McCall | 4b9c2d2 | 2011-11-06 09:01:30 +0000 | [diff] [blame] | 730 | } |
| 731 | |
John McCall | f5ebf9b | 2013-05-03 07:33:41 +0000 | [diff] [blame] | 732 | Decl *Decl::getNonClosureContext() { |
| 733 | return ::getNonClosureContext(this); |
| 734 | } |
John McCall | aab9e31 | 2011-02-22 22:25:23 +0000 | [diff] [blame] | 735 | |
John McCall | f5ebf9b | 2013-05-03 07:33:41 +0000 | [diff] [blame] | 736 | Decl *DeclContext::getNonClosureAncestor() { |
| 737 | return ::getNonClosureContext(this); |
John McCall | aab9e31 | 2011-02-22 22:25:23 +0000 | [diff] [blame] | 738 | } |
Anders Carlsson | 1329c27 | 2009-03-25 23:38:06 +0000 | [diff] [blame] | 739 | |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 740 | //===----------------------------------------------------------------------===// |
| 741 | // DeclContext Implementation |
| 742 | //===----------------------------------------------------------------------===// |
| 743 | |
Argyrios Kyrtzidis | 3d7641e | 2009-02-16 14:29:28 +0000 | [diff] [blame] | 744 | bool DeclContext::classof(const Decl *D) { |
| 745 | switch (D->getKind()) { |
Sean Hunt | 9a55591 | 2010-05-30 07:21:58 +0000 | [diff] [blame] | 746 | #define DECL(NAME, BASE) |
| 747 | #define DECL_CONTEXT(NAME) case Decl::NAME: |
| 748 | #define DECL_CONTEXT_BASE(NAME) |
| 749 | #include "clang/AST/DeclNodes.inc" |
Argyrios Kyrtzidis | 3d7641e | 2009-02-16 14:29:28 +0000 | [diff] [blame] | 750 | return true; |
| 751 | default: |
Sean Hunt | 9a55591 | 2010-05-30 07:21:58 +0000 | [diff] [blame] | 752 | #define DECL(NAME, BASE) |
| 753 | #define DECL_CONTEXT_BASE(NAME) \ |
| 754 | if (D->getKind() >= Decl::first##NAME && \ |
| 755 | D->getKind() <= Decl::last##NAME) \ |
Argyrios Kyrtzidis | 3d7641e | 2009-02-16 14:29:28 +0000 | [diff] [blame] | 756 | return true; |
Sean Hunt | 9a55591 | 2010-05-30 07:21:58 +0000 | [diff] [blame] | 757 | #include "clang/AST/DeclNodes.inc" |
Argyrios Kyrtzidis | 3d7641e | 2009-02-16 14:29:28 +0000 | [diff] [blame] | 758 | return false; |
| 759 | } |
| 760 | } |
| 761 | |
Douglas Gregor | a2da780 | 2010-07-25 18:38:02 +0000 | [diff] [blame] | 762 | DeclContext::~DeclContext() { } |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 763 | |
Douglas Gregor | e942bbe | 2009-09-10 16:57:35 +0000 | [diff] [blame] | 764 | /// \brief Find the parent context of this context that will be |
| 765 | /// used for unqualified name lookup. |
| 766 | /// |
| 767 | /// Generally, the parent lookup context is the semantic context. However, for |
| 768 | /// a friend function the parent lookup context is the lexical context, which |
| 769 | /// is the class in which the friend is declared. |
| 770 | DeclContext *DeclContext::getLookupParent() { |
| 771 | // FIXME: Find a better way to identify friends |
| 772 | if (isa<FunctionDecl>(this)) |
Sebastian Redl | 7a126a4 | 2010-08-31 00:36:30 +0000 | [diff] [blame] | 773 | if (getParent()->getRedeclContext()->isFileContext() && |
| 774 | getLexicalParent()->getRedeclContext()->isRecord()) |
Douglas Gregor | e942bbe | 2009-09-10 16:57:35 +0000 | [diff] [blame] | 775 | return getLexicalParent(); |
| 776 | |
| 777 | return getParent(); |
| 778 | } |
| 779 | |
Sebastian Redl | 410c4f2 | 2010-08-31 20:53:31 +0000 | [diff] [blame] | 780 | bool DeclContext::isInlineNamespace() const { |
| 781 | return isNamespace() && |
| 782 | cast<NamespaceDecl>(this)->isInline(); |
| 783 | } |
| 784 | |
Douglas Gregor | bc22163 | 2009-05-28 16:34:51 +0000 | [diff] [blame] | 785 | bool DeclContext::isDependentContext() const { |
| 786 | if (isFileContext()) |
| 787 | return false; |
| 788 | |
Douglas Gregor | c8ab256 | 2009-05-31 09:31:02 +0000 | [diff] [blame] | 789 | if (isa<ClassTemplatePartialSpecializationDecl>(this)) |
| 790 | return true; |
| 791 | |
Douglas Gregor | f4b7de1 | 2012-02-21 19:11:17 +0000 | [diff] [blame] | 792 | if (const CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(this)) { |
Douglas Gregor | bc22163 | 2009-05-28 16:34:51 +0000 | [diff] [blame] | 793 | if (Record->getDescribedClassTemplate()) |
| 794 | return true; |
Douglas Gregor | f4b7de1 | 2012-02-21 19:11:17 +0000 | [diff] [blame] | 795 | |
| 796 | if (Record->isDependentLambda()) |
| 797 | return true; |
| 798 | } |
| 799 | |
John McCall | 0c01d18 | 2010-03-24 05:22:00 +0000 | [diff] [blame] | 800 | if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(this)) { |
Douglas Gregor | bc22163 | 2009-05-28 16:34:51 +0000 | [diff] [blame] | 801 | if (Function->getDescribedFunctionTemplate()) |
| 802 | return true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 803 | |
John McCall | 0c01d18 | 2010-03-24 05:22:00 +0000 | [diff] [blame] | 804 | // Friend function declarations are dependent if their *lexical* |
| 805 | // context is dependent. |
| 806 | if (cast<Decl>(this)->getFriendObjectKind()) |
| 807 | return getLexicalParent()->isDependentContext(); |
| 808 | } |
| 809 | |
Douglas Gregor | bc22163 | 2009-05-28 16:34:51 +0000 | [diff] [blame] | 810 | return getParent() && getParent()->isDependentContext(); |
| 811 | } |
| 812 | |
Douglas Gregor | 074149e | 2009-01-05 19:45:36 +0000 | [diff] [blame] | 813 | bool DeclContext::isTransparentContext() const { |
| 814 | if (DeclKind == Decl::Enum) |
Douglas Gregor | 1274ccd | 2010-10-08 23:50:27 +0000 | [diff] [blame] | 815 | return !cast<EnumDecl>(this)->isScoped(); |
Douglas Gregor | 074149e | 2009-01-05 19:45:36 +0000 | [diff] [blame] | 816 | else if (DeclKind == Decl::LinkageSpec) |
| 817 | return true; |
Douglas Gregor | 074149e | 2009-01-05 19:45:36 +0000 | [diff] [blame] | 818 | |
| 819 | return false; |
| 820 | } |
| 821 | |
Sebastian Redl | 7a126a4 | 2010-08-31 00:36:30 +0000 | [diff] [blame] | 822 | bool DeclContext::Encloses(const DeclContext *DC) const { |
Douglas Gregor | 6dd38da | 2009-08-27 06:03:53 +0000 | [diff] [blame] | 823 | if (getPrimaryContext() != this) |
| 824 | return getPrimaryContext()->Encloses(DC); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 825 | |
Douglas Gregor | 6dd38da | 2009-08-27 06:03:53 +0000 | [diff] [blame] | 826 | for (; DC; DC = DC->getParent()) |
| 827 | if (DC->getPrimaryContext() == this) |
| 828 | return true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 829 | return false; |
Douglas Gregor | 6dd38da | 2009-08-27 06:03:53 +0000 | [diff] [blame] | 830 | } |
| 831 | |
Steve Naroff | 0701bbb | 2009-01-08 17:28:14 +0000 | [diff] [blame] | 832 | DeclContext *DeclContext::getPrimaryContext() { |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 833 | switch (DeclKind) { |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 834 | case Decl::TranslationUnit: |
Douglas Gregor | 074149e | 2009-01-05 19:45:36 +0000 | [diff] [blame] | 835 | case Decl::LinkageSpec: |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 836 | case Decl::Block: |
Tareq A. Siraj | 6afcf88 | 2013-04-16 19:37:38 +0000 | [diff] [blame] | 837 | case Decl::Captured: |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 838 | // There is only one DeclContext for these entities. |
| 839 | return this; |
| 840 | |
| 841 | case Decl::Namespace: |
| 842 | // The original namespace is our primary context. |
| 843 | return static_cast<NamespaceDecl*>(this)->getOriginalNamespace(); |
| 844 | |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 845 | case Decl::ObjCMethod: |
| 846 | return this; |
| 847 | |
| 848 | case Decl::ObjCInterface: |
Douglas Gregor | 53df7a1 | 2011-12-15 18:03:09 +0000 | [diff] [blame] | 849 | if (ObjCInterfaceDecl *Def = cast<ObjCInterfaceDecl>(this)->getDefinition()) |
| 850 | return Def; |
| 851 | |
| 852 | return this; |
| 853 | |
Steve Naroff | 0701bbb | 2009-01-08 17:28:14 +0000 | [diff] [blame] | 854 | case Decl::ObjCProtocol: |
Douglas Gregor | 1d784b2 | 2012-01-01 19:51:50 +0000 | [diff] [blame] | 855 | if (ObjCProtocolDecl *Def = cast<ObjCProtocolDecl>(this)->getDefinition()) |
| 856 | return Def; |
| 857 | |
| 858 | return this; |
Douglas Gregor | 53df7a1 | 2011-12-15 18:03:09 +0000 | [diff] [blame] | 859 | |
Steve Naroff | 0701bbb | 2009-01-08 17:28:14 +0000 | [diff] [blame] | 860 | case Decl::ObjCCategory: |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 861 | return this; |
| 862 | |
Steve Naroff | 0701bbb | 2009-01-08 17:28:14 +0000 | [diff] [blame] | 863 | case Decl::ObjCImplementation: |
| 864 | case Decl::ObjCCategoryImpl: |
| 865 | return this; |
| 866 | |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 867 | default: |
Sean Hunt | 9a55591 | 2010-05-30 07:21:58 +0000 | [diff] [blame] | 868 | if (DeclKind >= Decl::firstTag && DeclKind <= Decl::lastTag) { |
Douglas Gregor | cc63668 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 869 | // If this is a tag type that has a definition or is currently |
| 870 | // being defined, that definition is our primary context. |
John McCall | 3cb0ebd | 2010-03-10 03:28:59 +0000 | [diff] [blame] | 871 | TagDecl *Tag = cast<TagDecl>(this); |
| 872 | assert(isa<TagType>(Tag->TypeForDecl) || |
| 873 | isa<InjectedClassNameType>(Tag->TypeForDecl)); |
| 874 | |
| 875 | if (TagDecl *Def = Tag->getDefinition()) |
| 876 | return Def; |
| 877 | |
| 878 | if (!isa<InjectedClassNameType>(Tag->TypeForDecl)) { |
| 879 | const TagType *TagTy = cast<TagType>(Tag->TypeForDecl); |
| 880 | if (TagTy->isBeingDefined()) |
| 881 | // FIXME: is it necessarily being defined in the decl |
| 882 | // that owns the type? |
| 883 | return TagTy->getDecl(); |
| 884 | } |
| 885 | |
| 886 | return Tag; |
Douglas Gregor | cc63668 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 887 | } |
| 888 | |
Sean Hunt | 9a55591 | 2010-05-30 07:21:58 +0000 | [diff] [blame] | 889 | assert(DeclKind >= Decl::firstFunction && DeclKind <= Decl::lastFunction && |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 890 | "Unknown DeclContext kind"); |
| 891 | return this; |
| 892 | } |
| 893 | } |
| 894 | |
Douglas Gregor | f5c9f9f | 2012-01-07 09:11:48 +0000 | [diff] [blame] | 895 | void |
Dmitri Gribenko | cfa88f8 | 2013-01-12 19:30:44 +0000 | [diff] [blame] | 896 | DeclContext::collectAllContexts(SmallVectorImpl<DeclContext *> &Contexts){ |
Douglas Gregor | f5c9f9f | 2012-01-07 09:11:48 +0000 | [diff] [blame] | 897 | Contexts.clear(); |
| 898 | |
| 899 | if (DeclKind != Decl::Namespace) { |
| 900 | Contexts.push_back(this); |
| 901 | return; |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 902 | } |
Douglas Gregor | f5c9f9f | 2012-01-07 09:11:48 +0000 | [diff] [blame] | 903 | |
| 904 | NamespaceDecl *Self = static_cast<NamespaceDecl *>(this); |
Douglas Gregor | ef96ee0 | 2012-01-14 16:38:05 +0000 | [diff] [blame] | 905 | for (NamespaceDecl *N = Self->getMostRecentDecl(); N; |
| 906 | N = N->getPreviousDecl()) |
Douglas Gregor | f5c9f9f | 2012-01-07 09:11:48 +0000 | [diff] [blame] | 907 | Contexts.push_back(N); |
| 908 | |
| 909 | std::reverse(Contexts.begin(), Contexts.end()); |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 910 | } |
| 911 | |
Argyrios Kyrtzidis | eb5e998 | 2010-10-14 20:14:34 +0000 | [diff] [blame] | 912 | std::pair<Decl *, Decl *> |
Bill Wendling | 341785e | 2012-02-22 09:51:33 +0000 | [diff] [blame] | 913 | DeclContext::BuildDeclChain(ArrayRef<Decl*> Decls, |
Argyrios Kyrtzidis | ec2ec1f | 2011-10-07 21:55:43 +0000 | [diff] [blame] | 914 | bool FieldsAlreadyLoaded) { |
Douglas Gregor | 46cd218 | 2012-01-06 16:59:53 +0000 | [diff] [blame] | 915 | // Build up a chain of declarations via the Decl::NextInContextAndBits field. |
Argyrios Kyrtzidis | eb5e998 | 2010-10-14 20:14:34 +0000 | [diff] [blame] | 916 | Decl *FirstNewDecl = 0; |
| 917 | Decl *PrevDecl = 0; |
| 918 | for (unsigned I = 0, N = Decls.size(); I != N; ++I) { |
Argyrios Kyrtzidis | ec2ec1f | 2011-10-07 21:55:43 +0000 | [diff] [blame] | 919 | if (FieldsAlreadyLoaded && isa<FieldDecl>(Decls[I])) |
| 920 | continue; |
| 921 | |
Argyrios Kyrtzidis | eb5e998 | 2010-10-14 20:14:34 +0000 | [diff] [blame] | 922 | Decl *D = Decls[I]; |
| 923 | if (PrevDecl) |
Douglas Gregor | 46cd218 | 2012-01-06 16:59:53 +0000 | [diff] [blame] | 924 | PrevDecl->NextInContextAndBits.setPointer(D); |
Argyrios Kyrtzidis | eb5e998 | 2010-10-14 20:14:34 +0000 | [diff] [blame] | 925 | else |
| 926 | FirstNewDecl = D; |
| 927 | |
| 928 | PrevDecl = D; |
| 929 | } |
| 930 | |
| 931 | return std::make_pair(FirstNewDecl, PrevDecl); |
| 932 | } |
| 933 | |
Richard Smith | bbcd0f3 | 2013-02-07 03:37:08 +0000 | [diff] [blame] | 934 | /// \brief We have just acquired external visible storage, and we already have |
| 935 | /// built a lookup map. For every name in the map, pull in the new names from |
| 936 | /// the external storage. |
| 937 | void DeclContext::reconcileExternalVisibleStorage() { |
Richard Smith | 8896339 | 2013-02-11 22:02:16 +0000 | [diff] [blame] | 938 | assert(NeedToReconcileExternalVisibleStorage && LookupPtr.getPointer()); |
Richard Smith | bbcd0f3 | 2013-02-07 03:37:08 +0000 | [diff] [blame] | 939 | NeedToReconcileExternalVisibleStorage = false; |
| 940 | |
| 941 | StoredDeclsMap &Map = *LookupPtr.getPointer(); |
| 942 | ExternalASTSource *Source = getParentASTContext().getExternalSource(); |
| 943 | for (StoredDeclsMap::iterator I = Map.begin(); I != Map.end(); ++I) { |
| 944 | I->second.removeExternalDecls(); |
| 945 | Source->FindExternalVisibleDeclsByName(this, I->first); |
| 946 | } |
| 947 | } |
| 948 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 949 | /// \brief Load the declarations within this lexical storage from an |
| 950 | /// external source. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 951 | void |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 952 | DeclContext::LoadLexicalDeclsFromExternalStorage() const { |
| 953 | ExternalASTSource *Source = getParentASTContext().getExternalSource(); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 954 | assert(hasExternalLexicalStorage() && Source && "No external storage?"); |
| 955 | |
Argyrios Kyrtzidis | 0dbbc04 | 2010-07-30 10:03:23 +0000 | [diff] [blame] | 956 | // Notify that we have a DeclContext that is initializing. |
| 957 | ExternalASTSource::Deserializing ADeclContext(Source); |
Douglas Gregor | 9fc18c9 | 2011-08-26 21:23:06 +0000 | [diff] [blame] | 958 | |
Douglas Gregor | ba6ffaf | 2011-07-15 21:46:17 +0000 | [diff] [blame] | 959 | // Load the external declarations, if any. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 960 | SmallVector<Decl*, 64> Decls; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 961 | ExternalLexicalStorage = false; |
Douglas Gregor | ba6ffaf | 2011-07-15 21:46:17 +0000 | [diff] [blame] | 962 | switch (Source->FindExternalLexicalDecls(this, Decls)) { |
| 963 | case ELR_Success: |
| 964 | break; |
| 965 | |
| 966 | case ELR_Failure: |
| 967 | case ELR_AlreadyLoaded: |
| 968 | return; |
| 969 | } |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 970 | |
| 971 | if (Decls.empty()) |
| 972 | return; |
| 973 | |
Argyrios Kyrtzidis | ec2ec1f | 2011-10-07 21:55:43 +0000 | [diff] [blame] | 974 | // We may have already loaded just the fields of this record, in which case |
| 975 | // we need to ignore them. |
| 976 | bool FieldsAlreadyLoaded = false; |
| 977 | if (const RecordDecl *RD = dyn_cast<RecordDecl>(this)) |
| 978 | FieldsAlreadyLoaded = RD->LoadedFieldsFromExternalStorage; |
| 979 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 980 | // Splice the newly-read declarations into the beginning of the list |
| 981 | // of declarations. |
Argyrios Kyrtzidis | eb5e998 | 2010-10-14 20:14:34 +0000 | [diff] [blame] | 982 | Decl *ExternalFirst, *ExternalLast; |
Argyrios Kyrtzidis | ec2ec1f | 2011-10-07 21:55:43 +0000 | [diff] [blame] | 983 | llvm::tie(ExternalFirst, ExternalLast) = BuildDeclChain(Decls, |
| 984 | FieldsAlreadyLoaded); |
Douglas Gregor | 46cd218 | 2012-01-06 16:59:53 +0000 | [diff] [blame] | 985 | ExternalLast->NextInContextAndBits.setPointer(FirstDecl); |
Argyrios Kyrtzidis | eb5e998 | 2010-10-14 20:14:34 +0000 | [diff] [blame] | 986 | FirstDecl = ExternalFirst; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 987 | if (!LastDecl) |
Argyrios Kyrtzidis | eb5e998 | 2010-10-14 20:14:34 +0000 | [diff] [blame] | 988 | LastDecl = ExternalLast; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 989 | } |
| 990 | |
John McCall | 76bd1f3 | 2010-06-01 09:23:16 +0000 | [diff] [blame] | 991 | DeclContext::lookup_result |
| 992 | ExternalASTSource::SetNoExternalVisibleDeclsForName(const DeclContext *DC, |
| 993 | DeclarationName Name) { |
| 994 | ASTContext &Context = DC->getParentASTContext(); |
| 995 | StoredDeclsMap *Map; |
Richard Smith | c5d3e80 | 2012-03-16 06:12:59 +0000 | [diff] [blame] | 996 | if (!(Map = DC->LookupPtr.getPointer())) |
John McCall | 76bd1f3 | 2010-06-01 09:23:16 +0000 | [diff] [blame] | 997 | Map = DC->CreateStoredDeclsMap(Context); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 998 | |
Richard Smith | bbcd0f3 | 2013-02-07 03:37:08 +0000 | [diff] [blame] | 999 | // Add an entry to the map for this name, if it's not already present. |
| 1000 | (*Map)[Name]; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1001 | |
John McCall | 76bd1f3 | 2010-06-01 09:23:16 +0000 | [diff] [blame] | 1002 | return DeclContext::lookup_result(); |
| 1003 | } |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1004 | |
John McCall | 76bd1f3 | 2010-06-01 09:23:16 +0000 | [diff] [blame] | 1005 | DeclContext::lookup_result |
| 1006 | ExternalASTSource::SetExternalVisibleDeclsForName(const DeclContext *DC, |
John McCall | 76bd1f3 | 2010-06-01 09:23:16 +0000 | [diff] [blame] | 1007 | DeclarationName Name, |
Argyrios Kyrtzidis | 45df9c6 | 2011-09-09 06:44:14 +0000 | [diff] [blame] | 1008 | ArrayRef<NamedDecl*> Decls) { |
Dmitri Gribenko | 1ad23d6 | 2012-09-10 21:20:09 +0000 | [diff] [blame] | 1009 | ASTContext &Context = DC->getParentASTContext(); |
John McCall | 76bd1f3 | 2010-06-01 09:23:16 +0000 | [diff] [blame] | 1010 | StoredDeclsMap *Map; |
Richard Smith | c5d3e80 | 2012-03-16 06:12:59 +0000 | [diff] [blame] | 1011 | if (!(Map = DC->LookupPtr.getPointer())) |
John McCall | 76bd1f3 | 2010-06-01 09:23:16 +0000 | [diff] [blame] | 1012 | Map = DC->CreateStoredDeclsMap(Context); |
| 1013 | |
| 1014 | StoredDeclsList &List = (*Map)[Name]; |
Richard Smith | ddb10f7 | 2013-06-24 01:46:41 +0000 | [diff] [blame] | 1015 | |
| 1016 | // Clear out any old external visible declarations, to avoid quadratic |
| 1017 | // performance in the redeclaration checks below. |
| 1018 | List.removeExternalDecls(); |
| 1019 | |
| 1020 | if (!List.isNull()) { |
| 1021 | // We have both existing declarations and new declarations for this name. |
| 1022 | // Some of the declarations may simply replace existing ones. Handle those |
| 1023 | // first. |
| 1024 | llvm::SmallVector<unsigned, 8> Skip; |
| 1025 | for (unsigned I = 0, N = Decls.size(); I != N; ++I) |
| 1026 | if (List.HandleRedeclaration(Decls[I])) |
| 1027 | Skip.push_back(I); |
| 1028 | Skip.push_back(Decls.size()); |
| 1029 | |
| 1030 | // Add in any new declarations. |
| 1031 | unsigned SkipPos = 0; |
| 1032 | for (unsigned I = 0, N = Decls.size(); I != N; ++I) { |
| 1033 | if (I == Skip[SkipPos]) |
| 1034 | ++SkipPos; |
| 1035 | else |
| 1036 | List.AddSubsequentDecl(Decls[I]); |
| 1037 | } |
| 1038 | } else { |
| 1039 | // Convert the array to a StoredDeclsList. |
| 1040 | for (ArrayRef<NamedDecl*>::iterator |
| 1041 | I = Decls.begin(), E = Decls.end(); I != E; ++I) { |
| 1042 | if (List.isNull()) |
| 1043 | List.setOnlyValue(*I); |
| 1044 | else |
| 1045 | List.AddSubsequentDecl(*I); |
| 1046 | } |
John McCall | 76bd1f3 | 2010-06-01 09:23:16 +0000 | [diff] [blame] | 1047 | } |
| 1048 | |
Argyrios Kyrtzidis | 074dcc8 | 2010-08-20 16:04:35 +0000 | [diff] [blame] | 1049 | return List.getLookupResult(); |
John McCall | 76bd1f3 | 2010-06-01 09:23:16 +0000 | [diff] [blame] | 1050 | } |
| 1051 | |
Sebastian Redl | 681d723 | 2010-07-27 00:17:23 +0000 | [diff] [blame] | 1052 | DeclContext::decl_iterator DeclContext::noload_decls_begin() const { |
| 1053 | return decl_iterator(FirstDecl); |
| 1054 | } |
| 1055 | |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1056 | DeclContext::decl_iterator DeclContext::decls_begin() const { |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1057 | if (hasExternalLexicalStorage()) |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1058 | LoadLexicalDeclsFromExternalStorage(); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1059 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1060 | return decl_iterator(FirstDecl); |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 1061 | } |
| 1062 | |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1063 | bool DeclContext::decls_empty() const { |
Douglas Gregor | 8038d51 | 2009-04-10 17:25:41 +0000 | [diff] [blame] | 1064 | if (hasExternalLexicalStorage()) |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1065 | LoadLexicalDeclsFromExternalStorage(); |
Douglas Gregor | 8038d51 | 2009-04-10 17:25:41 +0000 | [diff] [blame] | 1066 | |
| 1067 | return !FirstDecl; |
| 1068 | } |
| 1069 | |
Sean Callanan | cd904e8 | 2013-05-04 02:04:27 +0000 | [diff] [blame] | 1070 | bool DeclContext::containsDecl(Decl *D) const { |
| 1071 | return (D->getLexicalDeclContext() == this && |
| 1072 | (D->NextInContextAndBits.getPointer() || D == LastDecl)); |
| 1073 | } |
| 1074 | |
John McCall | 9f54ad4 | 2009-12-10 09:41:52 +0000 | [diff] [blame] | 1075 | void DeclContext::removeDecl(Decl *D) { |
| 1076 | assert(D->getLexicalDeclContext() == this && |
| 1077 | "decl being removed from non-lexical context"); |
Douglas Gregor | 46cd218 | 2012-01-06 16:59:53 +0000 | [diff] [blame] | 1078 | assert((D->NextInContextAndBits.getPointer() || D == LastDecl) && |
John McCall | 9f54ad4 | 2009-12-10 09:41:52 +0000 | [diff] [blame] | 1079 | "decl is not in decls list"); |
| 1080 | |
| 1081 | // Remove D from the decl chain. This is O(n) but hopefully rare. |
| 1082 | if (D == FirstDecl) { |
| 1083 | if (D == LastDecl) |
| 1084 | FirstDecl = LastDecl = 0; |
| 1085 | else |
Douglas Gregor | 46cd218 | 2012-01-06 16:59:53 +0000 | [diff] [blame] | 1086 | FirstDecl = D->NextInContextAndBits.getPointer(); |
John McCall | 9f54ad4 | 2009-12-10 09:41:52 +0000 | [diff] [blame] | 1087 | } else { |
Douglas Gregor | 46cd218 | 2012-01-06 16:59:53 +0000 | [diff] [blame] | 1088 | for (Decl *I = FirstDecl; true; I = I->NextInContextAndBits.getPointer()) { |
John McCall | 9f54ad4 | 2009-12-10 09:41:52 +0000 | [diff] [blame] | 1089 | assert(I && "decl not found in linked list"); |
Douglas Gregor | 46cd218 | 2012-01-06 16:59:53 +0000 | [diff] [blame] | 1090 | if (I->NextInContextAndBits.getPointer() == D) { |
| 1091 | I->NextInContextAndBits.setPointer(D->NextInContextAndBits.getPointer()); |
John McCall | 9f54ad4 | 2009-12-10 09:41:52 +0000 | [diff] [blame] | 1092 | if (D == LastDecl) LastDecl = I; |
| 1093 | break; |
| 1094 | } |
| 1095 | } |
| 1096 | } |
| 1097 | |
| 1098 | // Mark that D is no longer in the decl chain. |
Douglas Gregor | 46cd218 | 2012-01-06 16:59:53 +0000 | [diff] [blame] | 1099 | D->NextInContextAndBits.setPointer(0); |
John McCall | 9f54ad4 | 2009-12-10 09:41:52 +0000 | [diff] [blame] | 1100 | |
| 1101 | // Remove D from the lookup table if necessary. |
| 1102 | if (isa<NamedDecl>(D)) { |
| 1103 | NamedDecl *ND = cast<NamedDecl>(D); |
| 1104 | |
Axel Naumann | 02368d0 | 2011-08-26 14:06:12 +0000 | [diff] [blame] | 1105 | // Remove only decls that have a name |
| 1106 | if (!ND->getDeclName()) return; |
| 1107 | |
Richard Smith | c5d3e80 | 2012-03-16 06:12:59 +0000 | [diff] [blame] | 1108 | StoredDeclsMap *Map = getPrimaryContext()->LookupPtr.getPointer(); |
John McCall | 0c01d18 | 2010-03-24 05:22:00 +0000 | [diff] [blame] | 1109 | if (!Map) return; |
John McCall | 9f54ad4 | 2009-12-10 09:41:52 +0000 | [diff] [blame] | 1110 | |
John McCall | 9f54ad4 | 2009-12-10 09:41:52 +0000 | [diff] [blame] | 1111 | StoredDeclsMap::iterator Pos = Map->find(ND->getDeclName()); |
| 1112 | assert(Pos != Map->end() && "no lookup entry for decl"); |
Axel Naumann | d9d137e | 2011-11-08 18:21:06 +0000 | [diff] [blame] | 1113 | if (Pos->second.getAsVector() || Pos->second.getAsDecl() == ND) |
| 1114 | Pos->second.remove(ND); |
John McCall | 9f54ad4 | 2009-12-10 09:41:52 +0000 | [diff] [blame] | 1115 | } |
| 1116 | } |
| 1117 | |
John McCall | 3f9a8a6 | 2009-08-11 06:59:38 +0000 | [diff] [blame] | 1118 | void DeclContext::addHiddenDecl(Decl *D) { |
Chris Lattner | 7f0be13 | 2009-02-20 00:56:18 +0000 | [diff] [blame] | 1119 | assert(D->getLexicalDeclContext() == this && |
| 1120 | "Decl inserted into wrong lexical context"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1121 | assert(!D->getNextDeclInContext() && D != LastDecl && |
Douglas Gregor | 6037fcb | 2009-01-09 19:42:16 +0000 | [diff] [blame] | 1122 | "Decl already inserted into a DeclContext"); |
| 1123 | |
| 1124 | if (FirstDecl) { |
Douglas Gregor | 46cd218 | 2012-01-06 16:59:53 +0000 | [diff] [blame] | 1125 | LastDecl->NextInContextAndBits.setPointer(D); |
Douglas Gregor | 6037fcb | 2009-01-09 19:42:16 +0000 | [diff] [blame] | 1126 | LastDecl = D; |
| 1127 | } else { |
| 1128 | FirstDecl = LastDecl = D; |
| 1129 | } |
Douglas Gregor | 27c08ab | 2010-09-27 22:06:20 +0000 | [diff] [blame] | 1130 | |
| 1131 | // Notify a C++ record declaration that we've added a member, so it can |
| 1132 | // update it's class-specific state. |
| 1133 | if (CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(this)) |
| 1134 | Record->addedMember(D); |
Douglas Gregor | e664977 | 2011-12-03 00:30:27 +0000 | [diff] [blame] | 1135 | |
| 1136 | // If this is a newly-created (not de-serialized) import declaration, wire |
| 1137 | // it in to the list of local import declarations. |
| 1138 | if (!D->isFromASTFile()) { |
| 1139 | if (ImportDecl *Import = dyn_cast<ImportDecl>(D)) |
| 1140 | D->getASTContext().addedLocalImportDecl(Import); |
| 1141 | } |
John McCall | 3f9a8a6 | 2009-08-11 06:59:38 +0000 | [diff] [blame] | 1142 | } |
| 1143 | |
| 1144 | void DeclContext::addDecl(Decl *D) { |
| 1145 | addHiddenDecl(D); |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 1146 | |
| 1147 | if (NamedDecl *ND = dyn_cast<NamedDecl>(D)) |
Richard Smith | c5d3e80 | 2012-03-16 06:12:59 +0000 | [diff] [blame] | 1148 | ND->getDeclContext()->getPrimaryContext()-> |
| 1149 | makeDeclVisibleInContextWithFlags(ND, false, true); |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 1150 | } |
| 1151 | |
Sean Callanan | 9faf810 | 2011-10-21 02:57:43 +0000 | [diff] [blame] | 1152 | void DeclContext::addDeclInternal(Decl *D) { |
| 1153 | addHiddenDecl(D); |
| 1154 | |
| 1155 | if (NamedDecl *ND = dyn_cast<NamedDecl>(D)) |
Richard Smith | c5d3e80 | 2012-03-16 06:12:59 +0000 | [diff] [blame] | 1156 | ND->getDeclContext()->getPrimaryContext()-> |
| 1157 | makeDeclVisibleInContextWithFlags(ND, true, true); |
| 1158 | } |
| 1159 | |
| 1160 | /// shouldBeHidden - Determine whether a declaration which was declared |
| 1161 | /// within its semantic context should be invisible to qualified name lookup. |
| 1162 | static bool shouldBeHidden(NamedDecl *D) { |
| 1163 | // Skip unnamed declarations. |
| 1164 | if (!D->getDeclName()) |
| 1165 | return true; |
| 1166 | |
| 1167 | // Skip entities that can't be found by name lookup into a particular |
| 1168 | // context. |
| 1169 | if ((D->getIdentifierNamespace() == 0 && !isa<UsingDirectiveDecl>(D)) || |
| 1170 | D->isTemplateParameter()) |
| 1171 | return true; |
| 1172 | |
| 1173 | // Skip template specializations. |
| 1174 | // FIXME: This feels like a hack. Should DeclarationName support |
| 1175 | // template-ids, or is there a better way to keep specializations |
| 1176 | // from being visible? |
| 1177 | if (isa<ClassTemplateSpecializationDecl>(D)) |
| 1178 | return true; |
| 1179 | if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) |
| 1180 | if (FD->isFunctionTemplateSpecialization()) |
| 1181 | return true; |
| 1182 | |
| 1183 | return false; |
| 1184 | } |
| 1185 | |
| 1186 | /// buildLookup - Build the lookup data structure with all of the |
| 1187 | /// declarations in this DeclContext (and any other contexts linked |
| 1188 | /// to it or transparent contexts nested within it) and return it. |
| 1189 | StoredDeclsMap *DeclContext::buildLookup() { |
| 1190 | assert(this == getPrimaryContext() && "buildLookup called on non-primary DC"); |
| 1191 | |
Richard Smith | 8896339 | 2013-02-11 22:02:16 +0000 | [diff] [blame] | 1192 | // FIXME: Should we keep going if hasExternalVisibleStorage? |
Richard Smith | c5d3e80 | 2012-03-16 06:12:59 +0000 | [diff] [blame] | 1193 | if (!LookupPtr.getInt()) |
| 1194 | return LookupPtr.getPointer(); |
| 1195 | |
Dmitri Gribenko | cfa88f8 | 2013-01-12 19:30:44 +0000 | [diff] [blame] | 1196 | SmallVector<DeclContext *, 2> Contexts; |
Richard Smith | c5d3e80 | 2012-03-16 06:12:59 +0000 | [diff] [blame] | 1197 | collectAllContexts(Contexts); |
| 1198 | for (unsigned I = 0, N = Contexts.size(); I != N; ++I) |
| 1199 | buildLookupImpl(Contexts[I]); |
| 1200 | |
| 1201 | // We no longer have any lazy decls. |
| 1202 | LookupPtr.setInt(false); |
Richard Smith | 8896339 | 2013-02-11 22:02:16 +0000 | [diff] [blame] | 1203 | NeedToReconcileExternalVisibleStorage = false; |
Richard Smith | c5d3e80 | 2012-03-16 06:12:59 +0000 | [diff] [blame] | 1204 | return LookupPtr.getPointer(); |
| 1205 | } |
| 1206 | |
| 1207 | /// buildLookupImpl - Build part of the lookup data structure for the |
| 1208 | /// declarations contained within DCtx, which will either be this |
| 1209 | /// DeclContext, a DeclContext linked to it, or a transparent context |
| 1210 | /// nested within it. |
| 1211 | void DeclContext::buildLookupImpl(DeclContext *DCtx) { |
| 1212 | for (decl_iterator I = DCtx->decls_begin(), E = DCtx->decls_end(); |
| 1213 | I != E; ++I) { |
| 1214 | Decl *D = *I; |
| 1215 | |
| 1216 | // Insert this declaration into the lookup structure, but only if |
| 1217 | // it's semantically within its decl context. Any other decls which |
| 1218 | // should be found in this context are added eagerly. |
Richard Smith | 096a394 | 2013-06-24 07:20:36 +0000 | [diff] [blame^] | 1219 | // |
| 1220 | // If it's from an AST file, don't add it now. It'll get handled by |
| 1221 | // FindExternalVisibleDeclsByName if needed. Exception: if we're not |
| 1222 | // in C++, we do not track external visible decls for the TU, so in |
| 1223 | // that case we need to collect them all here. |
Richard Smith | c5d3e80 | 2012-03-16 06:12:59 +0000 | [diff] [blame] | 1224 | if (NamedDecl *ND = dyn_cast<NamedDecl>(D)) |
Richard Smith | 096a394 | 2013-06-24 07:20:36 +0000 | [diff] [blame^] | 1225 | if (ND->getDeclContext() == DCtx && !shouldBeHidden(ND) && |
| 1226 | (!ND->isFromASTFile() || |
| 1227 | (isTranslationUnit() && |
| 1228 | !getParentASTContext().getLangOpts().CPlusPlus))) |
Richard Smith | c5d3e80 | 2012-03-16 06:12:59 +0000 | [diff] [blame] | 1229 | makeDeclVisibleInContextImpl(ND, false); |
| 1230 | |
| 1231 | // If this declaration is itself a transparent declaration context |
| 1232 | // or inline namespace, add the members of this declaration of that |
| 1233 | // context (recursively). |
| 1234 | if (DeclContext *InnerCtx = dyn_cast<DeclContext>(D)) |
| 1235 | if (InnerCtx->isTransparentContext() || InnerCtx->isInlineNamespace()) |
| 1236 | buildLookupImpl(InnerCtx); |
| 1237 | } |
Sean Callanan | 9faf810 | 2011-10-21 02:57:43 +0000 | [diff] [blame] | 1238 | } |
| 1239 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1240 | DeclContext::lookup_result |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1241 | DeclContext::lookup(DeclarationName Name) { |
Nick Lewycky | 65daef1 | 2012-03-13 04:12:34 +0000 | [diff] [blame] | 1242 | assert(DeclKind != Decl::LinkageSpec && |
| 1243 | "Should not perform lookups into linkage specs!"); |
| 1244 | |
Steve Naroff | 0701bbb | 2009-01-08 17:28:14 +0000 | [diff] [blame] | 1245 | DeclContext *PrimaryContext = getPrimaryContext(); |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 1246 | if (PrimaryContext != this) |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1247 | return PrimaryContext->lookup(Name); |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 1248 | |
Richard Smith | 1b7f9cb | 2012-03-13 03:12:56 +0000 | [diff] [blame] | 1249 | if (hasExternalVisibleStorage()) { |
Richard Smith | bbcd0f3 | 2013-02-07 03:37:08 +0000 | [diff] [blame] | 1250 | StoredDeclsMap *Map = LookupPtr.getPointer(); |
| 1251 | if (LookupPtr.getInt()) |
| 1252 | Map = buildLookup(); |
Richard Smith | 8896339 | 2013-02-11 22:02:16 +0000 | [diff] [blame] | 1253 | else if (NeedToReconcileExternalVisibleStorage) |
| 1254 | reconcileExternalVisibleStorage(); |
Richard Smith | bbcd0f3 | 2013-02-07 03:37:08 +0000 | [diff] [blame] | 1255 | |
Richard Smith | 2bb07c1 | 2013-02-08 00:37:45 +0000 | [diff] [blame] | 1256 | if (!Map) |
| 1257 | Map = CreateStoredDeclsMap(getParentASTContext()); |
| 1258 | |
Richard Smith | bbcd0f3 | 2013-02-07 03:37:08 +0000 | [diff] [blame] | 1259 | // If a PCH/module has a result for this name, and we have a local |
| 1260 | // declaration, we will have imported the PCH/module result when adding the |
| 1261 | // local declaration or when reconciling the module. |
Richard Smith | 2bb07c1 | 2013-02-08 00:37:45 +0000 | [diff] [blame] | 1262 | std::pair<StoredDeclsMap::iterator, bool> R = |
| 1263 | Map->insert(std::make_pair(Name, StoredDeclsList())); |
| 1264 | if (!R.second) |
| 1265 | return R.first->second.getLookupResult(); |
Richard Smith | c5d3e80 | 2012-03-16 06:12:59 +0000 | [diff] [blame] | 1266 | |
John McCall | 76bd1f3 | 2010-06-01 09:23:16 +0000 | [diff] [blame] | 1267 | ExternalASTSource *Source = getParentASTContext().getExternalSource(); |
Richard Smith | 3646c68 | 2013-02-07 03:30:24 +0000 | [diff] [blame] | 1268 | if (Source->FindExternalVisibleDeclsByName(this, Name)) { |
| 1269 | if (StoredDeclsMap *Map = LookupPtr.getPointer()) { |
| 1270 | StoredDeclsMap::iterator I = Map->find(Name); |
| 1271 | if (I != Map->end()) |
| 1272 | return I->second.getLookupResult(); |
| 1273 | } |
| 1274 | } |
| 1275 | |
| 1276 | return lookup_result(lookup_iterator(0), lookup_iterator(0)); |
John McCall | 76bd1f3 | 2010-06-01 09:23:16 +0000 | [diff] [blame] | 1277 | } |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1278 | |
Richard Smith | c5d3e80 | 2012-03-16 06:12:59 +0000 | [diff] [blame] | 1279 | StoredDeclsMap *Map = LookupPtr.getPointer(); |
| 1280 | if (LookupPtr.getInt()) |
| 1281 | Map = buildLookup(); |
| 1282 | |
| 1283 | if (!Map) |
| 1284 | return lookup_result(lookup_iterator(0), lookup_iterator(0)); |
| 1285 | |
| 1286 | StoredDeclsMap::iterator I = Map->find(Name); |
| 1287 | if (I == Map->end()) |
| 1288 | return lookup_result(lookup_iterator(0), lookup_iterator(0)); |
| 1289 | |
| 1290 | return I->second.getLookupResult(); |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 1291 | } |
| 1292 | |
Dmitri Gribenko | cfa88f8 | 2013-01-12 19:30:44 +0000 | [diff] [blame] | 1293 | void DeclContext::localUncachedLookup(DeclarationName Name, |
| 1294 | SmallVectorImpl<NamedDecl *> &Results) { |
Douglas Gregor | b75a345 | 2011-10-15 00:10:27 +0000 | [diff] [blame] | 1295 | Results.clear(); |
| 1296 | |
| 1297 | // If there's no external storage, just perform a normal lookup and copy |
| 1298 | // the results. |
Douglas Gregor | 93ed7cf | 2012-07-17 21:16:27 +0000 | [diff] [blame] | 1299 | if (!hasExternalVisibleStorage() && !hasExternalLexicalStorage() && Name) { |
Douglas Gregor | b75a345 | 2011-10-15 00:10:27 +0000 | [diff] [blame] | 1300 | lookup_result LookupResults = lookup(Name); |
David Blaikie | 3bc93e3 | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 1301 | Results.insert(Results.end(), LookupResults.begin(), LookupResults.end()); |
Douglas Gregor | b75a345 | 2011-10-15 00:10:27 +0000 | [diff] [blame] | 1302 | return; |
| 1303 | } |
| 1304 | |
| 1305 | // If we have a lookup table, check there first. Maybe we'll get lucky. |
Richard Smith | bbcd0f3 | 2013-02-07 03:37:08 +0000 | [diff] [blame] | 1306 | if (Name && !LookupPtr.getInt()) { |
Douglas Gregor | 93ed7cf | 2012-07-17 21:16:27 +0000 | [diff] [blame] | 1307 | if (StoredDeclsMap *Map = LookupPtr.getPointer()) { |
| 1308 | StoredDeclsMap::iterator Pos = Map->find(Name); |
| 1309 | if (Pos != Map->end()) { |
| 1310 | Results.insert(Results.end(), |
David Blaikie | 3bc93e3 | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 1311 | Pos->second.getLookupResult().begin(), |
| 1312 | Pos->second.getLookupResult().end()); |
Douglas Gregor | 93ed7cf | 2012-07-17 21:16:27 +0000 | [diff] [blame] | 1313 | return; |
| 1314 | } |
Douglas Gregor | b75a345 | 2011-10-15 00:10:27 +0000 | [diff] [blame] | 1315 | } |
| 1316 | } |
Douglas Gregor | 93ed7cf | 2012-07-17 21:16:27 +0000 | [diff] [blame] | 1317 | |
Douglas Gregor | b75a345 | 2011-10-15 00:10:27 +0000 | [diff] [blame] | 1318 | // Slow case: grovel through the declarations in our chain looking for |
| 1319 | // matches. |
| 1320 | for (Decl *D = FirstDecl; D; D = D->getNextDeclInContext()) { |
| 1321 | if (NamedDecl *ND = dyn_cast<NamedDecl>(D)) |
| 1322 | if (ND->getDeclName() == Name) |
| 1323 | Results.push_back(ND); |
| 1324 | } |
| 1325 | } |
| 1326 | |
Sebastian Redl | 7a126a4 | 2010-08-31 00:36:30 +0000 | [diff] [blame] | 1327 | DeclContext *DeclContext::getRedeclContext() { |
Chris Lattner | 0cf2b19 | 2009-03-27 19:19:59 +0000 | [diff] [blame] | 1328 | DeclContext *Ctx = this; |
Sebastian Redl | 410c4f2 | 2010-08-31 20:53:31 +0000 | [diff] [blame] | 1329 | // Skip through transparent contexts. |
| 1330 | while (Ctx->isTransparentContext()) |
Douglas Gregor | ce35607 | 2009-01-06 23:51:29 +0000 | [diff] [blame] | 1331 | Ctx = Ctx->getParent(); |
| 1332 | return Ctx; |
| 1333 | } |
| 1334 | |
Douglas Gregor | 88b7094 | 2009-02-25 22:02:03 +0000 | [diff] [blame] | 1335 | DeclContext *DeclContext::getEnclosingNamespaceContext() { |
| 1336 | DeclContext *Ctx = this; |
| 1337 | // Skip through non-namespace, non-translation-unit contexts. |
Sebastian Redl | 51a8a37 | 2010-08-31 00:36:23 +0000 | [diff] [blame] | 1338 | while (!Ctx->isFileContext()) |
Douglas Gregor | 88b7094 | 2009-02-25 22:02:03 +0000 | [diff] [blame] | 1339 | Ctx = Ctx->getParent(); |
| 1340 | return Ctx->getPrimaryContext(); |
| 1341 | } |
| 1342 | |
Sebastian Redl | 7a126a4 | 2010-08-31 00:36:30 +0000 | [diff] [blame] | 1343 | bool DeclContext::InEnclosingNamespaceSetOf(const DeclContext *O) const { |
| 1344 | // For non-file contexts, this is equivalent to Equals. |
| 1345 | if (!isFileContext()) |
| 1346 | return O->Equals(this); |
| 1347 | |
| 1348 | do { |
| 1349 | if (O->Equals(this)) |
| 1350 | return true; |
| 1351 | |
| 1352 | const NamespaceDecl *NS = dyn_cast<NamespaceDecl>(O); |
| 1353 | if (!NS || !NS->isInline()) |
| 1354 | break; |
| 1355 | O = NS->getParent(); |
| 1356 | } while (O); |
| 1357 | |
| 1358 | return false; |
| 1359 | } |
| 1360 | |
Richard Smith | c5d3e80 | 2012-03-16 06:12:59 +0000 | [diff] [blame] | 1361 | void DeclContext::makeDeclVisibleInContext(NamedDecl *D) { |
| 1362 | DeclContext *PrimaryDC = this->getPrimaryContext(); |
| 1363 | DeclContext *DeclDC = D->getDeclContext()->getPrimaryContext(); |
| 1364 | // If the decl is being added outside of its semantic decl context, we |
| 1365 | // need to ensure that we eagerly build the lookup information for it. |
| 1366 | PrimaryDC->makeDeclVisibleInContextWithFlags(D, false, PrimaryDC == DeclDC); |
Sean Callanan | 9faf810 | 2011-10-21 02:57:43 +0000 | [diff] [blame] | 1367 | } |
| 1368 | |
Richard Smith | c5d3e80 | 2012-03-16 06:12:59 +0000 | [diff] [blame] | 1369 | void DeclContext::makeDeclVisibleInContextWithFlags(NamedDecl *D, bool Internal, |
| 1370 | bool Recoverable) { |
| 1371 | assert(this == getPrimaryContext() && "expected a primary DC"); |
Sean Callanan | 9faf810 | 2011-10-21 02:57:43 +0000 | [diff] [blame] | 1372 | |
Richard Smith | 1b7f9cb | 2012-03-13 03:12:56 +0000 | [diff] [blame] | 1373 | // Skip declarations within functions. |
| 1374 | // FIXME: We shouldn't need to build lookup tables for function declarations |
| 1375 | // ever, and we can't do so correctly because we can't model the nesting of |
| 1376 | // scopes which occurs within functions. We use "qualified" lookup into |
| 1377 | // function declarations when handling friend declarations inside nested |
| 1378 | // classes, and consequently accept the following invalid code: |
| 1379 | // |
| 1380 | // void f() { void g(); { int g; struct S { friend void g(); }; } } |
| 1381 | if (isFunctionOrMethod() && !isa<FunctionDecl>(D)) |
| 1382 | return; |
| 1383 | |
Richard Smith | c5d3e80 | 2012-03-16 06:12:59 +0000 | [diff] [blame] | 1384 | // Skip declarations which should be invisible to name lookup. |
| 1385 | if (shouldBeHidden(D)) |
| 1386 | return; |
| 1387 | |
| 1388 | // If we already have a lookup data structure, perform the insertion into |
| 1389 | // it. If we might have externally-stored decls with this name, look them |
| 1390 | // up and perform the insertion. If this decl was declared outside its |
| 1391 | // semantic context, buildLookup won't add it, so add it now. |
| 1392 | // |
| 1393 | // FIXME: As a performance hack, don't add such decls into the translation |
| 1394 | // unit unless we're in C++, since qualified lookup into the TU is never |
| 1395 | // performed. |
| 1396 | if (LookupPtr.getPointer() || hasExternalVisibleStorage() || |
| 1397 | ((!Recoverable || D->getDeclContext() != D->getLexicalDeclContext()) && |
| 1398 | (getParentASTContext().getLangOpts().CPlusPlus || |
| 1399 | !isTranslationUnit()))) { |
| 1400 | // If we have lazily omitted any decls, they might have the same name as |
| 1401 | // the decl which we are adding, so build a full lookup table before adding |
| 1402 | // this decl. |
| 1403 | buildLookup(); |
| 1404 | makeDeclVisibleInContextImpl(D, Internal); |
| 1405 | } else { |
| 1406 | LookupPtr.setInt(true); |
| 1407 | } |
| 1408 | |
| 1409 | // If we are a transparent context or inline namespace, insert into our |
| 1410 | // parent context, too. This operation is recursive. |
| 1411 | if (isTransparentContext() || isInlineNamespace()) |
| 1412 | getParent()->getPrimaryContext()-> |
| 1413 | makeDeclVisibleInContextWithFlags(D, Internal, Recoverable); |
| 1414 | |
| 1415 | Decl *DCAsDecl = cast<Decl>(this); |
| 1416 | // Notify that a decl was made visible unless we are a Tag being defined. |
| 1417 | if (!(isa<TagDecl>(DCAsDecl) && cast<TagDecl>(DCAsDecl)->isBeingDefined())) |
| 1418 | if (ASTMutationListener *L = DCAsDecl->getASTMutationListener()) |
| 1419 | L->AddedVisibleDecl(this, D); |
| 1420 | } |
| 1421 | |
| 1422 | void DeclContext::makeDeclVisibleInContextImpl(NamedDecl *D, bool Internal) { |
| 1423 | // Find or create the stored declaration map. |
| 1424 | StoredDeclsMap *Map = LookupPtr.getPointer(); |
| 1425 | if (!Map) { |
| 1426 | ASTContext *C = &getParentASTContext(); |
| 1427 | Map = CreateStoredDeclsMap(*C); |
Argyrios Kyrtzidis | 5586b01 | 2010-07-04 21:44:25 +0000 | [diff] [blame] | 1428 | } |
| 1429 | |
Argyrios Kyrtzidis | 074dcc8 | 2010-08-20 16:04:35 +0000 | [diff] [blame] | 1430 | // If there is an external AST source, load any declarations it knows about |
| 1431 | // with this declaration's name. |
| 1432 | // If the lookup table contains an entry about this name it means that we |
| 1433 | // have already checked the external source. |
Sean Callanan | 9faf810 | 2011-10-21 02:57:43 +0000 | [diff] [blame] | 1434 | if (!Internal) |
| 1435 | if (ExternalASTSource *Source = getParentASTContext().getExternalSource()) |
| 1436 | if (hasExternalVisibleStorage() && |
Richard Smith | c5d3e80 | 2012-03-16 06:12:59 +0000 | [diff] [blame] | 1437 | Map->find(D->getDeclName()) == Map->end()) |
Sean Callanan | 9faf810 | 2011-10-21 02:57:43 +0000 | [diff] [blame] | 1438 | Source->FindExternalVisibleDeclsByName(this, D->getDeclName()); |
Argyrios Kyrtzidis | 074dcc8 | 2010-08-20 16:04:35 +0000 | [diff] [blame] | 1439 | |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 1440 | // Insert this declaration into the map. |
Richard Smith | c5d3e80 | 2012-03-16 06:12:59 +0000 | [diff] [blame] | 1441 | StoredDeclsList &DeclNameEntries = (*Map)[D->getDeclName()]; |
Chris Lattner | 67762a3 | 2009-02-20 01:44:05 +0000 | [diff] [blame] | 1442 | if (DeclNameEntries.isNull()) { |
| 1443 | DeclNameEntries.setOnlyValue(D); |
Richard Smith | c5d3e80 | 2012-03-16 06:12:59 +0000 | [diff] [blame] | 1444 | return; |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 1445 | } |
Chris Lattner | 9194250 | 2009-02-20 00:55:03 +0000 | [diff] [blame] | 1446 | |
Richard Smith | c5d3e80 | 2012-03-16 06:12:59 +0000 | [diff] [blame] | 1447 | if (DeclNameEntries.HandleRedeclaration(D)) { |
| 1448 | // This declaration has replaced an existing one for which |
| 1449 | // declarationReplaces returns true. |
| 1450 | return; |
| 1451 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1452 | |
Richard Smith | c5d3e80 | 2012-03-16 06:12:59 +0000 | [diff] [blame] | 1453 | // Put this declaration into the appropriate slot. |
| 1454 | DeclNameEntries.AddSubsequentDecl(D); |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 1455 | } |
Douglas Gregor | 2a3009a | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 1456 | |
| 1457 | /// Returns iterator range [First, Last) of UsingDirectiveDecls stored within |
| 1458 | /// this context. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1459 | DeclContext::udir_iterator_range |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1460 | DeclContext::getUsingDirectives() const { |
Richard Smith | 1b7f9cb | 2012-03-13 03:12:56 +0000 | [diff] [blame] | 1461 | // FIXME: Use something more efficient than normal lookup for using |
| 1462 | // directives. In C++, using directives are looked up more than anything else. |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1463 | lookup_const_result Result = lookup(UsingDirectiveDecl::getName()); |
David Blaikie | 3bc93e3 | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 1464 | return udir_iterator_range(reinterpret_cast<udir_iterator>(Result.begin()), |
| 1465 | reinterpret_cast<udir_iterator>(Result.end())); |
Douglas Gregor | 2a3009a | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 1466 | } |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1467 | |
Ted Kremenek | 3478eb6 | 2010-02-11 07:12:28 +0000 | [diff] [blame] | 1468 | //===----------------------------------------------------------------------===// |
| 1469 | // Creation and Destruction of StoredDeclsMaps. // |
| 1470 | //===----------------------------------------------------------------------===// |
| 1471 | |
John McCall | 0c01d18 | 2010-03-24 05:22:00 +0000 | [diff] [blame] | 1472 | StoredDeclsMap *DeclContext::CreateStoredDeclsMap(ASTContext &C) const { |
Richard Smith | c5d3e80 | 2012-03-16 06:12:59 +0000 | [diff] [blame] | 1473 | assert(!LookupPtr.getPointer() && "context already has a decls map"); |
John McCall | 0c01d18 | 2010-03-24 05:22:00 +0000 | [diff] [blame] | 1474 | assert(getPrimaryContext() == this && |
| 1475 | "creating decls map on non-primary context"); |
| 1476 | |
| 1477 | StoredDeclsMap *M; |
| 1478 | bool Dependent = isDependentContext(); |
| 1479 | if (Dependent) |
| 1480 | M = new DependentStoredDeclsMap(); |
| 1481 | else |
| 1482 | M = new StoredDeclsMap(); |
| 1483 | M->Previous = C.LastSDM; |
| 1484 | C.LastSDM = llvm::PointerIntPair<StoredDeclsMap*,1>(M, Dependent); |
Richard Smith | c5d3e80 | 2012-03-16 06:12:59 +0000 | [diff] [blame] | 1485 | LookupPtr.setPointer(M); |
Ted Kremenek | 3478eb6 | 2010-02-11 07:12:28 +0000 | [diff] [blame] | 1486 | return M; |
| 1487 | } |
| 1488 | |
| 1489 | void ASTContext::ReleaseDeclContextMaps() { |
John McCall | 0c01d18 | 2010-03-24 05:22:00 +0000 | [diff] [blame] | 1490 | // It's okay to delete DependentStoredDeclsMaps via a StoredDeclsMap |
| 1491 | // pointer because the subclass doesn't add anything that needs to |
| 1492 | // be deleted. |
John McCall | 0c01d18 | 2010-03-24 05:22:00 +0000 | [diff] [blame] | 1493 | StoredDeclsMap::DestroyAll(LastSDM.getPointer(), LastSDM.getInt()); |
| 1494 | } |
| 1495 | |
| 1496 | void StoredDeclsMap::DestroyAll(StoredDeclsMap *Map, bool Dependent) { |
| 1497 | while (Map) { |
| 1498 | // Advance the iteration before we invalidate memory. |
| 1499 | llvm::PointerIntPair<StoredDeclsMap*,1> Next = Map->Previous; |
| 1500 | |
| 1501 | if (Dependent) |
| 1502 | delete static_cast<DependentStoredDeclsMap*>(Map); |
| 1503 | else |
| 1504 | delete Map; |
| 1505 | |
| 1506 | Map = Next.getPointer(); |
| 1507 | Dependent = Next.getInt(); |
| 1508 | } |
| 1509 | } |
| 1510 | |
John McCall | 0c01d18 | 2010-03-24 05:22:00 +0000 | [diff] [blame] | 1511 | DependentDiagnostic *DependentDiagnostic::Create(ASTContext &C, |
| 1512 | DeclContext *Parent, |
| 1513 | const PartialDiagnostic &PDiag) { |
| 1514 | assert(Parent->isDependentContext() |
| 1515 | && "cannot iterate dependent diagnostics of non-dependent context"); |
| 1516 | Parent = Parent->getPrimaryContext(); |
Richard Smith | c5d3e80 | 2012-03-16 06:12:59 +0000 | [diff] [blame] | 1517 | if (!Parent->LookupPtr.getPointer()) |
John McCall | 0c01d18 | 2010-03-24 05:22:00 +0000 | [diff] [blame] | 1518 | Parent->CreateStoredDeclsMap(C); |
| 1519 | |
| 1520 | DependentStoredDeclsMap *Map |
Richard Smith | c5d3e80 | 2012-03-16 06:12:59 +0000 | [diff] [blame] | 1521 | = static_cast<DependentStoredDeclsMap*>(Parent->LookupPtr.getPointer()); |
John McCall | 0c01d18 | 2010-03-24 05:22:00 +0000 | [diff] [blame] | 1522 | |
Douglas Gregor | b836518 | 2010-03-29 23:56:53 +0000 | [diff] [blame] | 1523 | // Allocate the copy of the PartialDiagnostic via the ASTContext's |
Douglas Gregor | fe6b2d4 | 2010-03-29 23:34:08 +0000 | [diff] [blame] | 1524 | // BumpPtrAllocator, rather than the ASTContext itself. |
Douglas Gregor | b836518 | 2010-03-29 23:56:53 +0000 | [diff] [blame] | 1525 | PartialDiagnostic::Storage *DiagStorage = 0; |
| 1526 | if (PDiag.hasStorage()) |
| 1527 | DiagStorage = new (C) PartialDiagnostic::Storage; |
| 1528 | |
| 1529 | DependentDiagnostic *DD = new (C) DependentDiagnostic(PDiag, DiagStorage); |
John McCall | 0c01d18 | 2010-03-24 05:22:00 +0000 | [diff] [blame] | 1530 | |
| 1531 | // TODO: Maybe we shouldn't reverse the order during insertion. |
| 1532 | DD->NextDiagnostic = Map->FirstDiagnostic; |
| 1533 | Map->FirstDiagnostic = DD; |
| 1534 | |
| 1535 | return DD; |
Ted Kremenek | 3478eb6 | 2010-02-11 07:12:28 +0000 | [diff] [blame] | 1536 | } |