-
Notifications
You must be signed in to change notification settings - Fork 0
/
parse.c
214 lines (182 loc) · 4.44 KB
/
parse.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
#include "tim.h"
int pos = 0;
int consume(int ty) {
Token *token = tokens->data[pos];
if (token->ty != ty)
return 0;
pos++;
return 1;
}
Vector *tokens;
// prototype宣言
// 関数は使用する前に宣言されている必要がある
Node *equality();
Node *relational();
Node *add();
Node *mul();
Node *unary();
Node *term();
// nodeを新規作成する
Node *new_node(int ty, Node *lhs,Node *rhs) {
Node *node = malloc(sizeof(Node));
node->ty = ty;
node->lhs = lhs;
node->rhs = rhs;
return node;
}
// numのnodeを新規作成する
Node *new_node_num(int val) {
Node *node = malloc(sizeof(Node));
node->ty = ND_NUM;
node->val = val;
return node;
}
// expr = equality と対応
Node *expr() {
return equality();
}
// 等号
// equality = relational ("==" relational | "!=" relational)* と対応
Node *equality() {
Node *node = relational();
for (;;) {
if (consume(TK_EQ))
node = new_node(TK_EQ, node, relational());
else if (consume(TK_NE))
node = new_node(TK_NE, node, relational());
else
return node;
}
}
// 大小関係
// relational = add ("<" add | "<=" add | ">" add | ">=" add)* と対応
Node *relational() {
Node *node = add();
for (;;) {
if (consume(TK_LE))
node = new_node(TK_LE, node, add());
else if (consume(TK_GE))
// genで TK_LE の逆操作を使用するために順序を変更
node = new_node(TK_GE, add(), node);
else if (consume('<'))
node = new_node('<', node, add());
else if (consume('>'))
// genで TK_LE の逆操作を使用するために順序を変更
node = new_node('>', add(), node);
else
return node;
}
}
// 足し算、引き算
// add = mul ("+" mul | "-" mul)* と対応
Node *add() {
Node *node = mul();
for (;;) {
if (consume('+'))
node = new_node('+', node, mul());
else if (consume('-'))
node = new_node('-', node, mul());
else
return node;
}
}
// 乗算、除算
// mul = unary ("*" unary | "/" unary)* と対応
Node *mul() {
Node *node = unary();
for (;;) {
if (consume('*'))
node = new_node('*', node, unary());
else if (consume('/'))
node = new_node('/', node, unary());
else
return node;
}
}
// 単項演算子
// unary = ("+" | "-")? term と対応
Node *unary() {
if (consume('+'))
return term();
if (consume('-'))
return new_node('-', new_node_num(0), term());
return term();
}
// 括弧、数字
// term = num | "(" expr ")" と対応
Node *term() {
Token *token = tokens->data[pos];
if (consume('(')) {
Node *node = expr();
if (!consume(')'))
error_at(token->input, "閉じカッコに対応するカッコがありません");
return node;
}
// カッコでなければ数値
if (token->ty == TK_NUM) {
Token *next_token = tokens->data[pos++];
return new_node_num(next_token->val);
}
error_at(token->input, "数値でもカッコでもないトークン");
}
void tokenize(char *user_input) {
char *p = user_input;
while (*p) {
// 空白はスキップ
if (isspace(*p)) {
p++;
continue;
}
Token *token = malloc(sizeof(Token));
if (strncmp(p, "==", 2) == 0) {
token->ty = TK_EQ;
token->input = p;
vec_push(tokens, token);
p += 2;
continue;
}
if (strncmp(p, "!=", 2) == 0) {
token->ty = TK_NE;
token->input = p;
vec_push(tokens, token);
p += 2;
continue;
}
if (strncmp(p, "<=", 2) == 0) {
token->ty = TK_LE;
token->input = p;
vec_push(tokens, token);
p += 2;
continue;
}
if (strncmp(p, ">=", 2) == 0) {
token->ty = TK_GE;
token->input = p;
vec_push(tokens, token);
p += 2;
continue;
}
// `+` または `-` であればtokensに格納する
if (*p == '+' || *p == '-' || *p == '*' || *p == '/' || *p == '(' || *p == ')' || *p == '<' || *p == '>') {
token->ty = *p;
token->input = p;
vec_push(tokens, token);
p++;
continue;
}
if (isdigit(*p)) {
token->ty = TK_NUM;
token->input = p;
token->val = strtol(p, &p, 10);
vec_push(tokens, token);
continue;
}
error_at(p, "トークナイズできません");
}
Token *token = malloc(sizeof(Token));
token->ty = TK_EOF;
token->input = p;
vec_push(tokens, token);
}
// utils
// 型をチェックして、期待した型であればトークンを一つ進めて真を返す