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
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
}
}