aboutsummaryrefslogtreecommitdiff
path: root/bootstrap/all.h
blob: 720c7ea7c3f351623fd47e653fcc3ba29cbd6999 (plain) (blame)
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
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
#pragma once

#include "vec.h"
#include <assert.h>
#include <errno.h>
#include <limits.h>
#include <stdarg.h>
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

/***********/
/** Types **/
/***********/

typedef uint8_t u8;
typedef uint32_t u32;
typedef uint64_t u64;
typedef int64_t i64;
#define bool _Bool
#define noreturn _Noreturn
#define slice_t(T) struct { T *d; unsigned n; }

struct span {
   short fileid;
   int idx, col, line;
};

/* must be alpha sorted */
#define LIST_KEYWORDS(_) \
   _(and)                \
   _(as)                 \
   _(break)              \
   _(case)               \
   _(const)              \
   _(continue)           \
   _(def)                \
   _(defmacro)           \
   _(do)                 \
   _(else)               \
   _(enum)               \
   _(extern)             \
   _(fn)                 \
   _(for)                \
   _(if)                 \
   _(import)             \
   _(let)                \
   _(or)                 \
   _(return)             \
   _(sizeof)             \
   _(static)             \
   _(struct)             \
   _(switch)             \
   _(typedef)            \
   _(typeof)             \
   _(union)              \
   _(while)

enum toktype {
#define KWTK(kw) TKkw_##kw,
   LIST_KEYWORDS(KWTK)
#undef KWTK
   NUM_KEYWORDS,
   TKintlit = -100,
   TKflolit,
   TKboolit,
   TKstrlit,
   TKchrlit,
   TKnullit,
   TKident,
   TKmacident,
   TKgensym,
   TKtype,
   TKexpr,
   TKlabel,
   TKstrify,
   TKhwhen,
   TKeof,
};

struct tok {
   int t;
   struct span span;
   union {
      struct {
         const struct type *ty;
         u64 i;
      } ilit;
      struct {
         const struct type *ty;
         double f;
      } flit;
      bool boolit;
      struct {
         const char *str;
         int strlen;
      };
      const struct type *ty;
      struct expr *ex;
   };
};

struct toktree {
   slice_t(struct tok);
};

struct expanarg {
   const char *name;
   struct toktree toks;
};

struct parser {
   FILE *fp;
   const char *curfile;
   struct span tokspan;
   struct span curspan;
   bool eof;
   int peekchr;
   bool have_peektok;
   struct tok peektok;
   struct env *primenv;
   struct env *tlenv;
   struct env *curenv;
   struct fn *curfn;
   struct expan {
      struct expan *prev;
      slice_t(struct expanarg) args;
      struct toktree toks;
      const char *name;
      struct span span;
      int idx;
      bool tepl;
   } *curexpan; // macro expansions
   int expanno;
   const struct type *targty;
   bool used_targty;
   bool is_header;
   bool save_envage;
   int envage;
   int varid;
   int loopid, curloop;
   const struct type *container;
};

enum typetype {
   TYvoid,
   TYbool,
   TYint,
   TYfloat,
   TYptr,
   TYarr,
   TYslice,
   TYfn,
   TYenum,
   TYstruct,
   TYunion,
   TYeunion,
   TYvalist,
};

struct type {
   enum typetype t;
   size_t size, align;
   bool konst;
   int _id;
   union {
      bool int_signed;
      struct {
         const struct type *child;
         i64 length;
      };
      struct {
         slice_t(const struct type *) params;
         const struct type *retty;
         bool variadic;
      } fn;
      struct {
         const struct type *intty;
         const char *name;
         slice_t(struct enumval {
            const char *name;
            i64 i;
         }) vals;
         bool lax;
         int id;
      } enu;
      struct {
         const char *name;
         const struct type *enumty;
         slice_t(struct aggfield {
            size_t off;
            const char *name;
            const struct type *ty;
         }) flds;
         slice_t(struct decl *) decls;
         slice_t(struct teplarg {
            bool typ;
            union {
               const struct type *ty;
               struct tok tok;
            };
         }) tpargs;
         bool fwd;
         int id;
      } agg;
   };
   // for cgen.c hack (mutated later, not hashed or involved in equality)
   const char *_cname;
};

struct fnparam {
   const struct type *ty;
   const char *name;
};

struct fn {
   const char *name, *asmname;
   slice_t(struct fnparam) params;
   const struct type *selfty;
   const struct type *retty;
   bool variadic;
   int id;
   struct stmt *body;
};

struct macrocase {
   bool variadic;
   slice_t(const char *) params;
   struct toktree body;
};

struct macro {
   const char *name;
   slice_t(struct macrocase) cs;
};

