-
Notifications
You must be signed in to change notification settings - Fork 46
/
cc.h
572 lines (492 loc) · 10.3 KB
/
cc.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
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
560
561
562
563
564
565
566
567
568
569
570
571
572
#include <stdio.h>
struct func;
enum tokenkind {
TNONE,
TEOF,
TNEWLINE,
TOTHER,
TIDENT,
TNUMBER,
TCHARCONST,
TSTRINGLIT,
/* keyword */
TALIGNAS,
TALIGNOF,
TAUTO,
TBOOL,
TBREAK,
TCASE,
TCHAR,
TCONST,
TCONSTEXPR,
TCONTINUE,
TDEFAULT,
TDO,
TDOUBLE,
TELSE,
TENUM,
TEXTERN,
TFALSE,
TFLOAT,
TFOR,
TGOTO,
TIF,
TINLINE,
TINT,
TLONG,
TNULLPTR,
TREGISTER,
TRESTRICT,
TRETURN,
TSHORT,
TSIGNED,
TSIZEOF,
TSTATIC,
TSTATIC_ASSERT,
TSTRUCT,
TSWITCH,
TTHREAD_LOCAL,
TTRUE,
TTYPEDEF,
TTYPEOF,
TTYPEOF_UNQUAL,
TUNION,
TUNSIGNED,
TVOID,
TVOLATILE,
TWHILE,
T_ATOMIC,
T_BITINT,
T_COMPLEX,
T_DECIMAL128,
T_DECIMAL32,
T_DECIMAL64,
T_GENERIC,
T_IMAGINARY,
T_NORETURN,
T__ASM__,
T__ATTRIBUTE__,
/* punctuator */
TLBRACK,
TRBRACK,
TLPAREN,
TRPAREN,
TLBRACE,
TRBRACE,
TPERIOD,
TARROW,
TINC,
TDEC,
TBAND,
TMUL,
TADD,
TSUB,
TBNOT,
TLNOT,
TDIV,
TMOD,
TSHL,
TSHR,
TLESS,
TGREATER,
TLEQ,
TGEQ,
TEQL,
TNEQ,
TXOR,
TBOR,
TLAND,
TLOR,
TQUESTION,
TCOLON,
TCOLONCOLON,
TSEMICOLON,
TELLIPSIS,
TASSIGN,
TMULASSIGN,
TDIVASSIGN,
TMODASSIGN,
TADDASSIGN,
TSUBASSIGN,
TSHLASSIGN,
TSHRASSIGN,
TBANDASSIGN,
TXORASSIGN,
TBORASSIGN,
TCOMMA,
THASH,
THASHHASH
};
struct location {
const char *file;
size_t line, col;
};
struct token {
enum tokenkind kind;
/* whether or not the token is ineligible for expansion */
bool hide;
/* whether or not the token was preceeded by a space */
bool space;
struct location loc;
char *lit;
};
enum typequal {
QUALNONE,
QUALCONST = 1<<1,
QUALRESTRICT = 1<<2,
QUALVOLATILE = 1<<3,
QUALATOMIC = 1<<4
};
enum typekind {
TYPENONE,
TYPEVOID,
TYPEBOOL,
TYPECHAR,
TYPESHORT,
TYPEINT,
TYPEENUM,
TYPELONG,
TYPELLONG,
TYPEFLOAT,
TYPEDOUBLE,
TYPELDOUBLE,
TYPEPOINTER,
TYPEARRAY,
TYPEFUNC,
TYPESTRUCT,
TYPEUNION,
TYPENULLPTR,
};
enum typeprop {
PROPNONE,
PROPCHAR = 1<<0,
PROPINT = 1<<1,
PROPREAL = 1<<2,
PROPARITH = 1<<3,
PROPSCALAR = 1<<4,
PROPFLOAT = 1<<5,
PROPVM = 1<<6 /* variably-modified type */
};
struct bitfield {
short before; /* number of bits in the storage unit before the bit-field */
short after; /* number of bits in the storage unit after the bit-field */
};
struct member {
char *name;
struct type *type;
enum typequal qual;
unsigned long long offset;
struct bitfield bits;
struct member *next;
};
struct type {
enum typekind kind;
enum typeprop prop;
int align;
unsigned long long size;
struct value *value; /* used by the backend */
struct type *base;
struct list link; /* used only during construction of type */
/* qualifiers of the base type */
enum typequal qual;
bool incomplete, flexible;
union {
struct {
bool issigned, iscomplex;
} basic;
struct {
struct expr *length;
enum typequal ptrqual;
struct value *size;
} array;
struct {
bool isvararg;
struct decl *params;
size_t nparam;
} func;
struct {
char *tag;
struct member *members;
} structunion;
} u;
};
enum declkind {
DECLTYPE,
DECLOBJECT,
DECLFUNC,
DECLCONST,
DECLBUILTIN,
};
enum linkage {
LINKNONE,
LINKINTERN,
LINKEXTERN,
};
enum storageduration {
SDSTATIC,
SDTHREAD,
SDAUTO,
};
enum builtinkind {
BUILTINALLOCA,
BUILTINCONSTANTP,
BUILTINEXPECT,
BUILTININFF,
BUILTINNANF,
BUILTINOFFSETOF,
BUILTINTYPESCOMPATIBLEP,
BUILTINUNREACHABLE,
BUILTINVAARG,
BUILTINVACOPY,
BUILTINVAEND,
BUILTINVALIST,
BUILTINVASTART,
};
struct decl {
char *name;
enum declkind kind;
enum linkage linkage;
struct type *type;
enum typequal qual;
struct value *value;
char *asmname;
bool defined;
bool tentative;
struct decl *next;
union {
struct {
/* alignment of object storage (may be stricter than type requires) */
int align;
enum storageduration storage;
} obj;
struct {
/* the function might have an "inline definition" (C11 6.7.4p7) */
bool inlinedefn;
bool isnoreturn;
} func;
unsigned long long enumconst;
enum builtinkind builtin;
} u;
};
struct scope {
struct map tags;
struct map decls;
struct block *breaklabel;
struct block *continuelabel;
struct switchcases *switchcases;
struct scope *parent;
};
enum exprkind {
/* primary expression */
EXPRIDENT,
EXPRCONST,
EXPRSTRING,
/* postfix expression */
EXPRCALL,
/* member E.M gets transformed to *(typeof(E.M) *)((char *)E + offsetof(typeof(E), M)) */
EXPRBITFIELD,
EXPRINCDEC,
EXPRCOMPOUND,
/* subscript E1[E2] gets transformed to *((E1)+(E2)) */
EXPRUNARY,
EXPRCAST,
EXPRBINARY,
EXPRCOND,
EXPRASSIGN,
EXPRCOMMA,
EXPRBUILTIN,
EXPRTEMP,
EXPRSIZEOF,
};
struct stringlit {
size_t size;
void *data;
};
struct expr {
enum exprkind kind;
/* whether this expression is an lvalue */
bool lvalue;
/* whether this expression is a pointer decayed from an array or function designator */
bool decayed;
/* the unqualified type of the expression */
struct type *type;
/* the type qualifiers of the object this expression refers to (ignored for non-lvalues) */
enum typequal qual;
enum tokenkind op;
struct expr *base;
struct expr *next;
struct expr *toeval;
union {
struct {
struct decl *decl;
} ident;
union {
unsigned long long u;
long long i;
double f;
} constant;
struct stringlit string;
struct {
struct expr *args;
size_t nargs;
} call;
struct {
struct bitfield bits;
} bitfield;
struct {
struct decl *decl;
struct init *init;
} compound;
struct {
bool post;
} incdec;
struct {
struct expr *l, *r;
} binary;
struct {
struct expr *t, *f;
} cond;
struct {
struct expr *l, *r;
} assign;
struct {
enum builtinkind kind;
} builtin;
struct {
struct type *type;
} szof;
struct value *temp;
} u;
};
struct init {
unsigned long long start, end;
struct expr *expr;
struct bitfield bits;
struct init *next;
};
/* token */
extern struct token tok;
extern const char *tokstr[];
void tokenprint(const struct token *);
char *tokencheck(const struct token *, enum tokenkind, const char *);
void error(const struct location *, const char *, ...);
/* scan */
void scanfrom(const char *, FILE *);
void scanopen(void);
void scansetloc(struct location loc);
void scan(struct token *);
/* preprocessor */
enum ppflags {
/* preserve newlines in preprocessor output */
PPNEWLINE = 1 << 0,
};
extern enum ppflags ppflags;
void ppinit(void);
void next(void);
bool peek(int);
char *expect(enum tokenkind, const char *);
bool consume(int);
/* type */
struct type *mktype(enum typekind, enum typeprop);
struct type *mkpointertype(struct type *, enum typequal);
struct type *mkarraytype(struct type *, enum typequal, unsigned long long);
bool typecompatible(struct type *, struct type *);
bool typesame(struct type *, struct type *);
struct type *typecomposite(struct type *, struct type *);
struct type *typeunqual(struct type *, enum typequal *);
struct type *typecommonreal(struct type *, unsigned, struct type *, unsigned);
struct type *typepromote(struct type *, unsigned);
struct type *typeadjust(struct type *, enum typequal *);
enum typeprop typeprop(struct type *);
struct member *typemember(struct type *, const char *, unsigned long long *);
bool typehasint(struct type *, unsigned long long, bool);
extern struct type typevoid;
extern struct type typebool;
extern struct type typechar, typeschar, typeuchar;
extern struct type typeshort, typeushort;
extern struct type typeint, typeuint;
extern struct type typelong, typeulong;
extern struct type typellong, typeullong;
extern struct type typefloat, typedouble, typeldouble;
extern struct type typenullptr;
extern struct type *typeadjvalist;
/* targ */
struct target {
const char *name;
struct type *typevalist;
struct type *typewchar;
int signedchar;
};
extern const struct target *targ;
void targinit(const char *);
/* attr */
enum attrkind {
ATTRALIGNED = 1<<0,
ATTRCONSTRUCTOR = 1<<1,
ATTRDESTRUCTOR = 1<<2,
ATTRPACKED = 1<<3,
};
struct attr {
enum attrkind kind;
int align;
};
bool attr(struct attr *, enum attrkind);
bool gnuattr(struct attr *, enum attrkind);
/* decl */
struct decl *mkdecl(char *name, enum declkind, struct type *, enum typequal, enum linkage);
bool decl(struct scope *, struct func *);
struct type *typename(struct scope *, enum typequal *, struct expr **);
struct decl *stringdecl(struct expr *);
void emittentativedefns(void);
/* scope */
void scopeinit(void);
struct scope *mkscope(struct scope *);
struct scope *delscope(struct scope *);
void scopeputdecl(struct scope *, struct decl *);
struct decl *scopegetdecl(struct scope *, const char *, bool);
void scopeputtag(struct scope *, const char *, struct type *);
struct type *scopegettag(struct scope *, const char *, bool);
extern struct scope filescope;
/* expr */
struct type *stringconcat(struct stringlit *, bool);
struct expr *expr(struct scope *);
struct expr *assignexpr(struct scope *);
struct expr *condexpr(struct scope *);
unsigned long long intconstexpr(struct scope *, bool);
void delexpr(struct expr *);
struct expr *exprassign(struct expr *, struct type *);
struct expr *exprpromote(struct expr *);
/* eval */
struct expr *eval(struct expr *);
/* init */
struct init *mkinit(unsigned long long, unsigned long long, struct bitfield, struct expr *);
struct init *parseinit(struct scope *, struct type *);
void stmt(struct func *, struct scope *);
/* backend */
struct gotolabel {
struct block *label;
bool defined;
};
struct switchcases {
void *root;
struct type *type;
struct block *defaultlabel;
};
void switchcase(struct switchcases *, unsigned long long, struct block *);
struct block *mkblock(char *);
struct value *mkglobal(struct decl *);
struct value *mkintconst(unsigned long long);
struct func *mkfunc(struct decl *, char *, struct type *, struct scope *);
void delfunc(struct func *);
struct type *functype(struct func *);
void funclabel(struct func *, struct block *);
struct value *funcexpr(struct func *, struct expr *);
void funcjmp(struct func *, struct block *);
void funcjnz(struct func *, struct value *, struct type *, struct block *, struct block *);
void funcret(struct func *, struct value *);
void funchlt(struct func *);
struct gotolabel *funcgoto(struct func *, char *);
void funcswitch(struct func *, struct value *, struct switchcases *, struct block *);
void funcinit(struct func *, struct decl *, struct init *, bool);
void emitfunc(struct func *, bool);
void emitdata(struct decl *, struct init *);