summaryrefslogtreecommitdiff
path: root/types.h
blob: b7c1b0bc31a93a8f72d78ec7087105647ae76853 (plain)
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
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
/*
toc's types. Note that although these types are in the public domain,
the code which uses them (i.e. most of the rest of toc) is not.

This is free and unencumbered software released into the public domain.
Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this software, either in source code form or as a compiled
binary, for any purpose, commercial or non-commercial, and by any
means.
In jurisdictions that recognize copyright laws, the author or authors
of this software dedicate any and all copyright interest in the
software to the public domain. We make this dedication for the benefit
of the public at large and to the detriment of our heirs and
successors. We intend this dedication to be an overt act of
relinquishment in perpetuity of all present and future rights to this
software under copyright law.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.
For more information, please refer to <http://unlicense.org/>
*/
/* NOTE: make sure you edit copy.c and cgen_recurse_subexprs/types when you make a change to expression-related types or type-related types in this file! */

typedef long double Floating; /* OPTIM: Switch to double, but make sure floating-point literals are right */


#if __STDC_VERSION__ >= 199901
#define HAVE_LONGLONG 1
typedef long long longlong;
#else
#define HAVE_LONGLONG 0
typedef long longlong;
#endif


#if __STDC_VERSION__ < 201112
/* try to find the type with the strictest alignment */
typedef union {
	long double floating;
	void *ptr;
	#if HAVE_LONGLONG
	longlong integer;
	#endif
	void (*fn_ptr)(void);
} MaxAlign;
#else
typedef max_align_t MaxAlign;
#endif

typedef uint8_t U8;
#define U8_MAX UINT8_MAX
typedef uint16_t U16;
#define U16_MAX UINT16_MAX
typedef uint32_t U32;
#define U32_MAX UINT32_MAX
typedef uint64_t U64;
#define U64_MAX UINT64_MAX
#define U8_FMT "%" PRIu8
#define U16_FMT "%" PRIu16
#define U32_FMT "%" PRIu32
#define U64_FMT "%" PRIu64

#if __STDC_VERSION__ >= 199901
#include <stdbool.h>
#elif defined __cplusplus
#else
typedef U8 bool;
#define false ((bool)0)
#define true ((bool)1)
#endif

#if defined __GNUC__ && !defined NO_WARN_UNUSED_RESULT
#define Status bool __attribute__((warn_unused_result)) 
#else
#define Status bool
#endif

typedef int8_t I8;
#define I8_MAX INT8_MAX
typedef int16_t I16;
#define I16_MAX INT16_MAX
typedef int32_t I32;
#define I32_MAX INT32_MAX
typedef int64_t I64;
#define I64_MAX INT64_MAX
#define I8_FMT "%" PRId8
#define I16_FMT "%" PRId16
#define I32_FMT "%" PRId32
#define I64_FMT "%" PRId64

/* NOTE: if you change these, make sure you change hash_tables.c */
typedef float F32;
typedef double F64;
#define F32_MANT_DIG FLT_MANT_DIG
#define F32_DIG FLT_DIG
#define F64_MANT_DIG DBL_MANT_DIG
#define F64_DIG DBL_DIG

#define F32_FMT "%.16f"
#define F64_FMT "%.16f"

typedef U32 IdentID; /* identifier ID for cgen (anonymous variables). not to be confused with IdentTree.id */

/* for keeping track of whence something came */
#ifdef TOC_DEBUG
#define SOURCE_LOCATION char *src_file; int src_line;
#define SOURCE_LOCATION_PARAMS char *src_file, int src_line,
#define DEBUG_UNDERSCORE(x) x##_
#else
#define SOURCE_LOCATION
#define SOURCE_LOCATION_PARAMS
#define DEBUG_UNDERSCORE(x) x
#endif


typedef struct ErrCtx {
	bool enabled;
	bool color_enabled;
	bool have_errored;
	struct Location *instance_stack; /* stack of locations which generate the instances we're dealing with */
} ErrCtx;


typedef struct Page {
	struct Page *next;
	size_t used; /* number MaxAligns used, not bytes */
	MaxAlign data[];
} Page;

typedef struct Allocator {
	Page *first;
	Page *last;
} Allocator;

typedef struct ArrBlock {
	void *data;
	size_t n; /* number of things in this block so far */
} ArrBlock;