enum decltype {
   Dtype,
   Dfn,
   Dlet,
   Dstatic,
   Ddef,
   Dmacro,
   Dtepl,
   Dlabel,
};

struct attr {
   union {
      struct {
         uint lax : 1;
      };
      uint bits;
   };

};

struct decl {
   enum decltype t;
   const char *name;
   char **_cname;
   bool externp;
   struct span span;
   const struct type *container;
   union {
      const struct type *ty;
      struct fn fn;
      struct var {
         const struct type *ty;
         struct expr *ini;
         int id, fnid;
      } var;
      struct macro macro;
      struct tepl {
         enum decltype t;
         enum typetype tkind;
         const char *name;
         struct env *env;
         slice_t(struct teplparam) params;
         struct teplcache {
            struct teplcache *next;
            slice_t(struct teplarg) args;
            const struct type *ty;
         } *cache;
         struct toktree toks;
         int envage;
      } tepl;
      int loopid;
   };
   int age;
   bool _gen;
};

struct teplparam {
   const char *name;
   bool typ;
};

struct env {
   struct env *parent;
   struct decls {
      struct decls *next;
      struct decl decl;
   } *decls;
};

enum exprtype {
   Eintlit,
   Eflolit,
   Estrlit,
   Eboolit,
   Enullit,
   Ename,
   Eprefix, Epostfix, // (unops)
   Ebinop,
   Econd,
   Ecall,
   Eindex,
   Eblock,
   Eas,
   Eenumval,
   Ezeroini,
   Eini,
   Eget,
   Emcall,
   Eslice,
   Elen,
   Eptr,
   Eeuini,
   Eeutag,
   Evastart,
   Evaarg,
   Evaend,
};

struct blockstmt {
   struct env env;
   slice_t(struct stmt) stmts;
};

struct expr {
   enum exprtype t;
   struct span span;
   const struct type *ty;
   union {
      union {
         i64 i; // also for bool lit
         u64 u;
         double f;
      };
      struct {
         const char *d;
         u64 n;
      } strlit;
      const struct decl *ref;
      struct {
         int op; // operator token
         struct expr *child;
      } unop;
      struct {
         int op; // operator token
         struct expr *lhs, *rhs;
      } binop;
      struct {
         struct expr *test, *t, *f;
      } cond;
      struct {
         struct expr *callee;
         slice_t(struct expr) args;
      } call;
      struct {
         struct expr *lhs, *rhs;
      } index;
      struct blockstmt block;
      struct expr *child; // cast, len, eutag
      struct {
         i64 i;
         const char *vname;
      } enu;
      struct {
         slice_t(struct iniarg) args;
         i64 maxn;
      } ini;
      struct {
         struct expr *lhs;
         const char *fld;
      } get;
      struct {
         struct fn *met;
         slice_t(struct expr) args;
      } mcall;
      struct {
         struct expr *lhs, *start, *end;
      } slice;
      struct {
         const char *fnam;
         i64 tag;
         struct expr *ini;
      } euini;
   };
};

struct iniarg {
   union {
      i64 idx;
      const char *fld;
   };
   struct expr ex;
};

enum stmttype {
   Sblock,
   Sexpr,
   Sdecl,
   Sifelse,
   Swhile,
   Sdowhile,
   Sfor,
   Siswitch,
   Sreturn,
   Seuswitch,
   Sbreak,
   Scontinue,
   Scswitch,
};

struct iswitchcase {
   slice_t(struct expr) es;
   struct blockstmt t;
};

struct euswitchcase {
   const char *capt;
   bool captptr;
   int captid, vval;
   const struct type *captty;
   struct aggfield *fld;
   struct blockstmt t;
};

struct stmt {
   enum stmttype t;
   struct span span;
   union {
      struct blockstmt block;
      struct expr expr;
      struct decl decl;
      struct {
         struct expr test;
         struct blockstmt t;
         struct stmt *f;
      } ifelse;
      struct {
         slice_t(struct stmt) ini;
         int id;
         struct expr test;
         struct expr *next;
         struct blockstmt body;
      } loop;
      struct {
         struct expr test;
         slice_t(struct iswitchcase) cs;
         struct blockstmt *f;
      } iswitch;
      struct {
         struct expr test;
         slice_t(struct euswitchcase) cs;
         struct blockstmt *f;
         bool byptr;
      } euswitch;
      struct expr *retex;
      struct {
         int id;
      } brkcon;
      struct {
         slice_t(struct cswitchcase {
            struct expr test;
            struct blockstmt t;
         }) cs;
         struct blockstmt *f;
      } cswitch;
   };
};

struct comfile {
   slice_t(struct decl *) decls;
};

/************/
/** Target **/
/************/

