mini-c-parser 0.1.4

minimal C language lexer & parser & executer from scratch
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
use super::{expression::Expression, typename::TypeInfo};
use crate::program::instruction::binary::Assign;
use crate::program::instruction::{
    self, DeclareEnum, DeclareStructure, DeclareUnion, GetLabelAddress, Jump, JumpNotZero,
    JumpZero, NewScope, PopScope,
};
use crate::program::instruction::{GetVariable, Instruction};
use crate::program::program::FunctionData;
use crate::program::program::Program;

use std::any::Any;

pub trait Statement: core::fmt::Debug + Any {
    fn emit(&self, program: &mut Program, instructions: &mut Vec<Box<dyn Instruction>>);
    fn as_any(&self) -> &dyn Any;
}

#[derive(Debug)]
pub struct NullStatement;
impl Statement for NullStatement {
    fn emit(&self, program: &mut Program, instructions: &mut Vec<Box<dyn Instruction>>) {}
    fn as_any(&self) -> &dyn Any {
        self
    }
}

#[derive(Debug)]
pub struct ExpressionStatement {
    pub expression: Box<dyn Expression>,
}
impl Statement for ExpressionStatement {
    fn emit(&self, program: &mut Program, instructions: &mut Vec<Box<dyn Instruction>>) {
        self.expression.emit(program, instructions);
    }
    fn as_any(&self) -> &dyn Any {
        self
    }
}

#[derive(Debug)]
pub struct LabeledStatement {
    pub label: String,
    pub statement: Box<dyn Statement>,
}
impl Statement for LabeledStatement {
    fn emit(&self, program: &mut Program, instructions: &mut Vec<Box<dyn Instruction>>) {
        program.set_label(self.label.clone(), instructions);
        self.statement.emit(program, instructions);
    }
    fn as_any(&self) -> &dyn Any {
        self
    }
}

#[derive(Debug)]
pub struct CompoundStatement {
    pub statements: Vec<Box<dyn Statement>>,
}
impl Statement for CompoundStatement {
    fn emit(&self, program: &mut Program, instructions: &mut Vec<Box<dyn Instruction>>) {
        instructions.push(Box::new(NewScope {}));
        for statement in &self.statements {
            statement.emit(program, instructions);
        }
        instructions.push(Box::new(PopScope {}));
    }
    fn as_any(&self) -> &dyn Any {
        self
    }
}

#[derive(Debug)]
pub struct IfStatement {
    pub cond: Box<dyn Expression>,
    pub then_statement: Box<dyn Statement>,
    pub else_statement: Option<Box<dyn Statement>>,
}
impl Statement for IfStatement {
    fn emit(&self, program: &mut Program, instructions: &mut Vec<Box<dyn Instruction>>) {
        self.cond.emit(program, instructions);
        let else_label = program.get_unique_label();
        let end_label = program.get_unique_label();
        instructions.push(Box::new(GetLabelAddress::<1> {
            label: else_label.clone(),
        }));
        instructions.push(Box::new(JumpZero::<1, 0> {}));
        self.then_statement.emit(program, instructions);
        instructions.push(Box::new(GetLabelAddress::<1> {
            label: end_label.clone(),
        }));
        instructions.push(Box::new(Jump::<1> {}));
        program.set_label(else_label, instructions);
        if let Some(else_statement) = &self.else_statement {
            else_statement.emit(program, instructions);
        }
        program.set_label(end_label.clone(), instructions);
    }
    fn as_any(&self) -> &dyn Any {
        self
    }
}

#[derive(Debug)]
pub struct SwitchStatement {
    pub target: Box<dyn Expression>,
    pub statement: Box<dyn Statement>,
}
impl Statement for SwitchStatement {
    fn emit(&self, program: &mut Program, instructions: &mut Vec<Box<dyn Instruction>>) {
        panic!("SwitchStatementAST::emit not implemented");
    }
    fn as_any(&self) -> &dyn Any {
        self
    }
}
#[derive(Debug)]
pub struct CaseStatement {
    pub value: Box<dyn Expression>,
    pub statement: Box<dyn Statement>,
}
impl Statement for CaseStatement {
    fn emit(&self, program: &mut Program, instructions: &mut Vec<Box<dyn Instruction>>) {
        panic!("CaseStatementAST::emit not implemented");
    }
    fn as_any(&self) -> &dyn Any {
        self
    }
}
#[derive(Debug)]
pub struct DefaultStatement {
    pub statement: Box<dyn Statement>,
}
impl Statement for DefaultStatement {
    fn emit(&self, program: &mut Program, instructions: &mut Vec<Box<dyn Instruction>>) {
        panic!("DefaultStatementAST::emit not implemented");
    }
    fn as_any(&self) -> &dyn Any {
        self
    }
}

