-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathEmitIR.hpp
62 lines (41 loc) · 1.62 KB
/
EmitIR.hpp
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
#include "asg.hpp"
#include <llvm/IR/IRBuilder.h>
#include <llvm/IR/LLVMContext.h>
#include <llvm/IR/Module.h>
class EmitIR
{
public:
Obj::Mgr& mMgr;
llvm::Module mMod;
EmitIR(Obj::Mgr& mgr, llvm::LLVMContext& ctx, llvm::StringRef mid = "-");
llvm::Module& operator()(asg::TranslationUnit* tu);
private:
llvm::LLVMContext& mCtx;
llvm::Type* mIntTy;
llvm::FunctionType* mCtorTy;
llvm::Function* mCurFunc;
std::unique_ptr<llvm::IRBuilder<>> mCurIrb;
//============================================================================
// 类型
//============================================================================
llvm::Type* operator()(const asg::Type* type);
//============================================================================
// 表达式
//============================================================================
llvm::Value* operator()(asg::Expr* obj);
llvm::Constant* operator()(asg::IntegerLiteral* obj);
// TODO: 添加表达式处理相关声明
//============================================================================
// 语句
//============================================================================
void operator()(asg::Stmt* obj);
void operator()(asg::CompoundStmt* obj);
void operator()(asg::ReturnStmt* obj);
// TODO: 添加语句处理相关声明
//============================================================================
// 声明
//============================================================================
void operator()(asg::Decl* obj);
void operator()(asg::FunctionDecl* obj);
// TODO: 添加声明处理相关声明
};