-
Notifications
You must be signed in to change notification settings - Fork 0
/
compiler.cpp
506 lines (431 loc) · 13.3 KB
/
compiler.cpp
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
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
#include <iostream>
#include <cstring>
#include <map>
#include <exception>
#include <fstream>
#include "compiler.hpp"
using namespace std;
// コンストラクタ
Compiler::Compiler(void) {}
// プログラムの文字列のセット
void Compiler::set_program_string(string str) {
this->str = str;
cursor = &this->str[0];
}
// プログラムファイルのセット
void Compiler::set_program_file(string filename) {
// ファイルを開く
ifstream file(filename);
// ファイルの内容を格納する文字列
string file_contents;
if (file.is_open()) { // ファイルが正常に開かれた場合
string line;
// ファイルの内容を1行ずつ読み込んで文字列に追加
while (getline(file, line)) {
file_contents += line + "\n"; // 改行を追加
}
// ファイルを閉じる
file.close();
} else { // ファイルを開けなかった場合
cerr << "ファイルを開けませんでした。" << endl;
exit(1);
}
set_program_string(file_contents);
}
// コンパイル
void Compiler::compile(void) {
program();
}
// プログラム (program)
void Compiler::program(void) {
statement();
for (;;) {
if (*cursor == '.') {
break;
} else if (*cursor == ';') {
cursor++;
} else {
syntax_error("文の末尾が正しく認識されません.");
}
statement();
}
}
// 文 (statement)
void Compiler::statement(void) {
skip();
if (parse_read()) {
;
} else if (parse_write()) {
;
} else if (parse_assignment()) {
;
} else if (parse_while_do()) {
;
} else if (parse_if_then()) {
;
} else if (*cursor == ';' || *cursor == '.') {
;
} else {
syntax_error("文が正しく認識されません.");
}
skip();
}
// READ文(statement内)
bool Compiler::parse_read(void) {
string str = "READ";
int len = str.length();
// カーソルの文字がREADと一致するか
if (strncmp(cursor, str.c_str(), len) == 0) {
cursor += len; // 一致したら文字数の分だけカーソルを進める
} else {
return false;
}
// 左括弧の解析
if (*cursor == '(') {
cursor++;
} else {
syntax_error("READ文の左括弧が認識されません.");
}
// 引数の解析
skip(); // READ文の変数名の前に空白がある場合の処理
if (isupper(*cursor)) {
obj.push_back(Command(GET, int(*cursor - 'A'))); // [GET カーソルの文字のメモリ番地]をobjに追加
cursor++;
} else {
syntax_error("READ文の引数が正しくありません.");
}
skip(); // READ文の変数名の後に空白がある場合の処理
// 右括弧の解析
if (*cursor == ')') {
cursor++;
} else {
syntax_error("READ文の右括弧が認識されません.");
}
return true;
}
// WRITE文(statement内)
bool Compiler::parse_write(void) {
string str = "WRITE";
int len = str.length();
// カーソルの文字がWRITEと一致するか
if (strncmp(cursor, str.c_str(), len) == 0) {
cursor += len; // 一致したら文字数の分だけカーソルを進める
} else {
return false;
}
// 左括弧の解析
if (*cursor == '(') {
cursor++;
} else {
syntax_error("WRITE文の左括弧が認識されません.");
}
// 引数の解析
skip(); // WRITE文の変数名の前に空白がある場合の処理
if (isupper(*cursor)) {
obj.push_back(Command(PUT, int(*cursor - 'A'))); // [PUT カーソルの文字のメモリ番地]をobjに追加
cursor++;
} else {
syntax_error("WRITE文の引数が正しくありません.");
}
skip(); // WRITE文の変数名の後に空白がある場合の処理
// 右括弧の解析
if (*cursor == ')') {
cursor++;
} else {
syntax_error("WRITE文の右括弧が認識されません.");
}
return true;
}
// 代入文(statement内)
bool Compiler::parse_assignment(void) {
int operand; // 代入文の左辺のメモリ番地の保存用
char* tmp_cursor = cursor; // falseの場合のロールバック用
// 左辺の解析
if (isupper(*cursor)) {
operand = *cursor - 'A';
cursor++;
} else {
return false;
}
// :=の解析
skip(); // :=の前に空白がある場合の処理
string str = ":=";
int len = str.length();
if (strncmp(cursor, str.c_str(), len) == 0) { // カーソルの文字が:=と一致するか
cursor += len;
} else {
cursor = tmp_cursor; // ロールバック
return false;
}
// 右辺の解析
simple_expression();
// [STR 左辺のメモリ番地]が追加される
obj.push_back(Command(STR, operand));
return true;
}
bool Compiler::parse_while_do(void) {
string str = "WHILE";
int len = str.length();
// カーソルの文字がWHILEと一致するか
if (strncmp(cursor, str.c_str(), len) == 0) {
cursor += len; // 一致したら文字数の分だけカーソルを進める
} else {
return false;
}
if (*cursor == ' ') {
cursor++;
} else {
syntax_error("WHILE文の後に空白がありません.");
}
skip(); // WHILE文の後に空白が複数ある場合の処理
// 関係式の解析時点のプログラムカウンタの保存(UJPのオペランドになる)
int ujp_counter = int(obj.size());
// 関係式の解析
relational_expression();
// CJPを追加しておくが,オペランドは後で埋める
obj.push_back(Command(CJP, nullopt));
// 後から参照するためにCJPの挿入位置を保存しておく
int cjp_counter = int(obj.size()) - 1;
// DOの解析
str = "DO";
len = str.length();
if (strncmp(cursor, str.c_str(), len) == 0) {
cursor += len;
} else {
syntax_error("WHILE文のDOが認識されません.");
}
if (*cursor == ' ' || *cursor == '\n') {
cursor++;
} else {
syntax_error("WHILE文のDOの後に空白または改行がありません.");
}
skip(); // WHILE文のDOの後に空白または改行が複数ある場合の処理
// 一つ目の文の解析
statement();
str = "ENDWHILE";
len = str.length();
for(;;) {
if (*cursor == ';') {
cursor++;
} else if (strncmp(cursor, str.c_str(), len) == 0) {
cursor += len;
break;
} else {
syntax_error("WHILE文の終わり(ENDWHILE)が認識されません.");
}
statement();
}
obj.push_back(Command(UJP, ujp_counter)); // [UJP 関係式の解析前のプログラムカウンタ]がobjに追加される
// CJPのオペランドを今のプログラムカウンタで埋める
obj[cjp_counter].set_operand(obj.size());
return true;
}
bool Compiler::parse_if_then(void) {
string str = "IF";
int len = str.length();
// カーソルの文字がIFと一致するか
if (strncmp(cursor, str.c_str(), len) == 0) {
cursor += len; // 一致したら文字数の分だけカーソルを進める
} else {
return false;
}
if (*cursor == ' ') {
cursor++;
} else {
syntax_error("IF文の後に空白がありません.");
}
skip(); // IF文の後に空白が複数ある場合の処理
// 関係式の解析
relational_expression();
// CJPを追加しておくが,オペランドは後で埋める
obj.push_back(Command(CJP, nullopt));
// 後から参照するためにCJPの挿入位置を保存しておく
int cjp_counter = int(obj.size()) - 1;
// THENの解析
str = "THEN";
len = str.length();
if (strncmp(cursor, str.c_str(), len) == 0) {
cursor += len;
} else {
syntax_error("IF-THEN文のTHENが認識されません.");
}
if (*cursor == ' ' || *cursor == '\n') {
cursor++;
} else {
syntax_error("IF-THEN文のTHENの後に空白または改行がありません.");
}
skip(); // IF-THEN文のTHENの後に空白または改行が複数ある場合の処理
// 一つ目の文の解析
statement();
str = "ENDIF";
len = str.length();
for(;;) {
if (*cursor == ';') {
cursor++;
} else if (strncmp(cursor, str.c_str(), len) == 0) {
cursor += len;
break;
} else {
syntax_error("ENDIFが認識されません.");
}
statement();
}
// CJPのオペランドを今のプログラムカウンタで埋める
obj[cjp_counter].set_operand(obj.size());
return true;
}
// 関係式 (relational expression)
void Compiler::relational_expression(void) {
simple_expression();
if (*cursor == '=') {
cursor++;
simple_expression();
obj.push_back(Command(EQL, nullopt));
} else if (*cursor == '>') {
cursor++;
simple_expression();
obj.push_back(Command(GRT, nullopt));
} else if (*cursor == '<') {
cursor++;
simple_expression();
obj.push_back(Command(LET, nullopt));
} else {
syntax_error("関係式が正しくありません.");
}
}
// 単純式 (simple expression)
void Compiler::simple_expression(void) {
term();
for (;;) {
if (*cursor == '+') {
cursor++;
term();
obj.push_back(Command(ADD, nullopt));
continue;
} else if (*cursor == '-') {
cursor++;
term();
obj.push_back(Command(SUB, nullopt));
continue;
}
break;
}
}
// 項 (term)
void Compiler::term(void) {
factor();
for (;;) {
if (*cursor == '*') {
cursor++;
factor();
obj.push_back(Command(MLT, nullopt));
continue;
} else if (*cursor == '/') {
cursor++;
factor();
obj.push_back(Command(DIV, nullopt));
continue;
}
break;
}
}
// 因子 (factor)
void Compiler::factor(void) {
skip();
if (*cursor == '(') {
cursor++;
simple_expression();
if (*cursor == ')') {
cursor++;
}
} else if (isdigit(*cursor)) {
unsigned_constant();
} else if (isupper(*cursor)) {
obj.push_back(Command(LOD, int(*cursor - 'A')));
cursor++;
} else {
syntax_error("因子が正しくありません.");
}
skip();
}
// 符号なし定数 (unsigned constant)
void Compiler::unsigned_constant(void) {
string sb = "";
bool first_call = true;
while (isdigit(*cursor)) {
if (first_call && *cursor == '0' && isdigit(*(cursor+1))) {
syntax_error("定数が0から始まっています.");
}
if (first_call) {
first_call = false;
}
sb.push_back(*cursor);
cursor++;
}
int constant;
try {
constant = stoi(sb); // string型からint型への変換
} catch (const out_of_range& e) {
syntax_error("定数が大きすぎます.");
}
obj.push_back(Command(LDC, constant));
}
// 空白文字と改行コードの読み飛ばし
void Compiler::skip(void) {
while (*cursor == ' ' || *cursor == '\n') {
cursor++;
}
}
// 構文エラー
void Compiler::syntax_error(string message) {
cerr << "構文エラー: ";
// カーソルがstrの最後を指している場合
if (*cursor == '\0') {
cerr << "プログラムの終わりが正しくありません.";
} else {
cout << message << endl;
for (char* c = &str[0]; c != &str.back(); c++) {
if (c == cursor) { // カーソルがエラー箇所のとき
cerr << "\033[1;41m" << *c << "\033[m"; // カーソルの文字の背景を赤く表示
} else {
cerr << *c;
}
}
}
cerr << endl;
exit(1);
}
// 結果の表示
void Compiler::print_result(void) {
for (auto i : obj) {
if (i.get_operand().has_value()) {
cout << Command::mnemonic2string_map[i.get_mnemonic()] << ' ' << i.get_operand().value() << endl;
} else {
cout << Command::mnemonic2string_map[i.get_mnemonic()] << endl;
}
}
}
// ファイルに結果を出力
void Compiler::output_file(string filename) {
// ファイルを開く
ofstream file(filename);
if (file.is_open()) { // ファイルが正常に開かれた場合
// 結果の出力
for (auto i : obj) {
if (i.get_operand().has_value()) {
file << Command::mnemonic2string_map[i.get_mnemonic()] << ' ' << i.get_operand().value() << endl;
} else {
file << Command::mnemonic2string_map[i.get_mnemonic()] << endl;
}
}
// ファイルを閉じる
file.close();
} else { // ファイルを開けなかった場合
cerr << "ファイルを開けませんでした。" << endl;
exit(1);
}
}
// objのgetter
vector<Command> Compiler::get_obj(void) {
return obj;
}