23 char em[] =
"lvar is not a variable";
49 Prog then_prg, els_prg;
52 if (node->
els !=
nullptr) {
63 prg.insert(prg.end(), els_prg.begin(), els_prg.end());
64 prg.insert(prg.end(), then_prg.begin(), then_prg.end());
120 char em[] =
"Unsupported Node";
134 for (
int i = 0; i < code.size(); i++) {
135 if (code[i] !=
nullptr) {
Class representing an instruction.
Definition: type.h:53
Definition: compiler.h:11
@ ND_BLOCK
Definition: parser.h:131
@ ND_MUL
Definition: parser.h:116
@ ND_NUM
Definition: parser.h:127
@ ND_SUB
Definition: parser.h:115
@ ND_ASSIGN
Definition: parser.h:125
@ ND_LVAR
Definition: parser.h:126
@ ND_RETURN
Definition: parser.h:128
@ ND_EQ
Definition: parser.h:121
@ ND_NE
Definition: parser.h:122
@ ND_ADD
Definition: parser.h:114
@ ND_LT
Definition: parser.h:123
@ ND_OR
Definition: parser.h:119
@ ND_LE
Definition: parser.h:124
@ ND_IF
Definition: parser.h:129
@ ND_AND
Definition: parser.h:118
void compile_ast(std::vector< Node * > code, Prog &prg)
Compile the Abstract Syntax Tree (AST) into a sequence of instructions.
Definition: compiler.h:133
void gen_lval(Node *node, Prog &prg)
Generates virtual instructions for a given AST node, representing the left-hand side of a variable as...
Definition: compiler.h:21
uint32_t FloatToWord(float val)
Converts a float value to a 32-bit word representation.
Definition: utils.h:36
std::vector< Instr > Prog
Alias for a program, represented as a vector of instructions.
Definition: type.h:143
void gen(Node *node, Prog &prg)
Generates virtual instructions for a given AST node.
Definition: compiler.h:35
void error(char *fmt,...)
Reports an error and exits the program.
Definition: tokenizer.h:44
Implementation of parser.
Structure representing a node in the Abstract Syntax Tree (AST).
Definition: parser.h:137
Node * lhs
Left-hand side.
Definition: parser.h:139
std::vector< Node * > blocks
Vector of child blocks.
Definition: parser.h:144
int offset
Offset.
Definition: parser.h:146
NodeKind kind
Node kind.
Definition: parser.h:138
Node * cond
Condition.
Definition: parser.h:141
float val
Used if kind is ND_NUM.
Definition: parser.h:145
Node * rhs
Right-hand side.
Definition: parser.h:140
Node * els
'Else' branch
Definition: parser.h:143
Node * then
'Then' branch
Definition: parser.h:142
Implementatations of basic alias, types, and classes.