#[derive(Debug)]
pub struct ContinueStatement;
impl Statement for ContinueStatement {
    fn emit(&self, program: &mut Program, instructions: &mut Vec<Box<dyn Instruction>>) {
        if program.label_stack.len() < 2 {
            panic!("Continue: label_stack is empty");
        }
        let continue_label = &program.label_stack[program.label_stack.len() - 2];
        instructions.push(Box::new(GetLabelAddress::<1> {
            label: continue_label.clone(),
        }));
        instructions.push(Box::new(Jump::<1> {}));
    }
    fn as_any(&self) -> &dyn Any {
        self
    }
}

#[derive(Debug)]
pub struct BreakStatement;
impl Statement for BreakStatement {
    fn emit(&self, program: &mut Program, instructions: &mut Vec<Box<dyn Instruction>>) {
        let end_label = program
            .label_stack
            .last()
            .expect("Break: label_stack is empty")
            .clone();
        instructions.push(Box::new(GetLabelAddress::<1> { label: end_label }));
        instructions.push(Box::new(Jump::<1> {}));
    }
    fn as_any(&self) -> &dyn Any {
        self
    }
}
#[derive(Debug)]
pub struct WhileStatement {
    pub cond: Box<dyn Expression>,
    pub statement: Box<dyn Statement>,
}
impl Statement for WhileStatement {
    fn emit(&self, program: &mut Program, instructions: &mut Vec<Box<dyn Instruction>>) {
        let start_label = program.get_unique_label();
        let end_label = program.get_unique_label();

        program.label_stack.push(start_label.clone());
        program.label_stack.push(end_label.clone());

        program.set_label(start_label.clone(), instructions);
        self.cond.emit(program, instructions);
        instructions.push(Box::new(GetLabelAddress::<1> {
            label: end_label.clone(),
        }));
        instructions.push(Box::new(JumpZero::<1, 0> {}));
        self.statement.emit(program, instructions);
        instructions.push(Box::new(GetLabelAddress::<1> {
            label: start_label.clone(),
        }));
        instructions.push(Box::new(Jump::<1> {}));
        program.set_label(end_label, instructions);

        program.label_stack.pop().expect("label_stack is empty");
        program.label_stack.pop().expect("label_stack is empty");
    }
    fn as_any(&self) -> &dyn Any {
        self
    }
}

#[derive(Debug)]
pub struct DoWhileStatement {
    pub cond: Box<dyn Expression>,
    pub statement: Box<dyn Statement>,
}
impl Statement for DoWhileStatement {
    fn emit(&self, program: &mut Program, instructions: &mut Vec<Box<dyn Instruction>>) {
        let start_label = program.get_unique_label();
        let continue_label = program.get_unique_label();
        let end_label = program.get_unique_label();

        // start_label:
        //    do { body ... }
        // continue_label:
        //    while (cond);
        // end_label:

        program.label_stack.push(continue_label.clone());
        program.label_stack.push(end_label.clone());

        program.set_label(start_label.clone(), instructions);
        self.statement.emit(program, instructions);

        program.set_label(continue_label.clone(), instructions);
        self.cond.emit(program, instructions);
        instructions.push(Box::new(GetLabelAddress::<1> {
            label: start_label.clone(),
        }));
        instructions.push(Box::new(JumpNotZero::<1, 0> {}));
        program.set_label(end_label.clone(), instructions);

        program
            .label_stack
            .pop()
            .expect("DoWhile: label_stack is empty");
        program
            .label_stack
            .pop()
            .expect("DoWhile: label_stack is empty");
    }
    fn as_any(&self) -> &dyn Any {
        self
    }
}

#[derive(Debug)]
pub struct ForStatement {
    pub init: Box<dyn Expression>,
    pub cond: Box<dyn Expression>,
    pub next: Option<Box<dyn Expression>>,
    pub statement: Box<dyn Statement>,
}
impl Statement for ForStatement {
    fn emit(&self, program: &mut Program, instructions: &mut Vec<Box<dyn Instruction>>) {
        let cond_label = program.get_unique_label();
        let end_label = program.get_unique_label();
        let continue_label = program.get_unique_label();

        program.label_stack.push(continue_label.clone());
        program.label_stack.push(end_label.clone());

        self.init.emit(program, instructions);
        program.set_label(cond_label.clone(), instructions);
        self.cond.emit(program, instructions);
        instructions.push(Box::new(GetLabelAddress::<1> {
            label: end_label.clone(),
        }));
        instructions.push(Box::new(JumpZero::<1, 0> {}));

        self.statement.emit(program, instructions);
        program.set_label(continue_label.clone(), instructions);
        if let Some(next) = &self.next {
            next.emit(program, instructions);
        }
        instructions.push(Box::new(GetLabelAddress::<1> {
            label: cond_label.clone(),
        }));
        instructions.push(Box::new(Jump::<1> {}));
        program.set_label(end_label, instructions);

        program.label_stack.pop().expect("label_stack is empty");
        program.label_stack.pop().expect("label_stack is empty");
    }
    fn as_any(&self) -> &dyn Any {
        self
    }
}

