// ASG IR expression parsing // // Copyright (C) 2014-2023 Ryan Specialty, LLC. // // This file is part of TAME. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see . //! AIR expression parser. //! //! See the [parent module](super) for more information. use super::{ super::{ graph::object::{Expr, Object}, Asg, AsgError, ObjectIndex, }, ir::AirBindableExpr, AirAggregate, AirAggregateCtx, }; use crate::{ asg::{ graph::object::{ObjectIndexRelTo, ObjectIndexTo}, ObjectKind, }, f::Functor, parse::prelude::*, }; #[cfg(doc)] use StackEdge::{Dangling, Reachable}; /// Parse an AIR expression with binding support. /// /// Expressions are composable, /// so this parser need only care about whether it has any active /// expression being parsed. /// /// This parser has no dead states---it /// handles each of its tokens and performs error recovery on invalid /// state transitions. #[derive(Debug, PartialEq)] pub enum AirExprAggregate { /// Ready for an expression; /// expression stack is empty. Ready(ExprStack), /// Building an expression. BuildingExpr(ExprStack, ObjectIndex), } impl Display for AirExprAggregate { fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { match self { Self::Ready(es) => { write!(f, "ready for expression with {es}") } Self::BuildingExpr(es, _) => { write!(f, "building expression with {es}") } } } } impl ParseState for AirExprAggregate { type Token = AirBindableExpr; type Object = (); type Error = AsgError; type Context = AirAggregateCtx; type Super = AirAggregate; fn parse_token( self, tok: Self::Token, ctx: &mut Self::Context, ) -> crate::parse::TransitionResult { use super::ir::{AirBind::*, AirExpr::*}; use AirBindableExpr::*; use AirExprAggregate::*; match (self, tok) { (Ready(es), AirExpr(ExprStart(op, span))) => { let oi = ctx.asg_mut().create(Expr::new(op, span)); Transition(BuildingExpr(es.activate(), oi)).incomplete() } (BuildingExpr(es, poi), AirExpr(ExprStart(op, span))) => { let oi = poi.create_subexpr(ctx.asg_mut(), Expr::new(op, span)); Transition(BuildingExpr(es.push(poi), oi)).incomplete() } (BuildingExpr(es, oi), AirExpr(ExprEnd(end))) => { let _ = oi.map_obj(ctx.asg_mut(), |expr| { expr.map(|span| span.merge(end).unwrap_or(span)) }); let dangling = es.is_dangling(); let oi_root = ctx.dangling_expr_oi(); match (es.pop(), dangling) { ((es, Some(poi)), _) => { Transition(BuildingExpr(es, poi)).incomplete() } ((es, None), true) => { Self::hold_dangling(ctx.asg_mut(), oi_root, oi) .transition(Ready(es.done())) } ((es, None), false) => { Transition(Ready(es.done())).incomplete() } } } (BuildingExpr(es, oi), AirBind(BindIdent(id))) => { let result = ctx.defines(id).and_then(|oi_ident| { oi_ident.bind_definition(ctx.asg_mut(), id, oi) }); // It is important that we do not mark this expression as // reachable unless we successfully bind the identifier. match result { Ok(oi_ident) => { Transition(BuildingExpr(es.reachable_by(oi_ident), oi)) .incomplete() } Err(e) => Transition(BuildingExpr(es, oi)).err(e), } } (BuildingExpr(es, oi), AirBind(RefIdent(ident))) => { Transition(BuildingExpr(es, oi.ref_expr(ctx.asg_mut(), ident))) .incomplete() } (st @ Ready(..), AirExpr(ExprEnd(span))) => { Transition(st).err(AsgError::UnbalancedExpr(span)) } // The binding may refer to a parent context. (st @ Ready(..), tok @ AirBind(..)) => Transition(st).dead(tok), } } fn is_accepting(&self, _: &Self::Context) -> bool { matches!(self, Self::Ready(..)) } } impl AirExprAggregate { pub(super) fn new() -> Self { Self::Ready(ExprStack::default()) } /// Hold or reject a [`Dangling`] root [`Expr`]. /// /// A [`Dangling`] expression is not reachable by any other object. /// If there is no context able to handle such an expression, /// then an [`AsgError::DanglingExpr`] will be returned. fn hold_dangling( asg: &mut Asg, oi_root: Option>, oi_expr: ObjectIndex, ) -> Result<(), AsgError> { oi_root .ok_or(AsgError::DanglingExpr(oi_expr.resolve(asg).span()))? .add_edge_to(asg, oi_expr, None); Ok(()) } /// The [`ObjectIndex`] of the active expression being built, /// if any. /// /// This will return the deepest active subexpression. pub(super) fn active_expr_oi(&self) -> Option> { use AirExprAggregate::*; match self { Ready(_) => None, BuildingExpr(_, oi) => Some(*oi), } } } /// Stack of held expressions, /// with the root expression at the bottom of the stack. /// /// Expression [`ObjectIndex`]es are pushed onto this stack when /// parsing a subexpression, /// and are popped when the subexpression terminates. /// The active expression is _not_ stored on this stack to avoid unnecessary /// indirection. /// /// Despite the immutable interface, /// this does modify the inner [`Vec`] in-place; /// it does not reallocate unless its capacity has been reached. /// /// Unlike other parts of the system, /// this is heap-allocated, /// but should be very cache-friendly. /// This reason for heap allocation is that this is explicitly /// _unbounded_—systems like code generators ought to be able to output /// expressions in a tacit style without worrying about arbitrary limits. /// It is worth noting that the other parts of the system using /// stack-allocated data structures is less about performance and more /// about the simplicity afforded by keeping allocators out of the picture. /// We'll address performance issues if they appear during profiling. /// /// Another benefit of using [`Vec`] here is that Rust is able to properly /// optimize away `memcpy`s for it, /// rather than having to utilize the parser's mutable context. /// Further, /// the ASG is heap-allocated, /// so we're not avoiding the heap anyway. /// /// The interface is modeled after [Haskell's `Stack`][haskell-stack], /// with a slight variation for [`Self::pop`] so that we can avoid /// reallocation after a stack is used up, /// which is frequent. /// /// [haskell-stack]: https://hackage.haskell.org/package/Stack/docs/Data-Stack.html /// /// The stack states [`Dormant`] and [`Active`] selectively provide /// different APIs to enforce certain invariants, /// as an alternative to re-allocating an inner [`Vec`] each time a new /// root expression is encountered. #[derive(Debug, PartialEq, Eq)] pub struct ExprStack(Vec>, S); /// Expression stack is not in use and must be empty; /// no ongoing expression parsing. #[derive(Debug, PartialEq, Eq)] pub struct Dormant; /// Expression stack is in use as part of an expression parse. #[derive(Debug, PartialEq, Eq)] pub struct Active(StackEdge); #[derive(Debug, PartialEq, Eq)] pub enum StackEdge { /// Root expression is yet not reachable from any other object. /// /// Dangling expressions are expected to transition into /// [`Self::Reachable`] after being bound to an identifier. /// Closing a dangling expression will result in a /// [`AsgError::DanglingExpr`]. /// /// Binding a sub-expression does not bind the root of the stack, /// since sub-expressions cannot reference their parent; /// a stack is dangling until its root expression has been bound to /// an identifier. Dangling, /// Root expression is reachable from another object. /// /// The associated [`ObjectIndex`] serves as _evidence_ of this /// assertion. Reachable(ObjectIndex), } impl Display for StackEdge { fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { match self { Self::Dangling => write!(f, "dangling"), Self::Reachable(oi) => { write!(f, "reachable (by {oi})") } } } } impl ExprStack { /// Mark the stack as active, /// exposing its stack API for use. /// /// [`ExprStack::done`] will return the stack to a dormant state. fn activate(self) -> ExprStack { let Self(stack, _) = self; ExprStack(stack, Active(StackEdge::Dangling)) } } impl ExprStack { fn push(self, item: ObjectIndex) -> Self { let Self(mut stack, s) = self; stack.push(item); Self(stack, s) } /// Attempt to remove an item from the stack, /// returning a new stack and the item, /// if any. /// /// This returns a new [`Self`] even if it is empty so that it can be /// reused without having to reallocate. fn pop(self) -> (Self, Option>) { let Self(mut stack, s) = self; let oi = stack.pop(); (Self(stack, s), oi) } /// Whether the stack is dangling. fn is_dangling(&self) -> bool { matches!(self, Self(_, Active(StackEdge::Dangling))) } /// Mark stack as reachable if processing the root expression. /// /// `ident` is admitted as evidence of reachability, /// both for debugging and for making it more difficult to /// misuse this API. /// If the stack is already reachable, /// the previous identifier takes precedence. /// /// If not parsing the root expression /// (if the stack is non-empty), /// this returns `self` unchanged. fn reachable_by(self, oi: ObjectIndex) -> Self { match self { Self(stack, Active(StackEdge::Dangling)) if stack.is_empty() => { Self(stack, Active(StackEdge::Reachable(oi.widen()))) } _ => self, } } /// Mark the stack as dormant, /// hiding its stack API and ensuring that its state is properly reset /// for the next root expression. /// /// [`ExprStack::activate`] will re-activate the stack for use. fn done(self) -> ExprStack { let Self(stack, _) = self; // TODO: error if non-empty stack (unclosed expr) if !stack.is_empty() { todo!("ExprStack::done(): error on non-empty stack") } ExprStack(stack, Dormant) } } impl Default for ExprStack { fn default() -> Self { // TODO: 16 is a generous guess that is very unlikely to be exceeded // in practice at the time of writing, // even with template expansion, // but let's develop an informed heuristic. // Note that this is very unlikely to make a difference; // I just don't like using numbers without data to back them up. Self(Vec::with_capacity(16), Dormant) } } impl Display for ExprStack { fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { let Self(stack, _) = self; write!(f, "dormant expression stack of size {}", stack.capacity()) } } impl Display for ExprStack { fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { let Self(stack, Active(edge_st)) = self; write!( f, "active {edge_st} expression stack of length {} and size {}", stack.len(), stack.capacity() ) } } #[cfg(test)] pub mod test;