| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485 |
- // 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 "executable_semantics/interpreter/interpreter.h"
- #include <cassert>
- #include <iostream>
- #include <iterator>
- #include <list>
- #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/stack.h"
- #include "executable_semantics/interpreter/typecheck.h"
- #include "executable_semantics/tracing_flag.h"
- namespace Carbon {
- State* state = nullptr;
- auto PatternMatch(const Value* pat, const Value* val, Env,
- std::list<std::string>*, int) -> std::optional<Env>;
- void HandleValue();
- //
- // Auxiliary Functions
- //
- auto AllocateValue(const Value* v) -> Address {
- // Putting the following two side effects together in this function
- // ensures that we don't do anything else in between, which is really bad!
- // Consider whether to include a copy of the input v in this function
- // or to leave it up to the caller.
- Address a = state->heap.size();
- state->heap.push_back(new Value(*v));
- state->alive.push_back(true);
- return a;
- }
- auto CopyVal(const Value* val, int line_num) -> const Value* {
- switch (val->tag) {
- case ValKind::TupleV: {
- auto elts = new std::vector<std::pair<std::string, Address>>();
- for (auto& i : *val->u.tuple.elts) {
- CheckAlive(i.second, line_num);
- const Value* elt = CopyVal(state->heap[i.second], line_num);
- Address new_address = AllocateValue(elt);
- elts->push_back(make_pair(i.first, new_address));
- }
- return MakeTupleVal(elts);
- }
- case ValKind::AltV: {
- const Value* arg = CopyVal(state->heap[val->u.alt.argument], line_num);
- Address argument_address = AllocateValue(arg);
- return MakeAltVal(*val->u.alt.alt_name, *val->u.alt.choice_name,
- argument_address);
- }
- case ValKind::StructV: {
- const Value* inits = CopyVal(val->u.struct_val.inits, line_num);
- return MakeStructVal(val->u.struct_val.type, inits);
- }
- case ValKind::IntV:
- return MakeIntVal(val->u.integer);
- case ValKind::BoolV:
- return MakeBoolVal(val->u.boolean);
- case ValKind::FunV:
- return MakeFunVal(*val->u.fun.name, val->u.fun.param, val->u.fun.body);
- case ValKind::PtrV:
- return MakePtrVal(val->u.ptr);
- case ValKind::ContinuationV:
- // Copying a continuation is "shallow".
- return val;
- case ValKind::FunctionTV:
- return MakeFunTypeVal(CopyVal(val->u.fun_type.param, line_num),
- CopyVal(val->u.fun_type.ret, line_num));
- case ValKind::PointerTV:
- return MakePtrTypeVal(CopyVal(val->u.ptr_type.type, line_num));
- case ValKind::IntTV:
- return MakeIntTypeVal();
- case ValKind::BoolTV:
- return MakeBoolTypeVal();
- case ValKind::TypeTV:
- return MakeTypeTypeVal();
- case ValKind::VarTV:
- return MakeVarTypeVal(*val->u.var_type);
- case ValKind::AutoTV:
- return MakeAutoTypeVal();
- case ValKind::ContinuationTV:
- return MakeContinuationTypeVal();
- case ValKind::StructTV:
- case ValKind::ChoiceTV:
- case ValKind::VarPatV:
- case ValKind::AltConsV:
- return val; // no need to copy these because they are immutable?
- // No, they need to be copied so they don't get killed. -Jeremy
- }
- }
- void KillObject(Address address);
- // Marks all of the sub-objects of this value as dead.
- void KillSubObjects(const Value* val) {
- switch (val->tag) {
- case ValKind::AltV:
- KillObject(val->u.alt.argument);
- break;
- case ValKind::StructV:
- KillSubObjects(val->u.struct_val.inits);
- break;
- case ValKind::TupleV:
- for (auto& elt : *val->u.tuple.elts) {
- KillObject(elt.second);
- }
- break;
- default:
- break;
- }
- }
- // Marks the object at this address, and all of its sub-objects, as dead.
- void KillObject(Address address) {
- if (state->alive[address]) {
- state->alive[address] = false;
- KillSubObjects(state->heap[address]);
- } else {
- std::cerr << "runtime error, killing an already dead value" << std::endl;
- exit(-1);
- }
- }
- void PrintEnv(Env values, std::ostream& out) {
- for (const auto& [name, value] : values) {
- out << name << ": ";
- PrintValue(state->heap[value], out);
- out << ", ";
- }
- }
- //
- // Frame and State Operations
- //
- void PrintFrame(Frame* frame, std::ostream& out) {
- out << frame->name;
- out << "{";
- PrintActList(frame->todo, out);
- out << "}";
- }
- void PrintStack(Stack<Frame*> ls, std::ostream& out) {
- if (!ls.IsEmpty()) {
- PrintFrame(ls.Pop(), out);
- if (!ls.IsEmpty()) {
- out << " :: ";
- PrintStack(ls, out);
- }
- }
- }
- void PrintHeap(const std::vector<const Value*>& heap, std::ostream& out) {
- for (auto& iter : heap) {
- if (iter) {
- PrintValue(iter, out);
- } else {
- out << "_";
- }
- out << ", ";
- }
- }
- auto CurrentEnv(State* state) -> Env {
- Frame* frame = state->stack.Top();
- return frame->scopes.Top()->values;
- }
- void PrintState(std::ostream& out) {
- out << "{" << std::endl;
- out << "stack: ";
- PrintStack(state->stack, out);
- out << std::endl << "heap: ";
- PrintHeap(state->heap, out);
- if (!state->stack.IsEmpty() && !state->stack.Top()->scopes.IsEmpty()) {
- out << std::endl << "values: ";
- PrintEnv(CurrentEnv(state), out);
- }
- out << std::endl << "}" << std::endl;
- }
- //
- // More Auxiliary Functions
- //
- auto ValToInt(const Value* v, int line_num) -> int {
- switch (v->tag) {
- case ValKind::IntV:
- return v->u.integer;
- default:
- std::cerr << line_num << ": runtime error: expected an integer"
- << std::endl;
- exit(-1);
- }
- }
- auto ValToBool(const Value* v, int line_num) -> int {
- switch (v->tag) {
- case ValKind::BoolV:
- return v->u.boolean;
- default:
- std::cerr << "runtime type error: expected a Boolean" << std::endl;
- exit(-1);
- }
- }
- auto ValToPtr(const Value* v, int line_num) -> Address {
- CheckAlive(v->u.ptr, line_num);
- switch (v->tag) {
- case ValKind::PtrV:
- return v->u.ptr;
- default:
- std::cerr << "runtime type error: expected a pointer, not ";
- PrintValue(v, std::cerr);
- std::cerr << std::endl;
- exit(-1);
- }
- }
- // Returns *continuation represented as a list of frames.
- //
- // - Precondition: continuation->tag == ValKind::ContinuationV.
- auto ContinuationToVector(const Value* continuation, int sourceLocation)
- -> std::vector<Frame*> {
- if (continuation->tag == ValKind::ContinuationV) {
- return *continuation->u.continuation.stack;
- } else {
- std::cerr << sourceLocation << ": runtime error: expected an integer"
- << std::endl;
- exit(-1);
- }
- }
- auto EvalPrim(Operator op, const std::vector<const Value*>& args, int line_num)
- -> const Value* {
- switch (op) {
- case Operator::Neg:
- return MakeIntVal(-ValToInt(args[0], line_num));
- case Operator::Add:
- return MakeIntVal(ValToInt(args[0], line_num) +
- ValToInt(args[1], line_num));
- case Operator::Sub:
- return MakeIntVal(ValToInt(args[0], line_num) -
- ValToInt(args[1], line_num));
- case Operator::Not:
- return MakeBoolVal(!ValToBool(args[0], line_num));
- case Operator::And:
- return MakeBoolVal(ValToBool(args[0], line_num) &&
- ValToBool(args[1], line_num));
- case Operator::Or:
- return MakeBoolVal(ValToBool(args[0], line_num) ||
- ValToBool(args[1], line_num));
- case Operator::Eq:
- return MakeBoolVal(ValueEqual(args[0], args[1], line_num));
- }
- }
- // Globally-defined entities, such as functions, structs, choices.
- Env globals;
- void InitGlobals(std::list<Declaration>* fs) {
- for (auto const& d : *fs) {
- d.InitGlobals(globals);
- }
- }
- auto ChoiceDeclaration::InitGlobals(Env& globals) const -> void {
- auto alts = new VarValues();
- for (auto kv : alternatives) {
- auto t = InterpExp(Env(), kv.second);
- alts->push_back(make_pair(kv.first, t));
- }
- auto ct = MakeChoiceTypeVal(name, alts);
- auto a = AllocateValue(ct);
- globals.Set(name, a);
- }
- auto StructDeclaration::InitGlobals(Env& globals) const -> void {
- auto fields = new VarValues();
- auto methods = new VarValues();
- for (auto i = definition.members->begin(); i != definition.members->end();
- ++i) {
- switch ((*i)->tag) {
- case MemberKind::FieldMember: {
- auto t = InterpExp(Env(), (*i)->u.field.type);
- fields->push_back(make_pair(*(*i)->u.field.name, t));
- break;
- }
- }
- }
- auto st = MakeStructTypeVal(*definition.name, fields, methods);
- auto a = AllocateValue(st);
- globals.Set(*definition.name, a);
- }
- auto FunctionDeclaration::InitGlobals(Env& globals) const -> void {
- Env values;
- auto pt = InterpExp(values, definition->param_pattern);
- auto f = MakeFunVal(definition->name, pt, definition->body);
- Address a = AllocateValue(f);
- globals.Set(definition->name, a);
- }
- // Adds an entry in `globals` mapping the variable's name to the
- // result of evaluating the initializer.
- auto VariableDeclaration::InitGlobals(Env& globals) const -> void {
- auto v = InterpExp(globals, initializer);
- Address a = AllocateValue(v);
- globals.Set(name, a);
- }
- // { S, H} -> { { C, E, F} :: S, H}
- // where C is the body of the function,
- // E is the environment (functions + parameters + locals)
- // F is the function
- void CallFunction(int line_num, std::vector<const Value*> operas,
- State* state) {
- switch (operas[0]->tag) {
- case ValKind::FunV: {
- // Bind arguments to parameters
- std::list<std::string> params;
- std::optional<Env> matches = PatternMatch(
- operas[0]->u.fun.param, operas[1], globals, ¶ms, line_num);
- if (!matches) {
- std::cerr << "internal error in call_function, pattern match failed"
- << std::endl;
- exit(-1);
- }
- // Create the new frame and push it on the stack
- auto* scope = new Scope(*matches, params);
- auto* frame = new Frame(*operas[0]->u.fun.name, Stack(scope),
- Stack(MakeStmtAct(operas[0]->u.fun.body)));
- state->stack.Push(frame);
- break;
- }
- case ValKind::StructTV: {
- const Value* arg = CopyVal(operas[1], line_num);
- const Value* sv = MakeStructVal(operas[0], arg);
- Frame* frame = state->stack.Top();
- frame->todo.Push(MakeValAct(sv));
- break;
- }
- case ValKind::AltConsV: {
- const Value* arg = CopyVal(operas[1], line_num);
- const Value* av =
- MakeAltVal(*operas[0]->u.alt_cons.alt_name,
- *operas[0]->u.alt_cons.choice_name, AllocateValue(arg));
- Frame* frame = state->stack.Top();
- frame->todo.Push(MakeValAct(av));
- break;
- }
- default:
- std::cerr << line_num << ": in call, expected a function, not ";
- PrintValue(operas[0], std::cerr);
- std::cerr << std::endl;
- exit(-1);
- }
- }
- void KillScope(int line_num, Scope* scope) {
- for (const auto& l : scope->locals) {
- std::optional<Address> a = scope->values.Get(l);
- if (!a) {
- std::cerr << "internal error in KillScope" << std::endl;
- exit(-1);
- }
- KillObject(*a);
- }
- }
- void KillLocals(int line_num, Frame* frame) {
- for (auto scope : frame->scopes) {
- KillScope(line_num, scope);
- }
- }
- void CreateTuple(Frame* frame, Action* act, const Expression* /*exp*/) {
- // { { (v1,...,vn) :: C, E, F} :: S, H}
- // -> { { `(v1,...,vn) :: C, E, F} :: S, H}
- auto elts = new std::vector<std::pair<std::string, Address>>();
- auto f = act->u.exp->u.tuple.fields->begin();
- for (auto i = act->results.begin(); i != act->results.end(); ++i, ++f) {
- Address a = AllocateValue(*i); // copy?
- elts->push_back(make_pair(f->first, a));
- }
- const Value* tv = MakeTupleVal(elts);
- frame->todo.Pop(1);
- frame->todo.Push(MakeValAct(tv));
- }
- // Returns an updated environment that includes the bindings of
- // pattern variables to their matched values, if matching succeeds.
- //
- // The names of the pattern variables are added to the vars parameter.
- // Returns nullopt if the value doesn't match the pattern.
- auto PatternMatch(const Value* p, const Value* v, Env values,
- std::list<std::string>* vars, int line_num)
- -> std::optional<Env> {
- switch (p->tag) {
- case ValKind::VarPatV: {
- Address a = AllocateValue(CopyVal(v, line_num));
- vars->push_back(*p->u.var_pat.name);
- values.Set(*p->u.var_pat.name, a);
- return values;
- }
- case ValKind::TupleV:
- switch (v->tag) {
- case ValKind::TupleV: {
- if (p->u.tuple.elts->size() != v->u.tuple.elts->size()) {
- std::cerr << "runtime error: arity mismatch in tuple pattern match"
- << std::endl;
- exit(-1);
- }
- for (auto& elt : *p->u.tuple.elts) {
- auto a = FindTupleField(elt.first, v);
- if (a == std::nullopt) {
- std::cerr << "runtime error: field " << elt.first << "not in ";
- PrintValue(v, std::cerr);
- std::cerr << std::endl;
- exit(-1);
- }
- std::optional<Env> matches =
- PatternMatch(state->heap[elt.second], state->heap[*a], values,
- vars, line_num);
- if (!matches) {
- return std::nullopt;
- }
- values = *matches;
- } // for
- return values;
- }
- default:
- std::cerr
- << "internal error, expected a tuple value in pattern, not ";
- PrintValue(v, std::cerr);
- std::cerr << std::endl;
- exit(-1);
- }
- case ValKind::AltV:
- switch (v->tag) {
- case ValKind::AltV: {
- if (*p->u.alt.choice_name != *v->u.alt.choice_name ||
- *p->u.alt.alt_name != *v->u.alt.alt_name) {
- return std::nullopt;
- }
- std::optional<Env> matches = PatternMatch(
- state->heap[p->u.alt.argument], state->heap[v->u.alt.argument],
- values, vars, line_num);
- if (!matches) {
- return std::nullopt;
- }
- return *matches;
- }
- default:
- std::cerr
- << "internal error, expected a choice alternative in pattern, "
- "not ";
- PrintValue(v, std::cerr);
- std::cerr << std::endl;
- exit(-1);
- }
- case ValKind::FunctionTV:
- switch (v->tag) {
- case ValKind::FunctionTV: {
- std::optional<Env> matches = PatternMatch(
- p->u.fun_type.param, v->u.fun_type.param, values, vars, line_num);
- if (!matches) {
- return std::nullopt;
- }
- return PatternMatch(p->u.fun_type.ret, v->u.fun_type.ret, *matches,
- vars, line_num);
- }
- default:
- return std::nullopt;
- }
- default:
- if (ValueEqual(p, v, line_num)) {
- return values;
- } else {
- return std::nullopt;
- }
- }
- }
- void PatternAssignment(const Value* pat, const Value* val, int line_num) {
- switch (pat->tag) {
- case ValKind::PtrV:
- state->heap[ValToPtr(pat, line_num)] = CopyVal(val, line_num);
- break;
- case ValKind::TupleV: {
- switch (val->tag) {
- case ValKind::TupleV: {
- if (pat->u.tuple.elts->size() != val->u.tuple.elts->size()) {
- std::cerr << "runtime error: arity mismatch in tuple pattern match"
- << std::endl;
- exit(-1);
- }
- for (auto& elt : *pat->u.tuple.elts) {
- auto a = FindTupleField(elt.first, val);
- if (a == std::nullopt) {
- std::cerr << "runtime error: field " << elt.first << "not in ";
- PrintValue(val, std::cerr);
- std::cerr << std::endl;
- exit(-1);
- }
- PatternAssignment(state->heap[elt.second], state->heap[*a],
- line_num);
- }
- break;
- }
- default:
- std::cerr
- << "internal error, expected a tuple value on right-hand-side, "
- "not ";
- PrintValue(val, std::cerr);
- std::cerr << std::endl;
- exit(-1);
- }
- break;
- }
- case ValKind::AltV: {
- switch (val->tag) {
- case ValKind::AltV: {
- if (*pat->u.alt.choice_name != *val->u.alt.choice_name ||
- *pat->u.alt.alt_name != *val->u.alt.alt_name) {
- std::cerr << "internal error in pattern assignment" << std::endl;
- exit(-1);
- }
- PatternAssignment(state->heap[pat->u.alt.argument],
- state->heap[val->u.alt.argument], line_num);
- break;
- }
- default:
- std::cerr
- << "internal error, expected an alternative in left-hand-side, "
- "not ";
- PrintValue(val, std::cerr);
- std::cerr << std::endl;
- exit(-1);
- }
- break;
- }
- default:
- if (!ValueEqual(pat, val, line_num)) {
- std::cerr << "internal error in pattern assignment" << std::endl;
- exit(-1);
- }
- }
- }
- // State transitions for lvalues.
- void StepLvalue() {
- Frame* frame = state->stack.Top();
- Action* act = frame->todo.Top();
- const Expression* exp = act->u.exp;
- if (tracing_output) {
- std::cout << "--- step lvalue ";
- PrintExp(exp);
- std::cout << " --->" << std::endl;
- }
- switch (exp->tag) {
- case ExpressionKind::Variable: {
- // { {x :: C, E, F} :: S, H}
- // -> { {E(x) :: C, E, F} :: S, H}
- std::optional<Address> pointer =
- CurrentEnv(state).Get(*(exp->u.variable.name));
- if (!pointer) {
- std::cerr << exp->line_num << ": could not find `"
- << *(exp->u.variable.name) << "`" << std::endl;
- exit(-1);
- }
- const Value* v = MakePtrVal(*pointer);
- CheckAlive(*pointer, exp->line_num);
- frame->todo.Pop();
- frame->todo.Push(MakeValAct(v));
- break;
- }
- case ExpressionKind::GetField: {
- // { {e.f :: C, E, F} :: S, H}
- // -> { e :: [].f :: C, E, F} :: S, H}
- frame->todo.Push(MakeLvalAct(exp->u.get_field.aggregate));
- act->pos++;
- break;
- }
- case ExpressionKind::Index: {
- // { {e[i] :: C, E, F} :: S, H}
- // -> { e :: [][i] :: C, E, F} :: S, H}
- frame->todo.Push(MakeExpAct(exp->u.index.aggregate));
- act->pos++;
- break;
- }
- case ExpressionKind::Tuple: {
- // { {(f1=e1,...) :: C, E, F} :: S, H}
- // -> { {e1 :: (f1=[],...) :: C, E, F} :: S, H}
- const Expression* e1 = (*exp->u.tuple.fields)[0].second;
- frame->todo.Push(MakeLvalAct(e1));
- act->pos++;
- break;
- }
- case ExpressionKind::Integer:
- case ExpressionKind::Boolean:
- case ExpressionKind::Call:
- case ExpressionKind::PrimitiveOp:
- case ExpressionKind::IntT:
- case ExpressionKind::BoolT:
- case ExpressionKind::TypeT:
- case ExpressionKind::FunctionT:
- case ExpressionKind::AutoT:
- case ExpressionKind::ContinuationT:
- case ExpressionKind::PatternVariable: {
- frame->todo.Pop();
- frame->todo.Push(MakeExpToLvalAct());
- frame->todo.Push(MakeExpAct(exp));
- }
- }
- }
- // State transitions for expressions.
- void StepExp() {
- Frame* frame = state->stack.Top();
- Action* act = frame->todo.Top();
- const Expression* exp = act->u.exp;
- if (tracing_output) {
- std::cout << "--- step exp ";
- PrintExp(exp);
- std::cout << " --->" << std::endl;
- }
- switch (exp->tag) {
- case ExpressionKind::PatternVariable: {
- frame->todo.Push(MakeExpAct(exp->u.pattern_variable.type));
- act->pos++;
- break;
- }
- case ExpressionKind::Index: {
- // { { e[i] :: C, E, F} :: S, H}
- // -> { { e :: [][i] :: C, E, F} :: S, H}
- frame->todo.Push(MakeExpAct(exp->u.index.aggregate));
- act->pos++;
- break;
- }
- case ExpressionKind::Tuple: {
- if (exp->u.tuple.fields->size() > 0) {
- // { {(f1=e1,...) :: C, E, F} :: S, H}
- // -> { {e1 :: (f1=[],...) :: C, E, F} :: S, H}
- const Expression* e1 = (*exp->u.tuple.fields)[0].second;
- frame->todo.Push(MakeExpAct(e1));
- act->pos++;
- } else {
- CreateTuple(frame, act, exp);
- }
- break;
- }
- case ExpressionKind::GetField: {
- // { { e.f :: C, E, F} :: S, H}
- // -> { { e :: [].f :: C, E, F} :: S, H}
- frame->todo.Push(MakeLvalAct(exp->u.get_field.aggregate));
- act->pos++;
- break;
- }
- case ExpressionKind::Variable: {
- // { {x :: C, E, F} :: S, H} -> { {H(E(x)) :: C, E, F} :: S, H}
- std::optional<Address> pointer =
- CurrentEnv(state).Get(*(exp->u.variable.name));
- if (!pointer) {
- std::cerr << exp->line_num << ": could not find `"
- << *(exp->u.variable.name) << "`" << std::endl;
- exit(-1);
- }
- const Value* pointee = state->heap[*pointer];
- frame->todo.Pop(1);
- frame->todo.Push(MakeValAct(pointee));
- break;
- }
- case ExpressionKind::Integer:
- // { {n :: C, E, F} :: S, H} -> { {n' :: C, E, F} :: S, H}
- frame->todo.Pop(1);
- frame->todo.Push(MakeValAct(MakeIntVal(exp->u.integer)));
- break;
- case ExpressionKind::Boolean:
- // { {n :: C, E, F} :: S, H} -> { {n' :: C, E, F} :: S, H}
- frame->todo.Pop(1);
- frame->todo.Push(MakeValAct(MakeBoolVal(exp->u.boolean)));
- break;
- case ExpressionKind::PrimitiveOp:
- if (exp->u.primitive_op.arguments->size() > 0) {
- // { {op(e :: es) :: C, E, F} :: S, H}
- // -> { e :: op([] :: es) :: C, E, F} :: S, H}
- frame->todo.Push(MakeExpAct(exp->u.primitive_op.arguments->front()));
- act->pos++;
- } else {
- // { {v :: op(]) :: C, E, F} :: S, H}
- // -> { {eval_prim(op, ()) :: C, E, F} :: S, H}
- const Value* v =
- EvalPrim(exp->u.primitive_op.op, act->results, exp->line_num);
- frame->todo.Pop(2);
- frame->todo.Push(MakeValAct(v));
- }
- break;
- case ExpressionKind::Call:
- // { {e1(e2) :: C, E, F} :: S, H}
- // -> { {e1 :: [](e2) :: C, E, F} :: S, H}
- frame->todo.Push(MakeExpAct(exp->u.call.function));
- act->pos++;
- break;
- case ExpressionKind::IntT: {
- const Value* v = MakeIntTypeVal();
- frame->todo.Pop(1);
- frame->todo.Push(MakeValAct(v));
- break;
- }
- case ExpressionKind::BoolT: {
- const Value* v = MakeBoolTypeVal();
- frame->todo.Pop(1);
- frame->todo.Push(MakeValAct(v));
- break;
- }
- case ExpressionKind::AutoT: {
- const Value* v = MakeAutoTypeVal();
- frame->todo.Pop(1);
- frame->todo.Push(MakeValAct(v));
- break;
- }
- case ExpressionKind::TypeT: {
- const Value* v = MakeTypeTypeVal();
- frame->todo.Pop(1);
- frame->todo.Push(MakeValAct(v));
- break;
- }
- case ExpressionKind::FunctionT: {
- frame->todo.Push(MakeExpAct(exp->u.function_type.parameter));
- act->pos++;
- break;
- }
- case ExpressionKind::ContinuationT: {
- const Value* v = MakeContinuationTypeVal();
- frame->todo.Pop(1);
- frame->todo.Push(MakeValAct(v));
- break;
- }
- } // switch (exp->tag)
- }
- auto IsWhileAct(Action* act) -> bool {
- switch (act->tag) {
- case ActionKind::StatementAction:
- switch (act->u.stmt->tag) {
- case StatementKind::While:
- return true;
- default:
- return false;
- }
- default:
- return false;
- }
- }
- auto IsBlockAct(Action* act) -> bool {
- switch (act->tag) {
- case ActionKind::StatementAction:
- switch (act->u.stmt->tag) {
- case StatementKind::Block:
- return true;
- default:
- return false;
- }
- default:
- return false;
- }
- }
- // State transitions for statements.
- void StepStmt() {
- Frame* frame = state->stack.Top();
- Action* act = frame->todo.Top();
- const Statement* stmt = act->u.stmt;
- assert(stmt != nullptr && "null statement!");
- if (tracing_output) {
- std::cout << "--- step stmt ";
- PrintStatement(stmt, 1);
- std::cout << " --->" << std::endl;
- }
- switch (stmt->tag) {
- case StatementKind::Match:
- // { { (match (e) ...) :: C, E, F} :: S, H}
- // -> { { e :: (match ([]) ...) :: C, E, F} :: S, H}
- frame->todo.Push(MakeExpAct(stmt->u.match_stmt.exp));
- act->pos++;
- break;
- case StatementKind::While:
- // { { (while (e) s) :: C, E, F} :: S, H}
- // -> { { e :: (while ([]) s) :: C, E, F} :: S, H}
- frame->todo.Push(MakeExpAct(stmt->u.while_stmt.cond));
- act->pos++;
- break;
- case StatementKind::Break:
- // { { break; :: ... :: (while (e) s) :: C, E, F} :: S, H}
- // -> { { C, E', F} :: S, H}
- frame->todo.Pop(1);
- while (!frame->todo.IsEmpty() && !IsWhileAct(frame->todo.Top())) {
- if (IsBlockAct(frame->todo.Top())) {
- KillScope(stmt->line_num, frame->scopes.Top());
- frame->scopes.Pop(1);
- }
- frame->todo.Pop(1);
- }
- frame->todo.Pop(1);
- break;
- case StatementKind::Continue:
- // { { continue; :: ... :: (while (e) s) :: C, E, F} :: S, H}
- // -> { { (while (e) s) :: C, E', F} :: S, H}
- frame->todo.Pop(1);
- while (!frame->todo.IsEmpty() && !IsWhileAct(frame->todo.Top())) {
- if (IsBlockAct(frame->todo.Top())) {
- KillScope(stmt->line_num, frame->scopes.Top());
- frame->scopes.Pop(1);
- }
- frame->todo.Pop(1);
- }
- break;
- case StatementKind::Block: {
- if (act->pos == -1) {
- if (stmt->u.block.stmt) {
- auto* scope = new Scope(CurrentEnv(state), {});
- frame->scopes.Push(scope);
- frame->todo.Push(MakeStmtAct(stmt->u.block.stmt));
- act->pos++;
- } else {
- frame->todo.Pop();
- }
- } else {
- Scope* scope = frame->scopes.Top();
- KillScope(stmt->line_num, scope);
- frame->scopes.Pop(1);
- frame->todo.Pop(1);
- }
- break;
- }
- case StatementKind::VariableDefinition:
- // { {(var x = e) :: C, E, F} :: S, H}
- // -> { {e :: (var x = []) :: C, E, F} :: S, H}
- frame->todo.Push(MakeExpAct(stmt->u.variable_definition.init));
- act->pos++;
- break;
- case StatementKind::ExpressionStatement:
- // { {e :: C, E, F} :: S, H}
- // -> { {e :: C, E, F} :: S, H}
- frame->todo.Push(MakeExpAct(stmt->u.exp));
- break;
- case StatementKind::Assign:
- // { {(lv = e) :: C, E, F} :: S, H}
- // -> { {lv :: ([] = e) :: C, E, F} :: S, H}
- frame->todo.Push(MakeLvalAct(stmt->u.assign.lhs));
- act->pos++;
- break;
- case StatementKind::If:
- // { {(if (e) then_stmt else else_stmt) :: C, E, F} :: S, H}
- // -> { { e :: (if ([]) then_stmt else else_stmt) :: C, E, F} :: S, H}
- frame->todo.Push(MakeExpAct(stmt->u.if_stmt.cond));
- act->pos++;
- break;
- case StatementKind::Return:
- // { {return e :: C, E, F} :: S, H}
- // -> { {e :: return [] :: C, E, F} :: S, H}
- frame->todo.Push(MakeExpAct(stmt->u.return_stmt));
- act->pos++;
- break;
- case StatementKind::Sequence:
- // { { (s1,s2) :: C, E, F} :: S, H}
- // -> { { s1 :: s2 :: C, E, F} :: S, H}
- frame->todo.Pop(1);
- if (stmt->u.sequence.next) {
- frame->todo.Push(MakeStmtAct(stmt->u.sequence.next));
- }
- frame->todo.Push(MakeStmtAct(stmt->u.sequence.stmt));
- break;
- case StatementKind::Continuation: {
- // Create a continuation object by creating a frame similar the
- // way one is created in a function call.
- Scope* scope = new Scope(CurrentEnv(state), std::list<std::string>());
- Stack<Scope*> scopes;
- scopes.Push(scope);
- Stack<Action*> todo;
- todo.Push(
- MakeStmtAct(MakeReturn(stmt->line_num, MakeUnit(stmt->line_num))));
- todo.Push(MakeStmtAct(stmt->u.continuation.body));
- Frame* continuation_frame = new Frame("__continuation", scopes, todo);
- Address continuation_address =
- AllocateValue(MakeContinuation({continuation_frame}));
- // Store the continuation's address in the frame.
- continuation_frame->continuation = continuation_address;
- // Bind the continuation object to the continuation variable
- frame->scopes.Top()->values.Set(
- *stmt->u.continuation.continuation_variable, continuation_address);
- // Pop the continuation statement.
- frame->todo.Pop();
- break;
- }
- case StatementKind::Run:
- // Evaluate the argument of the run statement.
- frame->todo.Push(MakeExpAct(stmt->u.run.argument));
- act->pos++;
- break;
- case StatementKind::Await:
- // Pause the current continuation
- frame->todo.Pop();
- std::vector<Frame*> paused;
- do {
- paused.push_back(state->stack.Pop());
- } while (!paused.back()->IsContinuation());
- // Update the continuation with the paused stack.
- state->heap[paused.back()->continuation] = MakeContinuation(paused);
- break;
- }
- }
- auto GetMember(Address a, const std::string& f) -> Address {
- const Value* v = state->heap[a];
- switch (v->tag) {
- case ValKind::StructV: {
- auto a = FindTupleField(f, v->u.struct_val.inits);
- if (a == std::nullopt) {
- std::cerr << "runtime error, member " << f << " not in ";
- PrintValue(v, std::cerr);
- std::cerr << std::endl;
- exit(-1);
- }
- return *a;
- }
- case ValKind::TupleV: {
- auto a = FindTupleField(f, v);
- if (a == std::nullopt) {
- std::cerr << "field " << f << " not in ";
- PrintValue(v, std::cerr);
- std::cerr << std::endl;
- exit(-1);
- }
- return *a;
- }
- case ValKind::ChoiceTV: {
- if (FindInVarValues(f, v->u.choice_type.alternatives) == nullptr) {
- std::cerr << "alternative " << f << " not in ";
- PrintValue(v, std::cerr);
- std::cerr << std::endl;
- exit(-1);
- }
- auto ac = MakeAltCons(f, *v->u.choice_type.name);
- return AllocateValue(ac);
- }
- default:
- std::cerr << "field access not allowed for value ";
- PrintValue(v, std::cerr);
- std::cerr << std::endl;
- exit(-1);
- }
- }
- void InsertDelete(Action* del, Stack<Action*>& todo) {
- if (!todo.IsEmpty()) {
- switch (todo.Top()->tag) {
- case ActionKind::StatementAction: {
- // This places the delete before the enclosing statement.
- // Not sure if that is OK. Conceptually it should go after
- // but that is tricky for some statements, like 'return'. -Jeremy
- todo.Push(del);
- break;
- }
- case ActionKind::LValAction:
- case ActionKind::ExpressionAction:
- case ActionKind::ValAction:
- case ActionKind::ExpToLValAction:
- case ActionKind::DeleteTmpAction:
- auto top = todo.Pop();
- InsertDelete(del, todo);
- todo.Push(top);
- break;
- }
- } else {
- todo.Push(del);
- }
- }
- // State transition for handling a value.
- void HandleValue() {
- Frame* frame = state->stack.Top();
- Action* val_act = frame->todo.Top();
- Action* act = frame->todo.Popped().Top();
- act->results.push_back(val_act->u.val);
- act->pos++;
- if (tracing_output) {
- std::cout << "--- handle value ";
- PrintValue(val_act->u.val, std::cout);
- std::cout << " with ";
- PrintAct(act, std::cout);
- std::cout << " --->" << std::endl;
- }
- switch (act->tag) {
- case ActionKind::DeleteTmpAction: {
- KillObject(act->u.delete_tmp);
- frame->todo.Pop(2);
- frame->todo.Push(val_act);
- break;
- }
- case ActionKind::ExpToLValAction: {
- Address a = AllocateValue(act->results[0]);
- auto del = MakeDeleteAct(a);
- frame->todo.Pop(2);
- InsertDelete(del, frame->todo);
- frame->todo.Push(MakeValAct(MakePtrVal(a)));
- break;
- }
- case ActionKind::LValAction: {
- const Expression* exp = act->u.exp;
- switch (exp->tag) {
- case ExpressionKind::GetField: {
- // { v :: [].f :: C, E, F} :: S, H}
- // -> { { &v.f :: C, E, F} :: S, H }
- const Value* str = act->results[0];
- Address a =
- GetMember(ValToPtr(str, exp->line_num), *exp->u.get_field.field);
- frame->todo.Pop(2);
- frame->todo.Push(MakeValAct(MakePtrVal(a)));
- break;
- }
- case ExpressionKind::Index: {
- if (act->pos == 1) {
- frame->todo.Pop(1);
- frame->todo.Push(MakeExpAct(exp->u.index.offset));
- } else if (act->pos == 2) {
- // { v :: [][i] :: C, E, F} :: S, H}
- // -> { { &v[i] :: C, E, F} :: S, H }
- const Value* tuple = act->results[0];
- std::string f = std::to_string(ToInteger(act->results[1]));
- auto a = FindTupleField(f, tuple);
- if (a == std::nullopt) {
- std::cerr << "runtime error: field " << f << "not in ";
- PrintValue(tuple, std::cerr);
- std::cerr << std::endl;
- exit(-1);
- }
- frame->todo.Pop(2);
- frame->todo.Push(MakeValAct(MakePtrVal(*a)));
- }
- break;
- }
- case ExpressionKind::Tuple: {
- if (act->pos != static_cast<int>(exp->u.tuple.fields->size())) {
- // { { vk :: (f1=v1,..., fk=[],fk+1=ek+1,...) :: C, E, F} :: S,
- // H}
- // -> { { ek+1 :: (f1=v1,..., fk=vk, fk+1=[],...) :: C, E, F} :: S,
- // H}
- const Expression* elt = (*exp->u.tuple.fields)[act->pos].second;
- frame->todo.Pop(1);
- frame->todo.Push(MakeLvalAct(elt));
- } else {
- frame->todo.Pop(1);
- CreateTuple(frame, act, exp);
- }
- break;
- }
- default:
- std::cerr << "internal error in handle_value, LValAction"
- << std::endl;
- exit(-1);
- }
- break;
- }
- case ActionKind::ExpressionAction: {
- const Expression* exp = act->u.exp;
- switch (exp->tag) {
- case ExpressionKind::PatternVariable: {
- auto v =
- MakeVarPatVal(*exp->u.pattern_variable.name, act->results[0]);
- frame->todo.Pop(2);
- frame->todo.Push(MakeValAct(v));
- break;
- }
- case ExpressionKind::Tuple: {
- if (act->pos != static_cast<int>(exp->u.tuple.fields->size())) {
- // { { vk :: (f1=v1,..., fk=[],fk+1=ek+1,...) :: C, E, F} :: S,
- // H}
- // -> { { ek+1 :: (f1=v1,..., fk=vk, fk+1=[],...) :: C, E, F} :: S,
- // H}
- const Expression* elt = (*exp->u.tuple.fields)[act->pos].second;
- frame->todo.Pop(1);
- frame->todo.Push(MakeExpAct(elt));
- } else {
- frame->todo.Pop(1);
- CreateTuple(frame, act, exp);
- }
- break;
- }
- case ExpressionKind::Index: {
- if (act->pos == 1) {
- frame->todo.Pop(1);
- frame->todo.Push(MakeExpAct(exp->u.index.offset));
- } else if (act->pos == 2) {
- auto tuple = act->results[0];
- switch (tuple->tag) {
- case ValKind::TupleV: {
- // { { v :: [][i] :: C, E, F} :: S, H}
- // -> { { v_i :: C, E, F} : S, H}
- std::string f = std::to_string(ToInteger(act->results[1]));
- auto a = FindTupleField(f, tuple);
- if (a == std::nullopt) {
- std::cerr << "runtime error, field " << f << " not in ";
- PrintValue(tuple, std::cerr);
- std::cerr << std::endl;
- exit(-1);
- }
- frame->todo.Pop(2);
- frame->todo.Push(MakeValAct(state->heap[*a]));
- break;
- }
- default:
- std::cerr
- << "runtime type error, expected a tuple in field access, "
- "not ";
- PrintValue(tuple, std::cerr);
- exit(-1);
- }
- }
- break;
- }
- case ExpressionKind::GetField: {
- // { { v :: [].f :: C, E, F} :: S, H}
- // -> { { v_f :: C, E, F} : S, H}
- auto a = GetMember(ValToPtr(act->results[0], exp->line_num),
- *exp->u.get_field.field);
- frame->todo.Pop(2);
- frame->todo.Push(MakeValAct(state->heap[a]));
- break;
- }
- case ExpressionKind::PrimitiveOp: {
- if (act->pos !=
- static_cast<int>(exp->u.primitive_op.arguments->size())) {
- // { {v :: op(vs,[],e,es) :: C, E, F} :: S, H}
- // -> { {e :: op(vs,v,[],es) :: C, E, F} :: S, H}
- const Expression* arg = (*exp->u.primitive_op.arguments)[act->pos];
- frame->todo.Pop(1);
- frame->todo.Push(MakeExpAct(arg));
- } else {
- // { {v :: op(vs,[]) :: C, E, F} :: S, H}
- // -> { {eval_prim(op, (vs,v)) :: C, E, F} :: S, H}
- const Value* v =
- EvalPrim(exp->u.primitive_op.op, act->results, exp->line_num);
- frame->todo.Pop(2);
- frame->todo.Push(MakeValAct(v));
- }
- break;
- }
- case ExpressionKind::Call: {
- if (act->pos == 1) {
- // { { v :: [](e) :: C, E, F} :: S, H}
- // -> { { e :: v([]) :: C, E, F} :: S, H}
- frame->todo.Pop(1);
- frame->todo.Push(MakeExpAct(exp->u.call.argument));
- } else if (act->pos == 2) {
- // { { v2 :: v1([]) :: C, E, F} :: S, H}
- // -> { {C',E',F'} :: {C, E, F} :: S, H}
- frame->todo.Pop(2);
- CallFunction(exp->line_num, act->results, state);
- } else {
- std::cerr << "internal error in handle_value with Call"
- << std::endl;
- exit(-1);
- }
- break;
- }
- case ExpressionKind::FunctionT: {
- if (act->pos == 2) {
- // { { rt :: fn pt -> [] :: C, E, F} :: S, H}
- // -> { fn pt -> rt :: {C, E, F} :: S, H}
- const Value* v = MakeFunTypeVal(act->results[0], act->results[1]);
- frame->todo.Pop(2);
- frame->todo.Push(MakeValAct(v));
- } else {
- // { { pt :: fn [] -> e :: C, E, F} :: S, H}
- // -> { { e :: fn pt -> []) :: C, E, F} :: S, H}
- frame->todo.Pop(1);
- frame->todo.Push(MakeExpAct(exp->u.function_type.return_type));
- }
- break;
- }
- case ExpressionKind::Variable:
- case ExpressionKind::Integer:
- case ExpressionKind::Boolean:
- case ExpressionKind::IntT:
- case ExpressionKind::BoolT:
- case ExpressionKind::TypeT:
- case ExpressionKind::AutoT:
- case ExpressionKind::ContinuationT:
- std::cerr << "internal error, bad expression context in handle_value"
- << std::endl;
- exit(-1);
- }
- break;
- }
- case ActionKind::StatementAction: {
- const Statement* stmt = act->u.stmt;
- switch (stmt->tag) {
- case StatementKind::ExpressionStatement:
- frame->todo.Pop(2);
- break;
- case StatementKind::VariableDefinition: {
- if (act->pos == 1) {
- frame->todo.Pop(1);
- frame->todo.Push(MakeExpAct(stmt->u.variable_definition.pat));
- } else if (act->pos == 2) {
- // { { v :: (x = []) :: C, E, F} :: S, H}
- // -> { { C, E(x := a), F} :: S, H(a := copy(v))}
- const Value* v = act->results[0];
- const Value* p = act->results[1];
- std::optional<Env> matches =
- PatternMatch(p, v, frame->scopes.Top()->values,
- &frame->scopes.Top()->locals, stmt->line_num);
- if (!matches) {
- std::cerr
- << stmt->line_num
- << ": internal error in variable definition, match failed"
- << std::endl;
- exit(-1);
- }
- frame->scopes.Top()->values = *matches;
- frame->todo.Pop(2);
- }
- break;
- }
- case StatementKind::Assign:
- if (act->pos == 1) {
- // { { a :: ([] = e) :: C, E, F} :: S, H}
- // -> { { e :: (a = []) :: C, E, F} :: S, H}
- frame->todo.Pop(1);
- frame->todo.Push(MakeExpAct(stmt->u.assign.rhs));
- } else if (act->pos == 2) {
- // { { v :: (a = []) :: C, E, F} :: S, H}
- // -> { { C, E, F} :: S, H(a := v)}
- auto pat = act->results[0];
- auto val = act->results[1];
- PatternAssignment(pat, val, stmt->line_num);
- frame->todo.Pop(2);
- }
- break;
- case StatementKind::If:
- if (ValToBool(act->results[0], stmt->line_num)) {
- // { {true :: if ([]) then_stmt else else_stmt :: C, E, F} ::
- // S, H}
- // -> { { then_stmt :: C, E, F } :: S, H}
- frame->todo.Pop(2);
- frame->todo.Push(MakeStmtAct(stmt->u.if_stmt.then_stmt));
- } else if (stmt->u.if_stmt.else_stmt) {
- // { {false :: if ([]) then_stmt else else_stmt :: C, E, F} ::
- // S, H}
- // -> { { else_stmt :: C, E, F } :: S, H}
- frame->todo.Pop(2);
- frame->todo.Push(MakeStmtAct(stmt->u.if_stmt.else_stmt));
- } else {
- frame->todo.Pop(2);
- }
- break;
- case StatementKind::While:
- if (ValToBool(act->results[0], stmt->line_num)) {
- // { {true :: (while ([]) s) :: C, E, F} :: S, H}
- // -> { { s :: (while (e) s) :: C, E, F } :: S, H}
- frame->todo.Pop(1);
- frame->todo.Top()->pos = -1;
- frame->todo.Top()->results.clear();
- frame->todo.Push(MakeStmtAct(stmt->u.while_stmt.body));
- } else {
- // { {false :: (while ([]) s) :: C, E, F} :: S, H}
- // -> { { C, E, F } :: S, H}
- frame->todo.Pop(1);
- frame->todo.Top()->pos = -1;
- frame->todo.Top()->results.clear();
- frame->todo.Pop(1);
- }
- break;
- case StatementKind::Match: {
- // Regarding act->pos:
- // * odd: start interpreting the pattern of a clause
- // * even: finished interpreting the pattern, now try to match
- //
- // Regarding act->results:
- // * 0: the value that we're matching
- // * 1: the pattern for clause 0
- // * 2: the pattern for clause 1
- // * ...
- auto clause_num = (act->pos - 1) / 2;
- if (clause_num >=
- static_cast<int>(stmt->u.match_stmt.clauses->size())) {
- frame->todo.Pop(2);
- break;
- }
- auto c = stmt->u.match_stmt.clauses->begin();
- std::advance(c, clause_num);
- if (act->pos % 2 == 1) {
- // start interpreting the pattern of the clause
- // { {v :: (match ([]) ...) :: C, E, F} :: S, H}
- // -> { {pi :: (match ([]) ...) :: C, E, F} :: S, H}
- frame->todo.Pop(1);
- frame->todo.Push(MakeExpAct(c->first));
- } else { // try to match
- auto v = act->results[0];
- auto pat = act->results[clause_num + 1];
- auto values = CurrentEnv(state);
- std::list<std::string> vars;
- std::optional<Env> matches =
- PatternMatch(pat, v, values, &vars, stmt->line_num);
- if (matches) { // we have a match, start the body
- auto* new_scope = new Scope(*matches, vars);
- frame->scopes.Push(new_scope);
- const Statement* body_block =
- MakeBlock(stmt->line_num, c->second);
- Action* body_act = MakeStmtAct(body_block);
- body_act->pos = 0;
- frame->todo.Pop(2);
- frame->todo.Push(body_act);
- frame->todo.Push(MakeStmtAct(c->second));
- } else {
- // this case did not match, moving on
- act->pos++;
- clause_num = (act->pos - 1) / 2;
- if (clause_num <
- static_cast<int>(stmt->u.match_stmt.clauses->size())) {
- // interpret the next clause
- c = stmt->u.match_stmt.clauses->begin();
- std::advance(c, clause_num);
- frame->todo.Pop(1);
- frame->todo.Push(MakeExpAct(c->first));
- } else { // No more clauses in match
- frame->todo.Pop(2);
- }
- }
- }
- break;
- }
- case StatementKind::Return: {
- // { {v :: return [] :: C, E, F} :: {C', E', F'} :: S, H}
- // -> { {v :: C', E', F'} :: S, H}
- const Value* ret_val = CopyVal(val_act->u.val, stmt->line_num);
- KillLocals(stmt->line_num, frame);
- state->stack.Pop(1);
- frame = state->stack.Top();
- frame->todo.Push(MakeValAct(ret_val));
- break;
- }
- case StatementKind::Run: {
- frame->todo.Pop(2);
- // Push an expression statement action to ignore the result
- // value from the continuation.
- Action* ignore_result = MakeStmtAct(
- MakeExpStmt(stmt->line_num, MakeUnit(stmt->line_num)));
- ignore_result->pos = 0;
- frame->todo.Push(ignore_result);
- // Push the continuation onto the current stack.
- std::vector<Frame*> continuation_vector =
- ContinuationToVector(val_act->u.val, stmt->line_num);
- for (auto frame_iter = continuation_vector.rbegin();
- frame_iter != continuation_vector.rend(); ++frame_iter) {
- state->stack.Push(*frame_iter);
- }
- break;
- }
- case StatementKind::Continuation:
- case StatementKind::Await:
- case StatementKind::Block:
- case StatementKind::Sequence:
- case StatementKind::Break:
- case StatementKind::Continue:
- std::cerr << "internal error in handle_value, unhandled statement ";
- PrintStatement(stmt, 1);
- std::cerr << std::endl;
- exit(-1);
- } // switch stmt
- break;
- }
- case ActionKind::ValAction:
- std::cerr << "internal error, ValAction in handle_value" << std::endl;
- exit(-1);
- } // switch act
- }
- // State transition.
- void Step() {
- Frame* frame = state->stack.Top();
- if (frame->todo.IsEmpty()) {
- std::cerr << "runtime error: fell off end of function " << frame->name
- << " without `return`" << std::endl;
- exit(-1);
- }
- Action* act = frame->todo.Top();
- switch (act->tag) {
- case ActionKind::DeleteTmpAction:
- std::cerr << "internal error in step, did not expect DeleteTmpAction"
- << std::endl;
- break;
- case ActionKind::ExpToLValAction:
- std::cerr << "internal error in step, did not expect ExpToLValAction"
- << std::endl;
- break;
- case ActionKind::ValAction:
- HandleValue();
- break;
- case ActionKind::LValAction:
- StepLvalue();
- break;
- case ActionKind::ExpressionAction:
- StepExp();
- break;
- case ActionKind::StatementAction:
- StepStmt();
- break;
- } // switch
- }
- // Interpret the whole porogram.
- auto InterpProgram(std::list<Declaration>* fs) -> int {
- state = new State(); // Runtime state.
- if (tracing_output) {
- std::cout << "********** initializing globals **********" << std::endl;
- }
- InitGlobals(fs);
- const Expression* arg = MakeTuple(
- 0, new std::vector<std::pair<std::string, const Expression*>>());
- const Expression* call_main = MakeCall(0, MakeVar(0, "main"), arg);
- auto todo = Stack(MakeExpAct(call_main));
- auto* scope = new Scope(globals, std::list<std::string>());
- auto* frame = new Frame("top", Stack(scope), todo);
- state->stack = Stack(frame);
- if (tracing_output) {
- std::cout << "********** calling main function **********" << std::endl;
- PrintState(std::cout);
- }
- while (state->stack.CountExceeds(1) ||
- state->stack.Top()->todo.CountExceeds(1) ||
- state->stack.Top()->todo.Top()->tag != ActionKind::ValAction) {
- Step();
- if (tracing_output) {
- PrintState(std::cout);
- }
- }
- const Value* v = state->stack.Top()->todo.Top()->u.val;
- return ValToInt(v, 0);
- }
- // Interpret an expression at compile-time.
- auto InterpExp(Env values, const Expression* e) -> const Value* {
- auto todo = Stack(MakeExpAct(e));
- auto* scope = new Scope(values, std::list<std::string>());
- auto* frame = new Frame("InterpExp", Stack(scope), todo);
- state->stack = Stack(frame);
- while (state->stack.CountExceeds(1) ||
- state->stack.Top()->todo.CountExceeds(1) ||
- state->stack.Top()->todo.Top()->tag != ActionKind::ValAction) {
- Step();
- }
- const Value* v = state->stack.Top()->todo.Top()->u.val;
- return v;
- }
- } // namespace Carbon
|