| 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" | 
| Daniel Dunbar | e91593e | 2008-08-11 04:54:23 +0000 | [diff] [blame] | 15 | #include "clang/AST/DeclObjC.h" | 
| Argyrios Kyrtzidis | d3bb44f | 2008-06-09 21:05:31 +0000 | [diff] [blame] | 16 | #include "clang/AST/DeclCXX.h" | 
| Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 17 | #include "clang/AST/ASTContext.h" | 
| Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 18 | #include "clang/AST/Type.h" | 
| Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 19 | #include "llvm/ADT/DenseMap.h" | 
| Douglas Gregor | 6ed40e3 | 2008-12-23 21:05:05 +0000 | [diff] [blame] | 20 | #include <algorithm> | 
|  | 21 | #include <functional> | 
| Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 22 | #include <vector> | 
| Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 23 | using namespace clang; | 
|  | 24 |  | 
|  | 25 | //===----------------------------------------------------------------------===// | 
|  | 26 | //  Statistics | 
|  | 27 | //===----------------------------------------------------------------------===// | 
|  | 28 |  | 
|  | 29 | // temporary statistics gathering | 
|  | 30 | static unsigned nFuncs = 0; | 
|  | 31 | static unsigned nVars = 0; | 
|  | 32 | static unsigned nParmVars = 0; | 
| Fariborz Jahanian | 4f5420d | 2008-12-20 21:06:28 +0000 | [diff] [blame] | 33 | static unsigned nOriginalParmVars = 0; | 
| Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 34 | static unsigned nSUC = 0; | 
| Argyrios Kyrtzidis | 55d71f9 | 2008-08-10 01:47:31 +0000 | [diff] [blame] | 35 | static unsigned nCXXSUC = 0; | 
| Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 36 | static unsigned nEnumConst = 0; | 
|  | 37 | static unsigned nEnumDecls = 0; | 
|  | 38 | static unsigned nNamespaces = 0; | 
| Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 39 | static unsigned nOverFuncs = 0; | 
| Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 40 | static unsigned nTypedef = 0; | 
|  | 41 | static unsigned nFieldDecls = 0; | 
|  | 42 | static unsigned nInterfaceDecls = 0; | 
|  | 43 | static unsigned nClassDecls = 0; | 
|  | 44 | static unsigned nMethodDecls = 0; | 
|  | 45 | static unsigned nProtocolDecls = 0; | 
|  | 46 | static unsigned nForwardProtocolDecls = 0; | 
|  | 47 | static unsigned nCategoryDecls = 0; | 
|  | 48 | static unsigned nIvarDecls = 0; | 
| Ted Kremenek | 01e6779 | 2008-08-20 03:26:33 +0000 | [diff] [blame] | 49 | static unsigned nAtDefsFieldDecls = 0; | 
| Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 50 | static unsigned nObjCImplementationDecls = 0; | 
|  | 51 | static unsigned nObjCCategoryImpl = 0; | 
|  | 52 | static unsigned nObjCCompatibleAlias = 0; | 
|  | 53 | static unsigned nObjCPropertyDecl = 0; | 
|  | 54 | static unsigned nObjCPropertyImplDecl = 0; | 
|  | 55 | static unsigned nLinkageSpecDecl = 0; | 
|  | 56 | static unsigned nFileScopeAsmDecl = 0; | 
| Steve Naroff | 56ee689 | 2008-10-08 17:01:13 +0000 | [diff] [blame] | 57 | static unsigned nBlockDecls = 0; | 
| Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 58 |  | 
|  | 59 | static bool StatSwitch = false; | 
|  | 60 |  | 
|  | 61 | // This keeps track of all decl attributes. Since so few decls have attrs, we | 
|  | 62 | // keep them in a hash map instead of wasting space in the Decl class. | 
|  | 63 | typedef llvm::DenseMap<const Decl*, Attr*> DeclAttrMapTy; | 
|  | 64 |  | 
|  | 65 | static DeclAttrMapTy *DeclAttrs = 0; | 
|  | 66 |  | 
|  | 67 | const char *Decl::getDeclKindName() const { | 
|  | 68 | switch (DeclKind) { | 
|  | 69 | default: assert(0 && "Unknown decl kind!"); | 
|  | 70 | case Namespace:           return "Namespace"; | 
| Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 71 | case OverloadedFunction:  return "OverloadedFunction"; | 
| Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 72 | case Typedef:             return "Typedef"; | 
|  | 73 | case Function:            return "Function"; | 
|  | 74 | case Var:                 return "Var"; | 
|  | 75 | case ParmVar:             return "ParmVar"; | 
| Fariborz Jahanian | 4f5420d | 2008-12-20 21:06:28 +0000 | [diff] [blame] | 76 | case OriginalParmVar:     return "OriginalParmVar"; | 
| Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 77 | case EnumConstant:        return "EnumConstant"; | 
|  | 78 | case ObjCIvar:            return "ObjCIvar"; | 
|  | 79 | case ObjCInterface:       return "ObjCInterface"; | 
| Steve Naroff | d40910b | 2008-12-01 20:33:01 +0000 | [diff] [blame] | 80 | case ObjCImplementation:  return "ObjCImplementation"; | 
| Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 81 | case ObjCClass:           return "ObjCClass"; | 
|  | 82 | case ObjCMethod:          return "ObjCMethod"; | 
|  | 83 | case ObjCProtocol:        return "ObjCProtocol"; | 
| Steve Naroff | d40910b | 2008-12-01 20:33:01 +0000 | [diff] [blame] | 84 | case ObjCProperty:        return "ObjCProperty"; | 
|  | 85 | case ObjCPropertyImpl:    return "ObjCPropertyImpl"; | 
| Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 86 | case ObjCForwardProtocol: return "ObjCForwardProtocol"; | 
| Argyrios Kyrtzidis | 35bc082 | 2008-10-15 00:42:39 +0000 | [diff] [blame] | 87 | case Record:              return "Record"; | 
|  | 88 | case CXXRecord:           return "CXXRecord"; | 
| Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 89 | case Enum:                return "Enum"; | 
| Steve Naroff | 56ee689 | 2008-10-08 17:01:13 +0000 | [diff] [blame] | 90 | case Block:               return "Block"; | 
| Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 91 | } | 
|  | 92 | } | 
|  | 93 |  | 
|  | 94 | bool Decl::CollectingStats(bool Enable) { | 
|  | 95 | if (Enable) | 
|  | 96 | StatSwitch = true; | 
|  | 97 | return StatSwitch; | 
|  | 98 | } | 
|  | 99 |  | 
|  | 100 | void Decl::PrintStats() { | 
|  | 101 | fprintf(stderr, "*** Decl Stats:\n"); | 
|  | 102 | fprintf(stderr, "  %d decls total.\n", | 
| Fariborz Jahanian | 4f5420d | 2008-12-20 21:06:28 +0000 | [diff] [blame] | 103 | int(nFuncs+nVars+nParmVars+nOriginalParmVars+nFieldDecls+nSUC+nCXXSUC+ | 
| Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 104 | nEnumDecls+nEnumConst+nTypedef+nInterfaceDecls+nClassDecls+ | 
|  | 105 | nMethodDecls+nProtocolDecls+nCategoryDecls+nIvarDecls+ | 
| Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 106 | nAtDefsFieldDecls+nNamespaces+nOverFuncs)); | 
| Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 107 | fprintf(stderr, "    %d namespace decls, %d each (%d bytes)\n", | 
|  | 108 | nNamespaces, (int)sizeof(NamespaceDecl), | 
|  | 109 | int(nNamespaces*sizeof(NamespaceDecl))); | 
| Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 110 | fprintf(stderr, "    %d overloaded function decls, %d each (%d bytes)\n", | 
|  | 111 | nOverFuncs, (int)sizeof(OverloadedFunctionDecl), | 
|  | 112 | int(nOverFuncs*sizeof(OverloadedFunctionDecl))); | 
| Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 113 | fprintf(stderr, "    %d function decls, %d each (%d bytes)\n", | 
|  | 114 | nFuncs, (int)sizeof(FunctionDecl), int(nFuncs*sizeof(FunctionDecl))); | 
|  | 115 | fprintf(stderr, "    %d variable decls, %d each (%d bytes)\n", | 
|  | 116 | nVars, (int)sizeof(VarDecl), | 
|  | 117 | int(nVars*sizeof(VarDecl))); | 
|  | 118 | fprintf(stderr, "    %d parameter variable decls, %d each (%d bytes)\n", | 
|  | 119 | nParmVars, (int)sizeof(ParmVarDecl), | 
|  | 120 | int(nParmVars*sizeof(ParmVarDecl))); | 
| Fariborz Jahanian | 4f5420d | 2008-12-20 21:06:28 +0000 | [diff] [blame] | 121 | fprintf(stderr, "    %d original parameter variable decls, %d each (%d bytes)\n", | 
|  | 122 | nOriginalParmVars, (int)sizeof(ParmVarWithOriginalTypeDecl), | 
|  | 123 | int(nOriginalParmVars*sizeof(ParmVarWithOriginalTypeDecl))); | 
| Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 124 | fprintf(stderr, "    %d field decls, %d each (%d bytes)\n", | 
|  | 125 | nFieldDecls, (int)sizeof(FieldDecl), | 
|  | 126 | int(nFieldDecls*sizeof(FieldDecl))); | 
| Ted Kremenek | 01e6779 | 2008-08-20 03:26:33 +0000 | [diff] [blame] | 127 | fprintf(stderr, "    %d @defs generated field decls, %d each (%d bytes)\n", | 
|  | 128 | nAtDefsFieldDecls, (int)sizeof(ObjCAtDefsFieldDecl), | 
|  | 129 | int(nAtDefsFieldDecls*sizeof(ObjCAtDefsFieldDecl))); | 
| Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 130 | fprintf(stderr, "    %d struct/union/class decls, %d each (%d bytes)\n", | 
|  | 131 | nSUC, (int)sizeof(RecordDecl), | 
|  | 132 | int(nSUC*sizeof(RecordDecl))); | 
| Argyrios Kyrtzidis | 55d71f9 | 2008-08-10 01:47:31 +0000 | [diff] [blame] | 133 | fprintf(stderr, "    %d C++ struct/union/class decls, %d each (%d bytes)\n", | 
|  | 134 | nCXXSUC, (int)sizeof(CXXRecordDecl), | 
|  | 135 | int(nCXXSUC*sizeof(CXXRecordDecl))); | 
| Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 136 | fprintf(stderr, "    %d enum decls, %d each (%d bytes)\n", | 
|  | 137 | nEnumDecls, (int)sizeof(EnumDecl), | 
|  | 138 | int(nEnumDecls*sizeof(EnumDecl))); | 
|  | 139 | fprintf(stderr, "    %d enum constant decls, %d each (%d bytes)\n", | 
|  | 140 | nEnumConst, (int)sizeof(EnumConstantDecl), | 
|  | 141 | int(nEnumConst*sizeof(EnumConstantDecl))); | 
|  | 142 | fprintf(stderr, "    %d typedef decls, %d each (%d bytes)\n", | 
|  | 143 | nTypedef, (int)sizeof(TypedefDecl),int(nTypedef*sizeof(TypedefDecl))); | 
|  | 144 | // Objective-C decls... | 
|  | 145 | fprintf(stderr, "    %d interface decls, %d each (%d bytes)\n", | 
|  | 146 | nInterfaceDecls, (int)sizeof(ObjCInterfaceDecl), | 
|  | 147 | int(nInterfaceDecls*sizeof(ObjCInterfaceDecl))); | 
|  | 148 | fprintf(stderr, "    %d instance variable decls, %d each (%d bytes)\n", | 
|  | 149 | nIvarDecls, (int)sizeof(ObjCIvarDecl), | 
|  | 150 | int(nIvarDecls*sizeof(ObjCIvarDecl))); | 
|  | 151 | fprintf(stderr, "    %d class decls, %d each (%d bytes)\n", | 
|  | 152 | nClassDecls, (int)sizeof(ObjCClassDecl), | 
|  | 153 | int(nClassDecls*sizeof(ObjCClassDecl))); | 
|  | 154 | fprintf(stderr, "    %d method decls, %d each (%d bytes)\n", | 
|  | 155 | nMethodDecls, (int)sizeof(ObjCMethodDecl), | 
|  | 156 | int(nMethodDecls*sizeof(ObjCMethodDecl))); | 
|  | 157 | fprintf(stderr, "    %d protocol decls, %d each (%d bytes)\n", | 
|  | 158 | nProtocolDecls, (int)sizeof(ObjCProtocolDecl), | 
|  | 159 | int(nProtocolDecls*sizeof(ObjCProtocolDecl))); | 
|  | 160 | fprintf(stderr, "    %d forward protocol decls, %d each (%d bytes)\n", | 
|  | 161 | nForwardProtocolDecls, (int)sizeof(ObjCForwardProtocolDecl), | 
|  | 162 | int(nForwardProtocolDecls*sizeof(ObjCForwardProtocolDecl))); | 
|  | 163 | fprintf(stderr, "    %d category decls, %d each (%d bytes)\n", | 
|  | 164 | nCategoryDecls, (int)sizeof(ObjCCategoryDecl), | 
|  | 165 | int(nCategoryDecls*sizeof(ObjCCategoryDecl))); | 
|  | 166 |  | 
|  | 167 | fprintf(stderr, "    %d class implementation decls, %d each (%d bytes)\n", | 
|  | 168 | nObjCImplementationDecls, (int)sizeof(ObjCImplementationDecl), | 
|  | 169 | int(nObjCImplementationDecls*sizeof(ObjCImplementationDecl))); | 
|  | 170 |  | 
|  | 171 | fprintf(stderr, "    %d class implementation decls, %d each (%d bytes)\n", | 
|  | 172 | nObjCCategoryImpl, (int)sizeof(ObjCCategoryImplDecl), | 
|  | 173 | int(nObjCCategoryImpl*sizeof(ObjCCategoryImplDecl))); | 
|  | 174 |  | 
|  | 175 | fprintf(stderr, "    %d compatibility alias decls, %d each (%d bytes)\n", | 
|  | 176 | nObjCCompatibleAlias, (int)sizeof(ObjCCompatibleAliasDecl), | 
|  | 177 | int(nObjCCompatibleAlias*sizeof(ObjCCompatibleAliasDecl))); | 
|  | 178 |  | 
|  | 179 | fprintf(stderr, "    %d property decls, %d each (%d bytes)\n", | 
|  | 180 | nObjCPropertyDecl, (int)sizeof(ObjCPropertyDecl), | 
|  | 181 | int(nObjCPropertyDecl*sizeof(ObjCPropertyDecl))); | 
|  | 182 |  | 
|  | 183 | fprintf(stderr, "    %d property implementation decls, %d each (%d bytes)\n", | 
|  | 184 | nObjCPropertyImplDecl, (int)sizeof(ObjCPropertyImplDecl), | 
|  | 185 | int(nObjCPropertyImplDecl*sizeof(ObjCPropertyImplDecl))); | 
|  | 186 |  | 
|  | 187 | fprintf(stderr, "Total bytes = %d\n", | 
|  | 188 | int(nFuncs*sizeof(FunctionDecl)+ | 
|  | 189 | nVars*sizeof(VarDecl)+nParmVars*sizeof(ParmVarDecl)+ | 
| Fariborz Jahanian | 4f5420d | 2008-12-20 21:06:28 +0000 | [diff] [blame] | 190 | nOriginalParmVars*sizeof(ParmVarWithOriginalTypeDecl)+ | 
| Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 191 | nFieldDecls*sizeof(FieldDecl)+nSUC*sizeof(RecordDecl)+ | 
| Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 192 | nCXXSUC*sizeof(CXXRecordDecl)+ | 
| Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 193 | nEnumDecls*sizeof(EnumDecl)+nEnumConst*sizeof(EnumConstantDecl)+ | 
|  | 194 | nTypedef*sizeof(TypedefDecl)+ | 
|  | 195 | nInterfaceDecls*sizeof(ObjCInterfaceDecl)+ | 
|  | 196 | nIvarDecls*sizeof(ObjCIvarDecl)+ | 
|  | 197 | nClassDecls*sizeof(ObjCClassDecl)+ | 
|  | 198 | nMethodDecls*sizeof(ObjCMethodDecl)+ | 
|  | 199 | nProtocolDecls*sizeof(ObjCProtocolDecl)+ | 
|  | 200 | nForwardProtocolDecls*sizeof(ObjCForwardProtocolDecl)+ | 
|  | 201 | nCategoryDecls*sizeof(ObjCCategoryDecl)+ | 
|  | 202 | nObjCImplementationDecls*sizeof(ObjCImplementationDecl)+ | 
|  | 203 | nObjCCategoryImpl*sizeof(ObjCCategoryImplDecl)+ | 
|  | 204 | nObjCCompatibleAlias*sizeof(ObjCCompatibleAliasDecl)+ | 
|  | 205 | nObjCPropertyDecl*sizeof(ObjCPropertyDecl)+ | 
|  | 206 | nObjCPropertyImplDecl*sizeof(ObjCPropertyImplDecl)+ | 
|  | 207 | nLinkageSpecDecl*sizeof(LinkageSpecDecl)+ | 
|  | 208 | nFileScopeAsmDecl*sizeof(FileScopeAsmDecl)+ | 
| Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 209 | nNamespaces*sizeof(NamespaceDecl)+ | 
|  | 210 | nOverFuncs*sizeof(OverloadedFunctionDecl))); | 
| Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 211 |  | 
|  | 212 | } | 
|  | 213 |  | 
|  | 214 | void Decl::addDeclKind(Kind k) { | 
|  | 215 | switch (k) { | 
|  | 216 | case Namespace:           nNamespaces++; break; | 
| Douglas Gregor | 8e9bebd | 2008-10-21 16:13:35 +0000 | [diff] [blame] | 217 | case OverloadedFunction:  nOverFuncs++; break; | 
| Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 218 | case Typedef:             nTypedef++; break; | 
|  | 219 | case Function:            nFuncs++; break; | 
|  | 220 | case Var:                 nVars++; break; | 
|  | 221 | case ParmVar:             nParmVars++; break; | 
| Fariborz Jahanian | 4f5420d | 2008-12-20 21:06:28 +0000 | [diff] [blame] | 222 | case OriginalParmVar:     nOriginalParmVars++; break; | 
| Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 223 | case EnumConstant:        nEnumConst++; break; | 
|  | 224 | case Field:               nFieldDecls++; break; | 
| Argyrios Kyrtzidis | 35bc082 | 2008-10-15 00:42:39 +0000 | [diff] [blame] | 225 | case Record:              nSUC++; break; | 
| Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 226 | case Enum:                nEnumDecls++; break; | 
|  | 227 | case ObjCInterface:       nInterfaceDecls++; break; | 
|  | 228 | case ObjCClass:           nClassDecls++; break; | 
|  | 229 | case ObjCMethod:          nMethodDecls++; break; | 
|  | 230 | case ObjCProtocol:        nProtocolDecls++; break; | 
|  | 231 | case ObjCForwardProtocol: nForwardProtocolDecls++; break; | 
|  | 232 | case ObjCCategory:        nCategoryDecls++; break; | 
|  | 233 | case ObjCIvar:            nIvarDecls++; break; | 
| Ted Kremenek | 01e6779 | 2008-08-20 03:26:33 +0000 | [diff] [blame] | 234 | case ObjCAtDefsField:     nAtDefsFieldDecls++; break; | 
| Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 235 | case ObjCImplementation:  nObjCImplementationDecls++; break; | 
|  | 236 | case ObjCCategoryImpl:    nObjCCategoryImpl++; break; | 
|  | 237 | case ObjCCompatibleAlias: nObjCCompatibleAlias++; break; | 
|  | 238 | case ObjCProperty:        nObjCPropertyDecl++; break; | 
|  | 239 | case ObjCPropertyImpl:    nObjCPropertyImplDecl++; break; | 
|  | 240 | case LinkageSpec:         nLinkageSpecDecl++; break; | 
|  | 241 | case FileScopeAsm:        nFileScopeAsmDecl++; break; | 
| Steve Naroff | 56ee689 | 2008-10-08 17:01:13 +0000 | [diff] [blame] | 242 | case Block:               nBlockDecls++; break; | 
| Chris Lattner | 4111024 | 2008-06-17 18:05:57 +0000 | [diff] [blame] | 243 | case ImplicitParam: | 
| Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 244 | case TranslationUnit:     break; | 
| Argyrios Kyrtzidis | d3bb44f | 2008-06-09 21:05:31 +0000 | [diff] [blame] | 245 |  | 
| Argyrios Kyrtzidis | 35bc082 | 2008-10-15 00:42:39 +0000 | [diff] [blame] | 246 | case CXXRecord:           nCXXSUC++; break; | 
| Argyrios Kyrtzidis | d3bb44f | 2008-06-09 21:05:31 +0000 | [diff] [blame] | 247 | // FIXME: Statistics for C++ decls. | 
| Douglas Gregor | 72c3f31 | 2008-12-05 18:15:24 +0000 | [diff] [blame] | 248 | case TemplateTypeParm: | 
|  | 249 | case NonTypeTemplateParm: | 
| Argyrios Kyrtzidis | d3bb44f | 2008-06-09 21:05:31 +0000 | [diff] [blame] | 250 | case CXXMethod: | 
| Douglas Gregor | b48fe38 | 2008-10-31 09:07:45 +0000 | [diff] [blame] | 251 | case CXXConstructor: | 
| Douglas Gregor | 42a552f | 2008-11-05 20:51:48 +0000 | [diff] [blame] | 252 | case CXXDestructor: | 
| Douglas Gregor | 2f1bc52 | 2008-11-07 20:08:42 +0000 | [diff] [blame] | 253 | case CXXConversion: | 
| Argyrios Kyrtzidis | d3bb44f | 2008-06-09 21:05:31 +0000 | [diff] [blame] | 254 | case CXXClassVar: | 
|  | 255 | break; | 
| Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 256 | } | 
|  | 257 | } | 
|  | 258 |  | 
|  | 259 | //===----------------------------------------------------------------------===// | 
|  | 260 | // Decl Implementation | 
|  | 261 | //===----------------------------------------------------------------------===// | 
|  | 262 |  | 
|  | 263 | // Out-of-line virtual method providing a home for Decl. | 
|  | 264 | Decl::~Decl() { | 
|  | 265 | if (!HasAttrs) | 
|  | 266 | return; | 
|  | 267 |  | 
|  | 268 | DeclAttrMapTy::iterator it = DeclAttrs->find(this); | 
|  | 269 | assert(it != DeclAttrs->end() && "No attrs found but HasAttrs is true!"); | 
|  | 270 |  | 
|  | 271 | // release attributes. | 
|  | 272 | delete it->second; | 
|  | 273 | invalidateAttrs(); | 
|  | 274 | } | 
|  | 275 |  | 
|  | 276 | void Decl::addAttr(Attr *NewAttr) { | 
|  | 277 | if (!DeclAttrs) | 
|  | 278 | DeclAttrs = new DeclAttrMapTy(); | 
|  | 279 |  | 
|  | 280 | Attr *&ExistingAttr = (*DeclAttrs)[this]; | 
|  | 281 |  | 
|  | 282 | NewAttr->setNext(ExistingAttr); | 
|  | 283 | ExistingAttr = NewAttr; | 
|  | 284 |  | 
|  | 285 | HasAttrs = true; | 
|  | 286 | } | 
|  | 287 |  | 
|  | 288 | void Decl::invalidateAttrs() { | 
|  | 289 | if (!HasAttrs) return; | 
|  | 290 |  | 
|  | 291 | HasAttrs = false; | 
|  | 292 | (*DeclAttrs)[this] = 0; | 
|  | 293 | DeclAttrs->erase(this); | 
|  | 294 |  | 
|  | 295 | if (DeclAttrs->empty()) { | 
|  | 296 | delete DeclAttrs; | 
|  | 297 | DeclAttrs = 0; | 
|  | 298 | } | 
|  | 299 | } | 
|  | 300 |  | 
|  | 301 | const Attr *Decl::getAttrs() const { | 
|  | 302 | if (!HasAttrs) | 
|  | 303 | return 0; | 
|  | 304 |  | 
|  | 305 | return (*DeclAttrs)[this]; | 
|  | 306 | } | 
|  | 307 |  | 
|  | 308 | void Decl::swapAttrs(Decl *RHS) { | 
|  | 309 | bool HasLHSAttr = this->HasAttrs; | 
|  | 310 | bool HasRHSAttr = RHS->HasAttrs; | 
|  | 311 |  | 
|  | 312 | // Usually, neither decl has attrs, nothing to do. | 
|  | 313 | if (!HasLHSAttr && !HasRHSAttr) return; | 
|  | 314 |  | 
|  | 315 | // If 'this' has no attrs, swap the other way. | 
|  | 316 | if (!HasLHSAttr) | 
|  | 317 | return RHS->swapAttrs(this); | 
|  | 318 |  | 
|  | 319 | // Handle the case when both decls have attrs. | 
|  | 320 | if (HasRHSAttr) { | 
|  | 321 | std::swap((*DeclAttrs)[this], (*DeclAttrs)[RHS]); | 
|  | 322 | return; | 
|  | 323 | } | 
|  | 324 |  | 
|  | 325 | // Otherwise, LHS has an attr and RHS doesn't. | 
|  | 326 | (*DeclAttrs)[RHS] = (*DeclAttrs)[this]; | 
|  | 327 | (*DeclAttrs).erase(this); | 
|  | 328 | this->HasAttrs = false; | 
|  | 329 | RHS->HasAttrs = true; | 
|  | 330 | } | 
|  | 331 |  | 
|  | 332 |  | 
|  | 333 | void Decl::Destroy(ASTContext& C) { | 
| Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 334 | if (ScopedDecl* SD = dyn_cast<ScopedDecl>(this)) { | 
|  | 335 |  | 
|  | 336 | // Observe the unrolled recursion.  By setting N->NextDeclarator = 0x0 | 
|  | 337 | // within the loop, only the Destroy method for the first ScopedDecl | 
|  | 338 | // will deallocate all of the ScopedDecls in a chain. | 
|  | 339 |  | 
|  | 340 | ScopedDecl* N = SD->getNextDeclarator(); | 
|  | 341 |  | 
|  | 342 | while (N) { | 
|  | 343 | ScopedDecl* Tmp = N->getNextDeclarator(); | 
|  | 344 | N->NextDeclarator = 0x0; | 
|  | 345 | N->Destroy(C); | 
|  | 346 | N = Tmp; | 
|  | 347 | } | 
|  | 348 | } | 
|  | 349 |  | 
|  | 350 | this->~Decl(); | 
|  | 351 | C.getAllocator().Deallocate((void *)this); | 
|  | 352 | } | 
|  | 353 |  | 
| Argyrios Kyrtzidis | 42220c5 | 2008-10-12 16:14:48 +0000 | [diff] [blame] | 354 | Decl *Decl::castFromDeclContext (const DeclContext *D) { | 
|  | 355 | return DeclContext::CastTo<Decl>(D); | 
|  | 356 | } | 
|  | 357 |  | 
|  | 358 | DeclContext *Decl::castToDeclContext(const Decl *D) { | 
|  | 359 | return DeclContext::CastTo<DeclContext>(D); | 
|  | 360 | } | 
|  | 361 |  | 
| Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 362 | //===----------------------------------------------------------------------===// | 
|  | 363 | // DeclContext Implementation | 
|  | 364 | //===----------------------------------------------------------------------===// | 
|  | 365 |  | 
| Argyrios Kyrtzidis | 20bc676 | 2008-11-19 17:36:39 +0000 | [diff] [blame] | 366 | const DeclContext *DeclContext::getParent() const { | 
|  | 367 | if (const ScopedDecl *SD = dyn_cast<ScopedDecl>(this)) | 
| Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 368 | return SD->getDeclContext(); | 
| Argyrios Kyrtzidis | 20bc676 | 2008-11-19 17:36:39 +0000 | [diff] [blame] | 369 | else if (const BlockDecl *BD = dyn_cast<BlockDecl>(this)) | 
| Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 370 | return BD->getParentContext(); | 
| Eli Friedman | 56d2937 | 2008-06-07 16:52:53 +0000 | [diff] [blame] | 371 | else | 
|  | 372 | return NULL; | 
|  | 373 | } | 
| Argyrios Kyrtzidis | 77407b8 | 2008-11-19 18:01:13 +0000 | [diff] [blame] | 374 |  | 
|  | 375 | const DeclContext *DeclContext::getLexicalParent() const { | 
|  | 376 | if (const ScopedDecl *SD = dyn_cast<ScopedDecl>(this)) | 
|  | 377 | return SD->getLexicalDeclContext(); | 
| Argyrios Kyrtzidis | 051c13a | 2008-11-19 18:07:24 +0000 | [diff] [blame] | 378 | return getParent(); | 
| Argyrios Kyrtzidis | 77407b8 | 2008-11-19 18:01:13 +0000 | [diff] [blame] | 379 | } | 
| Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 380 |  | 
| Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 381 | // FIXME: We really want to use a DenseSet here to eliminate the | 
|  | 382 | // redundant storage of the declaration names, but (1) it doesn't give | 
|  | 383 | // us the ability to search based on DeclarationName, (2) we really | 
|  | 384 | // need something more like a DenseMultiSet, and (3) it's | 
| Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 385 | // implemented in terms of DenseMap anyway. However, this data | 
|  | 386 | // structure is really space-inefficient, so we'll have to do | 
|  | 387 | // something. | 
|  | 388 | typedef llvm::DenseMap<DeclarationName, std::vector<ScopedDecl*> > | 
|  | 389 | StoredDeclsMap; | 
| Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 390 |  | 
|  | 391 | DeclContext::~DeclContext() { | 
|  | 392 | unsigned Size = LookupPtr.getInt(); | 
|  | 393 | if (Size == LookupIsMap) { | 
|  | 394 | StoredDeclsMap *Map = static_cast<StoredDeclsMap*>(LookupPtr.getPointer()); | 
|  | 395 | delete Map; | 
|  | 396 | } else { | 
| Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 397 | ScopedDecl **Array = static_cast<ScopedDecl**>(LookupPtr.getPointer()); | 
| Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 398 | delete [] Array; | 
|  | 399 | } | 
|  | 400 | } | 
|  | 401 |  | 
|  | 402 | void DeclContext::DestroyDecls(ASTContext &C) { | 
|  | 403 | for (decl_iterator D = Decls.begin(); D != Decls.end(); ++D) { | 
|  | 404 | if ((*D)->getLexicalDeclContext() == this) | 
|  | 405 | (*D)->Destroy(C); | 
|  | 406 | } | 
|  | 407 | } | 
|  | 408 |  | 
| Douglas Gregor | 074149e | 2009-01-05 19:45:36 +0000 | [diff] [blame] | 409 | bool DeclContext::isTransparentContext() const { | 
|  | 410 | if (DeclKind == Decl::Enum) | 
|  | 411 | return true; // FIXME: Check for C++0x scoped enums | 
|  | 412 | else if (DeclKind == Decl::LinkageSpec) | 
|  | 413 | return true; | 
|  | 414 | else if (DeclKind == Decl::Record || DeclKind == Decl::CXXRecord) | 
|  | 415 | return false; // FIXME: need to know about anonymous unions/structs | 
|  | 416 | else if (DeclKind == Decl::Namespace) | 
|  | 417 | return false; // FIXME: Check for C++0x inline namespaces | 
|  | 418 |  | 
|  | 419 | return false; | 
|  | 420 | } | 
|  | 421 |  | 
| Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 422 | DeclContext *DeclContext::getPrimaryContext(ASTContext &Context) { | 
|  | 423 | switch (DeclKind) { | 
| Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 424 | case Decl::TranslationUnit: | 
| Douglas Gregor | 074149e | 2009-01-05 19:45:36 +0000 | [diff] [blame] | 425 | case Decl::LinkageSpec: | 
|  | 426 | case Decl::Block: | 
| Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 427 | // There is only one DeclContext for these entities. | 
|  | 428 | return this; | 
|  | 429 |  | 
|  | 430 | case Decl::Namespace: | 
|  | 431 | // The original namespace is our primary context. | 
|  | 432 | return static_cast<NamespaceDecl*>(this)->getOriginalNamespace(); | 
|  | 433 |  | 
|  | 434 | case Decl::Enum: | 
| Douglas Gregor | 074149e | 2009-01-05 19:45:36 +0000 | [diff] [blame] | 435 | #if 0 | 
|  | 436 | // FIXME: See the comment for CXXRecord, below. | 
| Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 437 | // The declaration associated with the enumeration type is our | 
|  | 438 | // primary context. | 
|  | 439 | return Context.getTypeDeclType(static_cast<EnumDecl*>(this)) | 
|  | 440 | ->getAsEnumType()->getDecl(); | 
| Douglas Gregor | 074149e | 2009-01-05 19:45:36 +0000 | [diff] [blame] | 441 | #else | 
|  | 442 | return this; | 
|  | 443 | #endif | 
| Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 444 |  | 
|  | 445 | case Decl::Record: | 
|  | 446 | case Decl::CXXRecord: { | 
|  | 447 | // The declaration associated with the type is be our primary | 
|  | 448 | // context. | 
|  | 449 | #if 0 | 
|  | 450 | // FIXME: This is what we expect to do. However, it doesn't work | 
|  | 451 | // because ASTContext::setTagDefinition changes the result of | 
|  | 452 | // Context.getTypeDeclType, meaning that our "primary" declaration | 
|  | 453 | // of a RecordDecl/CXXRecordDecl will change, and we won't be able | 
|  | 454 | // to find any values inserted into the earlier "primary" | 
|  | 455 | // declaration. We need better tracking of redeclarations and | 
|  | 456 | // definitions. | 
|  | 457 | QualType Type = Context.getTypeDeclType(static_cast<RecordDecl*>(this)); | 
|  | 458 | return Type->getAsRecordType()->getDecl(); | 
|  | 459 | #else | 
|  | 460 | // FIXME: This hack will work for now, because the declaration we | 
|  | 461 | // create when we're defining the record is the one we'll use as | 
|  | 462 | // the definition later. | 
|  | 463 | return this; | 
|  | 464 | #endif | 
|  | 465 | } | 
|  | 466 |  | 
|  | 467 | case Decl::ObjCMethod: | 
|  | 468 | return this; | 
|  | 469 |  | 
|  | 470 | case Decl::ObjCInterface: | 
|  | 471 | // FIXME: Can Objective-C interfaces be forward-declared? | 
|  | 472 | return this; | 
|  | 473 |  | 
|  | 474 | default: | 
|  | 475 | assert(DeclKind >= Decl::FunctionFirst && DeclKind <= Decl::FunctionLast && | 
|  | 476 | "Unknown DeclContext kind"); | 
|  | 477 | return this; | 
|  | 478 | } | 
|  | 479 | } | 
|  | 480 |  | 
|  | 481 | DeclContext *DeclContext::getNextContext() { | 
|  | 482 | switch (DeclKind) { | 
| Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 483 | case Decl::TranslationUnit: | 
|  | 484 | case Decl::Enum: | 
|  | 485 | case Decl::Record: | 
|  | 486 | case Decl::CXXRecord: | 
|  | 487 | case Decl::ObjCMethod: | 
|  | 488 | case Decl::ObjCInterface: | 
| Douglas Gregor | 074149e | 2009-01-05 19:45:36 +0000 | [diff] [blame] | 489 | case Decl::LinkageSpec: | 
|  | 490 | case Decl::Block: | 
| Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 491 | // There is only one DeclContext for these entities. | 
|  | 492 | return 0; | 
|  | 493 |  | 
|  | 494 | case Decl::Namespace: | 
|  | 495 | // Return the next namespace | 
|  | 496 | return static_cast<NamespaceDecl*>(this)->getNextNamespace(); | 
|  | 497 |  | 
|  | 498 | default: | 
|  | 499 | assert(DeclKind >= Decl::FunctionFirst && DeclKind <= Decl::FunctionLast && | 
|  | 500 | "Unknown DeclContext kind"); | 
|  | 501 | return 0; | 
|  | 502 | } | 
|  | 503 | } | 
|  | 504 |  | 
|  | 505 | void DeclContext::addDecl(ASTContext &Context, ScopedDecl *D, bool AllowLookup) { | 
|  | 506 | Decls.push_back(D); | 
|  | 507 | if (AllowLookup) | 
|  | 508 | D->getDeclContext()->insert(Context, D); | 
|  | 509 | } | 
|  | 510 |  | 
| Douglas Gregor | 074149e | 2009-01-05 19:45:36 +0000 | [diff] [blame] | 511 | /// buildLookup - Build the lookup data structure with all of the | 
|  | 512 | /// declarations in DCtx (and any other contexts linked to it or | 
|  | 513 | /// transparent contexts nested within it). | 
|  | 514 | void DeclContext::buildLookup(ASTContext &Context, DeclContext *DCtx) { | 
|  | 515 | for (; DCtx; DCtx = DCtx->getNextContext()) { | 
| Douglas Gregor | 4f3b8f8 | 2009-01-06 07:17:58 +0000 | [diff] [blame] | 516 | for (decl_iterator D = DCtx->decls_begin(), DEnd = DCtx->decls_end(); | 
|  | 517 | D != DEnd; ++D) { | 
| Douglas Gregor | 074149e | 2009-01-05 19:45:36 +0000 | [diff] [blame] | 518 | // Insert this declaration into the lookup structure | 
|  | 519 | insertImpl(*D); | 
|  | 520 |  | 
|  | 521 | // If this declaration is itself a transparent declaration context, | 
|  | 522 | // add its members (recursively). | 
|  | 523 | if (DeclContext *InnerCtx = dyn_cast<DeclContext>(*D)) | 
|  | 524 | if (InnerCtx->isTransparentContext()) | 
|  | 525 | buildLookup(Context, InnerCtx->getPrimaryContext(Context)); | 
|  | 526 | } | 
|  | 527 | } | 
|  | 528 | } | 
|  | 529 |  | 
| Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 530 | DeclContext::lookup_result | 
|  | 531 | DeclContext::lookup(ASTContext &Context, DeclarationName Name) { | 
|  | 532 | DeclContext *PrimaryContext = getPrimaryContext(Context); | 
|  | 533 | if (PrimaryContext != this) | 
|  | 534 | return PrimaryContext->lookup(Context, Name); | 
|  | 535 |  | 
| Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 536 | /// If there is no lookup data structure, build one now by walking | 
| Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 537 | /// all of the linked DeclContexts (in declaration order!) and | 
|  | 538 | /// inserting their values. | 
| Douglas Gregor | 074149e | 2009-01-05 19:45:36 +0000 | [diff] [blame] | 539 | if (LookupPtr.getPointer() == 0) | 
|  | 540 | buildLookup(Context, this); | 
| Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 541 |  | 
| Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 542 | if (isLookupMap()) { | 
|  | 543 | StoredDeclsMap *Map = static_cast<StoredDeclsMap*>(LookupPtr.getPointer()); | 
|  | 544 | StoredDeclsMap::iterator Pos = Map->find(Name); | 
| Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 545 | if (Pos != Map->end()) | 
|  | 546 | return lookup_result(&Pos->second.front(), | 
|  | 547 | &Pos->second.front() + Pos->second.size()); | 
|  | 548 | return lookup_result(0, 0); | 
| Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 549 | } | 
|  | 550 |  | 
|  | 551 | // We have a small array. Look into it. | 
|  | 552 | unsigned Size = LookupPtr.getInt(); | 
| Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 553 | ScopedDecl **Array = static_cast<ScopedDecl**>(LookupPtr.getPointer()); | 
| Douglas Gregor | e267ff3 | 2008-12-11 20:41:00 +0000 | [diff] [blame] | 554 | for (unsigned Idx = 0; Idx != Size; ++Idx) | 
| Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 555 | if (Array[Idx]->getDeclName() == Name) { | 
| Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 556 | unsigned Last = Idx + 1; | 
|  | 557 | while (Last != Size && Array[Last]->getDeclName() == Name) | 
|  | 558 | ++Last; | 
|  | 559 | return lookup_result(&Array[Idx], &Array[Last]); | 
| Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 560 | } | 
|  | 561 |  | 
| Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 562 | return lookup_result(0, 0); | 
| Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 563 | } | 
|  | 564 |  | 
|  | 565 | DeclContext::lookup_const_result | 
|  | 566 | DeclContext::lookup(ASTContext &Context, DeclarationName Name) const { | 
|  | 567 | return const_cast<DeclContext*>(this)->lookup(Context, Name); | 
|  | 568 | } | 
|  | 569 |  | 
| Douglas Gregor | ce35607 | 2009-01-06 23:51:29 +0000 | [diff] [blame^] | 570 | DeclContext *DeclContext::getLookupContext() { | 
|  | 571 | DeclContext *Ctx = this; | 
|  | 572 | while (Ctx->isTransparentContext()) | 
|  | 573 | Ctx = Ctx->getParent(); | 
|  | 574 | return Ctx; | 
|  | 575 | } | 
|  | 576 |  | 
| Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 577 | void DeclContext::insert(ASTContext &Context, ScopedDecl *D) { | 
| Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 578 | DeclContext *PrimaryContext = getPrimaryContext(Context); | 
|  | 579 | if (PrimaryContext != this) { | 
|  | 580 | PrimaryContext->insert(Context, D); | 
|  | 581 | return; | 
|  | 582 | } | 
|  | 583 |  | 
|  | 584 | // If we already have a lookup data structure, perform the insertion | 
|  | 585 | // into it. Otherwise, be lazy and don't build that structure until | 
|  | 586 | // someone asks for it. | 
|  | 587 | if (LookupPtr.getPointer()) | 
|  | 588 | insertImpl(D); | 
| Douglas Gregor | 074149e | 2009-01-05 19:45:36 +0000 | [diff] [blame] | 589 |  | 
|  | 590 |  | 
|  | 591 | // If we are a transparent context, insert into our parent context, | 
|  | 592 | // too. This operation is recursive. | 
|  | 593 | if (isTransparentContext()) | 
|  | 594 | getParent()->insert(Context, D); | 
| Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 595 | } | 
|  | 596 |  | 
| Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 597 | void DeclContext::insertImpl(ScopedDecl *D) { | 
| Douglas Gregor | 074149e | 2009-01-05 19:45:36 +0000 | [diff] [blame] | 598 | // Skip unnamed declarations. | 
|  | 599 | if (!D->getDeclName()) | 
|  | 600 | return; | 
|  | 601 |  | 
| Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 602 | bool MayBeRedeclaration = true; | 
|  | 603 |  | 
| Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 604 | if (!isLookupMap()) { | 
|  | 605 | unsigned Size = LookupPtr.getInt(); | 
|  | 606 |  | 
|  | 607 | // The lookup data is stored as an array. Search through the array | 
|  | 608 | // to find the insertion location. | 
| Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 609 | ScopedDecl **Array; | 
| Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 610 | if (Size == 0) { | 
| Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 611 | Array = new ScopedDecl*[LookupIsMap - 1]; | 
| Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 612 | LookupPtr.setPointer(Array); | 
|  | 613 | } else { | 
| Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 614 | Array = static_cast<ScopedDecl **>(LookupPtr.getPointer()); | 
| Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 615 | } | 
|  | 616 |  | 
|  | 617 | // We always keep declarations of the same name next to each other | 
|  | 618 | // in the array, so that it is easy to return multiple results | 
| Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 619 | // from lookup(). | 
|  | 620 | unsigned FirstMatch; | 
|  | 621 | for (FirstMatch = 0; FirstMatch != Size; ++FirstMatch) | 
|  | 622 | if (Array[FirstMatch]->getDeclName() == D->getDeclName()) | 
| Douglas Gregor | e267ff3 | 2008-12-11 20:41:00 +0000 | [diff] [blame] | 623 | break; | 
| Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 624 |  | 
| Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 625 | unsigned InsertPos = FirstMatch; | 
|  | 626 | if (FirstMatch != Size) { | 
|  | 627 | // We found another declaration with the same name. First | 
|  | 628 | // determine whether this is a redeclaration of an existing | 
|  | 629 | // declaration in this scope, in which case we will replace the | 
|  | 630 | // existing declaration. | 
|  | 631 | unsigned LastMatch = FirstMatch; | 
|  | 632 | for (; LastMatch != Size; ++LastMatch) { | 
|  | 633 | if (Array[LastMatch]->getDeclName() != D->getDeclName()) | 
|  | 634 | break; | 
|  | 635 |  | 
| Douglas Gregor | 6ed40e3 | 2008-12-23 21:05:05 +0000 | [diff] [blame] | 636 | if (D->declarationReplaces(Array[LastMatch])) { | 
| Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 637 | // D is a redeclaration of an existing element in the | 
|  | 638 | // array. Replace that element with D. | 
|  | 639 | Array[LastMatch] = D; | 
|  | 640 | return; | 
|  | 641 | } | 
| Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 642 | } | 
|  | 643 |  | 
| Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 644 | // [FirstMatch, LastMatch) contains the set of declarations that | 
|  | 645 | // have the same name as this declaration. Determine where the | 
|  | 646 | // declaration D will be inserted into this range. | 
|  | 647 | if (D->getIdentifierNamespace() == Decl::IDNS_Tag) | 
|  | 648 | InsertPos = LastMatch; | 
|  | 649 | else if (Array[LastMatch-1]->getIdentifierNamespace() == Decl::IDNS_Tag) | 
|  | 650 | InsertPos = LastMatch - 1; | 
|  | 651 | else | 
|  | 652 | InsertPos = LastMatch; | 
| Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 653 | } | 
|  | 654 |  | 
|  | 655 | if (Size < LookupIsMap - 1) { | 
|  | 656 | // The new declaration will fit in the array. Insert the new | 
|  | 657 | // declaration at the position Match in the array. | 
| Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 658 | for (unsigned Idx = Size; Idx > InsertPos; --Idx) | 
| Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 659 | Array[Idx] = Array[Idx-1]; | 
|  | 660 |  | 
| Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 661 | Array[InsertPos] = D; | 
| Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 662 | LookupPtr.setInt(Size + 1); | 
|  | 663 | return; | 
|  | 664 | } | 
|  | 665 |  | 
|  | 666 | // We've reached capacity in this array. Create a map and copy in | 
|  | 667 | // all of the declarations that were stored in the array. | 
|  | 668 | StoredDeclsMap *Map = new StoredDeclsMap(16); | 
|  | 669 | LookupPtr.setPointer(Map); | 
|  | 670 | LookupPtr.setInt(LookupIsMap); | 
| Douglas Gregor | e267ff3 | 2008-12-11 20:41:00 +0000 | [diff] [blame] | 671 | for (unsigned Idx = 0; Idx != LookupIsMap - 1; ++Idx) | 
| Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 672 | insertImpl(Array[Idx]); | 
|  | 673 | delete [] Array; | 
|  | 674 |  | 
|  | 675 | // Fall through to perform insertion into the map. | 
| Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 676 | MayBeRedeclaration = false; | 
|  | 677 | } | 
| Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 678 |  | 
|  | 679 | // Insert this declaration into the map. | 
|  | 680 | StoredDeclsMap *Map = static_cast<StoredDeclsMap*>(LookupPtr.getPointer()); | 
|  | 681 | StoredDeclsMap::iterator Pos = Map->find(D->getDeclName()); | 
| Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 682 | if (Pos != Map->end()) { | 
|  | 683 | if (MayBeRedeclaration) { | 
|  | 684 | // Determine if this declaration is actually a redeclaration. | 
| Douglas Gregor | 6ed40e3 | 2008-12-23 21:05:05 +0000 | [diff] [blame] | 685 | std::vector<ScopedDecl *>::iterator Redecl | 
|  | 686 | = std::find_if(Pos->second.begin(), Pos->second.end(), | 
|  | 687 | std::bind1st(std::mem_fun(&ScopedDecl::declarationReplaces), | 
|  | 688 | D)); | 
|  | 689 | if (Redecl != Pos->second.end()) { | 
|  | 690 | *Redecl = D; | 
|  | 691 | return; | 
| Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 692 | } | 
|  | 693 | } | 
| Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 694 |  | 
| Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 695 | // Put this declaration into the appropriate slot. | 
| Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 696 | if (D->getIdentifierNamespace() == Decl::IDNS_Tag || Pos->second.empty()) | 
|  | 697 | Pos->second.push_back(D); | 
|  | 698 | else if (Pos->second.back()->getIdentifierNamespace() == Decl::IDNS_Tag) { | 
|  | 699 | ScopedDecl *TagD = Pos->second.back(); | 
|  | 700 | Pos->second.back() = D; | 
|  | 701 | Pos->second.push_back(TagD); | 
|  | 702 | } else | 
|  | 703 | Pos->second.push_back(D); | 
| Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 704 | } else { | 
| Douglas Gregor | 3fc749d | 2008-12-23 00:26:44 +0000 | [diff] [blame] | 705 | (*Map)[D->getDeclName()].push_back(D); | 
| Douglas Gregor | 44b4321 | 2008-12-11 16:49:14 +0000 | [diff] [blame] | 706 | } | 
|  | 707 | } |