/* initialize to 0 */
typedef struct HashTable {
	void *data;
	bool *occupied;
	U64 n;
	U64 cap;
} HashTable;

typedef struct Slice {
	I64 n;
	void *data;
} Slice;

typedef union Value {
	U8 u8;
	U16 u16;
	U32 u32;
	U64 u64;
	I8 i8;
	I16 i16;
	I32 i32;
	I64 i64;
	bool boolv;
	char charv;
	float f32;
	double f64;
	struct FnExpr *fn;
	void *arr;
	void *ptr;
	void *struc;
	union Value *tuple;
	Slice slice;
	struct Type *type;
	struct Namespace *nms;
} Value;

typedef enum {
			  IDECL_NONE,
			  IDECL_DECL,
			  IDECL_EXPR
} IdentDeclKind;


typedef struct IdentSlot {
	char *str;
	size_t len;
	/* where this identifier was declared */
	IdentDeclKind decl_kind;	
	union {
		struct Declaration *decl;
		struct Expression *decl_expr;
	};
	struct Identifiers *idents;
	struct Namespace *nms; /* only exists after typing, and only for namespace-level declarations (i.e. not local variables) */
	SOURCE_LOCATION
} IdentSlot;

typedef struct StrHashTableSlot {
	const char *str;
	size_t len;
	MaxAlign data[];
} StrHashTableSlot;

typedef StrHashTableSlot *StrHashTableSlotPtr;

typedef struct StrHashTable {
	StrHashTableSlot **slots;
	Allocator *allocr;
	U32 rand_seed;
	size_t data_size;
	size_t nentries; /* # of filled slots */
} StrHashTable;

typedef IdentSlot *Identifier;

typedef IdentSlot *IdentSlotPtr;
typedef struct Identifiers {
	StrHashTable table;
	U32 rseed;
	struct Block *scope; /* NULL for file scope */
} Identifiers;

typedef enum {
			  TOKEN_KW,
			  TOKEN_IDENT,
			  TOKEN_DIRECT,
			  TOKEN_LITERAL_NUM,
			  TOKEN_LITERAL_CHAR,
			  TOKEN_LITERAL_STR,
			  TOKEN_EOF
} TokenKind;

typedef enum {
			  DIRECT_C,
			  DIRECT_SIZEOF,
			  DIRECT_ALIGNOF,
			  DIRECT_EXPORT,
			  DIRECT_FOREIGN,
			  DIRECT_BUILTIN,
			  DIRECT_INCLUDE,
			  DIRECT_FORCE,
			  DIRECT_COUNT
} Directive;

static const char *directives[DIRECT_COUNT] =
	{"C", "sizeof", "alignof", "export", "foreign", "builtin", "include", "force"};

typedef enum {
			  KW_SEMICOLON,
			  KW_COLON,
			  KW_COMMA,
			  KW_LPAREN,
			  KW_RPAREN,
			  KW_LBRACE,
			  KW_RBRACE,
			  KW_LSQUARE,
			  KW_RSQUARE,
			  KW_EQ_EQ,
			  KW_PLUS_EQ,
			  KW_MINUS_EQ,
			  KW_ASTERISK_EQ,
			  KW_SLASH_EQ,
			  KW_PERCENT_EQ,
			  KW_NE,
			  KW_LE,
			  KW_LT,
			  KW_GE,
			  KW_GT,
			  KW_PLUS,
			  KW_MINUS,
			  KW_ASTERISK,
			  KW_EXCLAMATION,
			  KW_AMPERSAND,
			  KW_SLASH,
			  KW_PERCENT,
			  KW_DOTDOT,
			  KW_DOT,
			  KW_EQ,
			  KW_LAST_SYMBOL = KW_EQ, /* last one entirely consisting of symbols */
			  KW_IF,
			  KW_ELIF,
			  KW_ELSE,
			  KW_WHILE,
			  KW_FOR,
			  KW_RETURN,
			  KW_FN,
			  KW_AS,
			  KW_NEW,
			  KW_DEL,
			  KW_STRUCT,
			  KW_INT,
			  KW_I8,
			  KW_I16,
			  KW_I32,
			  KW_I64,
			  KW_U8,
			  KW_U16,
			  KW_U32,
			  KW_U64,
			  KW_FLOAT,
			  KW_F32,
			  KW_F64,
			  KW_TYPE,
			  KW_NAMESPACE,
			  KW_CHAR,
			  KW_BOOL,
			  KW_TRUE,
			  KW_FALSE,
			  KW_NMS,
			  KW_COUNT
} Keyword;

