-
Notifications
You must be signed in to change notification settings - Fork 0
/
myc.h
69 lines (59 loc) · 1.19 KB
/
myc.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
#ifndef INCLUDED_MYC
#define INCLUDED_MYC
#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;
char *str;
int len;
};
// 現在着目しているトークン
extern Token *token;
extern char *user_input;
// parse.c
void error(char *loc, char *fmt, ...);
Token *tokenize(char *p);
bool consume(char *op);
Token *consume_ident();
void expect(char *op);
int expect_number();
bool at_eof();
// codegen.c
typedef enum {
ND_ADD, // +
ND_SUB, // -
ND_MUL, // *
ND_DIV, // /
ND_ASSIGN, // =
ND_LVAR, // ローカル変数
ND_EQ, // ==
ND_NE, // !=
ND_LT, // <
ND_LE, // <=
ND_NUM,
} NodeKind;
typedef struct Node Node;
struct Node {
NodeKind kind;
Node *rhs;
Node *lhs;
int val; // kind==ND_NUM only
int offset; // kind==ND_LVAR only
};
extern Node *code[100];
void program();
void gen(Node *node);
#endif