#[derive(Debug)]
pub struct GotoStatement {
    pub label: String,
}
impl Statement for GotoStatement {
    fn emit(&self, program: &mut Program, instructions: &mut Vec<Box<dyn Instruction>>) {
        instructions.push(Box::new(GetLabelAddress::<1> {
            label: self.label.clone(),
        }));
        instructions.push(Box::new(Jump::<1> {}));
        /*
        program
            .instructions
            .push(Box::new(crate::program::instruction::conditional::Jump {
                label: self.label.clone(),
            }));
            */
    }
    fn as_any(&self) -> &dyn Any {
        self
    }
}

#[derive(Debug)]
pub struct ReturnStatement {
    pub expr: Option<Box<dyn Expression>>,
}
impl Statement for ReturnStatement {
    fn emit(&self, program: &mut Program, instructions: &mut Vec<Box<dyn Instruction>>) {
        if let Some(expr) = &self.expr {
            expr.emit(program, instructions);
        }
        // pop return address to register1
        instructions.push(Box::new(crate::program::instruction::PopStackTo::<1> {}));

        // jump to where register 1 point
        instructions.push(Box::new(Jump::<1> {}));
    }
    fn as_any(&self) -> &dyn Any {
        self
    }
}

#[derive(Debug)]
pub struct DeclarationStatement {
    pub vars: Vec<(Option<String>, TypeInfo, Option<Box<dyn Expression>>)>, // name, type, initializer
}
impl Statement for DeclarationStatement {
    fn emit(&self, program: &mut Program, instructions: &mut Vec<Box<dyn Instruction>>) {
        for declaration in &self.vars {
            if declaration.0.is_none() && declaration.2.is_none() {
                // Struct & Enum & Union declaration
                match declaration.1 {
                    TypeInfo::Struct(ref t) => {
                        if t.name.is_none() {
                            println!("Anonymous struct in declaration statement; ignored it");
                        } else {
                            instructions.push(Box::new(DeclareStructure { info: t.clone() }));
                        }
                    }
                    TypeInfo::Union(ref t) => {
                        if t.name.is_none() {
                            println!("Anonymous union in declaration statement; ignored it");
                        } else {
                            instructions.push(Box::new(DeclareUnion { info: t.clone() }));
                        }
                    }
                    TypeInfo::Enum(ref t) => {
                        if t.name.is_none() {
                            println!("Anonymous enum in declaration statement; ignored it");
                        } else {
                            instructions.push(Box::new(DeclareEnum { info: t.clone() }));
                        }
                    }
                    _ => panic!("Invalid type for anonymous declaration"),
                }
            } else if declaration.0.is_none() {
                panic!("Anonymous variable is not allowed in declaration statement");
            } else {
                // variable declaration
                if let Some(initial_value) = &declaration.2 {
                    // variable with initial value
                    initial_value.emit(program, instructions);

                    instructions.push(Box::new(crate::program::instruction::NewVariable {
                        name: declaration.0.clone().unwrap(),
                        info: declaration.1.clone(),
                    }));
                    instructions.push(Box::new(GetVariable::<1> {
                        name: declaration.0.clone().unwrap(),
                    }));

                    instructions.push(Box::new(Assign::<1, 0> {}));
                } else {
                    // variable with default value
                    instructions.push(Box::new(crate::program::instruction::NewVariable {
                        name: declaration.0.clone().unwrap(),
                        info: declaration.1.clone(),
                    }));
                }
            }
        }
    }
    fn as_any(&self) -> &dyn Any {
        self
    }
}

#[derive(Debug)]
pub struct FunctionDefinitionStatement {
    pub return_type: TypeInfo,
    pub name: String,
    pub params: Vec<(Option<String>, TypeInfo)>,
    pub body: Box<dyn Statement>,
}
impl Statement for FunctionDefinitionStatement {
    fn emit(&self, program: &mut Program, instructions: &mut Vec<Box<dyn Instruction>>) {
        let function_data = FunctionData {
            return_type: self.return_type.clone(),
            params: self.params.clone(),
        };
        let old = program.functions.insert(self.name.clone(), function_data);
        if let Some(_) = old {
            panic!("redeclaration of function {}", &self.name);
        } else {
            println!("Function Definition: {}", &self.name);
        }

        program.set_label(self.name.clone(), instructions);
        // param declarations
        // should be done at function calling

        // body
        self.body.emit(program, instructions);

        // force add return statement
        let return_statement = ReturnStatement { expr: None };
        return_statement.emit(program, instructions);
    }
    fn as_any(&self) -> &dyn Any {
        self
    }
}

#[derive(Debug)]
pub struct TranslationUnit {
    pub statements: Vec<Box<dyn Statement>>,
}
impl Statement for TranslationUnit {
    fn emit(&self, program: &mut Program, instructions: &mut Vec<Box<dyn Instruction>>) {
        for statement in &self.statements {
            statement.emit(program, instructions);
        }
    }
    fn as_any(&self) -> &dyn Any {
        self
    }
}