#define alignof _Alignof

static const struct targ {
   size_t ptrsize,
          shortsize,
          intsize,
          i32align,
          i64align,
          longsize,
          longalign,
          llongsize,
          llongalign,
          sizesize,
          f32align,
          f64align,
          valistsize,
          valistalign;
   bool charsigned;
} g_targ = {
   .ptrsize = sizeof(void *),
   .shortsize = sizeof(short),
   .intsize = sizeof(int),
   .i32align = alignof(int32_t),
   .i64align = alignof(int64_t),
   .longsize = sizeof(long),
   .longalign = alignof(long),
   .llongalign = alignof(long long),
   .llongsize = sizeof(long long),
   .sizesize = sizeof(size_t),
   .f32align = alignof(float),
   .f64align = alignof(double),
   .valistsize = sizeof(va_list),
   .valistalign = alignof(va_list),
   .charsigned = CHAR_MIN < 0,
};

/*********************************/
/** Macros and inline functions **/
/*********************************/

#define ARRAY_LENGTH(a) (sizeof a / sizeof *a)
#define MAX(a,b) ((a) > (b) ? (a) : (b))
#define WITH_TMPCHANGE(T,var,new)                          \
   for (T __old = (var), *__dummy = ((var) = (new), NULL); \
        !__dummy;                                          \
        __dummy++, (var) = __old)
#define ALIGNUP(x,a) (((x) + ((a) - 1)) & -(a))

static inline u32
bswap32(u32 x) {
   return (x >> 24)
        | (x >> 8 & 0xFF00)
        | (x << 8 & 0xFF0000)
        | (x << 24 & 0xFF000000u);
}

static inline u64
bswap64(u64 x) {
   return ((u64)bswap32(x) << 32) | bswap32(x >> 32) ;
}

#define vec_slice_cpy(slice, v)  \
   ((slice)->d = vec_compact(v), \
    (slice)->n = (v)->length)

#define container_of(x, T, fld) \
   ((T *)((char *)(x) - offsetof(T, fld)))

///
/////////////////////////////////

/** util.c **/
#define FNV1A_INI 0x811c9dc5u
u32 fnv1a(u32 hash, const void *data, size_t length);
u32 fnv1ai(u32 hash, int i);
u32 fnv1aI(u32 hash, i64 i);
u32 fnv1az(u32 hash, size_t i);
int addfilepath(const char *);
const char *fileid2path(int);
void *xmalloc(size_t);
void *xcalloc(size_t, size_t);
void *xrealloc(void *, size_t);
char *xstrdup(const char *);
char *xasprintf(const char *fmt, ...);
void noreturn fatal(struct parser *, struct span, const char *fmt, ...);

/** parse.c **/
extern const char *keyword2str[];
void parse(struct comfile *, struct parser *);
void initparser(struct parser *, const char *fname);

/** types.c **/
extern const struct type
   *ty_void, *ty_bool, *ty_f32, *ty_f64,
   *ty_i8, *ty_u8, *ty_i16, *ty_u16,
   *ty_i32, *ty_u32, *ty_i64, *ty_u64,
   *ty_int, *ty_uint, *ty_isize, *ty_usize,
   *ty_iptrint, *ty_uptrint, *ty_c_int, *ty_c_uint,
   *ty_c_char, *ty_c_schar, *ty_c_uchar, *ty_c_short,
   *ty_c_ushort, *ty_c_long, *ty_c_ulong, *ty_c_llong,
   *ty_c_ullong;
void inittypes(void);
const struct type *interntype(struct type);
void uninterntype(const struct type *);
bool typeeql(const struct type *lhs, const struct type *rhs);
bool completetype(const struct type *);
void putprimtypes(struct env *);
void visittypes(void (*visitor)(const struct type *, void *), void *arg);
const struct type *constify(const struct type *ty);
const struct type *unconstify(const struct type *ty);
const struct type *constifychild(const struct type *ty);
const struct type *unconstifychild(const struct type *ty);
int numtype2rank(const struct type *a);
const struct type * rank2numtype(int r);
bool isnumtype(const struct type *a);
const struct type *typeof2(const struct type *a, const struct type *b);

/** env.c **/
struct decl *envfind(const struct env *, int age, const char *name);
struct decl *envput(struct env *, const struct decl *decl);
struct env *mkenv(const struct env *parent);

/** dump.c **/
void dumpcomfile(const struct comfile *);
const char *tokt2str(int);
const char *tok2str(struct tok);
void pritoktree(struct toktree);
void epri(const char *fmt, ...);
void vepri(const char *fmt, va_list);

/** cgen.c **/
void cgen(FILE *, const struct comfile *);

/** fold.c **/
int fold(struct expr *);