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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
use crate::{Error, Result};
use std::collections::HashMap;
#[derive(Clone, Copy, Debug, Default)]
pub struct Integer {
pub used_bits: u32,
pub bits: u32,
pub is_signed: bool,
}
impl Integer {
pub fn get_size(&self) -> u32 {
self.used_bits / 8
}
}
#[derive(Clone, Copy, Debug, Default)]
pub struct Float {
pub bits: u32,
}
impl Float {
pub fn get_size(&self) -> u32 {
self.bits / 8
}
}
#[derive(Clone, Copy, Debug, Default)]
pub struct Array {
pub element_type_id: usize,
pub num_elements: u32,
pub size: u32,
}
impl Array {
pub fn create(
database: &TypeDatabase,
element_type_id: usize,
num_elements: u32,
) -> Result<Self> {
let element_type = database
.get_type_by_id(element_type_id)
.ok_or(Error::InvalidTypeId)?;
let size = element_type.get_size() * num_elements;
Ok(Self {
element_type_id,
num_elements,
size,
})
}
pub fn get_size(&self) -> u32 {
self.size
}
}
#[derive(Clone, Copy, Debug, Default)]
pub struct Field {
pub offset: u32,
pub type_id: usize,
}
impl Field {
pub fn get_type<'a>(&self, database: &'a TypeDatabase) -> Option<&'a Type> {
database.get_type_by_id(self.type_id)
}
}
#[derive(Clone, Debug, Default)]
pub struct Struct {
pub fields: HashMap<String, Field>,
pub size: u32,
}
impl Struct {
pub fn create(database: &TypeDatabase, fields: &[(&str, Field)]) -> Result<Self> {
let mut new_fields = HashMap::with_capacity(fields.len());
let mut bits = 0;
for (name, field) in fields {
let field_type = database
.get_type_by_id(field.type_id)
.ok_or(Error::InvalidTypeId)?;
let reach = field.offset + field_type.get_size() * 8;
if reach > bits {
bits = reach
}
new_fields.insert(name.to_string(), *field);
}
Ok(Self {
fields: new_fields,
size: bits / 8,
})
}
pub fn get_size(&self) -> u32 {
self.size
}
}
#[derive(Clone, Debug, Default)]
pub struct Enum {
pub bits: u32,
pub values: Vec<(String, i64)>,
}
impl Enum {
pub fn get_size(&self) -> u32 {
self.bits / 8
}
}
#[derive(Clone, Debug, Default)]
pub struct Function {
pub param_type_ids: Vec<usize>,
}
impl Function {
pub fn create(param_type_ids: &[usize]) -> Self {
Self {
param_type_ids: param_type_ids.to_vec(),
}
}
}
#[derive(Clone, Debug, Default)]
pub enum BaseType {
#[default]
Void,
Integer(Integer),
Float(Float),
Array(Array),
Struct(Struct),
Enum(Enum),
Function(Function),
}
impl BaseType {
pub fn get_size(&self) -> u32 {
match self {
BaseType::Void => 0,
BaseType::Integer(t) => t.get_size(),
BaseType::Float(t) => t.get_size(),
BaseType::Array(t) => t.get_size(),
BaseType::Struct(t) => t.get_size(),
BaseType::Enum(t) => t.get_size(),
BaseType::Function(_) => 0,
}
}
}
#[derive(Clone, Debug, Default)]
pub struct Type {
pub base_type: BaseType,
pub num_refs: u32,
}
impl Type {
pub fn is_pointer(&self) -> bool {
self.num_refs > 0
}
pub fn get_size(&self) -> u32 {
if self.num_refs > 0 {
return 8;
}
self.base_type.get_size()
}
}
impl From<BaseType> for Type {
fn from(base_type: BaseType) -> Self {
Self {
base_type,
num_refs: 0,
}
}
}
#[derive(Clone, Debug, Default)]
pub struct TypeDatabase {
types: Vec<Type>,
name_map: HashMap<String, usize>,
}
impl TypeDatabase {
pub fn add_type(&mut self, name: Option<&str>, ty: &Type) -> Result<usize> {
let index = self.types.len();
self.types.push(ty.clone());
if let Some(name) = name {
self.name_map.insert(name.to_string(), index);
}
Ok(index)
}
pub fn get_type_by_name(&self, name: &str) -> Option<&Type> {
let index = self.name_map.get(name)?;
self.types.get(*index)
}
pub fn get_type_by_id(&self, id: usize) -> Option<&Type> {
self.types.get(id)
}
pub fn get_type_id_by_name(&self, name: &str) -> Option<usize> {
Some(*self.name_map.get(name)?)
}
pub fn add_integer(
&mut self,
name: Option<&str>,
bytes: u32,
is_signed: bool,
) -> Result<usize> {
let bits = bytes * 8;
let new_integer = Integer {
used_bits: bits,
bits,
is_signed,
};
self.add_type(name, &BaseType::Integer(new_integer).into())
}
pub fn add_float(&mut self, name: Option<&str>, bits: u32) -> Result<usize> {
let new_float = Float { bits };
self.add_type(name, &BaseType::Float(new_float).into())
}
pub fn add_array(
&mut self,
name: Option<&str>,
element_type_id: usize,
num_elements: u32,
) -> Result<usize> {
let new_array = Array::create(self, element_type_id, num_elements)?;
self.add_type(name, &BaseType::Array(new_array).into())
}
pub fn add_struct(&mut self, name: Option<&str>, fields: &[(&str, Field)]) -> Result<usize> {
let new_struct = Struct::create(self, fields)?;
self.add_type(name, &BaseType::Struct(new_struct).into())
}
pub fn add_struct_by_names(
&mut self,
name: Option<&str>,
fields: &[(&str, &str)],
) -> Result<usize> {
let mut new_fields = Vec::with_capacity(fields.len());
let mut offset = 0;
for (field_name, type_name) in fields {
let field_type = self
.get_type_by_name(type_name)
.ok_or(Error::InvalidTypeName)?;
let type_id = self
.get_type_id_by_name(type_name)
.ok_or(Error::InvalidTypeName)?;
let field = Field { offset, type_id };
offset += field_type.get_size() * 8;
new_fields.push((*field_name, field));
}
let new_struct = Struct::create(self, new_fields.as_slice())?;
self.add_type(name, &BaseType::Struct(new_struct).into())
}
}
pub trait AddToTypeDatabase {
fn add_to_database(database: &mut TypeDatabase) -> Result<usize>;
}
impl AddToTypeDatabase for u8 {
fn add_to_database(database: &mut TypeDatabase) -> Result<usize> {
database.add_integer(Some("u8"), 1, false)
}
}
impl AddToTypeDatabase for u16 {
fn add_to_database(database: &mut TypeDatabase) -> Result<usize> {
database.add_integer(Some("u16"), 2, false)
}
}
impl AddToTypeDatabase for u32 {
fn add_to_database(database: &mut TypeDatabase) -> Result<usize> {
database.add_integer(Some("u32"), 4, false)
}
}
impl AddToTypeDatabase for u64 {
fn add_to_database(database: &mut TypeDatabase) -> Result<usize> {
database.add_integer(Some("u64"), 8, false)
}
}
impl AddToTypeDatabase for i8 {
fn add_to_database(database: &mut TypeDatabase) -> Result<usize> {
database.add_integer(Some("i8"), 1, true)
}
}
impl AddToTypeDatabase for i16 {
fn add_to_database(database: &mut TypeDatabase) -> Result<usize> {
database.add_integer(Some("i16"), 2, true)
}
}
impl AddToTypeDatabase for i32 {
fn add_to_database(database: &mut TypeDatabase) -> Result<usize> {
database.add_integer(Some("i32"), 4, true)
}
}
impl AddToTypeDatabase for i64 {
fn add_to_database(database: &mut TypeDatabase) -> Result<usize> {
database.add_integer(Some("i64"), 8, true)
}
}
impl<T: AddToTypeDatabase, const N: usize> AddToTypeDatabase for [T; N] {
fn add_to_database(database: &mut TypeDatabase) -> Result<usize> {
let type_id = T::add_to_database(database)?;
database.add_array(
Some(std::any::type_name::<[T; N]>()),
type_id,
N.try_into()?,
)
}
}