-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrincc.h
106 lines (90 loc) · 2.17 KB
/
rincc.h
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
#ifndef _RINCC_H_
#define _RINCC_H_
#include <ctype.h>
#include <stdarg.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
//トークンの種類
typedef enum {
TK_RESERVED, //記号
TK_IDENT, //識別子
TK_NUM, //数値
TK_EOF, //入力の終わり
} TokenKind;
typedef struct Token Token;
struct Token{
TokenKind kind; //トークンの種類
Token *next; //次の入力トークン
int val; //KindがTK_NUMの場合、その数値
char *str; //トークンの文字列
int len;
};
typedef struct LVar LVar;
//ローカル変数の型
struct LVar {
LVar *next;
char *name;
int len;
int offset;
};
typedef enum {
ND_ADD, //加算
ND_SUB, //減算
ND_MUL, //乗算
ND_DIV, //除算
ND_ASSIGN, //=
ND_LVAR, //ローカル変数
ND_EQ, //==
ND_NEQ, //!=
ND_NUM, //整数
ND_INE, //<, >
ND_EINE, //<=, >=
} NodeKind;
typedef struct Node Node;
struct Node {
NodeKind kind; //ノードの種類
Node *lhs; //左辺
Node *rhs; //右辺
int val; //kindがND_NUMの場合のみ使う
int offset; //kindがND_LVARの場合のみ使う
};
void error(char *fmt, ...);
void error_at(char *loc, char *fmt, ...);
bool consume(char *op);
Token *consume_ident();
LVar *find_Lvar(Token *tok);
void expect(char *op);
int expect_number();
bool at_eof();
bool startswith(char *p, char *q);
bool is_alpha(char c);
bool is_alnum(char c);
Token *new_token(TokenKind kind, Token *cur, char *str, int len);
Token *tokenize(char *p);
Node *new_node(NodeKind kind, Node *lhs, Node *rhs);
Node *new_node_num(int val);
Node *program();
Node *stmt();
Node *expr();
Node *assign();
Node *equality();
Node *relational();
Node *add();
Node *mul();
Node *unary();
Node *primary();
void gen(Node *prog);
void codegen();
//現在着目してるトークン
extern Token *token;
//ローカル変数
LVar *locals;
//入力されたプログラム
extern char *user_input;
//セミコロンごとに区切られたコードを格納するリスト
Node *code[100];
//すべての変数のサイズの合計
int stack_size;
#endif