// IR 基本块: // - 保存指令序列 // - 维护或可计算前驱/后继关系,用于 CFG 分析与优化 #include "ir/IR.h" #include namespace ir { BasicBlock::BasicBlock(std::string name) : name_(std::move(name)) {} const std::string& BasicBlock::name() const { return name_; } bool BasicBlock::HasTerminator() const { return !instructions_.empty() && instructions_.back()->IsTerminator(); } const std::vector>& BasicBlock::instructions() const { return instructions_; } } // namespace ir