use crate::entities::{AbiParam, AbiType, Block, Type, Variable};
use crate::instruction::{InstBlock, BlockType};
use std::collections::HashMap;
pub struct Function {
pub variables: HashMap<String, AbiType>,
pub blocks: Vec<InstBlock>,
pub name: String,
pub signature: FunctionSignature,
}
pub struct FunctionSignature {
pub arguments: Vec<AbiParam>,
pub returns: AbiType,
}
impl FunctionSignature {
pub fn new() -> Self {
Self {
arguments: vec![],
returns: AbiType("void".into(), Type::Plain)
}
}
}
impl Function {
pub fn new(name: String, sig: FunctionSignature) -> Self {
Self {
name,
signature: sig,
variables: HashMap::new(),
blocks: vec![],
}
}
pub fn declare_var(&mut self, name: String, var_type: AbiType) -> Variable {
let val = Variable(name.to_string());
self.variables.insert(name, var_type);
val
}
pub fn use_block(&mut self, block: Block) -> &mut InstBlock {
self.blocks.get_mut(block.0 as usize).unwrap()
}
pub fn create_block(&mut self) -> Block {
let block = InstBlock {
block_type: BlockType::Basic,
blocks: vec![],
else_block: None,
elses: vec![],
imports: vec![],
insts: vec![],
values: vec![],
};
let val = Block(self.blocks.len() as u32);
self.blocks.push(block);
val
}
}