forked from NUDT-compiler/nudt-compiler-cpp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
897 B
25 lines
897 B
// IR 指令体系:
|
|
// - 二元运算/比较、load/store、call、br/condbr、ret、phi、alloca 等
|
|
// - 指令操作数与结果类型管理,支持打印与优化
|
|
#include "ir/IR.h"
|
|
|
|
namespace ir {
|
|
|
|
BinaryInst::BinaryInst(Opcode op, std::shared_ptr<Type> ty, Value* lhs,
|
|
Value* rhs, std::string name)
|
|
: Instruction(op, std::move(ty), std::move(name)), lhs_(lhs), rhs_(rhs) {}
|
|
|
|
ReturnInst::ReturnInst(Value* val)
|
|
: Instruction(Opcode::Ret, Type::Void(), ""), value_(val) {}
|
|
|
|
AllocaInst::AllocaInst(std::string name)
|
|
: Instruction(Opcode::Alloca, Type::PtrInt32(), std::move(name)) {}
|
|
|
|
LoadInst::LoadInst(Value* ptr, std::string name)
|
|
: Instruction(Opcode::Load, Type::Int32(), std::move(name)), ptr_(ptr) {}
|
|
|
|
StoreInst::StoreInst(Value* val, Value* ptr)
|
|
: Instruction(Opcode::Store, Type::Void(), ""), value_(val), ptr_(ptr) {}
|
|
|
|
} // namespace ir
|