2008-09-25 21:13:40 +04:00
|
|
|
//===--- 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"
|
2008-10-07 03:49:24 +04:00
|
|
|
#include "llvm/Bitcode/Serialize.h"
|
|
|
|
#include "llvm/Bitcode/Deserialize.h"
|
2008-09-25 21:13:40 +04:00
|
|
|
|
|
|
|
using namespace clang;
|
|
|
|
|
|
|
|
DeclGroup* DeclGroup::Create(ASTContext& C, unsigned numdecls, Decl** decls) {
|
2008-10-08 03:06:01 +04:00
|
|
|
assert (numdecls > 0);
|
2008-09-25 21:13:40 +04:00
|
|
|
unsigned size = sizeof(DeclGroup) + sizeof(Decl*) * numdecls;
|
|
|
|
unsigned alignment = llvm::AlignOf<DeclGroup>::Alignment;
|
2008-09-27 07:27:29 +04:00
|
|
|
void* mem = C.getAllocator().Allocate(size, alignment);
|
2008-09-25 21:13:40 +04:00
|
|
|
new (mem) DeclGroup(numdecls, decls);
|
|
|
|
return static_cast<DeclGroup*>(mem);
|
|
|
|
}
|
|
|
|
|
2008-10-07 03:49:24 +04:00
|
|
|
/// Emit - Serialize a DeclGroup to Bitcode.
|
|
|
|
void DeclGroup::Emit(llvm::Serializer& S) const {
|
|
|
|
S.EmitInt(NumDecls);
|
|
|
|
S.BatchEmitOwnedPtrs(NumDecls, &(*this)[0]);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Read - Deserialize a DeclGroup from Bitcode.
|
|
|
|
DeclGroup* DeclGroup::Create(llvm::Deserializer& D, ASTContext& C) {
|
|
|
|
unsigned NumDecls = (unsigned) D.ReadInt();
|
|
|
|
unsigned size = sizeof(DeclGroup) + sizeof(Decl*) * NumDecls;
|
|
|
|
unsigned alignment = llvm::AlignOf<DeclGroup>::Alignment;
|
|
|
|
DeclGroup* DG = (DeclGroup*) C.getAllocator().Allocate(size, alignment);
|
|
|
|
new (DG) DeclGroup();
|
|
|
|
DG->NumDecls = NumDecls;
|
|
|
|
D.BatchReadOwnedPtrs(NumDecls, &(*DG)[0], C);
|
|
|
|
return DG;
|
|
|
|
}
|
|
|
|
|
2008-10-08 03:06:01 +04:00
|
|
|
DeclGroup::DeclGroup(unsigned numdecls, Decl** decls) : NumDecls(numdecls) {
|
2008-09-25 21:13:40 +04:00
|
|
|
assert (numdecls > 0);
|
|
|
|
assert (decls);
|
|
|
|
memcpy(this+1, decls, numdecls * sizeof(*decls));
|
|
|
|
}
|
|
|
|
|
|
|
|
void DeclGroup::Destroy(ASTContext& C) {
|
2008-10-18 23:20:54 +04:00
|
|
|
Decl** Decls = (Decl**) (this + 1);
|
2008-09-25 21:13:40 +04:00
|
|
|
|
|
|
|
for (unsigned i = 0; i < NumDecls; ++i)
|
|
|
|
Decls[i]->Destroy(C);
|
|
|
|
|
|
|
|
this->~DeclGroup();
|
2009-01-28 00:25:57 +03:00
|
|
|
C.Deallocate((void*) this);
|
2008-09-25 21:13:40 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
DeclGroupOwningRef::~DeclGroupOwningRef() {
|
2008-10-07 02:17:16 +04:00
|
|
|
assert (D == 0 && "Destroy method not called.");
|
2008-09-25 21:13:40 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
void DeclGroupOwningRef::Destroy(ASTContext& C) {
|
2008-10-07 02:17:16 +04:00
|
|
|
if (!D)
|
2008-09-25 21:13:40 +04:00
|
|
|
return;
|
|
|
|
|
|
|
|
if (getKind() == DeclKind)
|
2008-10-07 02:17:16 +04:00
|
|
|
D->Destroy(C);
|
|
|
|
else
|
|
|
|
reinterpret_cast<DeclGroup*>(reinterpret_cast<uintptr_t>(D) &
|
|
|
|
~Mask)->Destroy(C);
|
2008-09-25 21:13:40 +04:00
|
|
|
|
2008-10-07 02:17:16 +04:00
|
|
|
D = 0;
|
2008-09-25 21:13:40 +04:00
|
|
|
}
|
2008-10-07 03:49:24 +04:00
|
|
|
|
|
|
|
void DeclGroupRef::Emit(llvm::Serializer& S) const {
|
|
|
|
if (getKind() == DeclKind) {
|
|
|
|
S.EmitBool(false);
|
|
|
|
S.EmitPtr(D);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
S.EmitBool(true);
|
|
|
|
S.EmitPtr(reinterpret_cast<DeclGroup*>(reinterpret_cast<uintptr_t>(D)
|
|
|
|
& ~Mask));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DeclGroupRef DeclGroupRef::ReadVal(llvm::Deserializer& D) {
|
|
|
|
if (D.ReadBool())
|
|
|
|
return DeclGroupRef(D.ReadPtr<Decl>());
|
|
|
|
|
|
|
|
return DeclGroupRef(D.ReadPtr<DeclGroup>());
|
|
|
|
}
|
|
|
|
|
|
|
|
void DeclGroupOwningRef::Emit(llvm::Serializer& S) const {
|
|
|
|
if (getKind() == DeclKind) {
|
|
|
|
S.EmitBool(false);
|
|
|
|
S.EmitOwnedPtr(D);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
S.EmitBool(true);
|
|
|
|
S.EmitOwnedPtr(reinterpret_cast<DeclGroup*>(reinterpret_cast<uintptr_t>(D)
|
|
|
|
& ~Mask));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-10-08 03:06:01 +04:00
|
|
|
DeclGroupOwningRef& DeclGroupOwningRef::Read(llvm::Deserializer& Dezr,
|
|
|
|
ASTContext& C) {
|
|
|
|
|
|
|
|
if (!Dezr.ReadBool())
|
|
|
|
D = Dezr.ReadOwnedPtr<Decl>(C);
|
|
|
|
else {
|
|
|
|
uintptr_t x = reinterpret_cast<uintptr_t>(Dezr.ReadOwnedPtr<DeclGroup>(C));
|
|
|
|
D = reinterpret_cast<Decl*>(x | DeclGroupKind);
|
2008-10-07 03:49:24 +04:00
|
|
|
}
|
2008-10-08 03:06:01 +04:00
|
|
|
|
|
|
|
return *this;
|
2008-10-07 03:49:24 +04:00
|
|
|
}
|