Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 1 | //===--- Decl.cpp - Declaration AST Node Implementation -------------------===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 0bc735f | 2007-12-29 19:59:25 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
Argyrios Kyrtzidis | e184bae | 2008-06-04 13:04:04 +0000 | [diff] [blame] | 10 | // This file implements the Decl subclasses. |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "clang/AST/Decl.h" |
Chris Lattner | 6c2b6eb | 2008-03-15 06:12:44 +0000 | [diff] [blame] | 15 | #include "clang/AST/ASTContext.h" |
Daniel Dunbar | e91593e | 2008-08-11 04:54:23 +0000 | [diff] [blame] | 16 | #include "clang/AST/Stmt.h" |
| 17 | #include "clang/Basic/IdentifierTable.h" |
Ted Kremenek | 27f8a28 | 2008-05-20 00:43:19 +0000 | [diff] [blame] | 18 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 19 | using namespace clang; |
| 20 | |
Chris Lattner | d3b9065 | 2008-03-15 05:43:15 +0000 | [diff] [blame] | 21 | //===----------------------------------------------------------------------===// |
Chris Lattner | 6c2b6eb | 2008-03-15 06:12:44 +0000 | [diff] [blame] | 22 | // Decl Allocation/Deallocation Method Implementations |
| 23 | //===----------------------------------------------------------------------===// |
Argyrios Kyrtzidis | 2d1c5d3 | 2008-04-27 13:50:30 +0000 | [diff] [blame] | 24 | |
Argyrios Kyrtzidis | ef17782 | 2008-04-17 14:40:12 +0000 | [diff] [blame] | 25 | TranslationUnitDecl *TranslationUnitDecl::Create(ASTContext &C) { |
| 26 | void *Mem = C.getAllocator().Allocate<TranslationUnitDecl>(); |
| 27 | return new (Mem) TranslationUnitDecl(); |
| 28 | } |
| 29 | |
Argyrios Kyrtzidis | 2d1c5d3 | 2008-04-27 13:50:30 +0000 | [diff] [blame] | 30 | NamespaceDecl *NamespaceDecl::Create(ASTContext &C, DeclContext *DC, |
| 31 | SourceLocation L, IdentifierInfo *Id) { |
| 32 | void *Mem = C.getAllocator().Allocate<NamespaceDecl>(); |
| 33 | return new (Mem) NamespaceDecl(DC, L, Id); |
| 34 | } |
| 35 | |
Ted Kremenek | d1ac17a | 2008-05-20 04:49:55 +0000 | [diff] [blame] | 36 | void NamespaceDecl::Destroy(ASTContext& C) { |
| 37 | // NamespaceDecl uses "NextDeclarator" to chain namespace declarations |
| 38 | // together. They are all top-level Decls. |
| 39 | |
Ted Kremenek | ebf27b1 | 2008-05-24 15:09:56 +0000 | [diff] [blame] | 40 | this->~NamespaceDecl(); |
Ted Kremenek | d1ac17a | 2008-05-20 04:49:55 +0000 | [diff] [blame] | 41 | C.getAllocator().Deallocate((void *)this); |
| 42 | } |
| 43 | |
| 44 | |
Chris Lattner | 4111024 | 2008-06-17 18:05:57 +0000 | [diff] [blame] | 45 | ImplicitParamDecl *ImplicitParamDecl::Create(ASTContext &C, DeclContext *DC, |
| 46 | SourceLocation L, IdentifierInfo *Id, QualType T, ScopedDecl *PrevDecl) { |
| 47 | void *Mem = C.getAllocator().Allocate<ImplicitParamDecl>(); |
| 48 | return new (Mem) ImplicitParamDecl(ImplicitParam, DC, L, Id, T, PrevDecl); |
| 49 | } |
| 50 | |
Chris Lattner | 9fdf9c6 | 2008-04-22 18:39:57 +0000 | [diff] [blame] | 51 | VarDecl *VarDecl::Create(ASTContext &C, DeclContext *DC, |
Steve Naroff | 248a753 | 2008-04-15 22:42:06 +0000 | [diff] [blame] | 52 | SourceLocation L, |
| 53 | IdentifierInfo *Id, QualType T, |
Steve Naroff | 0eb07bf | 2008-10-03 00:02:03 +0000 | [diff] [blame] | 54 | StorageClass S, ScopedDecl *PrevDecl, |
| 55 | SourceLocation TypeSpecStartLoc) { |
Steve Naroff | 248a753 | 2008-04-15 22:42:06 +0000 | [diff] [blame] | 56 | void *Mem = C.getAllocator().Allocate<VarDecl>(); |
Steve Naroff | 0eb07bf | 2008-10-03 00:02:03 +0000 | [diff] [blame] | 57 | return new (Mem) VarDecl(Var, DC, L, Id, T, S, PrevDecl, TypeSpecStartLoc); |
Chris Lattner | 9e151e1 | 2008-03-15 21:10:16 +0000 | [diff] [blame] | 58 | } |
| 59 | |
Chris Lattner | 9fdf9c6 | 2008-04-22 18:39:57 +0000 | [diff] [blame] | 60 | ParmVarDecl *ParmVarDecl::Create(ASTContext &C, DeclContext *DC, |
Chris Lattner | 0ed844b | 2008-04-04 06:12:32 +0000 | [diff] [blame] | 61 | SourceLocation L, IdentifierInfo *Id, |
| 62 | QualType T, StorageClass S, |
Chris Lattner | 0442108 | 2008-04-08 04:40:51 +0000 | [diff] [blame] | 63 | Expr *DefArg, ScopedDecl *PrevDecl) { |
Chris Lattner | 9e151e1 | 2008-03-15 21:10:16 +0000 | [diff] [blame] | 64 | void *Mem = C.getAllocator().Allocate<ParmVarDecl>(); |
Chris Lattner | 9fdf9c6 | 2008-04-22 18:39:57 +0000 | [diff] [blame] | 65 | return new (Mem) ParmVarDecl(DC, L, Id, T, S, DefArg, PrevDecl); |
Chris Lattner | 9e151e1 | 2008-03-15 21:10:16 +0000 | [diff] [blame] | 66 | } |
| 67 | |
Chris Lattner | 9fdf9c6 | 2008-04-22 18:39:57 +0000 | [diff] [blame] | 68 | FunctionDecl *FunctionDecl::Create(ASTContext &C, DeclContext *DC, |
Chris Lattner | 0ed844b | 2008-04-04 06:12:32 +0000 | [diff] [blame] | 69 | SourceLocation L, |
Chris Lattner | a98e58d | 2008-03-15 21:24:04 +0000 | [diff] [blame] | 70 | IdentifierInfo *Id, QualType T, |
| 71 | StorageClass S, bool isInline, |
Steve Naroff | 0eb07bf | 2008-10-03 00:02:03 +0000 | [diff] [blame] | 72 | ScopedDecl *PrevDecl, |
| 73 | SourceLocation TypeSpecStartLoc) { |
Chris Lattner | a98e58d | 2008-03-15 21:24:04 +0000 | [diff] [blame] | 74 | void *Mem = C.getAllocator().Allocate<FunctionDecl>(); |
Steve Naroff | 0eb07bf | 2008-10-03 00:02:03 +0000 | [diff] [blame] | 75 | return new (Mem) FunctionDecl(Function, DC, L, Id, T, S, isInline, PrevDecl, |
| 76 | TypeSpecStartLoc); |
Chris Lattner | a98e58d | 2008-03-15 21:24:04 +0000 | [diff] [blame] | 77 | } |
| 78 | |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 79 | BlockDecl *BlockDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L) { |
Steve Naroff | 56ee689 | 2008-10-08 17:01:13 +0000 | [diff] [blame] | 80 | void *Mem = C.getAllocator().Allocate<BlockDecl>(); |
Steve Naroff | 090276f | 2008-10-10 01:28:17 +0000 | [diff] [blame] | 81 | return new (Mem) BlockDecl(DC, L); |
Steve Naroff | 56ee689 | 2008-10-08 17:01:13 +0000 | [diff] [blame] | 82 | } |
| 83 | |
Chris Lattner | b048c98 | 2008-04-06 04:47:34 +0000 | [diff] [blame] | 84 | FieldDecl *FieldDecl::Create(ASTContext &C, SourceLocation L, |
Chris Lattner | 8e25d86 | 2008-03-16 00:16:02 +0000 | [diff] [blame] | 85 | IdentifierInfo *Id, QualType T, Expr *BW) { |
| 86 | void *Mem = C.getAllocator().Allocate<FieldDecl>(); |
Chris Lattner | b048c98 | 2008-04-06 04:47:34 +0000 | [diff] [blame] | 87 | return new (Mem) FieldDecl(L, Id, T, BW); |
Chris Lattner | 8e25d86 | 2008-03-16 00:16:02 +0000 | [diff] [blame] | 88 | } |
| 89 | |
Chris Lattner | a98e58d | 2008-03-15 21:24:04 +0000 | [diff] [blame] | 90 | |
Chris Lattner | 0ed844b | 2008-04-04 06:12:32 +0000 | [diff] [blame] | 91 | EnumConstantDecl *EnumConstantDecl::Create(ASTContext &C, EnumDecl *CD, |
| 92 | SourceLocation L, |
Chris Lattner | c63e660 | 2008-03-15 21:32:50 +0000 | [diff] [blame] | 93 | IdentifierInfo *Id, QualType T, |
| 94 | Expr *E, const llvm::APSInt &V, |
| 95 | ScopedDecl *PrevDecl){ |
Chris Lattner | 6c2b6eb | 2008-03-15 06:12:44 +0000 | [diff] [blame] | 96 | void *Mem = C.getAllocator().Allocate<EnumConstantDecl>(); |
Chris Lattner | 0ed844b | 2008-04-04 06:12:32 +0000 | [diff] [blame] | 97 | return new (Mem) EnumConstantDecl(CD, L, Id, T, E, V, PrevDecl); |
Chris Lattner | 6c2b6eb | 2008-03-15 06:12:44 +0000 | [diff] [blame] | 98 | } |
| 99 | |
Ted Kremenek | d1ac17a | 2008-05-20 04:49:55 +0000 | [diff] [blame] | 100 | void EnumConstantDecl::Destroy(ASTContext& C) { |
| 101 | if (Init) Init->Destroy(C); |
| 102 | Decl::Destroy(C); |
| 103 | } |
| 104 | |
Chris Lattner | 9fdf9c6 | 2008-04-22 18:39:57 +0000 | [diff] [blame] | 105 | TypedefDecl *TypedefDecl::Create(ASTContext &C, DeclContext *DC, |
Chris Lattner | 0ed844b | 2008-04-04 06:12:32 +0000 | [diff] [blame] | 106 | SourceLocation L, |
Chris Lattner | c63e660 | 2008-03-15 21:32:50 +0000 | [diff] [blame] | 107 | IdentifierInfo *Id, QualType T, |
| 108 | ScopedDecl *PD) { |
Chris Lattner | 6c2b6eb | 2008-03-15 06:12:44 +0000 | [diff] [blame] | 109 | void *Mem = C.getAllocator().Allocate<TypedefDecl>(); |
Chris Lattner | 9fdf9c6 | 2008-04-22 18:39:57 +0000 | [diff] [blame] | 110 | return new (Mem) TypedefDecl(DC, L, Id, T, PD); |
Chris Lattner | 6c2b6eb | 2008-03-15 06:12:44 +0000 | [diff] [blame] | 111 | } |
| 112 | |
Chris Lattner | 9fdf9c6 | 2008-04-22 18:39:57 +0000 | [diff] [blame] | 113 | EnumDecl *EnumDecl::Create(ASTContext &C, DeclContext *DC, SourceLocation L, |
Chris Lattner | 0ed844b | 2008-04-04 06:12:32 +0000 | [diff] [blame] | 114 | IdentifierInfo *Id, |
Chris Lattner | c63e660 | 2008-03-15 21:32:50 +0000 | [diff] [blame] | 115 | ScopedDecl *PrevDecl) { |
Chris Lattner | 6c2b6eb | 2008-03-15 06:12:44 +0000 | [diff] [blame] | 116 | void *Mem = C.getAllocator().Allocate<EnumDecl>(); |
Chris Lattner | 9fdf9c6 | 2008-04-22 18:39:57 +0000 | [diff] [blame] | 117 | return new (Mem) EnumDecl(DC, L, Id, PrevDecl); |
Chris Lattner | 6c2b6eb | 2008-03-15 06:12:44 +0000 | [diff] [blame] | 118 | } |
| 119 | |
Ted Kremenek | df91eca | 2008-09-02 20:13:32 +0000 | [diff] [blame] | 120 | void EnumDecl::Destroy(ASTContext& C) { |
| 121 | if (getEnumConstantList()) getEnumConstantList()->Destroy(C); |
| 122 | Decl::Destroy(C); |
| 123 | } |
| 124 | |
Chris Lattner | 0ed844b | 2008-04-04 06:12:32 +0000 | [diff] [blame] | 125 | FileScopeAsmDecl *FileScopeAsmDecl::Create(ASTContext &C, |
| 126 | SourceLocation L, |
Chris Lattner | 8e25d86 | 2008-03-16 00:16:02 +0000 | [diff] [blame] | 127 | StringLiteral *Str) { |
| 128 | void *Mem = C.getAllocator().Allocate<FileScopeAsmDecl>(); |
| 129 | return new (Mem) FileScopeAsmDecl(L, Str); |
| 130 | } |
| 131 | |
Chris Lattner | 0ed844b | 2008-04-04 06:12:32 +0000 | [diff] [blame] | 132 | LinkageSpecDecl *LinkageSpecDecl::Create(ASTContext &C, |
| 133 | SourceLocation L, |
Chris Lattner | 8e25d86 | 2008-03-16 00:16:02 +0000 | [diff] [blame] | 134 | LanguageIDs Lang, Decl *D) { |
| 135 | void *Mem = C.getAllocator().Allocate<LinkageSpecDecl>(); |
| 136 | return new (Mem) LinkageSpecDecl(L, Lang, D); |
| 137 | } |
Chris Lattner | 6c2b6eb | 2008-03-15 06:12:44 +0000 | [diff] [blame] | 138 | |
| 139 | //===----------------------------------------------------------------------===// |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 140 | // NamedDecl Implementation |
| 141 | //===----------------------------------------------------------------------===// |
| 142 | |
Chris Lattner | fd5de47 | 2007-10-06 22:53:46 +0000 | [diff] [blame] | 143 | const char *NamedDecl::getName() const { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 144 | if (const IdentifierInfo *II = getIdentifier()) |
| 145 | return II->getName(); |
| 146 | return ""; |
| 147 | } |
| 148 | |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 149 | //===----------------------------------------------------------------------===// |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 150 | // FunctionDecl Implementation |
| 151 | //===----------------------------------------------------------------------===// |
| 152 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 153 | FunctionDecl::~FunctionDecl() { |
| 154 | delete[] ParamInfo; |
Douglas Gregor | f009795 | 2008-04-21 02:02:58 +0000 | [diff] [blame] | 155 | } |
| 156 | |
Ted Kremenek | 27f8a28 | 2008-05-20 00:43:19 +0000 | [diff] [blame] | 157 | void FunctionDecl::Destroy(ASTContext& C) { |
Ted Kremenek | b65cf41 | 2008-05-20 03:56:00 +0000 | [diff] [blame] | 158 | if (Body) |
| 159 | Body->Destroy(C); |
| 160 | |
| 161 | for (param_iterator I=param_begin(), E=param_end(); I!=E; ++I) |
| 162 | (*I)->Destroy(C); |
| 163 | |
Ted Kremenek | 27f8a28 | 2008-05-20 00:43:19 +0000 | [diff] [blame] | 164 | Decl::Destroy(C); |
| 165 | } |
| 166 | |
| 167 | |
Douglas Gregor | f009795 | 2008-04-21 02:02:58 +0000 | [diff] [blame] | 168 | Stmt *FunctionDecl::getBody(const FunctionDecl *&Definition) const { |
| 169 | for (const FunctionDecl *FD = this; FD != 0; FD = FD->PreviousDeclaration) { |
| 170 | if (FD->Body) { |
| 171 | Definition = FD; |
| 172 | return FD->Body; |
| 173 | } |
| 174 | } |
| 175 | |
| 176 | return 0; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 177 | } |
| 178 | |
Ted Kremenek | 4f03fd6 | 2008-10-29 18:41:34 +0000 | [diff] [blame^] | 179 | // Helper function for FunctionDecl::getNumParams and FunctionDecl::setParams() |
| 180 | static unsigned getNumTypeParams(QualType T) { |
| 181 | const FunctionType *FT = T->getAsFunctionType(); |
Chris Lattner | d8bdba5 | 2008-04-06 23:09:52 +0000 | [diff] [blame] | 182 | if (isa<FunctionTypeNoProto>(FT)) |
Chris Lattner | d3b9065 | 2008-03-15 05:43:15 +0000 | [diff] [blame] | 183 | return 0; |
Chris Lattner | d8bdba5 | 2008-04-06 23:09:52 +0000 | [diff] [blame] | 184 | return cast<FunctionTypeProto>(FT)->getNumArgs(); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 185 | } |
| 186 | |
Ted Kremenek | 4f03fd6 | 2008-10-29 18:41:34 +0000 | [diff] [blame^] | 187 | unsigned FunctionDecl::getNumParams() const { |
| 188 | // Can happen if a FunctionDecl is declared using typeof(some_other_func) bar; |
| 189 | if (!ParamInfo) |
| 190 | return 0; |
| 191 | |
| 192 | return getNumTypeParams(getType()); |
| 193 | } |
| 194 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 195 | void FunctionDecl::setParams(ParmVarDecl **NewParamInfo, unsigned NumParams) { |
| 196 | assert(ParamInfo == 0 && "Already has param info!"); |
Ted Kremenek | 4f03fd6 | 2008-10-29 18:41:34 +0000 | [diff] [blame^] | 197 | assert(NumParams == getNumTypeParams(getType()) && |
| 198 | "Parameter count mismatch!"); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 199 | |
| 200 | // Zero params -> null pointer. |
| 201 | if (NumParams) { |
| 202 | ParamInfo = new ParmVarDecl*[NumParams]; |
| 203 | memcpy(ParamInfo, NewParamInfo, sizeof(ParmVarDecl*)*NumParams); |
| 204 | } |
| 205 | } |
| 206 | |
Chris Lattner | 8123a95 | 2008-04-10 02:22:51 +0000 | [diff] [blame] | 207 | /// getMinRequiredArguments - Returns the minimum number of arguments |
| 208 | /// needed to call this function. This may be fewer than the number of |
| 209 | /// function parameters, if some of the parameters have default |
Chris Lattner | 9e97955 | 2008-04-12 23:52:44 +0000 | [diff] [blame] | 210 | /// arguments (in C++). |
Chris Lattner | 8123a95 | 2008-04-10 02:22:51 +0000 | [diff] [blame] | 211 | unsigned FunctionDecl::getMinRequiredArguments() const { |
| 212 | unsigned NumRequiredArgs = getNumParams(); |
| 213 | while (NumRequiredArgs > 0 |
| 214 | && getParamDecl(NumRequiredArgs-1)->getDefaultArg()) |
| 215 | --NumRequiredArgs; |
| 216 | |
| 217 | return NumRequiredArgs; |
| 218 | } |
| 219 | |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 220 | //===----------------------------------------------------------------------===// |
Ted Kremenek | 4b7c983 | 2008-09-05 17:16:31 +0000 | [diff] [blame] | 221 | // TagdDecl Implementation |
| 222 | //===----------------------------------------------------------------------===// |
| 223 | |
| 224 | TagDecl* TagDecl::getDefinition(ASTContext& C) const { |
| 225 | QualType T = C.getTypeDeclType(const_cast<TagDecl*>(this)); |
| 226 | TagDecl* D = cast<TagDecl>(cast<TagType>(T)->getDecl()); |
| 227 | return D->isDefinition() ? D : 0; |
| 228 | } |
| 229 | |
| 230 | //===----------------------------------------------------------------------===// |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 231 | // RecordDecl Implementation |
| 232 | //===----------------------------------------------------------------------===// |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 233 | |
Argyrios Kyrtzidis | 35bc082 | 2008-10-15 00:42:39 +0000 | [diff] [blame] | 234 | RecordDecl::RecordDecl(Kind DK, TagKind TK, DeclContext *DC, SourceLocation L, |
Ted Kremenek | df042e6 | 2008-09-05 01:34:33 +0000 | [diff] [blame] | 235 | IdentifierInfo *Id) |
Argyrios Kyrtzidis | 35bc082 | 2008-10-15 00:42:39 +0000 | [diff] [blame] | 236 | : TagDecl(DK, TK, DC, L, Id, 0) { |
Ted Kremenek | 6359792 | 2008-09-02 21:12:32 +0000 | [diff] [blame] | 237 | |
| 238 | HasFlexibleArrayMember = false; |
| 239 | assert(classof(static_cast<Decl*>(this)) && "Invalid Kind!"); |
| 240 | Members = 0; |
Ted Kremenek | df042e6 | 2008-09-05 01:34:33 +0000 | [diff] [blame] | 241 | NumMembers = -1; |
Ted Kremenek | 6359792 | 2008-09-02 21:12:32 +0000 | [diff] [blame] | 242 | } |
| 243 | |
| 244 | RecordDecl *RecordDecl::Create(ASTContext &C, TagKind TK, DeclContext *DC, |
Ted Kremenek | 4b7c983 | 2008-09-05 17:16:31 +0000 | [diff] [blame] | 245 | SourceLocation L, IdentifierInfo *Id, |
| 246 | RecordDecl* PrevDecl) { |
Ted Kremenek | df042e6 | 2008-09-05 01:34:33 +0000 | [diff] [blame] | 247 | |
Ted Kremenek | 6359792 | 2008-09-02 21:12:32 +0000 | [diff] [blame] | 248 | void *Mem = C.getAllocator().Allocate<RecordDecl>(); |
Argyrios Kyrtzidis | 35bc082 | 2008-10-15 00:42:39 +0000 | [diff] [blame] | 249 | RecordDecl* R = new (Mem) RecordDecl(Record, TK, DC, L, Id); |
Ted Kremenek | 4b7c983 | 2008-09-05 17:16:31 +0000 | [diff] [blame] | 250 | C.getTypeDeclType(R, PrevDecl); |
| 251 | return R; |
Ted Kremenek | 6359792 | 2008-09-02 21:12:32 +0000 | [diff] [blame] | 252 | } |
| 253 | |
Argyrios Kyrtzidis | 997b6c6 | 2008-08-08 14:08:55 +0000 | [diff] [blame] | 254 | RecordDecl::~RecordDecl() { |
| 255 | delete[] Members; |
| 256 | } |
| 257 | |
| 258 | void RecordDecl::Destroy(ASTContext& C) { |
| 259 | if (isDefinition()) |
| 260 | for (field_iterator I=field_begin(), E=field_end(); I!=E; ++I) |
| 261 | (*I)->Destroy(C); |
| 262 | |
| 263 | TagDecl::Destroy(C); |
| 264 | } |
| 265 | |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 266 | /// defineBody - When created, RecordDecl's correspond to a forward declared |
| 267 | /// record. This method is used to mark the decl as being defined, with the |
| 268 | /// specified contents. |
Ted Kremenek | 4b7c983 | 2008-09-05 17:16:31 +0000 | [diff] [blame] | 269 | void RecordDecl::defineBody(ASTContext& C, FieldDecl **members, |
| 270 | unsigned numMembers) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 271 | assert(!isDefinition() && "Cannot redefine record!"); |
| 272 | setDefinition(true); |
| 273 | NumMembers = numMembers; |
| 274 | if (numMembers) { |
| 275 | Members = new FieldDecl*[numMembers]; |
| 276 | memcpy(Members, members, numMembers*sizeof(Decl*)); |
| 277 | } |
Ted Kremenek | 4b7c983 | 2008-09-05 17:16:31 +0000 | [diff] [blame] | 278 | |
| 279 | // Let ASTContext know that this is the defining RecordDecl this type. |
| 280 | C.setTagDefinition(this); |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 281 | } |
| 282 | |
Ted Kremenek | 4b7c983 | 2008-09-05 17:16:31 +0000 | [diff] [blame] | 283 | |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 284 | FieldDecl *RecordDecl::getMember(IdentifierInfo *II) { |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 285 | if (Members == 0 || NumMembers < 0) |
| 286 | return 0; |
Fariborz Jahanian | 3f5faf7 | 2007-10-04 00:45:27 +0000 | [diff] [blame] | 287 | |
Chris Lattner | 8a93423 | 2008-03-31 00:36:02 +0000 | [diff] [blame] | 288 | // Linear search. When C++ classes come along, will likely need to revisit. |
| 289 | for (int i = 0; i != NumMembers; ++i) |
| 290 | if (Members[i]->getIdentifier() == II) |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 291 | return Members[i]; |
Reid Spencer | 5f016e2 | 2007-07-11 17:01:13 +0000 | [diff] [blame] | 292 | return 0; |
Chris Lattner | 6fa5f09 | 2007-07-12 15:43:07 +0000 | [diff] [blame] | 293 | } |
Steve Naroff | 56ee689 | 2008-10-08 17:01:13 +0000 | [diff] [blame] | 294 | |
| 295 | //===----------------------------------------------------------------------===// |
| 296 | // BlockDecl Implementation |
| 297 | //===----------------------------------------------------------------------===// |
| 298 | |
| 299 | BlockDecl::~BlockDecl() { |
| 300 | } |
| 301 | |
| 302 | void BlockDecl::Destroy(ASTContext& C) { |
| 303 | if (Body) |
| 304 | Body->Destroy(C); |
| 305 | |
| 306 | for (param_iterator I=param_begin(), E=param_end(); I!=E; ++I) |
| 307 | (*I)->Destroy(C); |
| 308 | |
| 309 | Decl::Destroy(C); |
| 310 | } |