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" |
Douglas Gregor | 64650af | 2009-02-02 23:39:07 +0000 | [diff] [blame] | 15 | #include "clang/AST/Decl.h" |
Douglas Gregor | c2ee10d | 2009-04-07 17:20:56 +0000 | [diff] [blame] | 16 | #include "clang/AST/DeclContextInternals.h" |
Argyrios Kyrtzidis | d3bb44f | 2008-06-09 21:05:31 +0000 | [diff] [blame] | 17 | #include "clang/AST/DeclCXX.h" |
John McCall | 92b7f70 | 2010-03-11 07:50:04 +0000 | [diff] [blame] | 18 | #include "clang/AST/DeclFriend.h" |
Douglas Gregor | aaba5e3 | 2009-02-04 19:02:06 +0000 | [diff] [blame] | 19 | #include "clang/AST/DeclObjC.h" |
| 20 | #include "clang/AST/DeclTemplate.h" |
John McCall | 0c01d18 | 2010-03-24 05:22:00 +0000 | [diff] [blame] | 21 | #include "clang/AST/DependentDiagnostic.h" |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 22 | #include "clang/AST/ExternalASTSource.h" |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 23 | #include "clang/AST/ASTContext.h" |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 24 | #include "clang/AST/Type.h" |
Sebastian Redl | d3a413d | 2009-04-26 20:35:05 +0000 | [diff] [blame] | 25 | #include "clang/AST/Stmt.h" |
| 26 | #include "clang/AST/StmtCXX.h" |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 27 | #include "llvm/ADT/DenseMap.h" |
Chris Lattner | 49f28ca | 2009-03-05 08:00:35 +0000 | [diff] [blame] | 28 | #include "llvm/Support/raw_ostream.h" |
Douglas Gregor | 6ed40e3 | 2008-12-23 21:05:05 +0000 | [diff] [blame] | 29 | #include <algorithm> |
Chris Lattner | 3daed52 | 2009-03-02 22:20:04 +0000 | [diff] [blame] | 30 | #include <cstdio> |
Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 31 | #include <vector> |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 32 | using namespace clang; |
| 33 | |
| 34 | //===----------------------------------------------------------------------===// |
| 35 | // Statistics |
| 36 | //===----------------------------------------------------------------------===// |
| 37 | |
Douglas Gregor | 64650af | 2009-02-02 23:39:07 +0000 | [diff] [blame] | 38 | #define DECL(Derived, Base) static int n##Derived##s = 0; |
| 39 | #include "clang/AST/DeclNodes.def" |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 40 | |
| 41 | static bool StatSwitch = false; |
| 42 | |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 43 | const char *Decl::getDeclKindName() const { |
| 44 | switch (DeclKind) { |
Douglas Gregor | 64650af | 2009-02-02 23:39:07 +0000 | [diff] [blame] | 45 | default: assert(0 && "Declaration not in DeclNodes.def!"); |
| 46 | #define DECL(Derived, Base) case Derived: return #Derived; |
| 47 | #include "clang/AST/DeclNodes.def" |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 48 | } |
| 49 | } |
| 50 | |
Douglas Gregor | 4273857 | 2010-03-05 00:26:45 +0000 | [diff] [blame] | 51 | void Decl::setInvalidDecl(bool Invalid) { |
| 52 | InvalidDecl = Invalid; |
| 53 | if (Invalid) { |
| 54 | // Defensive maneuver for ill-formed code: we're likely not to make it to |
| 55 | // a point where we set the access specifier, so default it to "public" |
| 56 | // to avoid triggering asserts elsewhere in the front end. |
| 57 | setAccess(AS_public); |
| 58 | } |
| 59 | } |
| 60 | |
Steve Naroff | 0a47393 | 2009-01-20 19:53:53 +0000 | [diff] [blame] | 61 | const char *DeclContext::getDeclKindName() const { |
| 62 | switch (DeclKind) { |
Douglas Gregor | 64650af | 2009-02-02 23:39:07 +0000 | [diff] [blame] | 63 | default: assert(0 && "Declaration context not in DeclNodes.def!"); |
Argyrios Kyrtzidis | 1ad4dd7 | 2009-02-16 14:28:33 +0000 | [diff] [blame] | 64 | #define DECL(Derived, Base) case Decl::Derived: return #Derived; |
Douglas Gregor | 64650af | 2009-02-02 23:39:07 +0000 | [diff] [blame] | 65 | #include "clang/AST/DeclNodes.def" |
Steve Naroff | 0a47393 | 2009-01-20 19:53:53 +0000 | [diff] [blame] | 66 | } |
| 67 | } |
| 68 | |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 69 | bool Decl::CollectingStats(bool Enable) { |
Kovarththanan Rajaratnam | 2024f4d | 2009-11-29 14:54:35 +0000 | [diff] [blame] | 70 | if (Enable) StatSwitch = true; |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 71 | return StatSwitch; |
| 72 | } |
| 73 | |
| 74 | void Decl::PrintStats() { |
| 75 | fprintf(stderr, "*** Decl Stats:\n"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 76 | |
Douglas Gregor | 64650af | 2009-02-02 23:39:07 +0000 | [diff] [blame] | 77 | int totalDecls = 0; |
| 78 | #define DECL(Derived, Base) totalDecls += n##Derived##s; |
| 79 | #include "clang/AST/DeclNodes.def" |
| 80 | fprintf(stderr, " %d decls total.\n", totalDecls); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 81 | |
Douglas Gregor | 64650af | 2009-02-02 23:39:07 +0000 | [diff] [blame] | 82 | int totalBytes = 0; |
| 83 | #define DECL(Derived, Base) \ |
| 84 | if (n##Derived##s > 0) { \ |
| 85 | totalBytes += (int)(n##Derived##s * sizeof(Derived##Decl)); \ |
| 86 | fprintf(stderr, " %d " #Derived " decls, %d each (%d bytes)\n", \ |
| 87 | n##Derived##s, (int)sizeof(Derived##Decl), \ |
| 88 | (int)(n##Derived##s * sizeof(Derived##Decl))); \ |
| 89 | } |
| 90 | #include "clang/AST/DeclNodes.def" |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 91 | |
Douglas Gregor | 64650af | 2009-02-02 23:39:07 +0000 | [diff] [blame] | 92 | fprintf(stderr, "Total bytes = %d\n", totalBytes); |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 93 | } |
| 94 | |
| 95 | void Decl::addDeclKind(Kind k) { |
| 96 | switch (k) { |
Douglas Gregor | 64650af | 2009-02-02 23:39:07 +0000 | [diff] [blame] | 97 | default: assert(0 && "Declaration not in DeclNodes.def!"); |
| 98 | #define DECL(Derived, Base) case Derived: ++n##Derived##s; break; |
| 99 | #include "clang/AST/DeclNodes.def" |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 100 | } |
| 101 | } |
| 102 | |
Anders Carlsson | 67e3320 | 2009-06-13 00:08:58 +0000 | [diff] [blame] | 103 | bool Decl::isTemplateParameterPack() const { |
| 104 | if (const TemplateTypeParmDecl *TTP = dyn_cast<TemplateTypeParmDecl>(this)) |
| 105 | return TTP->isParameterPack(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 106 | |
Anders Carlsson | 67e3320 | 2009-06-13 00:08:58 +0000 | [diff] [blame] | 107 | return false; |
| 108 | } |
| 109 | |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 110 | bool Decl::isFunctionOrFunctionTemplate() const { |
John McCall | 9488ea1 | 2009-11-17 05:59:44 +0000 | [diff] [blame] | 111 | if (const UsingShadowDecl *UD = dyn_cast<UsingShadowDecl>(this)) |
Anders Carlsson | 58badb7 | 2009-06-26 05:26:50 +0000 | [diff] [blame] | 112 | return UD->getTargetDecl()->isFunctionOrFunctionTemplate(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 113 | |
Douglas Gregor | e53060f | 2009-06-25 22:08:12 +0000 | [diff] [blame] | 114 | return isa<FunctionDecl>(this) || isa<FunctionTemplateDecl>(this); |
| 115 | } |
| 116 | |
Douglas Gregor | 79c2278 | 2010-01-16 20:21:20 +0000 | [diff] [blame] | 117 | bool Decl::isDefinedOutsideFunctionOrMethod() const { |
| 118 | for (const DeclContext *DC = getDeclContext(); |
| 119 | DC && !DC->isTranslationUnit(); |
| 120 | DC = DC->getParent()) |
| 121 | if (DC->isFunctionOrMethod()) |
| 122 | return false; |
| 123 | |
| 124 | return true; |
| 125 | } |
| 126 | |
| 127 | |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 128 | //===----------------------------------------------------------------------===// |
Chris Lattner | 49f28ca | 2009-03-05 08:00:35 +0000 | [diff] [blame] | 129 | // PrettyStackTraceDecl Implementation |
| 130 | //===----------------------------------------------------------------------===// |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 131 | |
Chris Lattner | 49f28ca | 2009-03-05 08:00:35 +0000 | [diff] [blame] | 132 | void PrettyStackTraceDecl::print(llvm::raw_ostream &OS) const { |
| 133 | SourceLocation TheLoc = Loc; |
| 134 | if (TheLoc.isInvalid() && TheDecl) |
| 135 | TheLoc = TheDecl->getLocation(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 136 | |
Chris Lattner | 49f28ca | 2009-03-05 08:00:35 +0000 | [diff] [blame] | 137 | if (TheLoc.isValid()) { |
| 138 | TheLoc.print(OS, SM); |
| 139 | OS << ": "; |
| 140 | } |
| 141 | |
| 142 | OS << Message; |
| 143 | |
Daniel Dunbar | c523656 | 2009-11-21 09:05:59 +0000 | [diff] [blame] | 144 | if (const NamedDecl *DN = dyn_cast_or_null<NamedDecl>(TheDecl)) |
Chris Lattner | 49f28ca | 2009-03-05 08:00:35 +0000 | [diff] [blame] | 145 | OS << " '" << DN->getQualifiedNameAsString() << '\''; |
| 146 | OS << '\n'; |
| 147 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 148 | |
Chris Lattner | 49f28ca | 2009-03-05 08:00:35 +0000 | [diff] [blame] | 149 | //===----------------------------------------------------------------------===// |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 150 | // Decl Implementation |
| 151 | //===----------------------------------------------------------------------===// |
| 152 | |
Chris Lattner | 769dbdf | 2009-03-27 20:18:19 +0000 | [diff] [blame] | 153 | // Out-of-line virtual method providing a home for Decl. |
| 154 | Decl::~Decl() { |
Chris Lattner | 769dbdf | 2009-03-27 20:18:19 +0000 | [diff] [blame] | 155 | assert(!HasAttrs && "attributes should have been freed by Destroy"); |
| 156 | } |
| 157 | |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 158 | void Decl::setDeclContext(DeclContext *DC) { |
| 159 | if (isOutOfSemaDC()) |
| 160 | delete getMultipleDC(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 161 | |
Chris Lattner | ee219fd | 2009-03-29 06:06:59 +0000 | [diff] [blame] | 162 | DeclCtx = DC; |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 163 | } |
| 164 | |
| 165 | void Decl::setLexicalDeclContext(DeclContext *DC) { |
| 166 | if (DC == getLexicalDeclContext()) |
| 167 | return; |
| 168 | |
| 169 | if (isInSemaDC()) { |
Ted Kremenek | 94a3900 | 2009-12-01 00:07:10 +0000 | [diff] [blame] | 170 | MultipleDC *MDC = new (getASTContext()) MultipleDC(); |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 171 | MDC->SemanticDC = getDeclContext(); |
| 172 | MDC->LexicalDC = DC; |
Chris Lattner | ee219fd | 2009-03-29 06:06:59 +0000 | [diff] [blame] | 173 | DeclCtx = MDC; |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 174 | } else { |
| 175 | getMultipleDC()->LexicalDC = DC; |
| 176 | } |
| 177 | } |
| 178 | |
John McCall | 9aeed32 | 2009-10-01 00:25:31 +0000 | [diff] [blame] | 179 | bool Decl::isInAnonymousNamespace() const { |
| 180 | const DeclContext *DC = getDeclContext(); |
| 181 | do { |
| 182 | if (const NamespaceDecl *ND = dyn_cast<NamespaceDecl>(DC)) |
| 183 | if (ND->isAnonymousNamespace()) |
| 184 | return true; |
| 185 | } while ((DC = DC->getParent())); |
| 186 | |
| 187 | return false; |
| 188 | } |
| 189 | |
Argyrios Kyrtzidis | 3708b3d | 2009-06-29 17:38:40 +0000 | [diff] [blame] | 190 | TranslationUnitDecl *Decl::getTranslationUnitDecl() { |
Argyrios Kyrtzidis | 9b34669 | 2009-06-30 02:34:53 +0000 | [diff] [blame] | 191 | if (TranslationUnitDecl *TUD = dyn_cast<TranslationUnitDecl>(this)) |
| 192 | return TUD; |
| 193 | |
Argyrios Kyrtzidis | 3708b3d | 2009-06-29 17:38:40 +0000 | [diff] [blame] | 194 | DeclContext *DC = getDeclContext(); |
| 195 | assert(DC && "This decl is not contained in a translation unit!"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 196 | |
Argyrios Kyrtzidis | 3708b3d | 2009-06-29 17:38:40 +0000 | [diff] [blame] | 197 | while (!DC->isTranslationUnit()) { |
| 198 | DC = DC->getParent(); |
| 199 | assert(DC && "This decl is not contained in a translation unit!"); |
| 200 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 201 | |
Argyrios Kyrtzidis | 3708b3d | 2009-06-29 17:38:40 +0000 | [diff] [blame] | 202 | return cast<TranslationUnitDecl>(DC); |
| 203 | } |
| 204 | |
| 205 | ASTContext &Decl::getASTContext() const { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 206 | return getTranslationUnitDecl()->getASTContext(); |
Argyrios Kyrtzidis | 3708b3d | 2009-06-29 17:38:40 +0000 | [diff] [blame] | 207 | } |
| 208 | |
Tanya Lattner | 12ead49 | 2010-02-17 02:17:21 +0000 | [diff] [blame] | 209 | bool Decl::isUsed() const { |
| 210 | if (Used) |
| 211 | return true; |
| 212 | |
| 213 | // Check for used attribute. |
| 214 | if (hasAttr<UsedAttr>()) |
| 215 | return true; |
| 216 | |
| 217 | // Check redeclarations for used attribute. |
| 218 | for (redecl_iterator I = redecls_begin(), E = redecls_end(); I != E; ++I) { |
| 219 | if (I->hasAttr<UsedAttr>() || I->Used) |
| 220 | return true; |
| 221 | } |
| 222 | |
| 223 | return false; |
| 224 | } |
| 225 | |
| 226 | |
Chris Lattner | 769dbdf | 2009-03-27 20:18:19 +0000 | [diff] [blame] | 227 | unsigned Decl::getIdentifierNamespaceForKind(Kind DeclKind) { |
| 228 | switch (DeclKind) { |
John McCall | 9488ea1 | 2009-11-17 05:59:44 +0000 | [diff] [blame] | 229 | case Function: |
| 230 | case CXXMethod: |
| 231 | case CXXConstructor: |
| 232 | case CXXDestructor: |
| 233 | case CXXConversion: |
Chris Lattner | 769dbdf | 2009-03-27 20:18:19 +0000 | [diff] [blame] | 234 | case Typedef: |
| 235 | case EnumConstant: |
| 236 | case Var: |
| 237 | case ImplicitParam: |
| 238 | case ParmVar: |
Chris Lattner | 769dbdf | 2009-03-27 20:18:19 +0000 | [diff] [blame] | 239 | case NonTypeTemplateParm: |
| 240 | case ObjCMethod: |
| 241 | case ObjCContainer: |
Chris Lattner | 769dbdf | 2009-03-27 20:18:19 +0000 | [diff] [blame] | 242 | case ObjCInterface: |
Chris Lattner | 769dbdf | 2009-03-27 20:18:19 +0000 | [diff] [blame] | 243 | case ObjCProperty: |
| 244 | case ObjCCompatibleAlias: |
| 245 | return IDNS_Ordinary; |
John McCall | 3f9a8a6 | 2009-08-11 06:59:38 +0000 | [diff] [blame] | 246 | |
John McCall | 9488ea1 | 2009-11-17 05:59:44 +0000 | [diff] [blame] | 247 | case UsingShadow: |
| 248 | return 0; // we'll actually overwrite this later |
| 249 | |
John McCall | 7ba107a | 2009-11-18 02:36:19 +0000 | [diff] [blame] | 250 | case UnresolvedUsingValue: |
| 251 | case UnresolvedUsingTypename: |
| 252 | return IDNS_Ordinary | IDNS_Using; |
John McCall | 9488ea1 | 2009-11-17 05:59:44 +0000 | [diff] [blame] | 253 | |
| 254 | case Using: |
| 255 | return IDNS_Using; |
| 256 | |
Chris Lattner | 769dbdf | 2009-03-27 20:18:19 +0000 | [diff] [blame] | 257 | case ObjCProtocol: |
Douglas Gregor | 8fc463a | 2009-04-24 00:11:27 +0000 | [diff] [blame] | 258 | return IDNS_ObjCProtocol; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 259 | |
Douglas Gregor | 8fc463a | 2009-04-24 00:11:27 +0000 | [diff] [blame] | 260 | case ObjCImplementation: |
| 261 | return IDNS_ObjCImplementation; |
| 262 | |
Fariborz Jahanian | 737061f | 2009-12-11 00:26:36 +0000 | [diff] [blame] | 263 | case ObjCCategory: |
Douglas Gregor | 8fc463a | 2009-04-24 00:11:27 +0000 | [diff] [blame] | 264 | case ObjCCategoryImpl: |
Fariborz Jahanian | 737061f | 2009-12-11 00:26:36 +0000 | [diff] [blame] | 265 | return IDNS_ObjCCategoryName; |
Douglas Gregor | 8fc463a | 2009-04-24 00:11:27 +0000 | [diff] [blame] | 266 | |
Chris Lattner | 769dbdf | 2009-03-27 20:18:19 +0000 | [diff] [blame] | 267 | case Field: |
| 268 | case ObjCAtDefsField: |
| 269 | case ObjCIvar: |
| 270 | return IDNS_Member; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 271 | |
Chris Lattner | 769dbdf | 2009-03-27 20:18:19 +0000 | [diff] [blame] | 272 | case Record: |
| 273 | case CXXRecord: |
| 274 | case Enum: |
| 275 | case TemplateTypeParm: |
| 276 | return IDNS_Tag; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 277 | |
Chris Lattner | 769dbdf | 2009-03-27 20:18:19 +0000 | [diff] [blame] | 278 | case Namespace: |
| 279 | case Template: |
| 280 | case FunctionTemplate: |
| 281 | case ClassTemplate: |
| 282 | case TemplateTemplateParm: |
Anders Carlsson | faf0e87 | 2009-03-28 23:02:53 +0000 | [diff] [blame] | 283 | case NamespaceAlias: |
Chris Lattner | 769dbdf | 2009-03-27 20:18:19 +0000 | [diff] [blame] | 284 | return IDNS_Tag | IDNS_Ordinary; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 285 | |
Chris Lattner | 769dbdf | 2009-03-27 20:18:19 +0000 | [diff] [blame] | 286 | // Never have names. |
John McCall | 02cace7 | 2009-08-28 07:59:38 +0000 | [diff] [blame] | 287 | case Friend: |
John McCall | dd4a3b0 | 2009-09-16 22:47:08 +0000 | [diff] [blame] | 288 | case FriendTemplate: |
Chris Lattner | 769dbdf | 2009-03-27 20:18:19 +0000 | [diff] [blame] | 289 | case LinkageSpec: |
| 290 | case FileScopeAsm: |
| 291 | case StaticAssert: |
| 292 | case ObjCClass: |
Chris Lattner | 769dbdf | 2009-03-27 20:18:19 +0000 | [diff] [blame] | 293 | case ObjCPropertyImpl: |
| 294 | case ObjCForwardProtocol: |
| 295 | case Block: |
| 296 | case TranslationUnit: |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 297 | |
Chris Lattner | 769dbdf | 2009-03-27 20:18:19 +0000 | [diff] [blame] | 298 | // Aren't looked up? |
| 299 | case UsingDirective: |
| 300 | case ClassTemplateSpecialization: |
Douglas Gregor | c8ab256 | 2009-05-31 09:31:02 +0000 | [diff] [blame] | 301 | case ClassTemplatePartialSpecialization: |
Chris Lattner | 769dbdf | 2009-03-27 20:18:19 +0000 | [diff] [blame] | 302 | return 0; |
| 303 | } |
John McCall | 9488ea1 | 2009-11-17 05:59:44 +0000 | [diff] [blame] | 304 | |
| 305 | return 0; |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 306 | } |
| 307 | |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 308 | void Decl::addAttr(Attr *NewAttr) { |
| 309 | Attr *&ExistingAttr = getASTContext().getDeclAttrs(this); |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 310 | |
| 311 | NewAttr->setNext(ExistingAttr); |
| 312 | ExistingAttr = NewAttr; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 313 | |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 314 | HasAttrs = true; |
| 315 | } |
| 316 | |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 317 | void Decl::invalidateAttrs() { |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 318 | if (!HasAttrs) return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 319 | |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 320 | HasAttrs = false; |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 321 | getASTContext().eraseDeclAttrs(this); |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 322 | } |
| 323 | |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 324 | const Attr *Decl::getAttrsImpl() const { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 325 | assert(HasAttrs && "getAttrs() should verify this!"); |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 326 | return getASTContext().getDeclAttrs(this); |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 327 | } |
| 328 | |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 329 | void Decl::swapAttrs(Decl *RHS) { |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 330 | bool HasLHSAttr = this->HasAttrs; |
| 331 | bool HasRHSAttr = RHS->HasAttrs; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 332 | |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 333 | // Usually, neither decl has attrs, nothing to do. |
| 334 | if (!HasLHSAttr && !HasRHSAttr) return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 335 | |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 336 | // If 'this' has no attrs, swap the other way. |
| 337 | if (!HasLHSAttr) |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 338 | return RHS->swapAttrs(this); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 339 | |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 340 | ASTContext &Context = getASTContext(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 341 | |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 342 | // Handle the case when both decls have attrs. |
| 343 | if (HasRHSAttr) { |
Douglas Gregor | 68584ed | 2009-06-18 16:11:24 +0000 | [diff] [blame] | 344 | std::swap(Context.getDeclAttrs(this), Context.getDeclAttrs(RHS)); |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 345 | return; |
| 346 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 347 | |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 348 | // Otherwise, LHS has an attr and RHS doesn't. |
Douglas Gregor | 68584ed | 2009-06-18 16:11:24 +0000 | [diff] [blame] | 349 | Context.getDeclAttrs(RHS) = Context.getDeclAttrs(this); |
| 350 | Context.eraseDeclAttrs(this); |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 351 | this->HasAttrs = false; |
| 352 | RHS->HasAttrs = true; |
| 353 | } |
| 354 | |
| 355 | |
Chris Lattner | cc58147 | 2009-03-04 06:05:19 +0000 | [diff] [blame] | 356 | void Decl::Destroy(ASTContext &C) { |
| 357 | // Free attributes for this decl. |
| 358 | if (HasAttrs) { |
Douglas Gregor | 68584ed | 2009-06-18 16:11:24 +0000 | [diff] [blame] | 359 | C.getDeclAttrs(this)->Destroy(C); |
Argyrios Kyrtzidis | 40b598e | 2009-06-30 02:34:44 +0000 | [diff] [blame] | 360 | invalidateAttrs(); |
Chris Lattner | cc58147 | 2009-03-04 06:05:19 +0000 | [diff] [blame] | 361 | HasAttrs = false; |
| 362 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 363 | |
Douglas Gregor | a0fc55f | 2009-01-13 19:47:12 +0000 | [diff] [blame] | 364 | #if 0 |
Douglas Gregor | 00ad0ef | 2009-01-20 04:25:11 +0000 | [diff] [blame] | 365 | // FIXME: Once ownership is fully understood, we can enable this code |
| 366 | if (DeclContext *DC = dyn_cast<DeclContext>(this)) |
| 367 | DC->decls_begin()->Destroy(C); |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 368 | |
Chris Lattner | 244a67d | 2009-03-28 06:04:26 +0000 | [diff] [blame] | 369 | // Observe the unrolled recursion. By setting N->NextDeclInContext = 0x0 |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 370 | // within the loop, only the Destroy method for the first Decl |
| 371 | // will deallocate all of the Decls in a chain. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 372 | |
Chris Lattner | 244a67d | 2009-03-28 06:04:26 +0000 | [diff] [blame] | 373 | Decl* N = getNextDeclInContext(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 374 | |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 375 | while (N) { |
Chris Lattner | 244a67d | 2009-03-28 06:04:26 +0000 | [diff] [blame] | 376 | Decl* Tmp = N->getNextDeclInContext(); |
| 377 | N->NextDeclInContext = 0; |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 378 | N->Destroy(C); |
| 379 | N = Tmp; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 380 | } |
Douglas Gregor | a0fc55f | 2009-01-13 19:47:12 +0000 | [diff] [blame] | 381 | |
Ted Kremenek | 94a3900 | 2009-12-01 00:07:10 +0000 | [diff] [blame] | 382 | if (isOutOfSemaDC()) |
| 383 | delete (C) getMultipleDC(); |
| 384 | |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 385 | this->~Decl(); |
Steve Naroff | 3e97049 | 2009-01-27 21:25:57 +0000 | [diff] [blame] | 386 | C.Deallocate((void *)this); |
Ted Kremenek | 94a3900 | 2009-12-01 00:07:10 +0000 | [diff] [blame] | 387 | #endif |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 388 | } |
| 389 | |
Argyrios Kyrtzidis | 42220c5 | 2008-10-12 16:14:48 +0000 | [diff] [blame] | 390 | Decl *Decl::castFromDeclContext (const DeclContext *D) { |
Argyrios Kyrtzidis | 3d7641e | 2009-02-16 14:29:28 +0000 | [diff] [blame] | 391 | Decl::Kind DK = D->getDeclKind(); |
| 392 | switch(DK) { |
| 393 | #define DECL_CONTEXT(Name) \ |
| 394 | case Decl::Name: \ |
| 395 | return static_cast<Name##Decl*>(const_cast<DeclContext*>(D)); |
| 396 | #define DECL_CONTEXT_BASE(Name) |
| 397 | #include "clang/AST/DeclNodes.def" |
| 398 | default: |
| 399 | #define DECL_CONTEXT_BASE(Name) \ |
| 400 | if (DK >= Decl::Name##First && DK <= Decl::Name##Last) \ |
| 401 | return static_cast<Name##Decl*>(const_cast<DeclContext*>(D)); |
| 402 | #include "clang/AST/DeclNodes.def" |
| 403 | assert(false && "a decl that inherits DeclContext isn't handled"); |
| 404 | return 0; |
| 405 | } |
Argyrios Kyrtzidis | 42220c5 | 2008-10-12 16:14:48 +0000 | [diff] [blame] | 406 | } |
| 407 | |
| 408 | DeclContext *Decl::castToDeclContext(const Decl *D) { |
Argyrios Kyrtzidis | 3d7641e | 2009-02-16 14:29:28 +0000 | [diff] [blame] | 409 | Decl::Kind DK = D->getKind(); |
| 410 | switch(DK) { |
| 411 | #define DECL_CONTEXT(Name) \ |
| 412 | case Decl::Name: \ |
| 413 | return static_cast<Name##Decl*>(const_cast<Decl*>(D)); |
| 414 | #define DECL_CONTEXT_BASE(Name) |
| 415 | #include "clang/AST/DeclNodes.def" |
| 416 | default: |
| 417 | #define DECL_CONTEXT_BASE(Name) \ |
| 418 | if (DK >= Decl::Name##First && DK <= Decl::Name##Last) \ |
| 419 | return static_cast<Name##Decl*>(const_cast<Decl*>(D)); |
| 420 | #include "clang/AST/DeclNodes.def" |
| 421 | assert(false && "a decl that inherits DeclContext isn't handled"); |
| 422 | return 0; |
| 423 | } |
Argyrios Kyrtzidis | 42220c5 | 2008-10-12 16:14:48 +0000 | [diff] [blame] | 424 | } |
| 425 | |
Argyrios Kyrtzidis | 6fb0aee | 2009-06-30 02:35:26 +0000 | [diff] [blame] | 426 | CompoundStmt* Decl::getCompoundBody() const { |
| 427 | return dyn_cast_or_null<CompoundStmt>(getBody()); |
Sebastian Redl | d3a413d | 2009-04-26 20:35:05 +0000 | [diff] [blame] | 428 | } |
| 429 | |
Argyrios Kyrtzidis | 6fb0aee | 2009-06-30 02:35:26 +0000 | [diff] [blame] | 430 | SourceLocation Decl::getBodyRBrace() const { |
| 431 | Stmt *Body = getBody(); |
Sebastian Redl | d3a413d | 2009-04-26 20:35:05 +0000 | [diff] [blame] | 432 | if (!Body) |
| 433 | return SourceLocation(); |
| 434 | if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Body)) |
| 435 | return CS->getRBracLoc(); |
| 436 | assert(isa<CXXTryStmt>(Body) && |
| 437 | "Body can only be CompoundStmt or CXXTryStmt"); |
| 438 | return cast<CXXTryStmt>(Body)->getSourceRange().getEnd(); |
| 439 | } |
| 440 | |
Anders Carlsson | 1329c27 | 2009-03-25 23:38:06 +0000 | [diff] [blame] | 441 | #ifndef NDEBUG |
| 442 | void Decl::CheckAccessDeclContext() const { |
John McCall | 46460a6 | 2010-01-20 21:53:11 +0000 | [diff] [blame] | 443 | // Suppress this check if any of the following hold: |
| 444 | // 1. this is the translation unit (and thus has no parent) |
| 445 | // 2. this is a template parameter (and thus doesn't belong to its context) |
| 446 | // 3. this is a ParmVarDecl (which can be in a record context during |
| 447 | // the brief period between its creation and the creation of the |
| 448 | // FunctionDecl) |
| 449 | // 4. the context is not a record |
Anders Carlsson | 35eda44 | 2009-08-29 20:47:47 +0000 | [diff] [blame] | 450 | if (isa<TranslationUnitDecl>(this) || |
Douglas Gregor | fdd8ab1 | 2010-02-22 17:53:38 +0000 | [diff] [blame] | 451 | !isa<CXXRecordDecl>(getDeclContext()) || |
| 452 | isInvalidDecl()) |
Anders Carlsson | 35eda44 | 2009-08-29 20:47:47 +0000 | [diff] [blame] | 453 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 454 | |
| 455 | assert(Access != AS_none && |
Anders Carlsson | 1329c27 | 2009-03-25 23:38:06 +0000 | [diff] [blame] | 456 | "Access specifier is AS_none inside a record decl"); |
| 457 | } |
| 458 | |
| 459 | #endif |
| 460 | |
Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 461 | //===----------------------------------------------------------------------===// |
| 462 | // DeclContext Implementation |
| 463 | //===----------------------------------------------------------------------===// |
| 464 | |
Argyrios Kyrtzidis | 3d7641e | 2009-02-16 14:29:28 +0000 | [diff] [blame] | 465 | bool DeclContext::classof(const Decl *D) { |
| 466 | switch (D->getKind()) { |
| 467 | #define DECL_CONTEXT(Name) case Decl::Name: |
| 468 | #define DECL_CONTEXT_BASE(Name) |
| 469 | #include "clang/AST/DeclNodes.def" |
| 470 | return true; |
| 471 | default: |
| 472 | #define DECL_CONTEXT_BASE(Name) \ |
| 473 | if (D->getKind() >= Decl::Name##First && \ |
| 474 | D->getKind() <= Decl::Name##Last) \ |
| 475 | return true; |
| 476 | #include "clang/AST/DeclNodes.def" |
| 477 | return false; |
| 478 | } |
| 479 | } |
| 480 | |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 481 | DeclContext::~DeclContext() { |
Ted Kremenek | 3478eb6 | 2010-02-11 07:12:28 +0000 | [diff] [blame] | 482 | // FIXME: Currently ~ASTContext will delete the StoredDeclsMaps because |
| 483 | // ~DeclContext() is not guaranteed to be called when ASTContext uses |
| 484 | // a BumpPtrAllocator. |
John McCall | 0c01d18 | 2010-03-24 05:22:00 +0000 | [diff] [blame] | 485 | // delete LookupPtr; |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 486 | } |
| 487 | |
| 488 | void DeclContext::DestroyDecls(ASTContext &C) { |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 489 | for (decl_iterator D = decls_begin(); D != decls_end(); ) |
Douglas Gregor | 00ad0ef | 2009-01-20 04:25:11 +0000 | [diff] [blame] | 490 | (*D++)->Destroy(C); |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 491 | } |
| 492 | |
Douglas Gregor | e942bbe | 2009-09-10 16:57:35 +0000 | [diff] [blame] | 493 | /// \brief Find the parent context of this context that will be |
| 494 | /// used for unqualified name lookup. |
| 495 | /// |
| 496 | /// Generally, the parent lookup context is the semantic context. However, for |
| 497 | /// a friend function the parent lookup context is the lexical context, which |
| 498 | /// is the class in which the friend is declared. |
| 499 | DeclContext *DeclContext::getLookupParent() { |
| 500 | // FIXME: Find a better way to identify friends |
| 501 | if (isa<FunctionDecl>(this)) |
| 502 | if (getParent()->getLookupContext()->isFileContext() && |
| 503 | getLexicalParent()->getLookupContext()->isRecord()) |
| 504 | return getLexicalParent(); |
| 505 | |
| 506 | return getParent(); |
| 507 | } |
| 508 | |
Douglas Gregor | bc22163 | 2009-05-28 16:34:51 +0000 | [diff] [blame] | 509 | bool DeclContext::isDependentContext() const { |
| 510 | if (isFileContext()) |
| 511 | return false; |
| 512 | |
Douglas Gregor | c8ab256 | 2009-05-31 09:31:02 +0000 | [diff] [blame] | 513 | if (isa<ClassTemplatePartialSpecializationDecl>(this)) |
| 514 | return true; |
| 515 | |
Douglas Gregor | bc22163 | 2009-05-28 16:34:51 +0000 | [diff] [blame] | 516 | if (const CXXRecordDecl *Record = dyn_cast<CXXRecordDecl>(this)) |
| 517 | if (Record->getDescribedClassTemplate()) |
| 518 | return true; |
| 519 | |
John McCall | 0c01d18 | 2010-03-24 05:22:00 +0000 | [diff] [blame] | 520 | if (const FunctionDecl *Function = dyn_cast<FunctionDecl>(this)) { |
Douglas Gregor | bc22163 | 2009-05-28 16:34:51 +0000 | [diff] [blame] | 521 | if (Function->getDescribedFunctionTemplate()) |
| 522 | return true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 523 | |
John McCall | 0c01d18 | 2010-03-24 05:22:00 +0000 | [diff] [blame] | 524 | // Friend function declarations are dependent if their *lexical* |
| 525 | // context is dependent. |
| 526 | if (cast<Decl>(this)->getFriendObjectKind()) |
| 527 | return getLexicalParent()->isDependentContext(); |
| 528 | } |
| 529 | |
Douglas Gregor | bc22163 | 2009-05-28 16:34:51 +0000 | [diff] [blame] | 530 | return getParent() && getParent()->isDependentContext(); |
| 531 | } |
| 532 | |
Douglas Gregor | 074149e | 2009-01-05 19:45:36 +0000 | [diff] [blame] | 533 | bool DeclContext::isTransparentContext() const { |
| 534 | if (DeclKind == Decl::Enum) |
| 535 | return true; // FIXME: Check for C++0x scoped enums |
| 536 | else if (DeclKind == Decl::LinkageSpec) |
| 537 | return true; |
Douglas Gregor | 6510079 | 2009-02-26 00:02:51 +0000 | [diff] [blame] | 538 | else if (DeclKind >= Decl::RecordFirst && DeclKind <= Decl::RecordLast) |
Douglas Gregor | bcbffc4 | 2009-01-07 00:43:41 +0000 | [diff] [blame] | 539 | return cast<RecordDecl>(this)->isAnonymousStructOrUnion(); |
Douglas Gregor | 074149e | 2009-01-05 19:45:36 +0000 | [diff] [blame] | 540 | else if (DeclKind == Decl::Namespace) |
| 541 | return false; // FIXME: Check for C++0x inline namespaces |
| 542 | |
| 543 | return false; |
| 544 | } |
| 545 | |
Douglas Gregor | 6dd38da | 2009-08-27 06:03:53 +0000 | [diff] [blame] | 546 | bool DeclContext::Encloses(DeclContext *DC) { |
| 547 | if (getPrimaryContext() != this) |
| 548 | return getPrimaryContext()->Encloses(DC); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 549 | |
Douglas Gregor | 6dd38da | 2009-08-27 06:03:53 +0000 | [diff] [blame] | 550 | for (; DC; DC = DC->getParent()) |
| 551 | if (DC->getPrimaryContext() == this) |
| 552 | return true; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 553 | return false; |
Douglas Gregor | 6dd38da | 2009-08-27 06:03:53 +0000 | [diff] [blame] | 554 | } |
| 555 | |
Steve Naroff | 0701bbb | 2009-01-08 17:28:14 +0000 | [diff] [blame] | 556 | DeclContext *DeclContext::getPrimaryContext() { |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 557 | switch (DeclKind) { |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 558 | case Decl::TranslationUnit: |
Douglas Gregor | 074149e | 2009-01-05 19:45:36 +0000 | [diff] [blame] | 559 | case Decl::LinkageSpec: |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 560 | case Decl::Block: |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 561 | // There is only one DeclContext for these entities. |
| 562 | return this; |
| 563 | |
| 564 | case Decl::Namespace: |
| 565 | // The original namespace is our primary context. |
| 566 | return static_cast<NamespaceDecl*>(this)->getOriginalNamespace(); |
| 567 | |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 568 | case Decl::ObjCMethod: |
| 569 | return this; |
| 570 | |
| 571 | case Decl::ObjCInterface: |
Steve Naroff | 0701bbb | 2009-01-08 17:28:14 +0000 | [diff] [blame] | 572 | case Decl::ObjCProtocol: |
| 573 | case Decl::ObjCCategory: |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 574 | // FIXME: Can Objective-C interfaces be forward-declared? |
| 575 | return this; |
| 576 | |
Steve Naroff | 0701bbb | 2009-01-08 17:28:14 +0000 | [diff] [blame] | 577 | case Decl::ObjCImplementation: |
| 578 | case Decl::ObjCCategoryImpl: |
| 579 | return this; |
| 580 | |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 581 | default: |
Douglas Gregor | cc63668 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 582 | if (DeclKind >= Decl::TagFirst && DeclKind <= Decl::TagLast) { |
| 583 | // If this is a tag type that has a definition or is currently |
| 584 | // being defined, that definition is our primary context. |
John McCall | 3cb0ebd | 2010-03-10 03:28:59 +0000 | [diff] [blame] | 585 | TagDecl *Tag = cast<TagDecl>(this); |
| 586 | assert(isa<TagType>(Tag->TypeForDecl) || |
| 587 | isa<InjectedClassNameType>(Tag->TypeForDecl)); |
| 588 | |
| 589 | if (TagDecl *Def = Tag->getDefinition()) |
| 590 | return Def; |
| 591 | |
| 592 | if (!isa<InjectedClassNameType>(Tag->TypeForDecl)) { |
| 593 | const TagType *TagTy = cast<TagType>(Tag->TypeForDecl); |
| 594 | if (TagTy->isBeingDefined()) |
| 595 | // FIXME: is it necessarily being defined in the decl |
| 596 | // that owns the type? |
| 597 | return TagTy->getDecl(); |
| 598 | } |
| 599 | |
| 600 | return Tag; |
Douglas Gregor | cc63668 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 601 | } |
| 602 | |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 603 | assert(DeclKind >= Decl::FunctionFirst && DeclKind <= Decl::FunctionLast && |
| 604 | "Unknown DeclContext kind"); |
| 605 | return this; |
| 606 | } |
| 607 | } |
| 608 | |
| 609 | DeclContext *DeclContext::getNextContext() { |
| 610 | switch (DeclKind) { |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 611 | case Decl::Namespace: |
| 612 | // Return the next namespace |
| 613 | return static_cast<NamespaceDecl*>(this)->getNextNamespace(); |
| 614 | |
| 615 | default: |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 616 | return 0; |
| 617 | } |
| 618 | } |
| 619 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 620 | /// \brief Load the declarations within this lexical storage from an |
| 621 | /// external source. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 622 | void |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 623 | DeclContext::LoadLexicalDeclsFromExternalStorage() const { |
| 624 | ExternalASTSource *Source = getParentASTContext().getExternalSource(); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 625 | assert(hasExternalLexicalStorage() && Source && "No external storage?"); |
| 626 | |
Eli Friedman | b0156ea | 2009-04-27 23:43:36 +0000 | [diff] [blame] | 627 | llvm::SmallVector<uint32_t, 64> Decls; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 628 | if (Source->ReadDeclsLexicallyInContext(const_cast<DeclContext *>(this), |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 629 | Decls)) |
| 630 | return; |
| 631 | |
| 632 | // There is no longer any lexical storage in this context |
| 633 | ExternalLexicalStorage = false; |
| 634 | |
| 635 | if (Decls.empty()) |
| 636 | return; |
| 637 | |
| 638 | // Resolve all of the declaration IDs into declarations, building up |
| 639 | // a chain of declarations via the Decl::NextDeclInContext field. |
| 640 | Decl *FirstNewDecl = 0; |
| 641 | Decl *PrevDecl = 0; |
| 642 | for (unsigned I = 0, N = Decls.size(); I != N; ++I) { |
| 643 | Decl *D = Source->GetDecl(Decls[I]); |
| 644 | if (PrevDecl) |
| 645 | PrevDecl->NextDeclInContext = D; |
| 646 | else |
| 647 | FirstNewDecl = D; |
| 648 | |
| 649 | PrevDecl = D; |
| 650 | } |
| 651 | |
| 652 | // Splice the newly-read declarations into the beginning of the list |
| 653 | // of declarations. |
| 654 | PrevDecl->NextDeclInContext = FirstDecl; |
| 655 | FirstDecl = FirstNewDecl; |
| 656 | if (!LastDecl) |
| 657 | LastDecl = PrevDecl; |
| 658 | } |
| 659 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 660 | void |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 661 | DeclContext::LoadVisibleDeclsFromExternalStorage() const { |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 662 | DeclContext *This = const_cast<DeclContext *>(this); |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 663 | ExternalASTSource *Source = getParentASTContext().getExternalSource(); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 664 | assert(hasExternalVisibleStorage() && Source && "No external storage?"); |
| 665 | |
| 666 | llvm::SmallVector<VisibleDeclaration, 64> Decls; |
| 667 | if (Source->ReadDeclsVisibleInContext(This, Decls)) |
| 668 | return; |
| 669 | |
| 670 | // There is no longer any visible storage in this context |
| 671 | ExternalVisibleStorage = false; |
| 672 | |
| 673 | // Load the declaration IDs for all of the names visible in this |
| 674 | // context. |
| 675 | assert(!LookupPtr && "Have a lookup map before de-serialization?"); |
John McCall | 0c01d18 | 2010-03-24 05:22:00 +0000 | [diff] [blame] | 676 | StoredDeclsMap *Map = CreateStoredDeclsMap(getParentASTContext()); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 677 | for (unsigned I = 0, N = Decls.size(); I != N; ++I) { |
| 678 | (*Map)[Decls[I].Name].setFromDeclIDs(Decls[I].Declarations); |
| 679 | } |
| 680 | } |
| 681 | |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 682 | DeclContext::decl_iterator DeclContext::decls_begin() const { |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 683 | if (hasExternalLexicalStorage()) |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 684 | LoadLexicalDeclsFromExternalStorage(); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 685 | |
| 686 | // FIXME: Check whether we need to load some declarations from |
| 687 | // external storage. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 688 | return decl_iterator(FirstDecl); |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 689 | } |
| 690 | |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 691 | DeclContext::decl_iterator DeclContext::decls_end() const { |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 692 | if (hasExternalLexicalStorage()) |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 693 | LoadLexicalDeclsFromExternalStorage(); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 694 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 695 | return decl_iterator(); |
Douglas Gregor | 6ab3524 | 2009-04-09 21:40:53 +0000 | [diff] [blame] | 696 | } |
| 697 | |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 698 | bool DeclContext::decls_empty() const { |
Douglas Gregor | 8038d51 | 2009-04-10 17:25:41 +0000 | [diff] [blame] | 699 | if (hasExternalLexicalStorage()) |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 700 | LoadLexicalDeclsFromExternalStorage(); |
Douglas Gregor | 8038d51 | 2009-04-10 17:25:41 +0000 | [diff] [blame] | 701 | |
| 702 | return !FirstDecl; |
| 703 | } |
| 704 | |
John McCall | 9f54ad4 | 2009-12-10 09:41:52 +0000 | [diff] [blame] | 705 | void DeclContext::removeDecl(Decl *D) { |
| 706 | assert(D->getLexicalDeclContext() == this && |
| 707 | "decl being removed from non-lexical context"); |
| 708 | assert((D->NextDeclInContext || D == LastDecl) && |
| 709 | "decl is not in decls list"); |
| 710 | |
| 711 | // Remove D from the decl chain. This is O(n) but hopefully rare. |
| 712 | if (D == FirstDecl) { |
| 713 | if (D == LastDecl) |
| 714 | FirstDecl = LastDecl = 0; |
| 715 | else |
| 716 | FirstDecl = D->NextDeclInContext; |
| 717 | } else { |
| 718 | for (Decl *I = FirstDecl; true; I = I->NextDeclInContext) { |
| 719 | assert(I && "decl not found in linked list"); |
| 720 | if (I->NextDeclInContext == D) { |
| 721 | I->NextDeclInContext = D->NextDeclInContext; |
| 722 | if (D == LastDecl) LastDecl = I; |
| 723 | break; |
| 724 | } |
| 725 | } |
| 726 | } |
| 727 | |
| 728 | // Mark that D is no longer in the decl chain. |
| 729 | D->NextDeclInContext = 0; |
| 730 | |
| 731 | // Remove D from the lookup table if necessary. |
| 732 | if (isa<NamedDecl>(D)) { |
| 733 | NamedDecl *ND = cast<NamedDecl>(D); |
| 734 | |
John McCall | 0c01d18 | 2010-03-24 05:22:00 +0000 | [diff] [blame] | 735 | StoredDeclsMap *Map = getPrimaryContext()->LookupPtr; |
| 736 | if (!Map) return; |
John McCall | 9f54ad4 | 2009-12-10 09:41:52 +0000 | [diff] [blame] | 737 | |
John McCall | 9f54ad4 | 2009-12-10 09:41:52 +0000 | [diff] [blame] | 738 | StoredDeclsMap::iterator Pos = Map->find(ND->getDeclName()); |
| 739 | assert(Pos != Map->end() && "no lookup entry for decl"); |
| 740 | Pos->second.remove(ND); |
| 741 | } |
| 742 | } |
| 743 | |
John McCall | 3f9a8a6 | 2009-08-11 06:59:38 +0000 | [diff] [blame] | 744 | void DeclContext::addHiddenDecl(Decl *D) { |
Chris Lattner | 7f0be13 | 2009-02-20 00:56:18 +0000 | [diff] [blame] | 745 | assert(D->getLexicalDeclContext() == this && |
| 746 | "Decl inserted into wrong lexical context"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 747 | assert(!D->getNextDeclInContext() && D != LastDecl && |
Douglas Gregor | 6037fcb | 2009-01-09 19:42:16 +0000 | [diff] [blame] | 748 | "Decl already inserted into a DeclContext"); |
| 749 | |
| 750 | if (FirstDecl) { |
Chris Lattner | 244a67d | 2009-03-28 06:04:26 +0000 | [diff] [blame] | 751 | LastDecl->NextDeclInContext = D; |
Douglas Gregor | 6037fcb | 2009-01-09 19:42:16 +0000 | [diff] [blame] | 752 | LastDecl = D; |
| 753 | } else { |
| 754 | FirstDecl = LastDecl = D; |
| 755 | } |
John McCall | 3f9a8a6 | 2009-08-11 06:59:38 +0000 | [diff] [blame] | 756 | } |
| 757 | |
| 758 | void DeclContext::addDecl(Decl *D) { |
| 759 | addHiddenDecl(D); |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 760 | |
| 761 | if (NamedDecl *ND = dyn_cast<NamedDecl>(D)) |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 762 | ND->getDeclContext()->makeDeclVisibleInContext(ND); |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 763 | } |
| 764 | |
Douglas Gregor | 074149e | 2009-01-05 19:45:36 +0000 | [diff] [blame] | 765 | /// buildLookup - Build the lookup data structure with all of the |
| 766 | /// declarations in DCtx (and any other contexts linked to it or |
| 767 | /// transparent contexts nested within it). |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 768 | void DeclContext::buildLookup(DeclContext *DCtx) { |
Douglas Gregor | 074149e | 2009-01-05 19:45:36 +0000 | [diff] [blame] | 769 | for (; DCtx; DCtx = DCtx->getNextContext()) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 770 | for (decl_iterator D = DCtx->decls_begin(), |
| 771 | DEnd = DCtx->decls_end(); |
Douglas Gregor | 4f3b8f8 | 2009-01-06 07:17:58 +0000 | [diff] [blame] | 772 | D != DEnd; ++D) { |
John McCall | 3f9a8a6 | 2009-08-11 06:59:38 +0000 | [diff] [blame] | 773 | // Insert this declaration into the lookup structure, but only |
| 774 | // if it's semantically in its decl context. During non-lazy |
| 775 | // lookup building, this is implicitly enforced by addDecl. |
Douglas Gregor | 4afa39d | 2009-01-20 01:17:11 +0000 | [diff] [blame] | 776 | if (NamedDecl *ND = dyn_cast<NamedDecl>(*D)) |
John McCall | 3f9a8a6 | 2009-08-11 06:59:38 +0000 | [diff] [blame] | 777 | if (D->getDeclContext() == DCtx) |
| 778 | makeDeclVisibleInContextImpl(ND); |
Douglas Gregor | 074149e | 2009-01-05 19:45:36 +0000 | [diff] [blame] | 779 | |
Ted Kremenek | c32b1d8 | 2009-11-17 22:58:30 +0000 | [diff] [blame] | 780 | // Insert any forward-declared Objective-C interfaces into the lookup |
| 781 | // data structure. |
| 782 | if (ObjCClassDecl *Class = dyn_cast<ObjCClassDecl>(*D)) |
| 783 | for (ObjCClassDecl::iterator I = Class->begin(), IEnd = Class->end(); |
| 784 | I != IEnd; ++I) |
Ted Kremenek | 321c22f | 2009-11-18 00:28:11 +0000 | [diff] [blame] | 785 | makeDeclVisibleInContextImpl(I->getInterface()); |
Ted Kremenek | c32b1d8 | 2009-11-17 22:58:30 +0000 | [diff] [blame] | 786 | |
Douglas Gregor | 074149e | 2009-01-05 19:45:36 +0000 | [diff] [blame] | 787 | // If this declaration is itself a transparent declaration context, |
| 788 | // add its members (recursively). |
| 789 | if (DeclContext *InnerCtx = dyn_cast<DeclContext>(*D)) |
| 790 | if (InnerCtx->isTransparentContext()) |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 791 | buildLookup(InnerCtx->getPrimaryContext()); |
Douglas Gregor | 074149e | 2009-01-05 19:45:36 +0000 | [diff] [blame] | 792 | } |
| 793 | } |
| 794 | } |
| 795 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 796 | DeclContext::lookup_result |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 797 | DeclContext::lookup(DeclarationName Name) { |
Steve Naroff | 0701bbb | 2009-01-08 17:28:14 +0000 | [diff] [blame] | 798 | DeclContext *PrimaryContext = getPrimaryContext(); |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 799 | if (PrimaryContext != this) |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 800 | return PrimaryContext->lookup(Name); |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 801 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 802 | if (hasExternalVisibleStorage()) |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 803 | LoadVisibleDeclsFromExternalStorage(); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 804 | |
Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 805 | /// If there is no lookup data structure, build one now by walking |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 806 | /// all of the linked DeclContexts (in declaration order!) and |
| 807 | /// inserting their values. |
Douglas Gregor | c36c540 | 2009-04-09 17:29:08 +0000 | [diff] [blame] | 808 | if (!LookupPtr) { |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 809 | buildLookup(this); |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 810 | |
Douglas Gregor | c36c540 | 2009-04-09 17:29:08 +0000 | [diff] [blame] | 811 | if (!LookupPtr) |
Chris Lattner | 9194250 | 2009-02-20 00:55:03 +0000 | [diff] [blame] | 812 | return lookup_result(0, 0); |
Douglas Gregor | c36c540 | 2009-04-09 17:29:08 +0000 | [diff] [blame] | 813 | } |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 814 | |
John McCall | 0c01d18 | 2010-03-24 05:22:00 +0000 | [diff] [blame] | 815 | StoredDeclsMap::iterator Pos = LookupPtr->find(Name); |
| 816 | if (Pos == LookupPtr->end()) |
Douglas Gregor | c36c540 | 2009-04-09 17:29:08 +0000 | [diff] [blame] | 817 | return lookup_result(0, 0); |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 818 | return Pos->second.getLookupResult(getParentASTContext()); |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 819 | } |
| 820 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 821 | DeclContext::lookup_const_result |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 822 | DeclContext::lookup(DeclarationName Name) const { |
| 823 | return const_cast<DeclContext*>(this)->lookup(Name); |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 824 | } |
| 825 | |
Chris Lattner | 0cf2b19 | 2009-03-27 19:19:59 +0000 | [diff] [blame] | 826 | DeclContext *DeclContext::getLookupContext() { |
| 827 | DeclContext *Ctx = this; |
Douglas Gregor | 72de667 | 2009-01-08 20:45:30 +0000 | [diff] [blame] | 828 | // Skip through transparent contexts. |
Douglas Gregor | ce35607 | 2009-01-06 23:51:29 +0000 | [diff] [blame] | 829 | while (Ctx->isTransparentContext()) |
| 830 | Ctx = Ctx->getParent(); |
| 831 | return Ctx; |
| 832 | } |
| 833 | |
Douglas Gregor | 88b7094 | 2009-02-25 22:02:03 +0000 | [diff] [blame] | 834 | DeclContext *DeclContext::getEnclosingNamespaceContext() { |
| 835 | DeclContext *Ctx = this; |
| 836 | // Skip through non-namespace, non-translation-unit contexts. |
| 837 | while (!Ctx->isFileContext() || Ctx->isTransparentContext()) |
| 838 | Ctx = Ctx->getParent(); |
| 839 | return Ctx->getPrimaryContext(); |
| 840 | } |
| 841 | |
John McCall | ab88d97 | 2009-08-31 22:39:49 +0000 | [diff] [blame] | 842 | void DeclContext::makeDeclVisibleInContext(NamedDecl *D, bool Recoverable) { |
Douglas Gregor | cc63668 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 843 | // FIXME: This feels like a hack. Should DeclarationName support |
| 844 | // template-ids, or is there a better way to keep specializations |
| 845 | // from being visible? |
| 846 | if (isa<ClassTemplateSpecializationDecl>(D)) |
| 847 | return; |
Eli Friedman | 6bc2013 | 2009-12-08 05:40:03 +0000 | [diff] [blame] | 848 | if (FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) |
| 849 | if (FD->isFunctionTemplateSpecialization()) |
| 850 | return; |
Douglas Gregor | cc63668 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 851 | |
Steve Naroff | 0701bbb | 2009-01-08 17:28:14 +0000 | [diff] [blame] | 852 | DeclContext *PrimaryContext = getPrimaryContext(); |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 853 | if (PrimaryContext != this) { |
John McCall | ab88d97 | 2009-08-31 22:39:49 +0000 | [diff] [blame] | 854 | PrimaryContext->makeDeclVisibleInContext(D, Recoverable); |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 855 | return; |
| 856 | } |
| 857 | |
| 858 | // If we already have a lookup data structure, perform the insertion |
| 859 | // into it. Otherwise, be lazy and don't build that structure until |
| 860 | // someone asks for it. |
John McCall | ab88d97 | 2009-08-31 22:39:49 +0000 | [diff] [blame] | 861 | if (LookupPtr || !Recoverable) |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 862 | makeDeclVisibleInContextImpl(D); |
Douglas Gregor | 074149e | 2009-01-05 19:45:36 +0000 | [diff] [blame] | 863 | |
Douglas Gregor | 074149e | 2009-01-05 19:45:36 +0000 | [diff] [blame] | 864 | // If we are a transparent context, insert into our parent context, |
| 865 | // too. This operation is recursive. |
| 866 | if (isTransparentContext()) |
John McCall | ab88d97 | 2009-08-31 22:39:49 +0000 | [diff] [blame] | 867 | getParent()->makeDeclVisibleInContext(D, Recoverable); |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 868 | } |
| 869 | |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 870 | void DeclContext::makeDeclVisibleInContextImpl(NamedDecl *D) { |
Douglas Gregor | 074149e | 2009-01-05 19:45:36 +0000 | [diff] [blame] | 871 | // Skip unnamed declarations. |
| 872 | if (!D->getDeclName()) |
| 873 | return; |
| 874 | |
Douglas Gregor | cc63668 | 2009-02-17 23:15:12 +0000 | [diff] [blame] | 875 | // FIXME: This feels like a hack. Should DeclarationName support |
| 876 | // template-ids, or is there a better way to keep specializations |
| 877 | // from being visible? |
| 878 | if (isa<ClassTemplateSpecializationDecl>(D)) |
| 879 | return; |
| 880 | |
Ted Kremenek | 3478eb6 | 2010-02-11 07:12:28 +0000 | [diff] [blame] | 881 | ASTContext *C = 0; |
| 882 | if (!LookupPtr) { |
| 883 | C = &getParentASTContext(); |
John McCall | 0c01d18 | 2010-03-24 05:22:00 +0000 | [diff] [blame] | 884 | CreateStoredDeclsMap(*C); |
Ted Kremenek | 3478eb6 | 2010-02-11 07:12:28 +0000 | [diff] [blame] | 885 | } |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 886 | |
| 887 | // Insert this declaration into the map. |
John McCall | 0c01d18 | 2010-03-24 05:22:00 +0000 | [diff] [blame] | 888 | StoredDeclsList &DeclNameEntries = (*LookupPtr)[D->getDeclName()]; |
Chris Lattner | 67762a3 | 2009-02-20 01:44:05 +0000 | [diff] [blame] | 889 | if (DeclNameEntries.isNull()) { |
| 890 | DeclNameEntries.setOnlyValue(D); |
Chris Lattner | bd6c800 | 2009-02-19 07:00:44 +0000 | [diff] [blame] | 891 | return; |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 892 | } |
Chris Lattner | 9194250 | 2009-02-20 00:55:03 +0000 | [diff] [blame] | 893 | |
Chris Lattner | bdc3d00 | 2009-02-20 01:10:07 +0000 | [diff] [blame] | 894 | // If it is possible that this is a redeclaration, check to see if there is |
| 895 | // already a decl for which declarationReplaces returns true. If there is |
| 896 | // one, just replace it and return. |
Ted Kremenek | 3478eb6 | 2010-02-11 07:12:28 +0000 | [diff] [blame] | 897 | if (!C) |
| 898 | C = &getParentASTContext(); |
| 899 | |
| 900 | if (DeclNameEntries.HandleRedeclaration(*C, D)) |
Chris Lattner | 67762a3 | 2009-02-20 01:44:05 +0000 | [diff] [blame] | 901 | return; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 902 | |
Chris Lattner | bd6c800 | 2009-02-19 07:00:44 +0000 | [diff] [blame] | 903 | // Put this declaration into the appropriate slot. |
Chris Lattner | 67762a3 | 2009-02-20 01:44:05 +0000 | [diff] [blame] | 904 | DeclNameEntries.AddSubsequentDecl(D); |
Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 905 | } |
Douglas Gregor | 2a3009a | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 906 | |
| 907 | /// Returns iterator range [First, Last) of UsingDirectiveDecls stored within |
| 908 | /// this context. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 909 | DeclContext::udir_iterator_range |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 910 | DeclContext::getUsingDirectives() const { |
| 911 | lookup_const_result Result = lookup(UsingDirectiveDecl::getName()); |
Douglas Gregor | 2a3009a | 2009-02-03 19:21:40 +0000 | [diff] [blame] | 912 | return udir_iterator_range(reinterpret_cast<udir_iterator>(Result.first), |
| 913 | reinterpret_cast<udir_iterator>(Result.second)); |
| 914 | } |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 915 | |
| 916 | void StoredDeclsList::materializeDecls(ASTContext &Context) { |
| 917 | if (isNull()) |
| 918 | return; |
| 919 | |
| 920 | switch ((DataKind)(Data & 0x03)) { |
| 921 | case DK_Decl: |
| 922 | case DK_Decl_Vector: |
| 923 | break; |
| 924 | |
| 925 | case DK_DeclID: { |
| 926 | // Resolve this declaration ID to an actual declaration by |
| 927 | // querying the external AST source. |
| 928 | unsigned DeclID = Data >> 2; |
| 929 | |
| 930 | ExternalASTSource *Source = Context.getExternalSource(); |
| 931 | assert(Source && "No external AST source available!"); |
| 932 | |
| 933 | Data = reinterpret_cast<uintptr_t>(Source->GetDecl(DeclID)); |
| 934 | break; |
| 935 | } |
| 936 | |
| 937 | case DK_ID_Vector: { |
| 938 | // We have a vector of declaration IDs. Resolve all of them to |
| 939 | // actual declarations. |
| 940 | VectorTy &Vector = *getAsVector(); |
| 941 | ExternalASTSource *Source = Context.getExternalSource(); |
| 942 | assert(Source && "No external AST source available!"); |
| 943 | |
| 944 | for (unsigned I = 0, N = Vector.size(); I != N; ++I) |
| 945 | Vector[I] = reinterpret_cast<uintptr_t>(Source->GetDecl(Vector[I])); |
| 946 | |
| 947 | Data = (Data & ~0x03) | DK_Decl_Vector; |
| 948 | break; |
| 949 | } |
| 950 | } |
| 951 | } |
Ted Kremenek | 3478eb6 | 2010-02-11 07:12:28 +0000 | [diff] [blame] | 952 | |
| 953 | //===----------------------------------------------------------------------===// |
| 954 | // Creation and Destruction of StoredDeclsMaps. // |
| 955 | //===----------------------------------------------------------------------===// |
| 956 | |
John McCall | 0c01d18 | 2010-03-24 05:22:00 +0000 | [diff] [blame] | 957 | StoredDeclsMap *DeclContext::CreateStoredDeclsMap(ASTContext &C) const { |
| 958 | assert(!LookupPtr && "context already has a decls map"); |
| 959 | assert(getPrimaryContext() == this && |
| 960 | "creating decls map on non-primary context"); |
| 961 | |
| 962 | StoredDeclsMap *M; |
| 963 | bool Dependent = isDependentContext(); |
| 964 | if (Dependent) |
| 965 | M = new DependentStoredDeclsMap(); |
| 966 | else |
| 967 | M = new StoredDeclsMap(); |
| 968 | M->Previous = C.LastSDM; |
| 969 | C.LastSDM = llvm::PointerIntPair<StoredDeclsMap*,1>(M, Dependent); |
| 970 | LookupPtr = M; |
Ted Kremenek | 3478eb6 | 2010-02-11 07:12:28 +0000 | [diff] [blame] | 971 | return M; |
| 972 | } |
| 973 | |
| 974 | void ASTContext::ReleaseDeclContextMaps() { |
John McCall | 0c01d18 | 2010-03-24 05:22:00 +0000 | [diff] [blame] | 975 | // It's okay to delete DependentStoredDeclsMaps via a StoredDeclsMap |
| 976 | // pointer because the subclass doesn't add anything that needs to |
| 977 | // be deleted. |
| 978 | |
| 979 | StoredDeclsMap::DestroyAll(LastSDM.getPointer(), LastSDM.getInt()); |
| 980 | } |
| 981 | |
| 982 | void StoredDeclsMap::DestroyAll(StoredDeclsMap *Map, bool Dependent) { |
| 983 | while (Map) { |
| 984 | // Advance the iteration before we invalidate memory. |
| 985 | llvm::PointerIntPair<StoredDeclsMap*,1> Next = Map->Previous; |
| 986 | |
| 987 | if (Dependent) |
| 988 | delete static_cast<DependentStoredDeclsMap*>(Map); |
| 989 | else |
| 990 | delete Map; |
| 991 | |
| 992 | Map = Next.getPointer(); |
| 993 | Dependent = Next.getInt(); |
| 994 | } |
| 995 | } |
| 996 | |
John McCall | 0c01d18 | 2010-03-24 05:22:00 +0000 | [diff] [blame] | 997 | DependentDiagnostic *DependentDiagnostic::Create(ASTContext &C, |
| 998 | DeclContext *Parent, |
| 999 | const PartialDiagnostic &PDiag) { |
| 1000 | assert(Parent->isDependentContext() |
| 1001 | && "cannot iterate dependent diagnostics of non-dependent context"); |
| 1002 | Parent = Parent->getPrimaryContext(); |
| 1003 | if (!Parent->LookupPtr) |
| 1004 | Parent->CreateStoredDeclsMap(C); |
| 1005 | |
| 1006 | DependentStoredDeclsMap *Map |
| 1007 | = static_cast<DependentStoredDeclsMap*>(Parent->LookupPtr); |
| 1008 | |
Douglas Gregor | b836518 | 2010-03-29 23:56:53 +0000 | [diff] [blame] | 1009 | // Allocate the copy of the PartialDiagnostic via the ASTContext's |
Douglas Gregor | fe6b2d4 | 2010-03-29 23:34:08 +0000 | [diff] [blame] | 1010 | // BumpPtrAllocator, rather than the ASTContext itself. |
Douglas Gregor | b836518 | 2010-03-29 23:56:53 +0000 | [diff] [blame] | 1011 | PartialDiagnostic::Storage *DiagStorage = 0; |
| 1012 | if (PDiag.hasStorage()) |
| 1013 | DiagStorage = new (C) PartialDiagnostic::Storage; |
| 1014 | |
| 1015 | DependentDiagnostic *DD = new (C) DependentDiagnostic(PDiag, DiagStorage); |
John McCall | 0c01d18 | 2010-03-24 05:22:00 +0000 | [diff] [blame] | 1016 | |
| 1017 | // TODO: Maybe we shouldn't reverse the order during insertion. |
| 1018 | DD->NextDiagnostic = Map->FirstDiagnostic; |
| 1019 | Map->FirstDiagnostic = DD; |
| 1020 | |
| 1021 | return DD; |
Ted Kremenek | 3478eb6 | 2010-02-11 07:12:28 +0000 | [diff] [blame] | 1022 | } |