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.
16 lines
531 B
16 lines
531 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) {}
|
|
|
|
} // namespace ir
|