-
Notifications
You must be signed in to change notification settings - Fork 4
/
ci0.c
559 lines (550 loc) · 23.1 KB
/
ci0.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
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
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
// ci0.c 2013.10.03 Hatada http://home.a00.itscom.net/hatada/lp/ci/minicinterpreter00.html
// 2019.06.05 editted by @taisukef https://fukuno.jig.jp/2508
// 2019.08.16 add WASM support by @taisukef https://fukuno.jig.jp/2581
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdint.h>
//----------------------------------------------------------------------------//
// 字句解析 //
#define SIZETOKEN 1000 // トークン配列のサイズ
#define OPERATOR2 "== != <= >= |= += -= *= /= >> << ++ -- && || -> "
int fToken, fTrace, fCode; // コマンド引数オプション
char* Token[SIZETOKEN]; // トークン配列
int nToken; // トークン数
int tix; //カレントトークン.構文解析で使用.エラー関数共用のためここに置く
int err = 0;
#include <stdarg.h>
int error(const char *fmt, ...) {
#ifndef WASM
va_list ap;
va_start(ap, fmt);
char* p = NULL;
vasprintf(&p, fmt, ap);
va_end(ap);
fprintf(stderr, "%s", p);
free(p);
#else // for WASM
va_list ap;
va_start(ap, fmt);
char buf[1024];
char* p = buf;
vasprintf(&p, fmt, ap);
va_end(ap);
*p = '\0';
fprintf(stderr, "%s", buf);
#endif
// if (tix >= 0)
// fprintf(stderr, "\n Token[%d] = \"%s\"\n", tix, Token[tix]);
exit(1);
return err = 1;
}
// 移植性のために、一般には stdarg.h のマクロを使う方がよい。
#define isalpha(c) ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z'))
#define isdigit(c) ((c >= '0' && c <= '9'))
int isAlpha(int c) { return (isalpha(c) || c == '_'); }
int isAlNum(int c) { return isAlpha(c) || isdigit(c); }
int isKanji(int c) { return (c>=0x81 && c<=0x9F) || (c>=0xE0 && c<=0xFC); } // for SJIS?
int lex(const char* srcfile) { // 0:no error
tix = -1;
nToken = 0;
char linebuf[256], buf[128], op2[4];
FILE* fpSrc = fopen(srcfile, "r");
if (fpSrc == NULL)
return error("file '%s' can't open", srcfile);
while (fgets(linebuf, sizeof(linebuf), fpSrc) != NULL) {
for (char* p = linebuf; *p != '\0';) { // 一行分の字句解析
if (*p <= ' ') {
p++;
continue;
} // 空白文字をスキップする
if (p[0]=='/' && p[1]=='/')
break; // コメント. 行末までスキップ
char* pBgn = p;
if (*p == '"') { // 文字列. escape文字,2byte文字のとき2byte目をスキップ
for (p++; *p != '\0' && *p != '"'; p++)
if (*p == '\\' || isKanji(*p))
p++;
if (*p++ != '"')
return error("not found a double quote <%s>", pBgn); // 後ろの引用符がありません
} else if (isdigit(*p)) { // 数値(10進)
for (p++; *p != '\0' && isdigit(*p); p++);
} else if (strncmp(pBgn, "char*", 5) == 0) { // char*
p += 5;
} else if (isAlpha(*p)) { // 識別子, 予約語
for (p++; *p != '\0' && isAlNum(*p);)
p++;
} else { // 演算子
//sprintf(op2, "%c%c ", p[0], p[1]); // WASMで未対応
op2[0] = p[0];
op2[1] = p[1];
op2[2] = ' ';
op2[3] = '\0';
p += strstr(OPERATOR2, op2) != NULL ? 2 : 1;
}
// sprintf(buf, "%.*s", p - pBgn, pBgn);
for (int i = 0; i < p - pBgn; i++) {
buf[i] = pBgn[i];
}
buf[p - pBgn] = 0;
if (nToken == SIZETOKEN)
return error("out of token memory"); // トークン配列オーバフロー
Token[nToken++] = strdup(buf);
if (fToken)
printf(strchr(";{}", *buf) != NULL ? "%s\n" : "%s ", buf);
}
}
fclose(fpSrc);
return 0;
}
//----------------------------------------------------------------------------//
// 名前管理 //
#define SIZEGLOBAL 1000 // グローバル名前管理表のサイズ
#define SIZELOCAL 1000 // ローカル名前管理表のサイズ
enum { NM_VAR = 0x01, NM_FUNC = 0x02 }; // 名前の種別
enum { AD_DATA = 0, AD_STACK, AD_CODE }; // アドレスの種別
typedef struct _Name {
int type; // NM_VAR: 変数、NM_FUNC: 関数
char* dataType; // データ型
char* name; // 変数名または関数名
int addrType;
intptr_t address; // アドレスの種別, 相対アドレス
} Name;
Name* GName[SIZEGLOBAL];
Name* LName[SIZELOCAL]; // 名前管理表
int nGlobal, nLocal; // 同上現在の登録数
// 関数または変数情報を名前管理表に登録する
Name* appendName(int nB, int type, char* dataType, char* name, int addrType, intptr_t addr) {
Name nm = { type, dataType, name, addrType, addr };
Name* pNew = calloc(1, sizeof(Name));
if (pNew == NULL)
error("appendName: out of memory"); // メモリが足りません
memcpy(pNew, &nm, sizeof(Name));
if (nB == 0 && nGlobal < SIZEGLOBAL - 1)
GName[nGlobal++] = pNew;
else if (nB == 1 && nLocal < SIZELOCAL - 1)
LName[nLocal++] = pNew;
else
error("appendName: parameter error or out of array range"); // 引数エラーまたは配列オーバーフロー
return pNew; // 新しいエントリのアドレスを返す
}
// 指定された名前表から指定された名前を探す
Name* getNameFromTable(int nB, int type, char *name, int fErr) {
int nEntry = nB == 0 ? nGlobal : nLocal;
for (int n = 0; n < nEntry; n++) {
Name* e = nB == 0 ? GName[n] : LName[n];
if (strcmp(e->name, name) == 0 && (e->type & type) != 0)
return e;
}
if (fErr && nB == 0)
error("'%s' undeclared", name);
return NULL; // 見つからなかった。
}
// 最初にローカル名前表、なければグローバル名前表から指定された名前を探す
Name* getNameFromAllTable(int type, char* name, int fErr) {
Name* pName = getNameFromTable(1, type, name, fErr);
if (pName != NULL)
return pName;
return getNameFromTable(0, type, name, fErr);
}
//----------------------------------------------------------------------------//
// 構文解析 //
void expression(int mode); // 式の構文解析
void statement(intptr_t locBreak, intptr_t locContinue); // 文の構文解析
typedef struct _INSTRUCT {
int opcode;
int type;
intptr_t val;
} INSTRUCT;
enum { PUSH = 0, ENTRY, POP, MOV, ADD, ADDSP, SUB, MUL, DIV, MOD, RET, CALL, JZ, JMP, CMP, LT, GT, LE, GE, EQ, NE, FUNC, LABEL };
char* OPCODE[] = { "push", "entry", "pop", "mov", "add", "addsp", "sub", "mul", "div", "mod", "ret", "call", "jz", "jmp", "cmp", "lt", "gt", "le", "ge", "eq", "ne", "func", "label" };
enum { NIL, IMM, STR, MEM, REF, SKV, SKR, LOC, SP };
char* TYPE[] = { "nil", "int", "str", "mem", "ref", "stack-val", "stack-ref", "loc", "sp" };
#define SIZEDATASECT 1000
enum { VAL = 0, ADDR }; // VAL: 変数の内容, ADDR: 変数のアドレス
enum { ST_FUNC = 0, ST_GVAR }; // ST_FUNC: 関数定義中, ST_GVAR: 変数宣言中
char* DataSection[SIZEDATASECT]; // グローバル変数、文字列管理配列
int ixData; // データの登録数
intptr_t baseSpace; // スタック上の相対アドレス
int numLabel = 1; // ラベルの通し番号(ラベル配列の添え字)
INSTRUCT Inst[1000]; // 命令配列
int nInst = 0; // 命令数
int entryPoint; // 命令を格納するとき main関数の位置を記録しておく
int loc() { return numLabel++; }
int is(char *s) { return strcmp(Token[tix], s) == 0; }
int ispp(char *s) { if (is(s)) { tix++; return 1; } return 0; }
int isTypeSpecifier() { return is("void") || is("int") || is("char*"); }
int isFunctionDefinition() { return *Token[tix+2] == '('; }
void skip(char *s) { if (!ispp(s)) error("'%s' expected", s); }
void printInst(int n, INSTRUCT* pI) {
printf("%d: ", n);
printf("%s ", OPCODE[pI->opcode]);
if (pI->type == NIL) {
} else if (pI->type == STR) {
printf("%s ", TYPE[pI->type]);
printf("%s", (const char*)pI->val);
} else {
printf("%s ", TYPE[pI->type]);
printf("%ld", pI->val);
// printf("%4d: %s %s %d\n", n, OPCODE[pI->opcode], TYPE[pI->type], pI->val);
}
printf("\n");
}
INSTRUCT* outInst2(int opcode, int type, intptr_t val) {
INSTRUCT inst = { opcode, type, val };
return memcpy(&Inst[nInst++], &inst, sizeof(inst));
}
INSTRUCT* outInst(int code) { return outInst2(code, 0, 0); }
//================================== 式の構文解析 ==============================
/// PrimExpression ::= Identifier | "(" Expr ")" | Constant | FunctionCall
void functionCall() { // 優先順位 #1
int n, nParam, posParam[20], nInstSave, ixDataSave, ixNext;
char* name = Token[tix++];
Name* pName = getNameFromTable(0, NM_FUNC, name, 1);
skip("(");
// 引数は最後から順にスタックに積むため、まず位置を求める
nInstSave = nInst;
ixDataSave = ixData;
for (nParam = 0; !is(")"); nParam++) {
posParam[nParam] = tix; // 各引数の先頭トークンの位置
expression(VAL);
ispp(",");
}
ixNext = tix + 1; // ")" の次
nInst = nInstSave;
ixData = ixDataSave; // 生成したデータを廃棄する
for (n = nParam; --n >= 0; ) {
tix = posParam[n];
expression(VAL); // 引数を最後から順に評価して、スタックに積む
}
tix = ixNext;
if (pName->address > 0)
outInst2(CALL, IMM, pName->address);
else
outInst2(CALL, STR, (intptr_t)pName->name);
outInst2(ADDSP, IMM, nParam); // スタックポインタ回復
}
void primaryExpression(int mode) { // 優先順位 #1
if (isdigit(*Token[tix])) { // Constant 数値
outInst2(PUSH, IMM, atoi(Token[tix++]));
} else if (*Token[tix] == '"') { // Constant 文字列
outInst2(PUSH, STR, (intptr_t)Token[tix++]);
} else if (ispp("(")) { // "(" Expr ")"
expression(VAL);
skip(")");
} else if (*Token[tix+1] == '(') { // FuctionCall
functionCall();
} else if (isAlpha(*Token[tix])) { // Identifier
Name *pName = getNameFromAllTable(NM_VAR, Token[tix], 1);
int type = (pName->addrType==AD_STACK)? (mode==VAL?SKV:SKR):(mode==VAL?MEM:REF);
outInst2(PUSH, type, pName->address);
tix++;
} else {
error("primExpr: <%s>", Token[tix]);
}
}
/// MulExpression ::= PrimaryExpression ( ("*" | "/" | "%") PrimaryExpression )*
void mulExpression(int mode) { // #4
int fMul = 0, fDiv = 0;
primaryExpression(mode); // [左辺の値]
while ((fMul = ispp("*")) || (fDiv = ispp("/")) || ispp("%")) {
primaryExpression(mode); // [右辺の値,左辺の値]
outInst(fMul ? MUL : fDiv ? DIV : MOD);
}
}
/// AddExpression ::= MulExpression ( ("+" | "-") MulExpression )*
void addExpression(int mode) { // #5
int fAdd;
mulExpression(mode); // [左辺の値]
while ((fAdd = ispp("+")) || ispp("-")) {
mulExpression(mode); // [右辺の値,左辺の値]
outInst(fAdd ? ADD : SUB);
}
}
/// RelationalExpression ::= addExpr [("<" | ">" | "<=" | ">=") addExpr]
void relationalExpression(int mode) { // #7 // 符号付き整数に対応
int fLT=0, fGT=0, fLE=0;
addExpression(mode); // [左辺の値]
if ((fLT = ispp("<")) || (fGT = ispp(">")) || (fLE = ispp("<=")) || ispp(">=")){
addExpression(mode); // [右辺の値,左辺の値]
outInst(fLT ? LT : fGT ? GT : fLE ? LE : GE);
}
}
/// EqualityExpression ::= RelationalExpr [ ("==" | "!=") RelationalExpr ]
void equalityExpression(int mode) { // #8
int fEQ;
relationalExpression(mode); // [左辺の値]
if ((fEQ = ispp("==")) || ispp("!=")) {
relationalExpression(mode); // [右辺の値,左辺の値]
outInst(fEQ ? EQ : NE);
}
}
/// expression ::= [Identifier "="] addExpression
void assign() {
primaryExpression(ADDR); // [左辺変数アドレス]
skip("=");
addExpression(VAL); // [右辺の値,左辺変数アドレス]
outInst(MOV); // Mem[st1] = st0
}
void expression(int mode) { // #15
if (strcmp(Token[tix + 1], "=") == 0)
assign();
else
equalityExpression(mode);
}
//================================ 文の構文解析 ================================
/// TypeSpecifier ::= "void" | "char*" | "int"
char* typeSpecifier() {
if (!isTypeSpecifier())
error("'%s' not typespecfier", Token[tix]);
return Token[tix++]; // データ型
}
/// VarDeclarator ::= Identifier
char* varDeclarator() { return Token[tix++]; } // 変数名または関数名
/// VariableDeclaration ::= TypeSpecifier VarDeclarator ["=" Initializer] ("," VarDeclarator ["=" Initializer])*
void variableDeclaration(int status) {
char* varType = typeSpecifier();
do {
char *varName = varDeclarator();
if (status == ST_FUNC) {
appendName(1, NM_VAR, varType, varName, AD_STACK, --baseSpace);
if (is("=")) { tix--; assign(); }
} else {
appendName(0, NM_VAR, varType, varName, AD_DATA, ixData);
if (ispp("=")) DataSection[ixData++] = Token[tix++];
}
} while (ispp(","));
}
/// CompoundStatement ::= "{" (Statements)* "}"
void compoundStatement(intptr_t locBreak, intptr_t locContinue) {
for (skip("{"); tix < nToken && isTypeSpecifier(); skip(";"))
variableDeclaration(ST_FUNC); // ローカル変数の宣言
while (!ispp("}"))
statement(locBreak, locContinue);
}
/// IfStatement ::= "if" "(" Expression ")" Statement [ "else" Statement ]
void ifStatement(intptr_t locBreak, intptr_t locContinue) {
intptr_t locElse, locEnd;
skip("(");
expression(VAL);
skip(")");
outInst2(JZ, IMM, locElse = loc());
statement(locBreak, locContinue); // then_statement
if (is("else"))
outInst2(JMP, IMM, locEnd = loc());
outInst2(LABEL, IMM, locElse);
if (ispp("else")) {
statement(locBreak, locContinue); // else_statement
outInst2(LABEL, IMM, locEnd);
}
}
/// WhileStatement ::= "while" "(" Expression ")" Statement
void whileStatement(intptr_t locBreak, intptr_t locContinue) {
intptr_t locExpr, locNext;
outInst2(LABEL, IMM, locExpr = loc());
skip("(");
expression(VAL);
skip(")");
outInst2(JZ, IMM, locNext = loc()); // expressionの値が 0 ならば、locNextへジャンプ
statement(locNext, locExpr); // locBreak, locContinue
outInst2(JMP, IMM, locExpr); // 判定式へ無条件ジャンプ
outInst2(LABEL, IMM, locNext); // 次の文を指すラベル
}
/// ReturnStatement ::= "return" [Expression] ";"
void returnStatement() {
if (!is(";"))
expression(VAL);
skip(";");
outInst(RET);
}
/// Statement ::= CompoundStmt | IfStmt | ReturnStmt| Expression ";" | ";"
void statement(intptr_t locBreak, intptr_t locContinue) {
if (ispp(";")) ; // null statement
else if (is("{")) compoundStatement(locBreak, locContinue);
else if (ispp("if")) ifStatement(locBreak, locContinue);
else if (ispp("while")) whileStatement(locBreak, locContinue);
else if (ispp("return")) returnStatement();
else { expression(VAL); skip(";"); }
}
/// FunctionDefinition ::= TypeSpecifier VarDeclarator "(" [ VarDeclaration ("," VarDeclaration)* ] ")" CompoundStatement
void functionDefinition() {
int locFunc = loc(); // この関数の識別番号を得る
char* varType = typeSpecifier(); // 返り値のデータ型
char* varName = varDeclarator(); // 関数名
nLocal = 0; // ローカル変数表初期化(メモリ解放省略)
outInst2(FUNC, STR, (intptr_t)varName);
outInst2(LABEL, IMM, locFunc);
if (strcmp(varName, "main") == 0)
entryPoint = nInst;
appendName(0, NM_FUNC, varType, varName, AD_CODE, locFunc);
baseSpace = 2; // 戻り番地と旧bpの分.
outInst(ENTRY); // push ebp; mov ebp,espに相当
INSTRUCT *pSub = outInst2(ADDSP, IMM, 0); // sp -= imm; immの値は後で書き換え
for (skip("("); !ispp(")"); ispp(",")) {
varType = typeSpecifier();
varName = varDeclarator();
appendName(1, NM_VAR, varType, varName, AD_STACK, baseSpace++);
}
baseSpace = 0; // ここからローカル変数領域
compoundStatement(0, 0); // 関数本体
pSub->val = baseSpace; // ここで imm の値を変更
if (Inst[nInst-1].opcode != RET)
outInst(RET);
}
//============================ 最上位の構文解析 =============================
/// Program ::= (FunctionDefinition | VariableDeclaration ";")*
int program() { // 0: no error
err = 0;
nInst = 0;
entryPoint = -1;
numLabel = 1;
for (tix = 0; tix < nToken;) {
//if (fTrace) printf("%4d: %s\n", tix, Token[tix]);
if (isFunctionDefinition()) {
functionDefinition(); // 関数定義
} else {
variableDeclaration(ST_GVAR); // 外部変数宣言
skip(";");
}
if (err)
return err;
}
if (entryPoint < 0)
return error("not found main function");
return 0;
}
int parser() {
nGlobal = nLocal = 0;
appendName(0, NM_FUNC, "void", "putstr", AD_CODE, 0);
appendName(0, NM_FUNC, "void", "putnum", AD_CODE, 0);
return program();
}
//-----------------------------------------------------------------------------//
// 命令実行 //
#define MAXMEM 1000
intptr_t mem[MAXMEM]; // メモリ
intptr_t sp, bp, pc; // スタックポインタ、ベースポインタ、プログラムカウンタ
intptr_t pos; // メモリインデックス. データは上から、スタックは下から
intptr_t location[1000]; // ラベルのアドレス配列
void push(intptr_t val) {
if (sp <= pos)
error("stack overflow!");
mem[--sp] = val;
}
intptr_t pop() {
if (sp >= MAXMEM)
error("stack empty!");
return mem[sp++];
}
intptr_t getStr(char *str) {
int n = strlen(str);
if (str[n-1] == '"')
str[n-1] = '\0';
return (intptr_t)str + 1;
}
int execute(int param) {
pos = 0;
tix = -1; // エラー表示で Token[tix] の表示をやめるため
intptr_t addr, rtn;
for (int n = 0; n < nInst; n++) {
if (fCode) printInst(n, &Inst[n]);
if (Inst[n].opcode == LABEL)
location[Inst[n].val] = n;
}
for (int n = 0; n < ixData; n++)
mem[pos++] = atoi(DataSection[n]);
if (fTrace) printf("entryPoint = %d\n", entryPoint);
sp = MAXMEM; // スタックポインタの初期化
pc = entryPoint;
push(param);
push(-1);
while (pc < nInst) {
if (fTrace) printInst(pc, &Inst[pc]);
int type = Inst[pc].type;
intptr_t val = Inst[pc].val;
switch (Inst[pc++].opcode) {
case FUNC: break;
case LABEL: break;
case ENTRY: // 関数の入り口
push(bp);
bp = sp;
break;
case ADDSP:
rtn = pop(); // 関数戻り値がスタックのトップに置かれている
sp += val; // 引数分を削除
push(rtn); // 改めてスタックのトップに関数戻り値を置く
break;
case PUSH:
if (type == SKV) push(mem[bp + val]); // ローカル変数の値をpush
else if (type == SKR) push(bp + val); // ローカル変数のアドレスをpush
else if (type == STR) push(getStr((char*)val)); // 文字列のアドレスをpush
else if (type == IMM) push(val);
else error("exec.PUSH: %d", type);
break;
case MOV:
val = pop();
addr = pop();
mem[addr] = val;
break;
case ADD: mem[sp+1] += mem[sp]; sp++; break;
case SUB: mem[sp+1] -= mem[sp]; sp++; break;
case MUL: mem[sp+1] *= mem[sp]; sp++; break;
case DIV: mem[sp+1] /= mem[sp]; sp++; break;
case MOD: mem[sp+1] %= mem[sp]; sp++; break;
case GT: mem[sp+1] = (mem[sp+1] > mem[sp]); sp++; break;
case GE: mem[sp+1] = (mem[sp+1] >= mem[sp]); sp++; break;
case LT: mem[sp+1] = (mem[sp+1] < mem[sp]); sp++; break;
case LE: mem[sp+1] = (mem[sp+1] <= mem[sp]); sp++; break;
case EQ: mem[sp+1] = (mem[sp+1] == mem[sp]); sp++; break;
case NE: mem[sp+1] = (mem[sp+1] != mem[sp]); sp++; break;
case JZ: if (mem[sp++] == 0) pc = location[val]; break;// jz xxx
case JMP: pc = location[val]; break;
case CMP: mem[sp+1] -= mem[sp]; sp++; break;
case CALL:
if (type == STR) { // native function call
const char* fn = (const char*)val;
if (strcmp("putstr", fn) == 0) {
rtn = printf("%s\n", (const char*)mem[sp]);
} else if (strcmp("putnum", fn) == 0) {
rtn = printf("%ld\n", mem[sp]);
}
push(rtn);
} else {
push(pc); // 戻り番地格納
pc = location[val]; // 関数先頭番地を pc にセット
}
break;
case RET: // 関数からの戻り
rtn = pop(); // 関数の戻り値
sp = bp; // スタックポインタ回復
bp = pop(); // ベースポインタ回復
pc = pop(); // pcにCALL命令の次の命令アドレスをセット
if (pc == -1)
return rtn;
push(rtn); // スタックの一番上に関数の戻り値を置く
break;
default:
error("unknown opcode: %d\n", Inst[pc-1].opcode);
}
}
return 1;
}
int main(int argc, char* argv[]) {
char* srcfile = NULL;
int param = 0;
for (int n = 1; n < argc; n++) {
if (strcmp(argv[n], "-token") == 0) fToken = 1;
else if (strcmp(argv[n], "-trace") == 0) fTrace = 1;
else if (strcmp(argv[n], "-code") == 0) fCode = 1;
else if (srcfile == NULL) srcfile = argv[n];
else param = atoi(argv[n]);
}
if (!srcfile) {
fprintf(stderr, "ci0 {-token} {-trace} {-code} [src.c] [paramnum]\n");
return 1;
}
lex(srcfile); //==== 字句解析. 結果はToken配列に格納 ====//
parser(); //==== 構文解析・意味解析・中間語コード生成 ====//
if (fTrace) printf("************** execute *****************\n");
return execute(param);
}