math_jit/rpn.rs
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248
//! Parsing and operations on the program
use crate::error::JitError;
/// RPN Token
#[derive(Clone, Debug, PartialEq, PartialOrd)]
pub enum Token {
/// Push a value onto the stack
Push(Value),
/// Push variable value onto the stack
PushVar(Var),
/// Write top of stack to in-out variable
Write(Out),
/// Binary operation
///
/// Pops 2 values from the stack, performs the operation, and pushes the
/// result back onto the stack
Binop(Binop),
/// Unary operation
///
/// Replaces the top value on the stack with the result of the operation
Unop(Unop),
/// Function call
///
/// Pops a number of arguments from the stack, evaluates the function, and
/// pushes the result back onto the stack.
Function(Function),
/// No operation
Noop,
}
/// Constant value
#[derive(Clone, Copy, Debug, PartialEq, PartialOrd)]
pub enum Value {
/// Arbotrary value
Literal(f32),
/// Pi
Pi,
/// Euler's constant
E,
}
impl Value {
/// Obtains the corresponding value
pub fn value(self) -> f32 {
match self {
Value::Literal(f) => f,
Value::Pi => std::f32::consts::PI,
Value::E => std::f32::consts::E,
}
}
}
/// Readable variables
#[derive(Clone, Copy, Debug, PartialEq, Eq, PartialOrd, Ord)]
pub enum Var {
X,
Y,
A,
B,
C,
D,
Sig1,
Sig2,
}
/// Writeable variables
#[derive(Clone, Copy, Debug, PartialEq, Eq, PartialOrd, Ord)]
pub enum Out {
Sig1,
Sig2,
}
/// Binary operation
#[derive(Clone, Copy, Debug, PartialEq, PartialOrd)]
pub enum Binop {
/// Addition
Add,
/// Subtraction
Sub,
/// Multiplication
Mul,
/// Division
Div,
}
/// Unary operation
#[derive(Clone, Copy, Debug, PartialEq, PartialOrd)]
pub enum Unop {
/// Negation
Neg,
}
/// Function call
#[derive(Clone, Debug, PartialEq, PartialOrd)]
pub struct Function {
/// Name of the function
pub name: String,
/// Number of arguments
pub args: usize,
}
/// Parsed program representation
///
/// The program is represented using Reverse Polish Notation, which is lends
/// to easy iterative translation into CLIF as well as to simple optimizations.
#[derive(Debug)]
pub struct Program(pub Vec<Token>);
impl Program {
/// Constructs program directly from RPN
pub fn new(tokens: Vec<Token>) -> Self {
Program(tokens)
}
/// Parses an infix notation into RPN
pub fn parse_from_infix(expr: &str) -> Result<Self, JitError> {
let tokens = meval::tokenizer::tokenize(expr)?;
let meval_rpn = meval::shunting_yard::to_rpn(&tokens)?;
let mut prog = Vec::new();
for meval_token in meval_rpn {
use meval::tokenizer::Operation as MevalOp;
use meval::tokenizer::Token as MevalToken;
let token = match meval_token {
MevalToken::Var(name) => match name.as_str() {
"x" => Token::PushVar(Var::X),
"y" => Token::PushVar(Var::Y),
"a" => Token::PushVar(Var::A),
"b" => Token::PushVar(Var::B),
"c" => Token::PushVar(Var::C),
"d" => Token::PushVar(Var::D),
"sig1" => Token::PushVar(Var::Sig1),
"sig2" => Token::PushVar(Var::Sig2),
"pi" => Token::Push(Value::Pi),
"e" => Token::Push(Value::E),
_ => return Err(JitError::ParseUnknownVariable(name.to_string())),
},
MevalToken::Number(f) => Token::Push(Value::Literal(f as f32)),
MevalToken::Binary(op) => match op {
MevalOp::Plus => Token::Binop(Binop::Add),
MevalOp::Minus => Token::Binop(Binop::Sub),
MevalOp::Times => Token::Binop(Binop::Mul),
MevalOp::Div => Token::Binop(Binop::Div),
MevalOp::Pow => Token::Function(Function {
name: "pow".to_string(),
args: 2,
}),
_ => return Err(JitError::ParseUnknownBinop(format!("{op:?}"))),
},
MevalToken::Unary(op) => match op {
MevalOp::Plus => Token::Noop,
MevalOp::Minus => Token::Unop(Unop::Neg),
_ => return Err(JitError::ParseUnknownUnop(format!("{op:?}"))),
},
MevalToken::Func(name, Some(1)) if name == "_1" => Token::Write(Out::Sig1),
MevalToken::Func(name, Some(1)) if name == "_2" => Token::Write(Out::Sig2),
MevalToken::Func(name, args) => Token::Function(Function {
name,
args: args.unwrap_or_default(),
}),
other => return Err(JitError::ParseUnknownToken(format!("{other:?}"))),
};
prog.push(token);
}
Ok(Program(prog))
}
/// Evaluate constant expressions
///
/// Optimizes binary and unary operations:
/// - replace `[const0, const1, op]` with `[op(const0, const1)]`
/// - replace `[const, op]` with `[op(const)]`
///
/// This operation is repeated until no progress can be made. [`Token::Noop`]
/// is removed in the process.
///
/// Doesn't support reordering of associative operations, so
/// `[var, const0, add, const1, add]` is *not* replaced with
/// `[var, add(const0, const1), add]` and so on.
pub fn propagate_constants(&mut self) {
let mut work_done = true;
while work_done {
work_done = false;
if self.0.len() < 2 {
continue;
}
for n in 0..self.0.len() - 1 {
let tok0 = &self.0[n];
let tok1 = &self.0[n + 1];
let arg = match tok0 {
Token::Push(f) => f.value(),
_ => continue,
};
let result = match tok1 {
Token::Function(Function { name, args: 1 }) if name == "sin" => arg.sin(),
Token::Function(Function { name, args: 1 }) if name == "cos" => arg.cos(),
Token::Unop(Unop::Neg) => -arg,
_ => continue,
};
self.0[n] = Token::Noop;
self.0[n + 1] = Token::Push(Value::Literal(result));
work_done = true;
}
if self.0.len() < 3 {
continue;
}
for n in 0..self.0.len() - 2 {
let tok0 = &self.0[n];
let tok1 = &self.0[n + 1];
let tok2 = &self.0[n + 2];
let (l, r) = match (tok0, tok1) {
(Token::Push(l), Token::Push(r)) => (l.value(), r.value()),
_ => continue,
};
let result = match tok2 {
Token::Binop(Binop::Add) => l + r,
Token::Binop(Binop::Sub) => l - r,
Token::Binop(Binop::Mul) => l * r,
Token::Binop(Binop::Div) => l / r,
Token::Function(Function { name, args: 2 }) if name == "pow" => l.powf(r),
_ => continue,
};
self.0[n] = Token::Noop;
self.0[n + 1] = Token::Noop;
self.0[n + 2] = Token::Push(Value::Literal(result));
work_done = true;
}
self.0.retain(|tok| *tok != Token::Noop);
}
self.0.retain(|tok| *tok != Token::Noop);
}
}