-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcmp3.c
227 lines (185 loc) · 3.75 KB
/
cmp3.c
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
#include <stdlib.h>
#include <stdio.h>
#include <ctype.h>
#include <string.h>
#include "scan.h"
#define FALSE 0
#define TRUE 1
FILE* file;
// parser init decl helpers etc
Symbol sym;
void nextsym() {
sym = scan();
printf("> ");
printsymb(sym);
};
void error(const char msg[]) {
printf("error: %s\n", msg);
printsymb(sym);
};
int accept(Symbol s) {
if (sym == s) {
nextsym();
return TRUE;
}
return FALSE;
}
int expect(Symbol s) {
if (accept(s)) {
return TRUE;
}
error("expected symbol: ");
printsymb(s);
return FALSE;
}
// compiler init decl etc
typedef enum {
ADD,
CONSTANT,
DIVIDE,
MULTIPLY,
PROG,
SUB
} Instr;
#define LABEL_MAX 6
char labelarr1[LABEL_MAX];
char labelarr2[LABEL_MAX];
int labelcount = 1;
typedef struct node {
int type;
int value;
struct node *node1, *node2, *node3;
} node;
int nlabel() {
int count;
count = snprintf(labelarr1, LABEL_MAX, "L%04d", labelcount);
if (count >= 0 && count < LABEL_MAX) {
labelcount++;
return TRUE;
}
return FALSE;
}
void copylabel() {
int loop;
for (loop = 0; loop < LABEL_MAX; loop++) {
labelarr2[loop] = labelarr1[loop];
}
}
// new node
node* nnode(int type) {
node* n = (node*) (malloc(sizeof(node)));
n->type = type;
return n;
}
// sample node by hand
node* sample() {
/* CONSTANT ADD MULTIPLY */
node *x, *y, *z;
y = nnode(CONSTANT);
y->value = 32;
z = nnode(CONSTANT);
z->value = 53;
x = nnode(ADD);
x->node1 = y;
x->node2 = z;
node *p, *q;
p = nnode(CONSTANT);
p->value = 90;
q = nnode(MULTIPLY);
q->node1 = x;
q->node2 = p;
return q;
}
// fwd decl
node* expression();
// <factor> = <ident> | <number> | "(" <expression> ")"
node* factor() {
node *n;
n = NULL;
if (accept(IDENT)) {
;
} else if (accept(NUMBER)) {
n = nnode(CONSTANT);
n->value = atoi(buf);
} else if (accept(LPAREN)) {
n = expression();
expect(RPAREN);
} else {
error("factor: syntax error");
nextsym();
}
return n;
}
// <term> = <factor> {("*"|"/") <factor>}
node* term() {
node *m, *n;
n = factor();
int h;
while (sym == TIMES || sym == SLASH) {
m = n;
h = (sym == TIMES ? MULTIPLY : DIVIDE);
n = nnode(h);
nextsym();
n->node1 = m;
n->node2 = factor();
}
return n;
}
// <expression> = [ "+"|"-"] <term> { ("+"|"-") <term>}
node* expression() {
node *m, *n;
n = term();
int h;
while (sym == PLUS || sym == MINUS) {
m = n;
h = (sym == PLUS ? ADD : SUB);
n = nnode(h);
nextsym();
n->node1 = m;
n->node2 = term();
}
return n;
}
// <program> = <expression> "."
node* program() {
node *n = nnode(PROG);
nextsym();
n->node1 = expression();
expect(PERIOD);
return n;
}
// compile nodes
void compile(node *n) {
switch (n->type) {
case CONSTANT:
fprintf(file, "\tSET %d\n", n->value);
break;
case ADD:
compile(n->node1);
compile(n->node2);
fprintf(file, "\tADD\n");
break;
case SUB:
compile(n->node1);
compile(n->node2);
fprintf(file, "\tSUB\n");
break;
case MULTIPLY:
compile(n->node1);
compile(n->node2);
fprintf(file, "\tMUL\n");
break;
case PROG:
compile(n->node1);
fprintf(file, "\tHALT\n");
break;
// case DIVIDE: not impl! in vm
}
}
int main() {
file = fopen("sample.a", "w");
fprintf(file, "START:\n");
compile(program());
fclose(file);
return 0;
}