Add implied return; at end of non-value-returning functions. (#2942)

Add validation that every code block in a function is terminated by a sequence of terminating instructions, and that terminators don't appear anywhere else in code blocks.

This required tracking whether we're in a reachable code block. That's done on the fly when we create a new code block; the new `SemanticsNodeBlockId::Unreachable` is used to represent the case where we're not actually creating a code block because we're in unreachable code.
This commit is contained in:
Richard Smith
2023-06-26 15:17:47 -07:00
committed by GitHub
parent 92d73985df
commit 4b69264cb1
76 changed files with 1150 additions and 302 deletions
@@ -9,20 +9,18 @@
namespace Carbon {
auto SemanticsNodeBlockStack::Push() -> void {
auto SemanticsNodeBlockStack::Push(SemanticsNodeBlockId id) -> void {
CARBON_VLOG() << name_ << " Push " << stack_.size() << "\n";
CARBON_CHECK(stack_.size() < (1 << 20))
<< "Excessive stack size: likely infinite loop";
stack_.push_back(SemanticsNodeBlockId::Invalid);
stack_.push_back(id);
}
auto SemanticsNodeBlockStack::PeekForAdd() -> SemanticsNodeBlockId {
CARBON_CHECK(!stack_.empty());
CARBON_CHECK(!stack_.empty()) << "no current block";
auto& back = stack_.back();
if (!back.is_valid()) {
SemanticsNodeBlockId block_id(node_blocks_->size());
node_blocks_->resize(block_id.index + 1);
back = block_id;
back = semantics_ir_->AddNodeBlock();
CARBON_VLOG() << name_ << " Add " << stack_.size() - 1 << ": " << back
<< "\n";
}
@@ -30,6 +28,7 @@ auto SemanticsNodeBlockStack::PeekForAdd() -> SemanticsNodeBlockId {
}
auto SemanticsNodeBlockStack::Pop() -> SemanticsNodeBlockId {
CARBON_CHECK(!stack_.empty()) << "no current block";
auto back = stack_.pop_back_val();
CARBON_VLOG() << name_ << " Pop " << stack_.size() << ": " << back << "\n";
if (!back.is_valid()) {