blob: 1f36f515e43640972365ede91a761addb6133bf3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
//===--- DeclGroup.cpp - Classes for representing groups of Decls ----------==//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file implements the DeclGroup and DeclGroupRef classes.
//
//===----------------------------------------------------------------------===//
#include "flang/AST/DeclGroup.h"
#include "flang/AST/Decl.h"
#include "flang/AST/ASTContext.h"
#include "llvm/Support/Allocator.h"
namespace flang {
DeclGroup *DeclGroup::Create(ASTContext &C, Decl **Decls, unsigned NumDecls) {
assert(NumDecls > 1 && "Invalid DeclGroup");
unsigned Size = sizeof(DeclGroup) + sizeof(Decl*) * NumDecls;
void* Mem = C.Allocate(Size, llvm::AlignOf<DeclGroup>::Alignment);
new (Mem) DeclGroup(NumDecls, Decls);
return static_cast<DeclGroup*>(Mem);
}
DeclGroup::DeclGroup(unsigned numdecls, Decl **decls) : NumDecls(numdecls) {
assert(numdecls > 0);
assert(decls);
memcpy(this + 1, decls, numdecls * sizeof(*decls));
}
} //namespace flang
|