forked from rui314/8cc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path8cc.h
More file actions
421 lines (386 loc) · 8.42 KB
/
Copy path8cc.h
File metadata and controls
421 lines (386 loc) · 8.42 KB
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
// Copyright 2012 Rui Ueyama <rui314@gmail.com>
// This program is free software licensed under the MIT license.
#ifndef EIGHTCC_H
#define EIGHTCC_H
#include <assert.h>
#include <inttypes.h>
#include <stdbool.h>
#include <stdio.h>
enum {
TIDENT,
TKEYWORD,
TNUMBER,
TCHAR,
TSTRING,
TEOF,
TINVALID,
// Only in CPP
TNEWLINE,
TSPACE,
TMACRO_PARAM,
};
enum {
ENC_NONE,
ENC_CHAR16,
ENC_CHAR32,
ENC_UTF8,
ENC_WCHAR,
};
typedef struct Map {
struct Map *parent;
char **key;
void **val;
int size;
int nelem;
int nused;
} Map;
typedef struct {
void **body;
int len;
int nalloc;
} Vector;
typedef struct {
struct Map *map;
Vector *key;
} Dict;
typedef struct Set {
char *v;
struct Set *next;
} Set;
typedef struct {
char *body;
int nalloc;
int len;
} Buffer;
typedef struct {
FILE *file; // stream backed by FILE *
char *p; // stream backed by string
char *name;
int line;
int column;
int ntok; // number of tokens in the file (except space and newline)
bool autopop;
int last;
int buf[3];
int buflen;
} File;
typedef struct {
int kind;
int space; // true if the token has a leading space
bool bol; // true if the token is at the beginning of a line
File *file;
int line;
int column;
int count;
Set *hideset;
union {
// TKEYWORD
int id;
// TSTRING or TCHAR
struct {
union {
char *sval;
char c;
};
int enc;
};
// TMACRO_PARAM
struct {
bool is_vararg;
int position;
};
};
} Token;
enum {
AST_LITERAL = 256,
AST_STRING,
AST_LVAR,
AST_GVAR,
AST_TYPEDEF,
AST_FUNCALL,
AST_FUNCPTR_CALL,
AST_FUNCDESG,
AST_FUNC,
AST_DECL,
AST_INIT,
AST_CONV,
AST_ADDR,
AST_DEREF,
AST_IF,
AST_TERNARY,
AST_DEFAULT,
AST_RETURN,
AST_COMPOUND_STMT,
AST_STRUCT_REF,
AST_GOTO,
AST_COMPUTED_GOTO,
AST_LABEL,
OP_SIZEOF,
OP_CAST,
OP_SHR,
OP_SHL,
OP_A_SHR,
OP_A_SHL,
OP_PRE_INC,
OP_PRE_DEC,
OP_POST_INC,
OP_POST_DEC,
OP_LABEL_ADDR,
#define op(name, _) name,
#define keyword(name, x, y) name,
#include "keyword.inc"
#undef keyword
#undef op
};
enum {
KIND_VOID,
KIND_BOOL,
KIND_CHAR,
KIND_SHORT,
KIND_INT,
KIND_LONG,
KIND_LLONG,
KIND_FLOAT,
KIND_DOUBLE,
KIND_LDOUBLE,
KIND_ARRAY,
KIND_ENUM,
KIND_PTR,
KIND_STRUCT,
KIND_FUNC,
// used only in parser
KIND_STUB,
};
typedef struct Type {
int kind;
int size;
int align;
bool usig; // true if unsigned
bool isstatic;
// pointer or array
struct Type *ptr;
// array length
int len;
// struct
Dict *fields;
int offset;
bool is_struct; // true if struct, false if union
// bitfield
int bitoff;
int bitsize;
// function
struct Type *rettype;
Vector *params;
bool hasva;
bool oldstyle;
} Type;
typedef struct {
char *file;
int line;
} SourceLoc;
typedef struct Node {
int kind;
Type *ty;
SourceLoc *sourceLoc;
union {
// Char, int, or long
long ival;
// Float or double
struct {
double fval;
char *flabel;
};
// String
struct {
char *sval;
char *slabel;
};
// Local/global variable
struct {
char *varname;
// local
int loff;
Vector *lvarinit;
// global
char *glabel;
};
// Binary operator
struct {
struct Node *left;
struct Node *right;
};
// Unary operator
struct {
struct Node *operand;
};
// Function call or function declaration
struct {
char *fname;
// Function call
Vector *args;
struct Type *ftype;
// Functoin pointer or function designator
struct Node *fptr;
// Function declaration
Vector *params;
Vector *localvars;
struct Node *body;
};
// Declaration
struct {
struct Node *declvar;
Vector *declinit;
};
// Initializer
struct {
struct Node *initval;
int initoff;
Type *totype;
};
// If statement or ternary operator
struct {
struct Node *cond;
struct Node *then;
struct Node *els;
};
// Goto and label
struct {
char *label;
char *newlabel;
};
// Return statement
struct Node *retval;
// Compound statement
Vector *stmts;
// Struct reference
struct {
struct Node *struc;
char *field;
Type *fieldtype;
};
};
} Node;
extern Type *type_void;
extern Type *type_bool;
extern Type *type_char;
extern Type *type_short;
extern Type *type_int;
extern Type *type_long;
extern Type *type_llong;
extern Type *type_uchar;
extern Type *type_ushort;
extern Type *type_uint;
extern Type *type_ulong;
extern Type *type_ullong;
extern Type *type_float;
extern Type *type_double;
extern Type *type_ldouble;
#define EMPTY_MAP ((Map){})
#define EMPTY_VECTOR ((Vector){})
// buffer.c
Buffer *make_buffer(void);
char *buf_body(Buffer *b);
int buf_len(Buffer *b);
void buf_write(Buffer *b, char c);
void buf_printf(Buffer *b, char *fmt, ...);
char *vformat(char *fmt, va_list ap);
char *format(char *fmt, ...);
char *quote_cstring(char *p);
char *quote_char(char c);
// cpp.c
void cpp_eval(char *buf);
bool is_ident(Token *tok, char *s);
void expect_newline(void);
void add_include_path(char *path);
void init_now(void);
void cpp_init(void);
Token *peek_token(void);
Token *read_token(void);
// debug.c
extern bool debug_cpp;
char *ty2s(Type *ty);
char *node2s(Node *node);
char *tok2s(Token *tok);
// dict.c
Dict *make_dict(void);
void *dict_get(Dict *dict, char *key);
void dict_put(Dict *dict, char *key, void *val);
Vector *dict_keys(Dict *dict);
// error.c
extern bool enable_warning;
extern bool dumpstack;
extern bool dumpsource;
extern bool warning_is_error;
#define error(...) errorf(__FILE__, __LINE__, __VA_ARGS__)
#define warn(...) warnf(__FILE__, __LINE__, __VA_ARGS__)
#ifndef __8cc__
#define NORETURN __attribute__((noreturn))
#else
#define NORETURN
#endif
void errorf(char *file, int line, char *fmt, ...) NORETURN;
void warnf(char *file, int line, char *fmt, ...);
// file.c
int readc(void);
void unreadc(int c);
File *current_file(void);
void insert_stream(FILE *file, char *name);
void push_stream(FILE *file, char *name);
void push_stream_string(char *s);
void pop_stream(void);
int stream_depth(void);
char *input_position(void);
// gen.c
void set_output_file(FILE *fp);
void close_output_file(void);
void emit_toplevel(Node *v);
// lex.c
void lex_init(char *filename);
char *get_base_file(void);
void skip_cond_incl(void);
char *read_header_file_name(bool *std);
bool is_keyword(Token *tok, int c);
void push_token_buffer(Vector *buf);
void pop_token_buffer();
char *read_error_directive(void);
void unget_token(Token *tok);
Token *lex_string(char *s);
Token *lex(void);
// map.c
Map *make_map(void);
Map *make_map_parent(Map *parent);
void *map_get(Map *m, char *key);
void map_put(Map *m, char *key, void *val);
void map_remove(Map *m, char *key);
size_t map_len(Map *m);
// parse.c
char *make_tempname(void);
char *make_label(void);
bool is_inttype(Type *ty);
bool is_flotype(Type *ty);
void *make_pair(void *first, void *second);
int eval_intexpr(Node *node);
Node *read_expr(void);
Vector *read_toplevels(void);
void parse_init(void);
char *fullpath(char *path);
// set.c
Set *set_add(Set *s, char *v);
bool set_has(Set *s, char *v);
Set *set_union(Set *a, Set *b);
Set *set_intersection(Set *a, Set *b);
// vector.c
Vector *make_vector(void);
Vector *make_vector1(void *e);
Vector *vec_copy(Vector *src);
void vec_push(Vector *vec, void *elem);
void vec_append(Vector *a, Vector *b);
void *vec_pop(Vector *vec);
void *vec_get(Vector *vec, int index);
void vec_set(Vector *vec, int index, void *val);
void *vec_head(Vector *vec);
void *vec_tail(Vector *vec);
Vector *vec_reverse(Vector *vec);
void *vec_body(Vector *vec);
int vec_len(Vector *vec);
#endif