2018-05-09 02:27:57 -07:00
|
|
|
use std::rc::Rc;
|
2018-05-09 02:02:17 -07:00
|
|
|
|
2018-08-05 19:11:42 -07:00
|
|
|
use ast::{AST, Statement, Expression, Declaration, Discriminator, IfExpressionBody, Pattern, PatternLiteral};
|
2018-06-12 03:02:50 -07:00
|
|
|
use symbol_table::{Symbol, SymbolSpec, SymbolTable};
|
2018-05-09 17:02:10 -07:00
|
|
|
use builtin::{BinOp, PrefixOp};
|
2018-05-09 02:27:57 -07:00
|
|
|
|
2018-05-09 02:49:49 -07:00
|
|
|
#[derive(Debug)]
|
2018-05-09 02:27:57 -07:00
|
|
|
pub struct ReducedAST(pub Vec<Stmt>);
|
|
|
|
|
2018-05-11 17:24:11 -07:00
|
|
|
#[derive(Debug, Clone)]
|
2018-05-09 02:27:57 -07:00
|
|
|
pub enum Stmt {
|
2018-05-13 17:24:21 -07:00
|
|
|
PreBinding {
|
|
|
|
name: Rc<String>,
|
|
|
|
func: Func,
|
|
|
|
},
|
2018-05-09 02:27:57 -07:00
|
|
|
Binding {
|
|
|
|
name: Rc<String>,
|
2018-05-11 02:24:38 -07:00
|
|
|
constant: bool,
|
2018-05-09 02:27:57 -07:00
|
|
|
expr: Expr,
|
|
|
|
},
|
|
|
|
Expr(Expr),
|
2018-05-13 17:24:21 -07:00
|
|
|
Noop,
|
2018-05-09 02:27:57 -07:00
|
|
|
}
|
|
|
|
|
2018-05-11 17:24:11 -07:00
|
|
|
#[derive(Debug, Clone)]
|
2018-05-09 02:27:57 -07:00
|
|
|
pub enum Expr {
|
2018-05-12 00:59:50 -07:00
|
|
|
Unit,
|
2018-05-09 03:04:01 -07:00
|
|
|
Lit(Lit),
|
2018-05-12 12:56:39 -07:00
|
|
|
Tuple(Vec<Expr>),
|
2018-05-09 02:27:57 -07:00
|
|
|
Func(Func),
|
2018-05-11 17:24:11 -07:00
|
|
|
Val(Rc<String>),
|
2018-08-05 19:14:02 -07:00
|
|
|
Constructor {
|
2018-08-05 14:23:08 -07:00
|
|
|
type_name: Rc<String>,
|
2018-08-05 17:15:58 -07:00
|
|
|
name: Rc<String>,
|
2018-08-05 14:23:08 -07:00
|
|
|
tag: usize,
|
2018-08-05 16:04:52 -07:00
|
|
|
arity: usize,
|
2018-08-05 14:23:08 -07:00
|
|
|
},
|
2018-05-09 02:27:57 -07:00
|
|
|
Call {
|
2018-05-11 23:34:26 -07:00
|
|
|
f: Box<Expr>,
|
2018-05-09 02:27:57 -07:00
|
|
|
args: Vec<Expr>,
|
|
|
|
},
|
2018-05-12 03:51:42 -07:00
|
|
|
Assign {
|
|
|
|
val: Box<Expr>,
|
|
|
|
expr: Box<Expr>,
|
|
|
|
},
|
2018-05-12 13:51:12 -07:00
|
|
|
Conditional {
|
|
|
|
cond: Box<Expr>,
|
|
|
|
then_clause: Vec<Stmt>,
|
|
|
|
else_clause: Vec<Stmt>,
|
|
|
|
},
|
2018-08-14 12:37:18 -07:00
|
|
|
CaseMatch {
|
2018-07-24 03:12:00 -07:00
|
|
|
cond: Box<Expr>,
|
2018-08-05 14:23:08 -07:00
|
|
|
alternatives: Vec<Alternative>
|
2018-07-24 03:12:00 -07:00
|
|
|
},
|
2018-05-11 00:45:32 -07:00
|
|
|
UnimplementedSigilValue
|
2018-05-09 02:27:57 -07:00
|
|
|
}
|
|
|
|
|
2018-08-05 14:23:08 -07:00
|
|
|
#[derive(Debug, Clone)]
|
|
|
|
pub struct Alternative {
|
2018-08-14 21:17:43 -07:00
|
|
|
pub tag: Option<usize>,
|
|
|
|
pub bound_vars: Vec<Option<Rc<String>>>, //remember that order matters here
|
|
|
|
pub item: Vec<Stmt>,
|
2018-08-05 14:23:08 -07:00
|
|
|
}
|
|
|
|
|
2018-05-11 17:24:11 -07:00
|
|
|
#[derive(Debug, Clone)]
|
2018-05-09 02:27:57 -07:00
|
|
|
pub enum Lit {
|
2018-05-11 00:38:40 -07:00
|
|
|
Nat(u64),
|
|
|
|
Int(i64),
|
2018-05-09 17:02:10 -07:00
|
|
|
Float(f64),
|
2018-05-09 02:27:57 -07:00
|
|
|
Bool(bool),
|
|
|
|
StringLit(Rc<String>),
|
|
|
|
}
|
|
|
|
|
2018-05-11 17:24:11 -07:00
|
|
|
#[derive(Debug, Clone)]
|
2018-05-11 00:38:40 -07:00
|
|
|
pub enum Func {
|
|
|
|
BuiltIn(Rc<String>),
|
|
|
|
UserDefined {
|
2018-05-11 23:23:54 -07:00
|
|
|
name: Option<Rc<String>>,
|
2018-05-11 00:38:40 -07:00
|
|
|
params: Vec<Rc<String>>,
|
|
|
|
body: Vec<Stmt>,
|
|
|
|
}
|
2018-05-09 02:27:57 -07:00
|
|
|
}
|
|
|
|
|
2018-05-10 23:41:51 -07:00
|
|
|
impl AST {
|
2018-06-12 02:56:28 -07:00
|
|
|
pub fn reduce(&self, symbol_table: &SymbolTable) -> ReducedAST {
|
2018-05-10 23:41:51 -07:00
|
|
|
let mut output = vec![];
|
|
|
|
for statement in self.0.iter() {
|
2018-06-12 02:56:28 -07:00
|
|
|
output.push(statement.reduce(symbol_table));
|
2018-05-09 02:49:49 -07:00
|
|
|
}
|
2018-05-11 00:45:32 -07:00
|
|
|
ReducedAST(output)
|
2018-05-09 02:49:49 -07:00
|
|
|
}
|
|
|
|
}
|
2018-05-09 02:27:57 -07:00
|
|
|
|
2018-05-11 22:44:21 -07:00
|
|
|
impl Statement {
|
2018-06-12 02:56:28 -07:00
|
|
|
fn reduce(&self, symbol_table: &SymbolTable) -> Stmt {
|
2018-06-04 19:25:40 -07:00
|
|
|
use ast::Statement::*;
|
2018-05-11 22:44:21 -07:00
|
|
|
match self {
|
2018-06-12 02:56:28 -07:00
|
|
|
ExpressionStatement(expr) => Stmt::Expr(expr.reduce(symbol_table)),
|
|
|
|
Declaration(decl) => decl.reduce(symbol_table),
|
2018-05-11 22:44:21 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-10 23:41:51 -07:00
|
|
|
impl Expression {
|
2018-06-12 02:56:28 -07:00
|
|
|
fn reduce(&self, symbol_table: &SymbolTable) -> Expr {
|
2018-06-04 19:25:40 -07:00
|
|
|
use ast::ExpressionType::*;
|
2018-05-10 23:41:51 -07:00
|
|
|
let ref input = self.0;
|
2018-05-11 00:45:32 -07:00
|
|
|
match input {
|
2018-05-12 01:44:03 -07:00
|
|
|
NatLiteral(n) => Expr::Lit(Lit::Nat(*n)),
|
2018-05-11 23:26:02 -07:00
|
|
|
FloatLiteral(f) => Expr::Lit(Lit::Float(*f)),
|
|
|
|
StringLiteral(s) => Expr::Lit(Lit::StringLit(s.clone())),
|
|
|
|
BoolLiteral(b) => Expr::Lit(Lit::Bool(*b)),
|
2018-06-12 02:56:28 -07:00
|
|
|
BinExp(binop, lhs, rhs) => binop.reduce(symbol_table, lhs, rhs),
|
|
|
|
PrefixExp(op, arg) => op.reduce(symbol_table, arg),
|
2018-08-07 17:09:53 -07:00
|
|
|
Value(name) => match symbol_table.lookup_by_name(name) {
|
|
|
|
Some(Symbol { spec: SymbolSpec::DataConstructor { index, type_args, type_name}, .. }) => Expr::Constructor {
|
|
|
|
type_name: type_name.clone(),
|
|
|
|
name: name.clone(),
|
|
|
|
tag: index.clone(),
|
|
|
|
arity: type_args.len(),
|
|
|
|
},
|
|
|
|
_ => Expr::Val(name.clone()),
|
2018-06-12 03:02:50 -07:00
|
|
|
},
|
2018-05-11 23:34:26 -07:00
|
|
|
Call { f, arguments } => Expr::Call {
|
2018-06-12 02:56:28 -07:00
|
|
|
f: Box::new(f.reduce(symbol_table)),
|
|
|
|
args: arguments.iter().map(|arg| arg.reduce(symbol_table)).collect(),
|
2018-05-11 02:58:14 -07:00
|
|
|
},
|
2018-06-12 02:56:28 -07:00
|
|
|
TupleLiteral(exprs) => Expr::Tuple(exprs.iter().map(|e| e.reduce(symbol_table)).collect()),
|
2018-07-24 03:12:00 -07:00
|
|
|
IfExpression { discriminator, body } => reduce_if_expression(discriminator, body, symbol_table),
|
2018-05-12 12:56:39 -07:00
|
|
|
_ => Expr::UnimplementedSigilValue,
|
2018-05-11 00:45:32 -07:00
|
|
|
}
|
2018-05-10 23:41:51 -07:00
|
|
|
}
|
2018-05-09 02:49:49 -07:00
|
|
|
}
|
2018-05-10 23:41:51 -07:00
|
|
|
|
2018-07-24 03:12:00 -07:00
|
|
|
fn reduce_if_expression(discriminator: &Discriminator, body: &IfExpressionBody, symbol_table: &SymbolTable) -> Expr {
|
|
|
|
let cond = Box::new(match *discriminator {
|
|
|
|
Discriminator::Simple(ref expr) => expr.reduce(symbol_table),
|
|
|
|
_ => panic!(),
|
|
|
|
});
|
|
|
|
match *body {
|
|
|
|
IfExpressionBody::SimpleConditional(ref then_clause, ref else_clause) => {
|
|
|
|
let then_clause = then_clause.iter().map(|expr| expr.reduce(symbol_table)).collect();
|
|
|
|
let else_clause = match else_clause {
|
|
|
|
None => vec![],
|
|
|
|
Some(stmts) => stmts.iter().map(|expr| expr.reduce(symbol_table)).collect(),
|
|
|
|
};
|
|
|
|
Expr::Conditional { cond, then_clause, else_clause }
|
|
|
|
},
|
|
|
|
IfExpressionBody::SimplePatternMatch(ref pat, ref then_clause, ref else_clause) => {
|
|
|
|
let then_clause = then_clause.iter().map(|expr| expr.reduce(symbol_table)).collect();
|
|
|
|
let else_clause = match else_clause {
|
|
|
|
None => vec![],
|
|
|
|
Some(stmts) => stmts.iter().map(|expr| expr.reduce(symbol_table)).collect(),
|
|
|
|
};
|
2018-08-13 23:28:03 -07:00
|
|
|
|
2018-08-05 19:11:42 -07:00
|
|
|
let first_alt: Alternative = match pat {
|
2018-08-05 18:01:42 -07:00
|
|
|
Pattern::TupleStruct(name, subpatterns) => {
|
|
|
|
let symbol = symbol_table.values.get(name).unwrap();
|
2018-08-05 19:11:42 -07:00
|
|
|
let tag = match symbol.spec {
|
|
|
|
SymbolSpec::DataConstructor { index, .. } => index.clone(),
|
|
|
|
_ => panic!("Bad symbol"),
|
|
|
|
};
|
2018-08-14 21:17:43 -07:00
|
|
|
let bound_vars = subpatterns.iter().map(|p| match p {
|
2018-08-05 19:11:42 -07:00
|
|
|
Pattern::Literal(PatternLiteral::VarPattern(var)) => Some(var.clone()),
|
2018-08-14 21:17:43 -07:00
|
|
|
Pattern::Ignored => None,
|
2018-08-05 19:11:42 -07:00
|
|
|
_ => None,
|
|
|
|
}).collect();
|
|
|
|
Alternative {
|
|
|
|
tag: Some(tag),
|
|
|
|
bound_vars,
|
|
|
|
item: then_clause,
|
|
|
|
}
|
2018-08-05 18:01:42 -07:00
|
|
|
},
|
|
|
|
_ => panic!()
|
|
|
|
};
|
|
|
|
|
|
|
|
let alternatives = vec![
|
2018-08-05 19:11:42 -07:00
|
|
|
first_alt,
|
|
|
|
Alternative {
|
|
|
|
tag: None,
|
|
|
|
bound_vars: vec![],
|
|
|
|
item: else_clause,
|
|
|
|
},
|
2018-08-05 18:01:42 -07:00
|
|
|
];
|
|
|
|
|
2018-08-14 12:37:18 -07:00
|
|
|
Expr::CaseMatch {
|
2018-08-05 18:01:42 -07:00
|
|
|
cond,
|
|
|
|
alternatives,
|
2018-07-25 03:05:40 -07:00
|
|
|
}
|
2018-07-24 03:12:00 -07:00
|
|
|
},
|
2018-07-25 03:05:40 -07:00
|
|
|
IfExpressionBody::GuardList(ref _guard_arms) => panic!(),
|
2018-07-24 03:12:00 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-10 23:41:51 -07:00
|
|
|
impl Declaration {
|
2018-06-12 02:56:28 -07:00
|
|
|
fn reduce(&self, symbol_table: &SymbolTable) -> Stmt {
|
2018-05-11 02:24:38 -07:00
|
|
|
use self::Declaration::*;
|
2018-06-04 19:25:40 -07:00
|
|
|
use ::ast::Signature;
|
2018-05-11 02:24:38 -07:00
|
|
|
match self {
|
2018-06-12 02:56:28 -07:00
|
|
|
Binding {name, constant, expr } => Stmt::Binding { name: name.clone(), constant: *constant, expr: expr.reduce(symbol_table) },
|
2018-05-13 17:24:21 -07:00
|
|
|
FuncDecl(Signature { name, params, .. }, statements) => Stmt::PreBinding {
|
2018-05-11 22:44:21 -07:00
|
|
|
name: name.clone(),
|
2018-05-13 17:24:21 -07:00
|
|
|
func: Func::UserDefined {
|
|
|
|
name: Some(name.clone()),
|
2018-05-11 22:44:21 -07:00
|
|
|
params: params.iter().map(|param| param.0.clone()).collect(),
|
2018-06-12 02:56:28 -07:00
|
|
|
body: statements.iter().map(|stmt| stmt.reduce(symbol_table)).collect(),
|
2018-05-13 17:24:21 -07:00
|
|
|
}
|
2018-05-11 22:44:21 -07:00
|
|
|
},
|
2018-07-12 02:07:52 -07:00
|
|
|
TypeDecl { .. } => Stmt::Noop,
|
2018-07-18 16:01:59 -07:00
|
|
|
TypeAlias(_, _) => Stmt::Noop,
|
|
|
|
Interface { .. } => Stmt::Noop,
|
|
|
|
Impl { .. } => Stmt::Expr(Expr::UnimplementedSigilValue),
|
2018-05-11 02:24:38 -07:00
|
|
|
_ => Stmt::Expr(Expr::UnimplementedSigilValue)
|
|
|
|
}
|
2018-05-10 23:41:51 -07:00
|
|
|
}
|
2018-05-09 02:27:57 -07:00
|
|
|
}
|
2018-05-09 17:02:10 -07:00
|
|
|
|
2018-05-10 23:41:51 -07:00
|
|
|
impl BinOp {
|
2018-06-12 02:56:28 -07:00
|
|
|
fn reduce(&self, symbol_table: &SymbolTable, lhs: &Box<Expression>, rhs: &Box<Expression>) -> Expr {
|
2018-05-12 03:51:42 -07:00
|
|
|
if **self.sigil() == "=" {
|
|
|
|
Expr::Assign {
|
2018-06-12 02:56:28 -07:00
|
|
|
val: Box::new(lhs.reduce(symbol_table)),
|
|
|
|
expr: Box::new(rhs.reduce(symbol_table)),
|
2018-05-12 03:51:42 -07:00
|
|
|
}
|
|
|
|
} else {
|
|
|
|
let f = Box::new(Expr::Func(Func::BuiltIn(self.sigil().clone())));
|
2018-06-12 02:56:28 -07:00
|
|
|
Expr::Call { f, args: vec![lhs.reduce(symbol_table), rhs.reduce(symbol_table)]}
|
2018-05-12 03:51:42 -07:00
|
|
|
}
|
2018-05-10 23:41:51 -07:00
|
|
|
}
|
2018-05-09 17:02:10 -07:00
|
|
|
}
|
|
|
|
|
2018-05-10 23:41:51 -07:00
|
|
|
impl PrefixOp {
|
2018-06-12 02:56:28 -07:00
|
|
|
fn reduce(&self, symbol_table: &SymbolTable, arg: &Box<Expression>) -> Expr {
|
2018-05-11 23:34:26 -07:00
|
|
|
let f = Box::new(Expr::Func(Func::BuiltIn(self.sigil().clone())));
|
2018-06-12 02:56:28 -07:00
|
|
|
Expr::Call { f, args: vec![arg.reduce(symbol_table)]}
|
2018-05-10 23:41:51 -07:00
|
|
|
}
|
2018-05-09 17:02:10 -07:00
|
|
|
}
|