Switch Statement to use inheritance+cast (#718)

This commit is contained in:
Jon Meow
2021-08-10 13:10:05 -07:00
committed by GitHub
parent 9168375978
commit d5564280ab
5 changed files with 535 additions and 567 deletions
+63 -212
View File
@@ -6,196 +6,24 @@
#include "common/check.h"
#include "executable_semantics/common/arena.h"
#include "llvm/Support/Casting.h"
namespace Carbon {
auto Statement::GetExpressionStatement() const -> const ExpressionStatement& {
return std::get<ExpressionStatement>(value);
}
auto Statement::GetAssign() const -> const Assign& {
return std::get<Assign>(value);
}
auto Statement::GetVariableDefinition() const -> const VariableDefinition& {
return std::get<VariableDefinition>(value);
}
auto Statement::GetIf() const -> const If& { return std::get<If>(value); }
auto Statement::GetReturn() const -> const Return& {
return std::get<Return>(value);
}
auto Statement::GetSequence() const -> const Sequence& {
return std::get<Sequence>(value);
}
auto Statement::GetBlock() const -> const Block& {
return std::get<Block>(value);
}
auto Statement::GetWhile() const -> const While& {
return std::get<While>(value);
}
auto Statement::GetBreak() const -> const Break& {
return std::get<Break>(value);
}
auto Statement::GetContinue() const -> const Continue& {
return std::get<Continue>(value);
}
auto Statement::GetMatch() const -> const Match& {
return std::get<Match>(value);
}
auto Statement::GetContinuation() const -> const Continuation& {
return std::get<Continuation>(value);
}
auto Statement::GetRun() const -> const Run& { return std::get<Run>(value); }
auto Statement::GetAwait() const -> const Await& {
return std::get<Await>(value);
}
auto Statement::MakeExpressionStatement(int line_num, const Expression* exp)
-> const Statement* {
auto* s = global_arena->New<Statement>();
s->line_num = line_num;
s->value = ExpressionStatement({.exp = exp});
return s;
}
auto Statement::MakeAssign(int line_num, const Expression* lhs,
const Expression* rhs) -> const Statement* {
auto* s = global_arena->New<Statement>();
s->line_num = line_num;
s->value = Assign({.lhs = lhs, .rhs = rhs});
return s;
}
auto Statement::MakeVariableDefinition(int line_num, const Pattern* pat,
const Expression* init)
-> const Statement* {
auto* s = global_arena->New<Statement>();
s->line_num = line_num;
s->value = VariableDefinition({.pat = pat, .init = init});
return s;
}
auto Statement::MakeIf(int line_num, const Expression* cond,
const Statement* then_stmt, const Statement* else_stmt)
-> const Statement* {
auto* s = global_arena->New<Statement>();
s->line_num = line_num;
s->value = If({.cond = cond, .then_stmt = then_stmt, .else_stmt = else_stmt});
return s;
}
auto Statement::MakeWhile(int line_num, const Expression* cond,
const Statement* body) -> const Statement* {
auto* s = global_arena->New<Statement>();
s->line_num = line_num;
s->value = While({.cond = cond, .body = body});
return s;
}
auto Statement::MakeBreak(int line_num) -> const Statement* {
auto* s = global_arena->New<Statement>();
s->line_num = line_num;
s->value = Break();
return s;
}
auto Statement::MakeContinue(int line_num) -> const Statement* {
auto* s = global_arena->New<Statement>();
s->line_num = line_num;
s->value = Continue();
return s;
}
auto Statement::MakeReturn(int line_num, const Expression* exp,
bool is_omitted_exp) -> const Statement* {
auto* s = global_arena->New<Statement>();
s->line_num = line_num;
if (exp == nullptr) {
CHECK(is_omitted_exp);
exp = global_arena->New<TupleLiteral>(line_num);
}
s->value = Return({.exp = exp, .is_omitted_exp = is_omitted_exp});
return s;
}
auto Statement::MakeSequence(int line_num, const Statement* s1,
const Statement* s2) -> const Statement* {
auto* s = global_arena->New<Statement>();
s->line_num = line_num;
s->value = Sequence({.stmt = s1, .next = s2});
return s;
}
auto Statement::MakeBlock(int line_num, const Statement* stmt)
-> const Statement* {
auto* s = global_arena->New<Statement>();
s->line_num = line_num;
s->value = Block({.stmt = stmt});
return s;
}
auto Statement::MakeMatch(
int line_num, const Expression* exp,
std::list<std::pair<const Pattern*, const Statement*>>* clauses)
-> const Statement* {
auto* s = global_arena->New<Statement>();
s->line_num = line_num;
s->value = Match({.exp = exp, .clauses = clauses});
return s;
}
// Returns an AST node for a continuation statement give its line number and
// parts.
auto Statement::MakeContinuation(int line_num,
std::string continuation_variable,
const Statement* body) -> const Statement* {
auto* s = global_arena->New<Statement>();
s->line_num = line_num;
s->value =
Continuation({.continuation_variable = std::move(continuation_variable),
.body = body});
return s;
}
// Returns an AST node for a run statement give its line number and argument.
auto Statement::MakeRun(int line_num, const Expression* argument)
-> const Statement* {
auto* s = global_arena->New<Statement>();
s->line_num = line_num;
s->value = Run({.argument = argument});
return s;
}
// Returns an AST node for an await statement give its line number.
auto Statement::MakeAwait(int line_num) -> const Statement* {
auto* s = global_arena->New<Statement>();
s->line_num = line_num;
s->value = Await();
return s;
}
using llvm::cast;
void Statement::PrintDepth(int depth, llvm::raw_ostream& out) const {
if (depth == 0) {
out << " ... ";
return;
}
switch (tag()) {
case StatementKind::Match:
out << "match (" << *GetMatch().exp << ") {";
switch (Tag()) {
case Kind::Match: {
const auto& match = cast<Match>(*this);
out << "match (" << *match.Exp() << ") {";
if (depth < 0 || depth > 1) {
out << "\n";
for (auto& clause : *GetMatch().clauses) {
for (auto& clause : *match.Clauses()) {
out << "case " << *clause.first << " =>\n";
clause.second->PrintDepth(depth - 1, out);
out << "\n";
@@ -205,59 +33,72 @@ void Statement::PrintDepth(int depth, llvm::raw_ostream& out) const {
}
out << "}";
break;
case StatementKind::While:
out << "while (" << *GetWhile().cond << ")\n";
GetWhile().body->PrintDepth(depth - 1, out);
}
case Kind::While: {
const auto& while_stmt = cast<While>(*this);
out << "while (" << *while_stmt.Cond() << ")\n";
while_stmt.Body()->PrintDepth(depth - 1, out);
break;
case StatementKind::Break:
}
case Kind::Break:
out << "break;";
break;
case StatementKind::Continue:
case Kind::Continue:
out << "continue;";
break;
case StatementKind::VariableDefinition:
out << "var " << *GetVariableDefinition().pat << " = "
<< *GetVariableDefinition().init << ";";
case Kind::VariableDefinition: {
const auto& var = cast<VariableDefinition>(*this);
out << "var " << *var.Pat() << " = " << *var.Init() << ";";
break;
case StatementKind::ExpressionStatement:
out << *GetExpressionStatement().exp << ";";
}
case Kind::ExpressionStatement:
out << *cast<ExpressionStatement>(*this).Exp() << ";";
break;
case StatementKind::Assign:
out << *GetAssign().lhs << " = " << *GetAssign().rhs << ";";
case Kind::Assign: {
const auto& assign = cast<Assign>(*this);
out << *assign.Lhs() << " = " << *assign.Rhs() << ";";
break;
case StatementKind::If:
out << "if (" << *GetIf().cond << ")\n";
GetIf().then_stmt->PrintDepth(depth - 1, out);
if (GetIf().else_stmt) {
}
case Kind::If: {
const auto& if_stmt = cast<If>(*this);
out << "if (" << *if_stmt.Cond() << ")\n";
if_stmt.ThenStmt()->PrintDepth(depth - 1, out);
if (if_stmt.ElseStmt()) {
out << "\nelse\n";
GetIf().else_stmt->PrintDepth(depth - 1, out);
if_stmt.ElseStmt()->PrintDepth(depth - 1, out);
}
break;
case StatementKind::Return:
if (GetReturn().is_omitted_exp) {
}
case Kind::Return: {
const auto& ret = cast<Return>(*this);
if (ret.IsOmittedExp()) {
out << "return;";
} else {
out << "return " << *GetReturn().exp << ";";
out << "return " << *ret.Exp() << ";";
}
break;
case StatementKind::Sequence:
GetSequence().stmt->PrintDepth(depth, out);
}
case Kind::Sequence: {
const auto& seq = cast<Sequence>(*this);
seq.Stmt()->PrintDepth(depth, out);
if (depth < 0 || depth > 1) {
out << "\n";
} else {
out << " ";
}
if (GetSequence().next) {
GetSequence().next->PrintDepth(depth - 1, out);
if (seq.Next()) {
seq.Next()->PrintDepth(depth - 1, out);
}
break;
case StatementKind::Block:
}
case Kind::Block: {
const auto& block = cast<Block>(*this);
out << "{";
if (depth < 0 || depth > 1) {
out << "\n";
}
if (GetBlock().stmt) {
GetBlock().stmt->PrintDepth(depth, out);
if (block.Stmt()) {
block.Stmt()->PrintDepth(depth, out);
if (depth < 0 || depth > 1) {
out << "\n";
}
@@ -267,23 +108,33 @@ void Statement::PrintDepth(int depth, llvm::raw_ostream& out) const {
out << "\n";
}
break;
case StatementKind::Continuation:
out << "continuation " << GetContinuation().continuation_variable << " ";
}
case Kind::Continuation: {
const auto& cont = cast<Continuation>(*this);
out << "continuation " << cont.ContinuationVariable() << " ";
if (depth < 0 || depth > 1) {
out << "\n";
}
GetContinuation().body->PrintDepth(depth - 1, out);
cont.Body()->PrintDepth(depth - 1, out);
if (depth < 0 || depth > 1) {
out << "\n";
}
break;
case StatementKind::Run:
out << "run " << *GetRun().argument << ";";
}
case Kind::Run:
out << "run " << *cast<Run>(*this).Argument() << ";";
break;
case StatementKind::Await:
case Kind::Await:
out << "await;";
break;
}
}
Return::Return(int line_num, const Expression* exp, bool is_omitted_exp)
: Statement(Kind::Return, line_num),
exp(exp != nullptr ? exp : global_arena->New<TupleLiteral>(line_num)),
is_omitted_exp(is_omitted_exp) {
CHECK(exp != nullptr || is_omitted_exp);
}
} // namespace Carbon