static const char *const keywords[KW_COUNT] =
	{";", ":", ",", "(", ")", "{", "}", "[", "]", "==",
	 "+=", "-=", "*=", "/=", "%=",
	 "!=", "<=", "<", ">=", ">",
	 "+", "-", "*", "!", "&", "/", "%", "..", ".",
	 "=",
	 "if", "elif", "else", "while", "for", "return", "fn", "as",
	 "new", "del", "struct",
	 "int", "i8", "i16", "i32", "i64",
	 "u8", "u16", "u32", "u64", "float", "f32", "f64", "Type",
	 "Namespace",
	 "char", "bool", "true", "false", "nms"};

typedef enum {
			  NUM_LITERAL_INT,
			  NUM_LITERAL_FLOAT
} NumLiteralKind;

typedef struct NumLiteral {
	NumLiteralKind kind;
	union {
		U64 intval;
		Floating floatval;
	};
} NumLiteral;

typedef struct StrLiteral {
	char *str;
	size_t len;
} StrLiteral;

typedef struct {
	U32 line;
	U32 start; /* index in ctx->str */
	U32 end; /* exclusive */
} SourcePos;

/* NOTE: Location is typedef'd in util/err.c */
typedef struct Token {
	TokenKind kind;
	SourcePos pos;
	union {
		Keyword kw;
		Directive direct;
		char *ident;
		NumLiteral num;
		char chr;
		StrLiteral str;
	};
} Token;

typedef struct {
	ErrCtx *ctx;
	const char *filename;
	char *contents;
} File;

typedef struct Location {
	File *file;
	/* if start is NULL, simple_location will be used. */
	Token *start;
	union {
		Token *end; /* Exclusive */
	    struct {
		    U32 line; /* if 0, this is a null location */
		} simple_location;
	};
} Location;


typedef struct Tokenizer {
	Allocator *allocr;
	Token *tokens;
	File *file;
	char *s; /* string being parsed */
	ErrCtx *err_ctx;
	U32 line;
	Token *token; /* token currently being processed */
	Identifiers *globals;
} Tokenizer;


typedef enum {
			  TYPE_VOID,
			  TYPE_UNKNOWN,
			  TYPE_BUILTIN,
			  TYPE_FN,
			  TYPE_TUPLE,
			  TYPE_ARR,
			  TYPE_PTR,
			  TYPE_SLICE,
			  TYPE_EXPR, /* just use this expression as the type. this kind of type doesn't exist after resolving. */
			  TYPE_STRUCT
#define TYPE_COUNT (TYPE_STRUCT+1)
} TypeKind;


typedef enum {
			  BUILTIN_I8,
			  BUILTIN_I16,
			  BUILTIN_I32,
			  BUILTIN_I64,
			  BUILTIN_U8,
			  BUILTIN_U16,
			  BUILTIN_U32,
			  BUILTIN_U64,
			  BUILTIN_F32,
			  BUILTIN_F64,
			  BUILTIN_CHAR,
			  BUILTIN_BOOL,
			  BUILTIN_TYPE,
			  BUILTIN_NMS
} BuiltinType;


typedef U8 Constness;

#define CONSTNESS_NO ((Constness)0)
#define CONSTNESS_SEMI ((Constness)1)
#define CONSTNESS_YES ((Constness)2)

typedef struct FnType {
	struct Type *types; /* dynamic array [0] = ret_type, [1:] = param_types  */
	Constness *constness; /* [i] = constness of param #i. iff no parameters are constant, this is NULL. don't use it as a dynamic array, because eventually it might not be. */
} FnType;

enum {
	  TYPE_IS_FLEXIBLE = 0x01,
	  TYPE_IS_RESOLVED = 0x02,
};
typedef U8 TypeFlags;
typedef struct Type {
	Location where;
	struct Expression *was_expr; /* if non-NULL, indicates that this type used to be an expression (TYPE_EXPR) */
	TypeKind kind;
	TypeFlags flags;
	union {
		BuiltinType builtin;
		FnType fn;
		struct Type *tuple;
		struct {
			struct Type *of;
			union {
				U64 n; /* after resolving */
				struct Expression *n_expr; /* before resolving */
			};
		} arr;
		struct Type *ptr;
		struct Type *slice;
		struct StructDef *struc; /* multiple resolved types can refer to the same struct */
		struct Expression *expr;
	};
} Type;


