-
Notifications
You must be signed in to change notification settings - Fork 58
/
Copy pathEmitIR.cpp
169 lines (133 loc) · 3.79 KB
/
EmitIR.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
#include "EmitIR.hpp"
#include <llvm/Transforms/Utils/ModuleUtils.h>
#define self (*this)
using namespace asg;
EmitIR::EmitIR(Obj::Mgr& mgr, llvm::LLVMContext& ctx, llvm::StringRef mid)
: mMgr(mgr)
, mMod(mid, ctx)
, mCtx(ctx)
, mIntTy(llvm::Type::getInt32Ty(ctx))
, mCurIrb(std::make_unique<llvm::IRBuilder<>>(ctx))
, mCtorTy(llvm::FunctionType::get(llvm::Type::getVoidTy(ctx), false))
{
}
llvm::Module&
EmitIR::operator()(asg::TranslationUnit* tu)
{
for (auto&& i : tu->decls)
self(i);
return mMod;
}
//==============================================================================
// 类型
//==============================================================================
llvm::Type*
EmitIR::operator()(const Type* type)
{
if (type->texp == nullptr) {
switch (type->spec) {
case Type::Spec::kInt:
return llvm::Type::getInt32Ty(mCtx);
// TODO: 在此添加对更多基础类型的处理
default:
ABORT();
}
}
Type subt;
subt.spec = type->spec;
subt.qual = type->qual;
subt.texp = type->texp->sub;
// TODO: 在此添加对指针类型、数组类型和函数类型的处理
if (auto p = type->texp->dcst<FunctionType>()) {
std::vector<llvm::Type*> pty;
// TODO: 在此添加对函数参数类型的处理
return llvm::FunctionType::get(self(&subt), std::move(pty), false);
}
ABORT();
}
//==============================================================================
// 表达式
//==============================================================================
llvm::Value*
EmitIR::operator()(Expr* obj)
{
// TODO: 在此添加对更多表达式处理的跳转
if (auto p = obj->dcst<IntegerLiteral>())
return self(p);
ABORT();
}
llvm::Constant*
EmitIR::operator()(IntegerLiteral* obj)
{
return llvm::ConstantInt::get(self(obj->type), obj->val);
}
// TODO: 在此添加对更多表达式类型的处理
//==============================================================================
// 语句
//==============================================================================
void
EmitIR::operator()(Stmt* obj)
{
// TODO: 在此添加对更多Stmt类型的处理的跳转
if (auto p = obj->dcst<CompoundStmt>())
return self(p);
if (auto p = obj->dcst<ReturnStmt>())
return self(p);
ABORT();
}
// TODO: 在此添加对更多Stmt类型的处理
void
EmitIR::operator()(CompoundStmt* obj)
{
// TODO: 可以在此添加对符号重名的处理
for (auto&& stmt : obj->subs)
self(stmt);
}
void
EmitIR::operator()(ReturnStmt* obj)
{
auto& irb = *mCurIrb;
llvm::Value* retVal;
if (!obj->expr)
retVal = nullptr;
else
retVal = self(obj->expr);
mCurIrb->CreateRet(retVal);
auto exitBb = llvm::BasicBlock::Create(mCtx, "return_exit", mCurFunc);
mCurIrb->SetInsertPoint(exitBb);
}
//==============================================================================
// 声明
//==============================================================================
void
EmitIR::operator()(Decl* obj)
{
// TODO: 添加变量声明处理的跳转
if (auto p = obj->dcst<FunctionDecl>())
return self(p);
ABORT();
}
// TODO: 添加变量声明的处理
void
EmitIR::operator()(FunctionDecl* obj)
{
// 创建函数
auto fty = llvm::dyn_cast<llvm::FunctionType>(self(obj->type));
auto func = llvm::Function::Create(
fty, llvm::GlobalVariable::ExternalLinkage, obj->name, mMod);
obj->any = func;
if (obj->body == nullptr)
return;
auto entryBb = llvm::BasicBlock::Create(mCtx, "entry", func);
mCurIrb->SetInsertPoint(entryBb);
auto& entryIrb = *mCurIrb;
// TODO: 添加对函数参数的处理
// 翻译函数体
mCurFunc = func;
self(obj->body);
auto& exitIrb = *mCurIrb;
if (fty->getReturnType()->isVoidTy())
exitIrb.CreateRetVoid();
else
exitIrb.CreateUnreachable();
}