-
Notifications
You must be signed in to change notification settings - Fork 0
/
9cc.h
66 lines (55 loc) · 1.1 KB
/
9cc.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
#include <ctype.h>
#include <stdarg.h>
#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
//
// tokenize.c
//
// Token
typedef enum {
TK_RESERVED,
TK_NUM,
TK_EOF,
} TokenKind;
// Token type
typedef struct Token Token;
struct Token {
TokenKind kind; // トークンの型
Token *next; // 次の入力トークン
int val; // kindがTK_NUMの場合、その数値
char *str; // トークン文字列
int len; // トークンの長さ
};
extern char *user_input;
extern Token *token;
Token *tokenize(void);
//
// parse.c
//
// AST node
typedef enum {
ND_ADD, // +
ND_SUB, // -
ND_MUL, // *
ND_DIV, // /
ND_EQ, // ==
ND_NE, // !=
ND_LT, // <
ND_LE, // <=
ND_NUM, // 整数
} NodeKind;
// ?~J?象?~K?~V~G?~\??~A??~C~N?~C??~C~I?~A??~^
typedef struct Node Node;
struct Node {
NodeKind kind; // ?~C~N?~C??~C~I?~A??~^~K
Node *lhs; // 左辺
Node *rhs; // ?~O?辺
int val; //kind?~A~LND_NUM?~A??| ??~P~H?~A??~A?使?~A~F
};
Node *expr();
// codegen.c
void gen(Node *node);
// utility
void error(char *fmt, ...);