/* field of a struct */
typedef struct Field {
	Location where;
	Identifier name;
	Type type;
	size_t offset; /* offset during compile time */
} Field;


enum {
	  BLOCK_IS_FN = 0x01,
	  BLOCK_IS_NMS = 0x02,
	  BLOCK_FINDING_TYPES = 0x04,
	  BLOCK_FOUND_TYPES = 0x08
};
typedef U8 BlockFlags;
typedef struct Block {
	BlockFlags flags;
	Location where;
	Identifiers idents;
	struct Statement *stmts;
	struct Expression *ret_expr; /* the return expression of this block, e.g. {foo(); 3} => 3  NULL for no expression. */
} Block;

enum {
	  STRUCT_DEF_FOUND_OFFSETS = 0x01,
	  STRUCT_DEF_FINDING_OFFSETS = 0x02,
	  STRUCT_DEF_CGEN_DECLARED = 0x04,
	  STRUCT_DEF_CGEN_DEFINED = 0x08,
	  STRUCT_DEF_RESOLVED = 0x10
};
typedef struct StructDef {
	Field *fields;
	Location where;
	U8 flags;
	Block scope; /* to make sure that parameters live somewhere. fields are not kept here. */
	union {
		HashTable instances;
		struct {
			size_t size; /* size of this struct during compile time */
			size_t align;
			U64 instance_id; /* ID of instance */
		};
	};
	Identifier name;
	struct Declaration *params;
	struct {
		/* if name is NULL, use this */
		IdentID id;
	} c;
} StructDef;


typedef enum {
			  EXPR_LITERAL_FLOAT,
			  EXPR_LITERAL_INT,
			  EXPR_LITERAL_STR,
			  EXPR_LITERAL_BOOL,
			  EXPR_LITERAL_CHAR,
			  EXPR_IDENT, /* variable or constant */
			  EXPR_BINARY_OP,
			  EXPR_UNARY_OP,
			  EXPR_IF,
			  EXPR_WHILE,
			  EXPR_FOR,
			  EXPR_FN,
			  EXPR_CAST,
			  EXPR_NEW,
			  EXPR_CALL,
			  EXPR_BLOCK,
			  EXPR_TUPLE,
			  EXPR_C,
			  EXPR_BUILTIN,
			  EXPR_SLICE,
			  EXPR_TYPE,
			  EXPR_NMS,
			  /* 
				 a value (it's useful to have this). 
				 right now they don't work with cgen_set_tuple
				 (as of yet, that is unneeded)
			  */
			  EXPR_VAL 
} ExprKind;

typedef enum {
			  UNARY_MINUS,
			  UNARY_ADDRESS, /* &x */
			  UNARY_DEREF, /* *x */
			  UNARY_NOT, /* !x */
			  UNARY_DEL, /* del x */
			  UNARY_LEN, /* x.len ; replaces BINARY_DOT len when typing  */
			  UNARY_DSIZEOF,
			  UNARY_DALIGNOF
} UnaryOp;

typedef enum {
			  BINARY_SET, /* e.g. x = y */
			  BINARY_ADD,
			  BINARY_SUB,
			  BINARY_MUL,
			  BINARY_DIV,
			  BINARY_MOD,
			  BINARY_SET_ADD, /* e.g. x += y */
			  BINARY_SET_SUB,
			  BINARY_SET_MUL,
			  BINARY_SET_DIV,
			  BINARY_SET_MOD,
			  BINARY_GT,
			  BINARY_LT,
			  BINARY_GE,
			  BINARY_LE,
			  BINARY_EQ,
			  BINARY_NE,
			  BINARY_AT_INDEX, /* e.g. x[i] */
			  BINARY_DOT
} BinaryOp;

typedef struct CallExpr {
	struct Expression *fn;
	union {
		struct Argument *args; /* before typing */
		struct Expression *arg_exprs; /* after typing */
	};
	struct Instance *instance; /* NULL = ordinary function, no compile time args */
} CallExpr;

