|
|
|
@ -7,18 +7,40 @@ namespace ir {
|
|
|
|
|
|
|
|
|
|
|
|
BinaryInst::BinaryInst(Opcode op, std::shared_ptr<Type> ty, Value* lhs,
|
|
|
|
BinaryInst::BinaryInst(Opcode op, std::shared_ptr<Type> ty, Value* lhs,
|
|
|
|
Value* rhs, std::string name)
|
|
|
|
Value* rhs, std::string name)
|
|
|
|
: Instruction(op, std::move(ty), std::move(name)), lhs_(lhs), rhs_(rhs) {}
|
|
|
|
: Instruction(op, std::move(ty), std::move(name)), lhs_(lhs), rhs_(rhs) {
|
|
|
|
|
|
|
|
if (lhs_) {
|
|
|
|
|
|
|
|
lhs_->AddUser(this);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (rhs_) {
|
|
|
|
|
|
|
|
rhs_->AddUser(this);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
ReturnInst::ReturnInst(Value* val)
|
|
|
|
ReturnInst::ReturnInst(Value* val)
|
|
|
|
: Instruction(Opcode::Ret, Type::Void(), ""), value_(val) {}
|
|
|
|
: Instruction(Opcode::Ret, Type::Void(), ""), value_(val) {
|
|
|
|
|
|
|
|
if (value_) {
|
|
|
|
|
|
|
|
value_->AddUser(this);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
AllocaInst::AllocaInst(std::string name)
|
|
|
|
AllocaInst::AllocaInst(std::string name)
|
|
|
|
: Instruction(Opcode::Alloca, Type::PtrInt32(), std::move(name)) {}
|
|
|
|
: Instruction(Opcode::Alloca, Type::PtrInt32(), std::move(name)) {}
|
|
|
|
|
|
|
|
|
|
|
|
LoadInst::LoadInst(Value* ptr, std::string name)
|
|
|
|
LoadInst::LoadInst(Value* ptr, std::string name)
|
|
|
|
: Instruction(Opcode::Load, Type::Int32(), std::move(name)), ptr_(ptr) {}
|
|
|
|
: Instruction(Opcode::Load, Type::Int32(), std::move(name)), ptr_(ptr) {
|
|
|
|
|
|
|
|
if (ptr_) {
|
|
|
|
|
|
|
|
ptr_->AddUser(this);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
StoreInst::StoreInst(Value* val, Value* ptr)
|
|
|
|
StoreInst::StoreInst(Value* val, Value* ptr)
|
|
|
|
: Instruction(Opcode::Store, Type::Void(), ""), value_(val), ptr_(ptr) {}
|
|
|
|
: Instruction(Opcode::Store, Type::Void(), ""), value_(val), ptr_(ptr) {
|
|
|
|
|
|
|
|
if (value_) {
|
|
|
|
|
|
|
|
value_->AddUser(this);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ptr_) {
|
|
|
|
|
|
|
|
ptr_->AddUser(this);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace ir
|
|
|
|
} // namespace ir
|
|
|
|
|