blob: 0d0b746ad60c78615bfb7c20712cd7728827fff0 [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 {
Argyrios Kyrtzidisb0d178d2008-10-24 22:28:18 +000064 // C++ 9.3.2p1: The type of this in a member function of a class X is X*.
65 // If the member function is declared const, the type of this is const X*,
66 // if the member function is declared volatile, the type of this is
67 // volatile X*, and if the member function is declared const volatile,
68 // the type of this is const volatile X*.
69
Ted Kremenek4b7c9832008-09-05 17:16:31 +000070 assert(isInstance() && "No 'this' for static methods!");
Argyrios Kyrtzidisd2595ec2008-10-12 18:40:01 +000071 QualType ClassTy = C.getTagDeclType(const_cast<CXXRecordDecl*>(
72 cast<CXXRecordDecl>(getParent())));
Argyrios Kyrtzidis971c4fa2008-10-24 21:46:40 +000073 ClassTy = ClassTy.getWithAdditionalQualifiers(getTypeQualifiers());
74 return C.getPointerType(ClassTy).withConst();
Ted Kremenek4b7c9832008-09-05 17:16:31 +000075}
76
77CXXClassVarDecl *CXXClassVarDecl::Create(ASTContext &C, CXXRecordDecl *RD,
78 SourceLocation L, IdentifierInfo *Id,
79 QualType T, ScopedDecl *PrevDecl) {
80 void *Mem = C.getAllocator().Allocate<CXXClassVarDecl>();
81 return new (Mem) CXXClassVarDecl(RD, L, Id, T, PrevDecl);
82}
Douglas Gregor8e9bebd2008-10-21 16:13:35 +000083
84OverloadedFunctionDecl *
85OverloadedFunctionDecl::Create(ASTContext &C, DeclContext *DC,
86 IdentifierInfo *Id) {
87 void *Mem = C.getAllocator().Allocate<OverloadedFunctionDecl>();
88 return new (Mem) OverloadedFunctionDecl(DC, Id);
89}