typedef struct IfExpr {
	struct Expression *cond; /* NULL = this is an else */
	struct Expression *next_elif; /* next elif/else of this statement */
	Block body;
} IfExpr;

typedef struct WhileExpr {
	struct Expression *cond;
	Block body;
} WhileExpr;


enum {
	  FOR_IS_RANGE = 0x01,
	  FOR_ANNOTATED_TYPE = 0x02,
};

typedef struct ForExpr {
	U8 flags;
	Type type; /* uninitialized unless typed or flags & FOR_ANNOTATED_TYPE */
	Identifier index; /* NULL = no index */
	Identifier value; /* NULL = no value */
	Block body;
	union {
		struct {
			struct Expression *from; /* can't be null */
			struct Expression *to; /* can be null */
			union {
				/* (either) can be null */
				struct Expression *step; /* before typing */
				Value *stepval; /* after typing */
			};
		} range;
		struct Expression *of;
	};
	Value **val_stack; /* see Declaration for comments */
} ForExpr;


enum {
	  FN_EXPR_FOREIGN = 0x01,
	  FN_EXPR_EXPORT = 0x02 /* set by sdecls_cgen.c */
};

typedef enum {
	  CTYPE_NONE = 0x00,
	  CTYPE_CHAR = 0x01,
	  CTYPE_SHORT = 0x02,
	  CTYPE_INT = 0x03,
	  CTYPE_LONG = 0x04,
	  CTYPE_LONGLONG = 0x05,
	  CTYPE_SIGNED_CHAR = 0x06,
	  CTYPE_UNSIGNED = 0x08,
	  CTYPE_UNSIGNED_CHAR = CTYPE_UNSIGNED|CTYPE_CHAR,
	  CTYPE_UNSIGNED_SHORT = CTYPE_UNSIGNED|CTYPE_SHORT,
	  CTYPE_UNSIGNED_INT = CTYPE_UNSIGNED|CTYPE_INT,
	  CTYPE_UNSIGNED_LONG = CTYPE_UNSIGNED|CTYPE_LONG,
	  CTYPE_UNSIGNED_LONGLONG = CTYPE_UNSIGNED|CTYPE_LONGLONG,
	  CTYPE_PTR = 0x10,
	  CTYPE_FLOAT = 0x11,
	  CTYPE_DOUBLE = 0x12,
	  CTYPE_SIZE_T = 0x13
} CTypeKind;
typedef struct {
	CTypeKind kind;
	char *points_to; /* if kind == CTYPE_PTR, ident string of C type which it points to */
} CType;

typedef struct FnExpr {
	Location where;
	union {
		struct {
			struct Declaration *params; /* declarations of the parameters to this function */
			struct Declaration *ret_decls; /* array of decls, if this has named return values. otherwise, NULL */
			Type ret_type;	
			Block body;
		};
		struct {
			Type type; /* type of this function */
			CType *ctypes; /* ctypes[i] = CTYPE_NONE if this isn't a ctype, or the specified CType. don't use this as a dynamic array. */
			union {
				const char *name;
				struct Expression *name_expr; /* before typing */
			};
			union {
				const char *lib;
				struct Expression *lib_expr;
			};
			void (*fn_ptr)();
		} foreign;
	};
	HashTable instances; /* for fns with constant parameters. the key is a tuple where
							the first element is a u64 value whose ith bit (1<<i) is 1
							if the ith semi-constant parameter is constant.
						 */
	struct {
		/* if name = NULL, this is an anonymous function, and id will be the ID of the fn. */
		Identifier name;
		IdentID id;
	} c;
	U8 flags;
} FnExpr; /* an expression such as fn(x: int) int { 2 * x } */

typedef struct Instance {
	Value val; /* key into hash table */
	union {
		struct {
			FnExpr *fn; /* the typed function */
			struct {
				U64 id;
			} c;
		};
		StructDef struc;
	};
} Instance;

typedef struct CastExpr {
	struct Expression *expr;
	Type type;
} CastExpr;

typedef struct NewExpr {
	Type type;
	struct Expression *n; /* e.g. for new(int, 5) */
} NewExpr;

typedef struct SliceExpr {
	struct Expression *of; /* required */
	struct Expression *from; /* optional */
	struct Expression *to; /* optional */
	struct {
		IdentID id;
	} c;
} SliceExpr;

