use std::{cell::Cell, ops::Not, ptr::NonNull}; use crate::{ codegen::bt, ident::{self, Ident}, lexer::{Lexer, Token, TokenKind}, }; struct ScopeIdent<'a> { ident: Ident, declared: bool, last: &'a Cell, } pub struct Parser<'a, 'b> { path: &'a std::path::Path, lexer: Lexer<'a>, arena: &'b Arena<'a>, token: Token, idents: Vec>, } impl<'a, 'b> Parser<'a, 'b> { pub fn new(input: &'a str, path: &'a std::path::Path, arena: &'b Arena<'a>) -> Self { let mut lexer = Lexer::new(input); let token = lexer.next(); Self { lexer, token, path, arena, idents: Vec::new(), } } pub fn file(&mut self) -> &'a [Expr<'a>] { let f = self.collect(|s| (s.token.kind != TokenKind::Eof).then(|| s.expr())); self.pop_scope(0); let has_undeclared = !self.idents.is_empty(); for id in self.idents.drain(..) { let (line, col) = self.lexer.line_col(ident::pos(id.ident)); eprintln!( "{}:{}:{} => undeclared identifier: {}", self.path.display(), line, col, self.lexer.slice(ident::range(id.ident)) ); } if has_undeclared { unreachable!(); } f } fn next(&mut self) -> Token { std::mem::replace(&mut self.token, self.lexer.next()) } fn ptr_expr(&mut self) -> &'a Expr<'a> { self.arena.alloc(self.expr()) } fn expr(&mut self) -> Expr<'a> { let left = self.unit_expr(); self.bin_expr(left, 0) } fn bin_expr(&mut self, mut left: Expr<'a>, min_prec: u8) -> Expr<'a> { loop { let Some(prec) = self.token.kind.precedence() else { break; }; if prec < min_prec { break; } let op = self.next().kind; let right = self.unit_expr(); let right = self.bin_expr(right, prec); left = Expr::BinOp { left: self.arena.alloc(left), right: self.arena.alloc(right), op, }; } left } fn try_resolve_builtin(name: &str) -> Option { // FIXME: we actually do this the second time in the codegen Some(match name { "int" => bt::INT, "bool" => bt::BOOL, _ => return None, }) } fn resolve_ident(&mut self, token: Token, decl: bool) -> (Ident, Option<&'a Cell>) { let name = self.lexer.slice(token.range()); if let Some(builtin) = Self::try_resolve_builtin(name) { return (builtin, None); } let last = self.arena.alloc(Cell::new(false)); let id = match self .idents .iter_mut() .rfind(|elem| self.lexer.slice(ident::range(elem.ident)) == name) { Some(elem) if decl && elem.declared => { self.report(format_args!("redeclaration of identifier: {name}")) } Some(elem) => elem, None => { let id = ident::new(token.start, name.len() as _); self.idents.push(ScopeIdent { ident: id, declared: false, last, }); self.idents.last_mut().unwrap() } }; id.last = last; id.declared |= decl; (id.ident, Some(last)) } fn unit_expr(&mut self) -> Expr<'a> { use {Expr as E, TokenKind as T}; let frame = self.idents.len(); let token = self.next(); let mut expr = match token.kind { T::Ident => { let (id, last) = self.resolve_ident(token, self.token.kind == T::Decl); let name = self.lexer.slice(token.range()); E::Ident { name, id, last } } T::If => E::If { pos: token.start, cond: self.ptr_expr(), then: self.ptr_expr(), else_: self.advance_if(T::Else).then(|| self.ptr_expr()), }, T::Loop => E::Loop { pos: token.start, body: self.ptr_expr(), }, T::Break => E::Break { pos: token.start }, T::Continue => E::Continue { pos: token.start }, T::Return => E::Return { pos: token.start, val: (self.token.kind != T::Semi).then(|| self.ptr_expr()), }, T::Fn => E::Closure { pos: token.start, args: { self.expect_advance(T::LParen); self.collect_list(T::Comma, T::RParen, |s| { let name = s.expect_advance(T::Ident); let (id, last) = s.resolve_ident(name, true); s.expect_advance(T::Colon); Arg { name: s.lexer.slice(name.range()), id, last, ty: s.expr(), } }) }, ret: { self.expect_advance(T::Colon); self.ptr_expr() }, body: self.ptr_expr(), }, T::Amp | T::Star => E::UnOp { pos: token.start, op: token.kind, val: self.ptr_unit_expr(), }, T::LBrace => E::Block { pos: token.start, stmts: self.collect_list(T::Semi, T::RBrace, Self::expr), }, T::Number => E::Number { pos: token.start, value: match self.lexer.slice(token.range()).parse() { Ok(value) => value, Err(e) => self.report(format_args!("invalid number: {e}")), }, }, T::LParen => { let expr = self.expr(); self.expect_advance(T::RParen); expr } tok => self.report(format_args!("unexpected token: {tok:?}")), }; loop { expr = match self.token.kind { T::LParen => { self.next(); Expr::Call { func: self.arena.alloc(expr), args: self.collect_list(T::Comma, T::RParen, Self::expr), } } _ => break, } } if matches!(token.kind, T::Return) { self.expect_advance(T::Semi); } if matches!(token.kind, T::Loop | T::LBrace | T::Fn) { self.pop_scope(frame); } expr } fn pop_scope(&mut self, frame: usize) { let mut undeclared_count = frame; for i in frame..self.idents.len() { if !self.idents[i].declared { self.idents.swap(i, undeclared_count); undeclared_count += 1; } } for id in self.idents.drain(undeclared_count..) { id.last.set(true); } } fn ptr_unit_expr(&mut self) -> &'a Expr<'a> { self.arena.alloc(self.unit_expr()) } fn collect_list( &mut self, delim: TokenKind, end: TokenKind, mut f: impl FnMut(&mut Self) -> T, ) -> &'a [T] { self.collect(|s| { s.advance_if(end).not().then(|| { let val = f(s); s.advance_if(delim); val }) }) } fn collect(&mut self, mut f: impl FnMut(&mut Self) -> Option) -> &'a [T] { let vec = std::iter::from_fn(|| f(self)).collect::>(); self.arena.alloc_slice(&vec) } fn advance_if(&mut self, kind: TokenKind) -> bool { if self.token.kind == kind { self.next(); true } else { false } } fn expect_advance(&mut self, kind: TokenKind) -> Token { if self.token.kind != kind { self.report(format_args!( "expected {:?}, found {:?}", kind, self.token.kind )); } self.next() } fn report(&self, msg: impl std::fmt::Display) -> ! { let (line, col) = self.lexer.line_col(self.token.start); eprintln!("{}:{}:{} => {}", self.path.display(), line, col, msg); unreachable!(); } } #[derive(Debug, Clone, Copy, PartialEq, Eq)] pub struct Arg<'a> { pub name: &'a str, pub id: Ident, pub last: Option<&'a Cell>, pub ty: Expr<'a>, } #[derive(Debug, Clone, Copy, PartialEq, Eq)] pub enum Expr<'a> { Break { pos: u32, }, Continue { pos: u32, }, Closure { pos: u32, args: &'a [Arg<'a>], ret: &'a Expr<'a>, body: &'a Expr<'a>, }, Call { func: &'a Expr<'a>, args: &'a [Expr<'a>], }, Return { pos: u32, val: Option<&'a Expr<'a>>, }, Ident { name: &'a str, id: Ident, last: Option<&'a Cell>, }, Block { pos: u32, stmts: &'a [Expr<'a>], }, Number { pos: u32, value: u64, }, BinOp { left: &'a Expr<'a>, op: TokenKind, right: &'a Expr<'a>, }, If { pos: u32, cond: &'a Expr<'a>, then: &'a Expr<'a>, else_: Option<&'a Expr<'a>>, }, Loop { pos: u32, body: &'a Expr<'a>, }, UnOp { pos: u32, op: TokenKind, val: &'a Expr<'a>, }, } impl<'a> std::fmt::Display for Expr<'a> { fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result { thread_local! { static INDENT: Cell = Cell::new(0); } match *self { Self::UnOp { op, val, .. } => write!(f, "{}{}", op, val), Self::Break { .. } => write!(f, "break;"), Self::Continue { .. } => write!(f, "continue;"), Self::If { cond, then, else_, .. } => { write!(f, "if {} {}", cond, then)?; if let Some(else_) = else_ { write!(f, " else {}", else_)?; } Ok(()) } Self::Loop { body, .. } => write!(f, "loop {}", body), Self::Closure { ret, body, args, .. } => { write!(f, "|")?; let first = &mut true; for arg in args { if !std::mem::take(first) { write!(f, ", ")?; } write!(f, "{}: {}", arg.name, arg.ty)?; } write!(f, "|: {} {}", ret, body) } Self::Call { func, args } => { write!(f, "{}(", func)?; let first = &mut true; for arg in args { if !std::mem::take(first) { write!(f, ", ")?; } write!(f, "{}", arg)?; } write!(f, ")") } Self::Return { val: Some(val), .. } => write!(f, "return {};", val), Self::Return { val: None, .. } => write!(f, "return;"), Self::Ident { name, .. } => write!(f, "{}", name), Self::Block { stmts, .. } => { writeln!(f, "{{")?; INDENT.with(|i| i.set(i.get() + 1)); let res = (|| { for stmt in stmts { for _ in 0..INDENT.with(|i| i.get()) { write!(f, " ")?; } writeln!(f, "{}", stmt)?; } Ok(()) })(); INDENT.with(|i| i.set(i.get() - 1)); write!(f, "}}")?; res } Self::Number { value, .. } => write!(f, "{}", value), Self::BinOp { left, right, op } => { let display_branch = |f: &mut std::fmt::Formatter, expr: &Self| { if let Self::BinOp { op: lop, .. } = expr && op.precedence() > lop.precedence() { write!(f, "({})", expr) } else { write!(f, "{}", expr) } }; display_branch(f, left)?; write!(f, " {} ", op)?; display_branch(f, right) } } } } #[derive(Default)] pub struct Arena<'a> { chunk: Cell, ph: std::marker::PhantomData<&'a ()>, } impl<'a> Arena<'a> { pub fn alloc_str(&self, token: &str) -> &'a str { let ptr = self.alloc_slice(token.as_bytes()); unsafe { std::str::from_utf8_unchecked_mut(ptr) } } pub fn alloc(&self, value: T) -> &'a mut T { let layout = std::alloc::Layout::new::(); let ptr = self.alloc_low(layout); unsafe { ptr.cast::().write(value) }; unsafe { ptr.cast::().as_mut() } } pub fn alloc_slice(&self, slice: &[T]) -> &'a mut [T] { let layout = std::alloc::Layout::array::(slice.len()).unwrap(); let ptr = self.alloc_low(layout); unsafe { ptr.as_ptr() .cast::() .copy_from_nonoverlapping(slice.as_ptr(), slice.len()) }; unsafe { std::slice::from_raw_parts_mut(ptr.as_ptr() as _, slice.len()) } } pub fn clear(&mut self) { let chunk = self.chunk.get_mut(); if chunk.base.is_null() { return; } loop { let prev = ArenaChunk::prev(chunk.base); if prev.is_null() { break; } chunk.base = prev; } chunk.end = unsafe { chunk.base.add(ArenaChunk::PREV_OFFSET) }; } fn with_chunk(&self, f: impl FnOnce(&mut ArenaChunk) -> R) -> R { let mut chunk = self.chunk.get(); let r = f(&mut chunk); self.chunk.set(chunk); r } fn alloc_low(&self, layout: std::alloc::Layout) -> NonNull { assert!(layout.align() <= ArenaChunk::ALIGN); assert!(layout.size() <= ArenaChunk::CHUNK_SIZE); self.with_chunk(|chunk| { if let Some(ptr) = chunk.alloc(layout) { return ptr; } if let Some(prev) = ArenaChunk::reset(ArenaChunk::prev(chunk.base)) { *chunk = prev; } else { *chunk = ArenaChunk::new(chunk.base); } chunk.alloc(layout).unwrap() }) } } impl<'a> Drop for Arena<'a> { fn drop(&mut self) { use ArenaChunk as AC; let mut current = self.chunk.get().base; let mut prev = AC::prev(current); while !prev.is_null() { let next = AC::next(prev); unsafe { std::alloc::dealloc(prev, AC::LAYOUT) }; prev = next; } while !current.is_null() { let next = AC::next(current); unsafe { std::alloc::dealloc(current, AC::LAYOUT) }; current = next; } } } #[derive(Clone, Copy)] struct ArenaChunk { base: *mut u8, end: *mut u8, } impl Default for ArenaChunk { fn default() -> Self { Self { base: std::ptr::null_mut(), end: std::ptr::null_mut(), } } } impl ArenaChunk { const CHUNK_SIZE: usize = 1 << 16; const ALIGN: usize = std::mem::align_of::(); const NEXT_OFFSET: usize = Self::CHUNK_SIZE - std::mem::size_of::<*mut u8>(); const PREV_OFFSET: usize = Self::NEXT_OFFSET - std::mem::size_of::<*mut u8>(); const LAYOUT: std::alloc::Layout = unsafe { std::alloc::Layout::from_size_align_unchecked(Self::CHUNK_SIZE, Self::ALIGN) }; fn new(next: *mut u8) -> Self { let base = unsafe { std::alloc::alloc(Self::LAYOUT) }; let end = unsafe { base.add(Self::PREV_OFFSET) }; if !next.is_null() { Self::set_prev(next, base); } Self::set_next(base, next); Self::set_prev(base, std::ptr::null_mut()); Self { base, end } } fn set_next(curr: *mut u8, next: *mut u8) { unsafe { std::ptr::write(curr.add(Self::NEXT_OFFSET) as *mut _, next) }; } fn set_prev(curr: *mut u8, prev: *mut u8) { unsafe { std::ptr::write(curr.add(Self::PREV_OFFSET) as *mut _, prev) }; } fn next(curr: *mut u8) -> *mut u8 { unsafe { std::ptr::read(curr.add(Self::NEXT_OFFSET) as *mut _) } } fn prev(curr: *mut u8) -> *mut u8 { if curr.is_null() { return std::ptr::null_mut(); } unsafe { std::ptr::read(curr.add(Self::PREV_OFFSET) as *mut _) } } fn reset(prev: *mut u8) -> Option { if prev.is_null() { return None; } Some(Self { base: prev, end: unsafe { prev.add(Self::CHUNK_SIZE) }, }) } fn alloc(&mut self, layout: std::alloc::Layout) -> Option> { let padding = self.end as usize - (self.end as usize & !(layout.align() - 1)); let size = layout.size() + padding; if size > self.end as usize - self.base as usize { return None; } unsafe { self.end = self.end.sub(size) }; unsafe { Some(NonNull::new_unchecked(self.end)) } } } #[cfg(test)] mod tests { fn parse(input: &'static str, output: &mut String) { use std::fmt::Write; let mut arena = super::Arena::default(); let mut parser = super::Parser::new(input, std::path::Path::new("test"), &arena); for expr in parser.file() { writeln!(output, "{}", expr).unwrap(); } arena.clear(); } crate::run_tests! { parse: example => include_str!("../examples/main_fn.hb"); arithmetic => include_str!("../examples/arithmetic.hb"); } }