-
-
Notifications
You must be signed in to change notification settings - Fork 267
/
Copy pathirmodule.cpp
52 lines (41 loc) · 1.37 KB
/
irmodule.cpp
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
52
//===-- irmodule.cpp ------------------------------------------------------===//
//
// LDC – the LLVM D compiler
//
// This file is distributed under the BSD-style LDC license. See the LICENSE
// file for details.
//
//===----------------------------------------------------------------------===//
#include "ir/irmodule.h"
#include "dmd/module.h"
#include "gen/irstate.h"
#include "gen/llvm.h"
#include "gen/llvmhelpers.h"
#include "gen/mangling.h"
#include "gen/tollvm.h"
#include "ir/irdsymbol.h"
#include "ir/irfunction.h"
IrModule::IrModule(Module *module) : M(module) {}
llvm::GlobalVariable *IrModule::moduleInfoSymbol() {
if (moduleInfoVar) {
return moduleInfoVar;
}
const auto irMangle = getIRMangledModuleInfoSymbolName(M);
const bool useDLLImport = !M->isRoot() && dllimportDataSymbol(M);
moduleInfoVar = declareGlobal(Loc(), gIR->module,
llvm::StructType::create(gIR->context()),
irMangle, false, false, useDLLImport);
return moduleInfoVar;
}
IrModule *getIrModule(Module *m) {
if (!m) {
m = gIR->func()->decl->getModule();
}
assert(m && "null module");
if (m->ir->m_type == IrDsymbol::NotSet) {
m->ir->irModule = new IrModule(m);
m->ir->m_type = IrDsymbol::ModuleType;
}
assert(m->ir->m_type == IrDsymbol::ModuleType);
return m->ir->irModule;
}