typedef enum {
			  BUILTIN_STDOUT,
			  BUILTIN_STDERR,
			  BUILTIN_STDIN,
			  BUILTIN_SIZEOF_SHORT,
			  BUILTIN_TSIZEOF_SHORT, /* target sizeof(short) */
			  BUILTIN_SIZEOF_INT,
			  BUILTIN_TSIZEOF_INT,
			  BUILTIN_SIZEOF_LONG,
			  BUILTIN_TSIZEOF_LONG,
			  BUILTIN_SIZEOF_LONG_LONG,
			  BUILTIN_TSIZEOF_LONG_LONG,
			  BUILTIN_SIZEOF_SIZE_T,
			  BUILTIN_TSIZEOF_SIZE_T,
			  BUILTIN_SIZEOF_FLOAT,
			  BUILTIN_TSIZEOF_FLOAT,
			  BUILTIN_SIZEOF_DOUBLE,
			  BUILTIN_TSIZEOF_DOUBLE,
			  BUILTIN_SIZEOF_LONG_DOUBLE,
			  BUILTIN_TSIZEOF_LONG_DOUBLE,
			  BUILTIN_COMPILING
#define BUILTIN_VAL_COUNT (BUILTIN_COMPILING+1)
} BuiltinVal;

const char *const builtin_val_names[BUILTIN_VAL_COUNT] =
	{"stdout", "stderr", "stdin", "sizeof short", "target sizeof short",
	 "sizeof int", "target sizeof int", "sizeof long", "target sizeof long",
	 "sizeof long long", "target sizeof long long", "sizeof size_t", "target sizeof size_t",
	 "sizeof float", "target sizeof float", "sizeof double", "target sizeof double",
	 "sizeof long double", "target sizeof long double", "compiling"};

typedef struct Namespace {
	Block body;
	Identifier associated_ident; /* if this is foo ::= nms { ... }, then associated_ident is foo; can be NULL */
	struct Namespace *points_to; /* if not NULL, this namespace just points to another namespace, because something has been included twice */
	struct {
		char *prefix; /* generated during sdecls_cgen */
	} c;
} Namespace;

enum {
	  EXPR_FOUND_TYPE = 0x01
};

typedef U8 ExprFlags;

typedef struct Expression {
	Type type;
	Location where;
	ExprKind kind : 8;
    ExprFlags flags;
	struct {
		IdentID id; /* cgen ID used for this expression */
	} cgen;
	union {
		Floating floatl;
		U64 intl;
		StrLiteral strl;
		bool booll;
		char charl;
		struct {
			UnaryOp op;
			struct Expression *of;
		} unary;
		struct {
			BinaryOp op;
			struct Expression *lhs;
			struct Expression *rhs;
			union {
				Field *field; /* for struct. */
				Identifier translated_ident; /* for nms. */
			} dot;
		} binary;
		CallExpr call;
		struct {
			struct Expression *code;
		} c;
		struct {
			union {
				struct Expression *expr;
			    BuiltinVal val;
			} which;
		} builtin;
		Identifier ident;
		NewExpr new;
		Namespace nms;
		struct {
			Type type;
		} del;
		IfExpr if_;
		WhileExpr while_;
		ForExpr *for_;
		FnExpr *fn;
		CastExpr cast;
		SliceExpr slice;
		Block block;
		struct Expression *tuple; /* dynamic array, even after typing */
		Type typeval;
		Value val;
	};
} Expression;

typedef struct Argument {
	Location where;
	char *name; /* NULL = no name */
	Expression val;
} Argument;

enum {
	  DECL_ANNOTATES_TYPE = 0x0001,
	  DECL_IS_CONST = 0x0002,
	  DECL_SEMI_CONST = 0x0004,
	  DECL_HAS_EXPR = 0x0008,
	  DECL_FOUND_TYPE = 0x0010,
	  DECL_ERRORED_ABOUT_SELF_REFERENCE = 0x0020, /* has there been an error about this decl referencing itself? */
	  DECL_FOUND_VAL = 0x0040,
	  DECL_INFER = 0x0080, /* infer the value (e.g. fn(t::Type=, x:t)) */
	  DECL_EXPORT = 0x0100,
	  DECL_IS_PARAM = 0x0200
};

