blob: 8baf4196bf6fb758a7e378e3fff14ca846aeae27 [file] [log] [blame]
Ted Kremenek4b7c9832008-09-05 17:16:31 +00001//===--- DeclCXX.cpp - C++ 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 C++ related Decl classes.
11//
12//===----------------------------------------------------------------------===//
13
14#include "clang/AST/DeclCXX.h"
15#include "clang/AST/ASTContext.h"
16using namespace clang;
17
18//===----------------------------------------------------------------------===//
19// Decl Allocation/Deallocation Method Implementations
20//===----------------------------------------------------------------------===//
21
22CXXFieldDecl *CXXFieldDecl::Create(ASTContext &C, CXXRecordDecl *RD,
23 SourceLocation L, IdentifierInfo *Id,
24 QualType T, Expr *BW) {
25 void *Mem = C.getAllocator().Allocate<CXXFieldDecl>();
26 return new (Mem) CXXFieldDecl(RD, L, Id, T, BW);
27}
28
29CXXRecordDecl *CXXRecordDecl::Create(ASTContext &C, TagKind TK, DeclContext *DC,
30 SourceLocation L, IdentifierInfo *Id,
31 CXXRecordDecl* PrevDecl) {
Ted Kremenek4b7c9832008-09-05 17:16:31 +000032 void *Mem = C.getAllocator().Allocate<CXXRecordDecl>();
Argyrios Kyrtzidis35bc0822008-10-15 00:42:39 +000033 CXXRecordDecl* R = new (Mem) CXXRecordDecl(TK, DC, L, Id);
Ted Kremenek4b7c9832008-09-05 17:16:31 +000034 C.getTypeDeclType(R, PrevDecl);
35 return R;
36}
37
Douglas Gregorf8268ae2008-10-22 17:49:05 +000038CXXRecordDecl::~CXXRecordDecl() {
Douglas Gregorf8268ae2008-10-22 17:49:05 +000039 delete [] Bases;
40}
41
Douglas Gregor57c856b2008-10-23 18:13:27 +000042void
43CXXRecordDecl::setBases(CXXBaseSpecifier const * const *Bases,
44 unsigned NumBases) {
45 if (this->Bases)
46 delete [] this->Bases;
47
48 this->Bases = new CXXBaseSpecifier[NumBases];
49 this->NumBases = NumBases;
50 for (unsigned i = 0; i < NumBases; ++i)
51 this->Bases[i] = *Bases[i];
52}
53
Ted Kremenek4b7c9832008-09-05 17:16:31 +000054CXXMethodDecl *
55CXXMethodDecl::Create(ASTContext &C, CXXRecordDecl *RD,
56 SourceLocation L, IdentifierInfo *Id,
57 QualType T, bool isStatic, bool isInline,
58 ScopedDecl *PrevDecl) {
59 void *Mem = C.getAllocator().Allocate<CXXMethodDecl>();
60 return new (Mem) CXXMethodDecl(RD, L, Id, T, isStatic, isInline, PrevDecl);
61}
62
63QualType CXXMethodDecl::getThisType(ASTContext &C) const {
64 assert(isInstance() && "No 'this' for static methods!");
Argyrios Kyrtzidisd2595ec2008-10-12 18:40:01 +000065 QualType ClassTy = C.getTagDeclType(const_cast<CXXRecordDecl*>(
66 cast<CXXRecordDecl>(getParent())));
Ted Kremenek4b7c9832008-09-05 17:16:31 +000067 QualType ThisTy = C.getPointerType(ClassTy);
68 ThisTy.addConst();
69 return ThisTy;
70}
71
72CXXClassVarDecl *CXXClassVarDecl::Create(ASTContext &C, CXXRecordDecl *RD,
73 SourceLocation L, IdentifierInfo *Id,
74 QualType T, ScopedDecl *PrevDecl) {
75 void *Mem = C.getAllocator().Allocate<CXXClassVarDecl>();
76 return new (Mem) CXXClassVarDecl(RD, L, Id, T, PrevDecl);
77}
Douglas Gregor8e9bebd2008-10-21 16:13:35 +000078
79OverloadedFunctionDecl *
80OverloadedFunctionDecl::Create(ASTContext &C, DeclContext *DC,
81 IdentifierInfo *Id) {
82 void *Mem = C.getAllocator().Allocate<OverloadedFunctionDecl>();
83 return new (Mem) OverloadedFunctionDecl(DC, Id);
84}