forked from ldc-developers/ldc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathirmodule.h
51 lines (41 loc) · 1.19 KB
/
irmodule.h
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
//===-- ir/irmodule.h - Codegen state for top-level D modules ---*- C++ -*-===//
//
// LDC – the LLVM D compiler
//
// This file is distributed under the BSD-style LDC license. See the LICENSE
// file for details.
//
//===----------------------------------------------------------------------===//
//
// Represents the state of a D module on its way through code generation.
//
//===----------------------------------------------------------------------===//
#ifndef LDC_IR_IRMODULE_H
#define LDC_IR_IRMODULE_H
#include <list>
class FuncDeclaration;
class VarDeclaration;
class Module;
namespace llvm {
class GlobalVariable;
}
struct IrModule {
IrModule(Module *module);
virtual ~IrModule() = default;
Module *const M = nullptr;
llvm::GlobalVariable *moduleInfoSymbol();
// static ctors/dtors/unittests
using FuncDeclList = std::list<FuncDeclaration *>;
using GatesList = std::list<VarDeclaration *>;
FuncDeclList ctors;
FuncDeclList dtors;
FuncDeclList sharedCtors;
FuncDeclList sharedDtors;
GatesList gates;
GatesList sharedGates;
FuncDeclList unitTests;
private:
llvm::GlobalVariable *moduleInfoVar = nullptr;
};
IrModule *getIrModule(Module *m);
#endif