typedef U16 DeclFlags;

typedef struct Declaration {
	Location where;
	Identifier *idents;
	Type type;
	DeclFlags flags;
	union {
		Expression expr;
		struct {
			union {
				struct {
					/* only exist before typing */
					Expression *name;
					Expression *lib;
				};
				/* only set for non-functions */
				const char *name_str;
			};
		} foreign;
	};
	Value val; /* only for constant decls and non-constant globals. */

	/* for eval, for non-constant local decls: */
	/* the pointers to values need to be fixed, which is why this isn't just Value *.  */
	/* OPTIM: some block array of values somewhere which we can just use a pointer to, which is freed when the block is exited? */
	Value **val_stack;
} Declaration;

typedef enum {
			  STMT_DECL,
			  STMT_EXPR,
			  STMT_RET,
			  STMT_INCLUDE
} StatementKind;

enum {
	  RET_HAS_EXPR = 0x01,
};
typedef struct Return {
	U8 flags;
	Expression expr;
} Return;

enum {
	  INC_FILE_CGEND_SDECLS = 0x01,
	  INC_FILE_CGEND_DECLS = 0x02,
	  INC_FILE_CGEND_DEFS = 0x04,
	  INC_FILE_CGEND = 0x08
};

typedef struct {
	U8 flags;
	Namespace *main_nms; /* namespace of first inclusion */
	struct Statement *stmts;
} IncludedFile;

enum {
	  INC_FORCED = 0x01
};

typedef union {
	U8 flags;
	union {
		Expression filename; /* before typing */
		struct Statement *stmts; /* after typing */
	};
	IncludedFile *inc_file;
} Include;

enum {
	  STMT_EXPR_NO_SEMICOLON = 0x01,
	  STMT_INC_TO_NMS = 0x01,
	  STMT_TYPED = 0x02
};
typedef struct Statement {
	Location where;
	StatementKind kind;
	U8 flags;
	union {
		Declaration *decl; /* we want the pointer to be fixed so that we can refer to it from an identifier */
		Expression expr;
		Return ret;
		Include inc;
	};
} Statement;

typedef struct ParsedFile {
	Statement *stmts;
} ParsedFile;

typedef struct Parser {
	Tokenizer *tokr;
	Allocator *allocr;
	Identifiers *globals;
	File *file;
	Block *block; /* which block are we in? NULL = file scope */
	ParsedFile *parsed_file;
} Parser;

typedef enum {
			  DECL_END_SEMICOLON,
			  DECL_END_RPAREN_COMMA,
			  DECL_END_LBRACE_COMMA
} DeclEndKind;

#if COMPILE_TIME_FOREIGN_FN_SUPPORT
typedef struct {
	void *handle;
} Library;
#endif

typedef struct {
#if COMPILE_TIME_FOREIGN_FN_SUPPORT
	StrHashTable libs_loaded; /* of Library */
#else
	char unused;
#endif
} ForeignFnManager;

typedef struct Evaluator {
	Allocator *allocr;
	struct Typer *typer;
	bool returning;
	Value ret_val;
	bool enabled;
	ForeignFnManager ffmgr;
} Evaluator;

typedef struct Typer {
	Allocator *allocr;
	Evaluator *evalr;
	Identifiers *globals;
	Expression **in_exprs; /* which expression declarations we are currently inside (e.g. for x := foo)*/
	Declaration **in_decls; /* array of declarations we are currently inside */
	Block *block;
	Block **blocks; /* dyn array of all the block's we're in ([0] = NULL for global scope) */
	FnExpr *fn; /* the function we're currently parsing. */
	ErrCtx *err_ctx;
	ParsedFile *parsed_file;
	Namespace *nms;
	StrHashTable included_files; /* maps to IncludedFile */
} Typer;

typedef struct CGenerator {
	Allocator *allocr;
	FILE *outc;
	IdentID ident_counter;
	int indent_lvl; /* how many levels of indentation? */
	bool will_indent; /* will the next thing be indented? */
	ParsedFile *file;
	Block *block;
	Namespace *nms;
	FnExpr *fn; /* which function are we in? (NULL for none) - not used during decls */
	Identifier main_ident;
	Identifiers *globals;
	char const **nms_prefixes; /* dynamic (null-terminated) array of namespace prefixes */
} CGenerator;