Files
vulcan/forge_core/src/ast.rs
T

150 lines
2.9 KiB
Rust
Raw Normal View History

2023-07-03 23:11:44 -05:00
#[derive(Eq, PartialEq, Clone, Debug)]
pub enum Declaration {
Function(Function),
Global(Global),
Struct(Struct),
Const(Const),
}
#[derive(Eq, PartialEq, Clone, Debug, Default)]
pub struct Varinfo {
pub typename: Option<String>,
pub size: Option<i32>,
}
#[derive(Eq, PartialEq, Clone, Debug)]
pub struct Global {
pub name: String,
pub typename: Option<String>,
pub size: Option<i32>,
}
#[derive(Eq, PartialEq, Clone, Debug)]
pub struct Struct {
pub name: String,
pub members: Vec<Member>,
}
#[derive(Eq, PartialEq, Clone, Debug)]
pub struct Member {
pub name: String,
pub typename: Option<String>,
pub size: Option<i32>,
}
#[derive(Eq, PartialEq, Clone, Debug)]
pub struct Const {
pub name: String,
pub value: Option<i32>,
pub string: Option<String>,
}
#[derive(Eq, PartialEq, Clone, Debug)]
pub struct Function {
pub name: String,
pub org: Option<i32>,
pub typename: Option<String>,
pub inline: bool,
pub args: Vec<Argname>,
}
#[derive(Eq, PartialEq, Clone, Debug)]
pub struct Argname {
pub name: String,
pub typename: Option<String>,
}
2023-07-04 02:49:29 -05:00
#[derive(Eq, PartialEq, Clone, Debug)]
pub struct Block {
pub statements: Vec<Statement>,
}
#[derive(Eq, PartialEq, Clone, Debug)]
pub enum Statement {
Return(Return),
Assignment(Assignment),
Call(Call),
VarDecl(VarDecl),
Conditional(Conditional),
WhileLoop(WhileLoop),
RepeatLoop(RepeatLoop),
}
#[derive(Eq, PartialEq, Clone, Debug)]
pub struct Return {}
#[derive(Eq, PartialEq, Clone, Debug)]
pub struct Assignment {}
#[derive(Eq, PartialEq, Clone, Debug)]
pub struct Call {}
#[derive(Eq, PartialEq, Clone, Debug)]
pub struct VarDecl {}
#[derive(Eq, PartialEq, Clone, Debug)]
pub struct Conditional {}
#[derive(Eq, PartialEq, Clone, Debug)]
pub struct WhileLoop {}
#[derive(Eq, PartialEq, Clone, Debug)]
pub struct RepeatLoop {}
/// One of the five arithmetical operators
#[derive(Debug, PartialEq, Copy, Clone)]
pub enum Operator {
Add,
Sub,
Mul,
Div,
Mod,
}
#[derive(PartialEq, Clone, Debug)]
pub enum Node {
Number(i32),
Call(Call),
ArrayRef(ArrayRef),
Name(String),
Address(String),
2023-07-05 23:19:54 -05:00
Expr(BoxNode, Vec<(Operator, Node)>),
2023-07-04 02:49:29 -05:00
}
impl From<i32> for Node {
fn from(val: i32) -> Self {
Self::Number(val)
}
}
impl From<&str> for Node {
fn from(s: &str) -> Self {
Self::Name(String::from(s))
}
}
2023-07-05 23:19:54 -05:00
#[repr(transparent)]
#[derive(PartialEq, Clone, Debug)]
pub struct BoxNode(pub Box<Node>);
impl From<i32> for BoxNode {
fn from(val: i32) -> Self {
BoxNode(Box::from(Node::Number(val)))
}
}
impl From<Node> for BoxNode {
fn from(val: Node) -> Self {
BoxNode(Box::from(val))
}
}
impl From<BoxNode> for Node {
fn from(val: BoxNode) -> Self {
*(val.0)
}
}
2023-07-04 02:49:29 -05:00
#[derive(Eq, PartialEq, Clone, Debug)]
pub struct ArrayRef {}