mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
Notes versus what jsiek wrote:
- This adopts Bazel for building.
- System-local versions of bison/flex are used. I found https://github.com/jmillikin/rules_bison, but those print a lot of warnings (things like -Wsign-compare IIRC) which makes builds hard to read. Plus I think the underlying bison_cc_library rule didn't work, so this would really only get a hermetic bison/flex build (helpful, but didn't seem worth more time).
- I'm adding in a .bazeliskrc to push a somewhat more standard choice of bazel versions. I noticed I was getting unstable versions by default, possible Google-specific, but seemed good to include.
- The `-lpthread` kludge.
- Turn all of the examples into golden tests.
- Including adding a golden test rule.
- Fixed various style guide issues. For example:
- Fixing function names to be CamelCase instead of snake_case (https://google.github.io/styleguide/cppguide.html#Function_Names)
- Removed exception use (https://google.github.io/styleguide/cppguide.html#Exceptions)
- File name fixes (https://github.com/carbon-language/carbon-lang/blob/trunk/docs/project/cpp_style_guide.md#file-names)
- Dropped `using` of `std` names -- I believe this is preferred (maybe we should be explicit about this in the Carbon style guide)
- Switched `enum` uses to `enum class` for ease-of-identification.
- Spent some time breaking out files to hopefully be easier to read/edit pieces, and understand relations between structs.
- Added `code requires` to `syntax.ypp` to address include issues
Possibly other things -- but the fundamental structure is, I believe, unchanged. I put in the golden tests pretty early to ensure I wasn't mutating output/results.
109 lines
2.4 KiB
C++
109 lines
2.4 KiB
C++
// Part of the Carbon Language project, under the Apache License v2.0 with LLVM
|
|
// Exceptions. See /LICENSE for license information.
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
#include <iostream>
|
|
#include <iterator>
|
|
#include <map>
|
|
#include <optional>
|
|
#include <utility>
|
|
#include <vector>
|
|
|
|
#include "executable_semantics/ast/expression.h"
|
|
#include "executable_semantics/ast/function_definition.h"
|
|
#include "executable_semantics/interpreter/interpreter.h"
|
|
#include "executable_semantics/interpreter/typecheck.h"
|
|
|
|
namespace Carbon {
|
|
|
|
void PrintAct(Action* act, std::ostream& out) {
|
|
switch (act->tag) {
|
|
case ActionKind::DeleteTmpAction:
|
|
std::cout << "delete_tmp(" << act->u.delete_tmp << ")";
|
|
break;
|
|
case ActionKind::ExpToLValAction:
|
|
out << "exp=>lval";
|
|
break;
|
|
case ActionKind::LValAction:
|
|
case ActionKind::ExpressionAction:
|
|
PrintExp(act->u.exp);
|
|
break;
|
|
case ActionKind::StatementAction:
|
|
PrintStatement(act->u.stmt, 1);
|
|
break;
|
|
case ActionKind::ValAction:
|
|
PrintValue(act->u.val, out);
|
|
break;
|
|
}
|
|
out << "<" << act->pos << ">";
|
|
if (act->results.size() > 0) {
|
|
out << "(";
|
|
for (auto& result : act->results) {
|
|
if (result) {
|
|
PrintValue(result, out);
|
|
}
|
|
out << ",";
|
|
}
|
|
out << ")";
|
|
}
|
|
}
|
|
|
|
void PrintActList(Cons<Action*>* ls, std::ostream& out) {
|
|
if (ls) {
|
|
PrintAct(ls->curr, out);
|
|
if (ls->next) {
|
|
out << " :: ";
|
|
PrintActList(ls->next, out);
|
|
}
|
|
}
|
|
}
|
|
|
|
auto MakeExpAct(Expression* e) -> Action* {
|
|
auto* act = new Action();
|
|
act->tag = ActionKind::ExpressionAction;
|
|
act->u.exp = e;
|
|
act->pos = -1;
|
|
return act;
|
|
}
|
|
|
|
auto MakeLvalAct(Expression* e) -> Action* {
|
|
auto* act = new Action();
|
|
act->tag = ActionKind::LValAction;
|
|
act->u.exp = e;
|
|
act->pos = -1;
|
|
return act;
|
|
}
|
|
|
|
auto MakeStmtAct(Statement* s) -> Action* {
|
|
auto* act = new Action();
|
|
act->tag = ActionKind::StatementAction;
|
|
act->u.stmt = s;
|
|
act->pos = -1;
|
|
return act;
|
|
}
|
|
|
|
auto MakeValAct(Value* v) -> Action* {
|
|
auto* act = new Action();
|
|
act->tag = ActionKind::ValAction;
|
|
act->u.val = v;
|
|
act->pos = -1;
|
|
return act;
|
|
}
|
|
|
|
auto MakeExpToLvalAct() -> Action* {
|
|
auto* act = new Action();
|
|
act->tag = ActionKind::ExpToLValAction;
|
|
act->pos = -1;
|
|
return act;
|
|
}
|
|
|
|
auto MakeDeleteAct(Address a) -> Action* {
|
|
auto* act = new Action();
|
|
act->tag = ActionKind::DeleteTmpAction;
|
|
act->pos = -1;
|
|
act->u.delete_tmp = a;
|
|
return act;
|
|
}
|
|
|
|
} // namespace Carbon
|