aboutsummaryrefslogtreecommitdiff
path: root/lib/AST/DeclGroup.cpp
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2008-09-25 17:13:40 +0000
committerTed Kremenek <kremenek@apple.com>2008-09-25 17:13:40 +0000
commitd17062cc23df2137378eb808545e24be484c321a (patch)
treedbc3b80b605af1418d5bc707f4138dd2ba695e67 /lib/AST/DeclGroup.cpp
parent7ebe0ed4443428b47f04f97c86c78c1ba775cedb (diff)
Added prototype implementation of the DeclGroup, DeclGroupRef, and DeclGroupOwningRef classes.
Documentation and testing are pending. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@56611 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/AST/DeclGroup.cpp')
-rw-r--r--lib/AST/DeclGroup.cpp59
1 files changed, 59 insertions, 0 deletions
diff --git a/lib/AST/DeclGroup.cpp b/lib/AST/DeclGroup.cpp
new file mode 100644
index 0000000000..5987d5a701
--- /dev/null
+++ b/lib/AST/DeclGroup.cpp
@@ -0,0 +1,59 @@
+//===--- DeclGroup.cpp - Classes for representing groups of Decls -*- C++ -*-==//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+//
+// This file defines the DeclGroup, DeclGroupRef, and OwningDeclGroup classes.
+//
+//===----------------------------------------------------------------------===//
+
+#include "clang/AST/DeclGroup.h"
+#include "clang/AST/Decl.h"
+#include "clang/AST/ASTContext.h"
+#include "llvm/Support/Allocator.h"
+
+using namespace clang;
+
+DeclGroup* DeclGroup::Create(ASTContext& C, unsigned numdecls, Decl** decls) {
+ unsigned size = sizeof(DeclGroup) + sizeof(Decl*) * numdecls;
+ unsigned alignment = llvm::AlignOf<DeclGroup>::Alignment;
+ void* mem = C.getAllocator().Allocate(size, alignment);
+ new (mem) DeclGroup(numdecls, decls);
+ return static_cast<DeclGroup*>(mem);
+}
+
+DeclGroup::DeclGroup(unsigned numdecls, Decl** decls) {
+ assert (numdecls > 0);
+ assert (decls);
+ memcpy(this+1, decls, numdecls * sizeof(*decls));
+}
+
+void DeclGroup::Destroy(ASTContext& C) {
+ Decl** Decls = (Decl**) this + 1;
+
+ for (unsigned i = 0; i < NumDecls; ++i)
+ Decls[i]->Destroy(C);
+
+ this->~DeclGroup();
+ C.getAllocator().Deallocate((void*) this);
+}
+
+DeclGroupOwningRef::~DeclGroupOwningRef() {
+ assert (ThePtr == 0 && "Destroy method not called.");
+}
+
+void DeclGroupOwningRef::Destroy(ASTContext& C) {
+ if (!ThePtr)
+ return;
+
+ if (getKind() == DeclKind)
+ reinterpret_cast<Decl*>(ThePtr)->Destroy(C);
+ else
+ reinterpret_cast<DeclGroup*>(ThePtr & ~Mask)->Destroy(C);
+
+ ThePtr = 0;
+}