mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
* AST and syntax for delimited control * stashing for later * a little more progress * progress on delimited continuations * delimit, suspend, and resume implemented (draft) * example that generates the natural numbers * fixes * tinkering * changed demo to experimental * comments and name changes * describe delimited continuations in the README * renamed Snapshot to Continuation, edits to comments * Update executable_semantics/ast/statement.h improve comment for MakeDelimitStmt Co-authored-by: Dave Abrahams <dabrahams@google.com> * Update executable_semantics/interpreter/interpreter.cpp remove snake_case Co-authored-by: Dave Abrahams <dabrahams@google.com> * edits to comments, change name of variable * updates to handle review edits * trailing whitespace * fixes to delimited continuations, added more tests, also fixed assignment to do a copy * improvements from Geoffrey * new test from Geoffrey, fix for empty blocks * more suggestions from Geoffrey * more tests for delimited continuations, renaming some of them * renamed test files * improve a comment * sketch of creating continuation * initial implementation of shift/reset style continuations * more documentation * fix some camel case * implemented deep copy of continuations, added a test case for it * fixed a bug and got the recursive test case working * removed __delimit, polished up __continuation * back to shallow copy for continuations * suggestions from Geoffrey * removed structured binding (for now) * Update executable_semantics/ast/expression.cpp Co-authored-by: Geoff Romer <gromer@google.com> * responses to Geoffrey Co-authored-by: Dave Abrahams <dabrahams@google.com> Co-authored-by: Geoff Romer <gromer@google.com>
123 lines
2.9 KiB
C++
123 lines
2.9 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
|
|
|
|
#ifndef EXECUTABLE_SEMANTICS_AST_EXPRESSION_H_
|
|
#define EXECUTABLE_SEMANTICS_AST_EXPRESSION_H_
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace Carbon {
|
|
|
|
enum class ExpressionKind {
|
|
AutoT,
|
|
BoolT,
|
|
Boolean,
|
|
Call,
|
|
FunctionT,
|
|
GetField,
|
|
Index,
|
|
IntT,
|
|
ContinuationT, // The type of a continuation value.
|
|
Integer,
|
|
PatternVariable,
|
|
PrimitiveOp,
|
|
Tuple,
|
|
TypeT,
|
|
Variable,
|
|
};
|
|
|
|
enum class Operator {
|
|
Add,
|
|
And,
|
|
Eq,
|
|
Neg,
|
|
Not,
|
|
Or,
|
|
Sub,
|
|
};
|
|
|
|
struct Expression {
|
|
int line_num;
|
|
ExpressionKind tag;
|
|
union {
|
|
struct {
|
|
std::string* name;
|
|
} variable;
|
|
|
|
struct {
|
|
Expression* aggregate;
|
|
std::string* field;
|
|
} get_field;
|
|
|
|
struct {
|
|
Expression* aggregate;
|
|
Expression* offset;
|
|
} index;
|
|
|
|
struct {
|
|
std::string* name;
|
|
Expression* type;
|
|
} pattern_variable;
|
|
|
|
int integer;
|
|
bool boolean;
|
|
|
|
struct {
|
|
std::vector<std::pair<std::string, Expression*>>* fields;
|
|
} tuple;
|
|
|
|
struct {
|
|
Operator op;
|
|
std::vector<Expression*>* arguments;
|
|
} primitive_op;
|
|
|
|
struct {
|
|
Expression* function;
|
|
Expression* argument;
|
|
} call;
|
|
|
|
struct {
|
|
Expression* parameter;
|
|
Expression* return_type;
|
|
} function_type;
|
|
|
|
} u;
|
|
};
|
|
|
|
auto MakeVar(int line_num, std::string var) -> Expression*;
|
|
auto MakeVarPat(int line_num, std::string var, Expression* type) -> Expression*;
|
|
auto MakeInt(int line_num, int i) -> Expression*;
|
|
auto MakeBool(int line_num, bool b) -> Expression*;
|
|
auto MakeOp(int line_num, Operator op, std::vector<Expression*>* args)
|
|
-> Expression*;
|
|
auto MakeUnOp(int line_num, enum Operator op, Expression* arg) -> Expression*;
|
|
auto MakeBinOp(int line_num, enum Operator op, Expression* arg1,
|
|
Expression* arg2) -> Expression*;
|
|
auto MakeCall(int line_num, Expression* fun, Expression* arg) -> Expression*;
|
|
auto MakeGetField(int line_num, Expression* exp, std::string field)
|
|
-> Expression*;
|
|
auto MakeTuple(int line_num,
|
|
std::vector<std::pair<std::string, Expression*>>* args)
|
|
-> Expression*;
|
|
// Create an AST node for an empty tuple.
|
|
auto MakeUnit(int line_num) -> Expression*;
|
|
auto MakeIndex(int line_num, Expression* exp, Expression* i) -> Expression*;
|
|
|
|
auto MakeTypeType(int line_num) -> Expression*;
|
|
auto MakeIntType(int line_num) -> Expression*;
|
|
auto MakeBoolType(int line_num) -> Expression*;
|
|
auto MakeFunType(int line_num, Expression* param, Expression* ret)
|
|
-> Expression*;
|
|
auto MakeAutoType(int line_num) -> Expression*;
|
|
// Returns a Continuation type AST node at the given source location,
|
|
// which is the type of a continuation value.
|
|
auto MakeContinuationType(int line_num) -> Expression*;
|
|
|
|
void PrintExp(const Expression* exp);
|
|
|
|
} // namespace Carbon
|
|
|
|
#endif // EXECUTABLE_SEMANTICS_AST_EXPRESSION_H_
|