summaryrefslogtreecommitdiff
path: root/ast.h
blob: a0827717ea575aacc392a12c8776d7132f39cdcb (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
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
/* Oort
 * Copyright 2007, Soren Sandmann Pedersen
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 */

#include <glib.h>

typedef union  token_t token_t;
typedef struct token_common_t token_common_t;
typedef struct token_identifier_t token_identifier_t;
typedef struct token_int_literal_t token_int_literal_t;
typedef struct token_float_literal_t token_float_literal_t;
typedef struct token_string_literal_t token_string_literal_t;

typedef struct ast_common_t ast_common_t;

typedef struct ast_definition_common_t ast_definition_common_t;
typedef struct ast_function_definition_t ast_function_definition_t;
typedef struct ast_class_definition_t ast_class_definition_t;
typedef struct ast_type_definition_t ast_type_definition_t;
typedef struct ast_variable_definition_t ast_variable_definition_t;
typedef struct ast_label_definition_t ast_label_definition_t;

typedef struct ast_case_common_t ast_case_common_t;
typedef struct ast_expression_case_t ast_expression_case_t;
typedef union  ast_case_t ast_case_t;

typedef struct ast_statement_common_t ast_statement_common_t;
typedef struct ast_definition_statement_t ast_definition_statement_t;
typedef struct ast_print_statement_t ast_print_statement_t;
typedef struct ast_loop_statement_t ast_loop_statement_t;
typedef struct ast_if_statement_t ast_if_statement_t;
typedef struct ast_switch_statement_t ast_switch_statement_t;
typedef struct ast_expression_statement_t ast_expression_statement_t;
typedef struct ast_block_statement_t ast_block_statement_t;
typedef struct ast_compound_statement_t ast_compound_statement_t;
typedef struct ast_goto_statement_t ast_goto_statement_t;
typedef struct ast_break_statement_t ast_break_statement_t;
typedef struct ast_continue_statement_t ast_continue_statement_t;
typedef struct ast_label_statement_t ast_label_statement_t;
typedef struct ast_return_statement_t ast_return_statement_t;

typedef struct ast_expression_common_t ast_expression_common_t;
typedef struct ast_dot_expression_t ast_dot_expression_t;
typedef struct ast_this_expression_t ast_this_expression_t;
typedef struct ast_index_expression_t ast_index_expression_t;
typedef struct ast_int_literal_expression_t ast_int_literal_expression_t;
typedef struct ast_float_literal_expression_t ast_float_literal_expression_t;
typedef struct ast_string_literal_expression_t ast_string_literal_expression_t;
typedef struct ast_bool_literal_expression_t ast_bool_literal_expression_t;
typedef struct ast_null_expression_t ast_null_expression_t;
typedef struct ast_identifier_expression_t ast_identifier_expression_t;
typedef struct ast_unary_expression_t ast_unary_expression_t;
typedef struct ast_binary_expression_t ast_binary_expression_t;
typedef struct ast_ternary_expression_t ast_ternary_expression_t;
typedef struct ast_lambda_expression_t ast_lambda_expression_t;
typedef struct ast_call_expression_t ast_call_expression_t;
typedef struct ast_statement_expression_t ast_statement_expression_t;
typedef struct ast_new_expression_t ast_new_expression_t;
typedef struct ast_block_expression_t ast_block_expression_t;
typedef struct ast_definition_expression_t ast_definition_expression_t;

typedef struct ast_type_spec_common_t ast_type_spec_common_t;
typedef struct ast_identifier_type_spec_t ast_identifier_type_spec_t;
typedef struct ast_function_type_spec_t ast_function_type_spec_t;
typedef struct ast_array_type_spec_t ast_array_type_spec_t;
typedef struct ast_object_type_spec_t ast_object_type_spec_t;
typedef struct ast_inferred_type_spec_t ast_inferred_type_spec_t;

typedef struct ast_program_t ast_program_t;

typedef union  ast_definition_t ast_definition_t;
typedef union  ast_type_spec_t ast_type_spec_t;
typedef union  ast_expression_t ast_expression_t;
typedef union  ast_statement_t ast_statement_t;
typedef union  ast_t ast_t;

typedef struct symbol_table_t symbol_table_t;

typedef union  value_t value_t;
typedef struct closure_t closure_t;
typedef struct label_t label_t;

typedef struct node_common_t node_common_t;
typedef struct prolog_node_t prolog_node_t;
typedef struct fun_ref_node_t fun_ref_node_t;
typedef struct goto_node_t goto_node_t;
typedef struct if_node_t if_node_t;
typedef struct return_node_t return_node_t;
typedef struct label_node_t label_node_t;
typedef struct dyn_closure_node_t dyn_closure_node_t;
typedef struct dyn_label_t dyn_label_t;
typedef struct store_node_t store_node_t;
typedef struct store_ind_node_t store_ind_node_t;
typedef struct store_array_node_t store_array_node_t;
typedef struct load_node_t load_node_t;
typedef struct load_ind_node_t load_ind_node_t;
typedef struct load_array_node_t load_array_node_t;
typedef struct initialize_node_t initialize_node_t;
typedef struct literal_node_t literal_node_t;
typedef struct print_node_t print_node_t;
typedef struct closure_node_t closure_node_t;
typedef struct binop_node_t binop_node_t;
typedef struct unary_node_t unary_node_t;
typedef struct call_node_t call_node_t;
typedef struct new_node_t new_node_t;
typedef struct new_array_node_t new_array_node_t;
typedef struct this_node_t this_node_t;
typedef struct to_string_node_t to_string_node_t;
typedef union  node_t node_t;

typedef struct set_t set_t;

typedef enum
{
    AST_DEFINITION,
    AST_CASE,
    AST_STATEMENT,
    AST_EXPRESSION,
    AST_TYPE_SPEC,
    AST_PROGRAM
} ast_type_t;

typedef enum
{
    AST_INT32_TYPE,
    AST_DOUBLE_TYPE,
    AST_BOOL_TYPE,
    AST_NULL_TYPE,
    AST_VOID_TYPE,
    AST_IDENTIFIER_TYPE,
    AST_FUNCTION_TYPE,
    AST_ARRAY_TYPE,
    AST_OBJECT_TYPE,
    AST_STRING_TYPE,
    AST_INFERRED_TYPE,
    AST_LABEL_TYPE
} ast_type_spec_type_t;

typedef enum
{
    AST_FUNCTION_DEFINITION,
    AST_CLASS_DEFINITION,
    AST_VARIABLE_DEFINITION,
    AST_LABEL_DEFINITION,
    AST_TYPE_DEFINITION
} ast_definition_type_t;

typedef enum
{
    /* Statements */
    AST_DEFINITION_STATEMENT,
    AST_PRINT_STATEMENT,
    AST_LOOP_STATEMENT,
    AST_IF_STATEMENT,
    AST_SWITCH_STATEMENT,
    AST_EXPRESSION_STATEMENT,
    AST_COMPOUND_STATEMENT,
    AST_BLOCK_STATEMENT,
    AST_RETURN_STATEMENT,
    AST_GOTO_STATEMENT,
    AST_BREAK_STATEMENT,
    AST_CONTINUE_STATEMENT,
    AST_LABEL_STATEMENT,
    AST_EMPTY_STATEMENT
} ast_statement_type_t;

typedef enum
{
    /* Cases */
    AST_EXPRESSION_CASE,
    AST_DEFAULT_CASE
} ast_case_type_t;

typedef enum
{
    /* Expressions */
    AST_INT_LITERAL_EXPRESSION,
    AST_FLOAT_LITERAL_EXPRESSION,
    AST_STRING_LITERAL_EXPRESSION,
    AST_BOOL_LITERAL_EXPRESSION,
    AST_NULL_EXPRESSION,
    AST_IDENTIFIER_EXPRESSION,
    AST_UNARY_EXPRESSION,
    AST_BINARY_EXPRESSION,
    AST_TERNARY_EXPRESSION,
    AST_LAMBDA_EXPRESSION,
    AST_CALL_EXPRESSION,
    AST_STATEMENT_EXPRESSION,
    AST_NEW_EXPRESSION,
    AST_BLOCK_EXPRESSION,
    AST_DEFINITION_EXPRESSION,
    AST_DOT_EXPRESSION,
    AST_THIS_EXPRESSION,
    AST_INDEX_EXPRESSION,
    AST_VOID_EXPRESSION
} ast_expression_type_t;

typedef enum
{
    AST_ASSIGN,
    AST_PLUS,
    AST_MINUS,
    AST_DIVIDE,
    AST_TIMES,
    AST_MOD,
    AST_LSHIFT,
    AST_RSHIFT,
    AST_LT,
    AST_GT,
    AST_LTE,
    AST_GTE,
    AST_EQUAL,
    AST_NOT_EQUAL,
    AST_OR,
    AST_AND,
    AST_BOR,
    AST_BXOR,
    AST_BAND,
} ast_binary_operator_t;

typedef enum
{
    AST_UNARY_NOT,
    AST_UNARY_MINUS,
    AST_UNARY_PLUS,
    AST_UNARY_BNEG,
    AST_POSTFIX_INC,
    AST_POSTFIX_DEC,
    AST_PREFIX_INC,
    AST_PREFIX_DEC,
} ast_unary_operator_t;

char *   unique_name (const char *prefix);
int      array_length (gpointer *arr);
gboolean report_error (const char *fmt, ...);

/* Set utilities */

set_t *   set_new           (void);
set_t *   set_new_full      (void);
set_t *   set_copy          (set_t *s);
void	  set_free          (set_t *s);
void      set_intersect     (set_t *s1, set_t *s2);
gboolean  set_equal         (set_t *s1, set_t *s2);
void      set_union         (set_t *s1, set_t *s2);
void      set_add           (set_t *s, gpointer element);
gboolean  set_contains      (set_t *s, gpointer element);

/* Symbol Table */
struct symbol_table_t
{
    symbol_table_t *	outer;
    GHashTable *        symbols;
};

/* Evaluate operators */
void	  evaluate_binary_operator (ast_binary_operator_t	 op,
				    const ast_type_spec_t	*left_type,
				    const value_t		*left,
				    const ast_type_spec_t	*right_type,
				    const value_t		*right,
				    const ast_type_spec_t	*result_type,
				    value_t			*result);
void      evaluate_unary_operator  (ast_unary_operator_t	 op,
				    const ast_type_spec_t	*child_type,
				    const value_t		*child,
				    const ast_type_spec_t	*result_type,
				    value_t			*result);
gchar *   value_to_string          (value_t			*val,
				    ast_type_spec_t		*type);
void      print_value              (value_t			*val,
				    ast_type_spec_t		*type_spec);

/* Interpreter */
struct closure_t
{
    ast_function_definition_t *		function;
    gpointer				env;
};

struct label_t
{
    label_node_t *			label;
    gpointer				env;
};

union value_t
{
    int		int32_val;
    double	double_val;
    gboolean	bool_val;
    closure_t	closure_val;
    gpointer    pointer_val;
    label_t	label_val;
};

/* Graph Utilities */
typedef enum
{
    NODE_GOTO,
    NODE_DYN_GOTO,
    NODE_IF,
    NODE_BINOP,
    NODE_UNARY,
    NODE_LITERAL,
    NODE_PRINT,
    NODE_TO_STRING,
    NODE_POP,
    NODE_DUP,
    NODE_RETURN,
    NODE_NOP,
    NODE_INIT,
    NODE_LABEL,
    NODE_CALL,
    NODE_NEW,
    NODE_NEW_ARRAY,
    NODE_THIS,
    NODE_FUN_REF,
    NODE_PROLOG,
    NODE_LOAD,		/* These three byte codes could probably be replaced
			 * with a "load env" bytecode plus the indirect byte
			 * codes.
			 */
    NODE_STORE,
    NODE_CLOSURE,
    NODE_DYN_CLOSURE,	/* Closure, where the environment is on the stack */
    NODE_LOAD_IND,	/* Load, where the env is on the stack */
    NODE_STORE_IND,	/* Store, where the env is on the stack */
    NODE_DYN_LABEL,
    NODE_LOAD_ARRAY,
    NODE_STORE_ARRAY
} node_type_t;

struct node_common_t
{
    node_type_t			type;

    ast_t *			ast;

    node_t *			next;
    node_t *			prev;

    gboolean			reachable;
    set_t *			init_vars;
};

struct prolog_node_t
{
    node_common_t		common;

    GQueue *			sources;
};

struct fun_ref_node_t
{
    node_common_t		common;

    prolog_node_t *		prolog;
};

struct label_ref_node_t
{
    node_common_t		common;

    label_node_t *		label;
};

struct label_node_t
{
    node_common_t		common;

    GQueue *			sources;
};

struct goto_node_t
{
    node_common_t		common;

    label_node_t *		label;
};

struct return_node_t
{
    node_common_t		common;

    ast_type_spec_t *		type;

    label_node_t *		exit;
};

struct if_node_t
{
    node_common_t		common;

    gboolean			sense;
    label_node_t *		taken;
};

struct store_node_t
{
    node_common_t		common;

    ast_variable_definition_t * definition;
    ast_expression_t *		expression;
};

struct store_ind_node_t
{
    node_common_t		common;

    ast_variable_definition_t * definition;
};

struct store_array_node_t
{
    node_common_t		common;

    ast_array_type_spec_t *	array;
};

struct load_ind_node_t
{
    node_common_t		common;

    ast_variable_definition_t * definition;
};

struct load_node_t
{
    node_common_t		common;

    ast_variable_definition_t * definition;
    ast_expression_t *		expression;
};

struct load_array_node_t
{
    node_common_t		common;

    ast_array_type_spec_t *	array;
};

struct initialize_node_t
{
    node_common_t		common;

    ast_variable_definition_t * definition;
};

struct binop_node_t
{
    node_common_t		common;

    ast_type_spec_t *		left_type;
    ast_type_spec_t *		right_type;
    ast_type_spec_t *		type_spec;

    ast_binary_operator_t	operator;
};

struct unary_node_t
{
    node_common_t		common;

    ast_unary_operator_t	operator;

    ast_type_spec_t *		child_type;
    ast_type_spec_t *		type_spec;
};

struct literal_node_t
{
    node_common_t		common;

    value_t			value;
    ast_type_spec_t *		type_spec;
};

struct closure_node_t
{
    node_common_t		common;

    ast_function_definition_t *	function;
    ast_expression_t *		expression;
};

struct dyn_label_t
{
    node_common_t		common;

    label_node_t *		label;
    ast_expression_t *		expression;
    ast_label_definition_t *	definition;
};

struct dyn_closure_node_t
{
    node_common_t		common;

    ast_function_definition_t *	function;
};

struct new_node_t
{
    node_common_t		common;

    ast_class_definition_t *	class;
    ast_expression_t *		expression;
};

struct new_array_node_t
{
    node_common_t		common;

    ast_array_type_spec_t *	array;
    int				element_size;
};

struct this_node_t
{
    node_common_t		common;

    ast_class_definition_t *	class;
    ast_expression_t *		expression;
};

struct to_string_node_t
{
    node_common_t		common;

    ast_type_spec_t *		type_spec;
};

struct print_node_t
{
    node_common_t		common;

    int				n_exprs;
};

struct call_node_t
{
    node_common_t		common;
};

union node_t
{
    node_common_t		common;
    goto_node_t			goto_;
    return_node_t		return_;
    if_node_t			if_;
    label_node_t		label;
    store_node_t		store;
    store_ind_node_t		store_ind;	/* [ ..., value, obj ] => [] */
    store_array_node_t		store_array;	/* [ ..., value, array, index ] => [] */
    load_node_t			load;
    load_ind_node_t		load_ind;
    load_array_node_t		load_array;
    initialize_node_t		initialize;
    binop_node_t		binop;
    unary_node_t		unary;
    literal_node_t		literal;
    closure_node_t		closure;
    print_node_t		print;
    new_node_t			new;
    new_array_node_t		new_array;
    this_node_t			this;
    to_string_node_t		to_string;
    dyn_closure_node_t		dyn_closure;
    prolog_node_t		prolog;
    fun_ref_node_t		fun_ref;
    dyn_label_t			dyn_label;
};

node_t *node_new_fun_ref     (node_t                    *prolog,
			      node_t                    *pred,
			      ast_t                     *ast);
node_t *node_new_prolog      (node_t                    *pred,
			      ast_t                     *ast);
node_t *node_new_label       (node_t                    *pred,
			      ast_t                     *ast);
node_t *node_new_goto        (label_node_t              *label,
			      node_t                    *pred,
			      ast_t                     *ast);
node_t *node_new_dyn_goto    (node_t                    *pred,
			      ast_t                     *ast);
node_t *node_new_return      (ast_type_spec_t           *type,
			      node_t                    *pred,
			      ast_t                     *ast);
node_t *node_new_if          (gboolean                   sense,
			      label_node_t              *taken,
			      node_t                    *pred,
			      ast_t                     *ast);
node_t *node_new_literal     (value_t                    value,
			      ast_type_spec_t           *type,
			      node_t                    *pred,
			      ast_t                     *ast);
node_t *node_new_closure     (ast_function_definition_t *function,
			      ast_expression_t          *expr,
			      node_t                    *pred,
			      ast_t                     *ast);
node_t *node_new_dyn_label   (label_node_t              *label,
			      ast_expression_t          *expr,
			      ast_label_definition_t    *definition,
			      node_t                    *pred,
			      ast_t                     *ast);
node_t *node_new_dyn_closure (ast_function_definition_t *function,
			      node_t                    *pred,
			      ast_t                     *ast);
node_t *node_new_print       (int			 n_exprs,
			      node_t                    *pred,
			      ast_t                     *ast);
node_t *node_new_to_string   (ast_type_spec_t		*type_spec,
			      node_t			*pred,
			      ast_t			*ast);
node_t *node_new_call        (node_t                    *pred,
			      ast_t                     *ast);
node_t *node_new_pop         (node_t                    *pred,
			      ast_t                     *ast);
node_t *node_new_dup         (node_t                    *pred,
			      ast_t                     *ast);
node_t *node_new_nop         (node_t                    *pred,
			      ast_t                     *ast);
node_t *node_new_load        (ast_variable_definition_t *def,
			      ast_expression_t          *expr,
			      node_t                    *pred,
			      ast_t                     *ast);
node_t *node_new_load_ind    (ast_variable_definition_t *def,
			      node_t                    *pred,
			      ast_t                     *ast);
node_t *node_new_load_array  (ast_array_type_spec_t     *array,
			      node_t                    *pred,
			      ast_t                     *ast);
node_t *node_new_store       (ast_variable_definition_t *def,
			      ast_expression_t          *expr,
			      node_t                    *pred,
			      ast_t                     *ast);
node_t *node_new_store_ind   (ast_variable_definition_t *def,
			      node_t                    *pred,
			      ast_t                     *ast);
node_t *node_new_store_array (ast_array_type_spec_t     *array,
			      node_t                    *pred,
			      ast_t                     *ast);
node_t *node_new_initialize  (ast_variable_definition_t *def,
			      node_t                    *pred,
			      ast_t                     *ast);
node_t *node_new_binop       (ast_binary_operator_t      operator,
			      ast_type_spec_t           *left_type,
			      ast_type_spec_t           *right_type,
			      ast_type_spec_t           *type,
			      node_t                    *pred,
			      ast_t                     *ast);
node_t *node_new_unary       (ast_unary_operator_t       operator,
			      ast_type_spec_t           *child_type,
			      ast_type_spec_t           *type,
			      node_t                    *pred,
			      ast_t                     *ast);
node_t *node_new_new         (ast_class_definition_t    *class,
			      ast_expression_t          *expr,
			      node_t                    *pred,
			      ast_t                     *ast);
node_t *node_new_new_array   (ast_array_type_spec_t     *array,
			      int                        element_size,
			      node_t                    *pred,
			      ast_t                     *ast);
node_t *node_new_this        (ast_class_definition_t    *class,
			      ast_expression_t          *expr,
			      node_t                    *pred,
			      ast_t                     *ast);
node_t *node_insert_after    (node_t			*node,
			      node_t			*pred);
void    node_free	     (node_t                    *node);

typedef void (* node_callback_t) (node_t *node, gpointer data);

GList *node_list_predecessors (node_t *node);
GList *node_list_successors   (node_t *node);

void     node_breadth_first (node_t *        start,
			     node_callback_t callback,
			     gpointer        data);
node_t **node_list_all      (node_t *        entry);

/*
 * Scanner
 */

typedef enum
{
    TOKEN_WHILE,
    TOKEN_LBRACE,
    TOKEN_RBRACE,
    TOKEN_ASSIGN,
    TOKEN_SEMICOLON,
    TOKEN_IDENTIFIER,
    TOKEN_LPAREN,
    TOKEN_RPAREN,
    TOKEN_DOT,
    TOKEN_DOT_DOT,
    TOKEN_COMMA,
    TOKEN_FOR,
    TOKEN_GOTO,
    TOKEN_BREAK,
    TOKEN_CONTINUE,
    TOKEN_CLASS,
    TOKEN_THIS,
    TOKEN_VIRTUAL,
    TOKEN_MATCH,
    TOKEN_INT_LITERAL,
    TOKEN_STRING_LITERAL,
    TOKEN_FLOAT_LITERAL,
    TOKEN_STRUCT,
    TOKEN_NEW,
    TOKEN_PLUS,
    TOKEN_PRINT,
    TOKEN_WHITESPACE,
    TOKEN_LSHIFT,
    TOKEN_RSHIFT,
    TOKEN_LBRACK,
    TOKEN_RBRACK,
    TOKEN_COLON,
    TOKEN_TIMES,
    TOKEN_MINUS,
    TOKEN_DIVIDE,
    TOKEN_IF,
    TOKEN_ELSE,
    TOKEN_RETURN,
    TOKEN_AND,
    TOKEN_OR,
    TOKEN_XOR,
    TOKEN_BAND,
    TOKEN_BOR,
    TOKEN_BXOR,
    TOKEN_BNEG,
    TOKEN_NULL,
    TOKEN_ENUM,
    TOKEN_GT,
    TOKEN_LT,
    TOKEN_GTE,
    TOKEN_LTE,
    TOKEN_NOT_EQ,
    TOKEN_EQ,
    TOKEN_CONST,
    TOKEN_INT64,
    TOKEN_UINT64,
    TOKEN_INT32,
    TOKEN_UINT32,
    TOKEN_INT16,
    TOKEN_UINT16,
    TOKEN_UINT8,
    TOKEN_INT8,
    TOKEN_BOOL,
    TOKEN_STRING,
    TOKEN_INC,
    TOKEN_DEC,
    TOKEN_NOT,
    TOKEN_MOD,
    TOKEN_QUESTION,
    TOKEN_PLUS_EQ,
    TOKEN_MINUS_EQ,
    TOKEN_TIMES_EQ,
    TOKEN_MOD_EQ,
    TOKEN_DIVIDE_EQ,
    TOKEN_RSHIFT_EQ,
    TOKEN_LSHIFT_EQ,
    TOKEN_BAND_EQ,
    TOKEN_BOR_EQ,
    TOKEN_BXOR_EQ,
    TOKEN_TRUE,
    TOKEN_FALSE,
    TOKEN_THROW,
    TOKEN_TRY,
    TOKEN_CATCH,
    TOKEN_FINALLY,
    TOKEN_TYPEDEF,
    TOKEN_DOUBLE,
    TOKEN_FLOAT,
    TOKEN_DO,
    TOKEN_RARROW,
    TOKEN_LARROW,
    TOKEN_SWITCH,
    TOKEN_CASE,
    TOKEN_DEFAULT,
    TOKEN_WITH,
    TOKEN_FN,
    TOKEN_AS,
    TOKEN_IS,
    TOKEN_VAR,
    TOKEN_VOID,
    TOKEN_IN,
    TOKEN_AT,
    TOKEN_OPERATOR,
    TOKEN_PUBLIC,
    TOKEN_PRIVATE,
    TOKEN_OVERRIDE,
    TOKEN_ARRAY,
    TOKEN_YIELD,
    TOKEN_LABEL,
    TOKEN_END_OF_FILE
} token_type_t;

struct token_common_t
{
    token_type_t	type;
    char *		string;
    int			line;
    int			begin_pos;
    int			end_pos;

    /* Used by the parser */
    gboolean		err;
};

struct token_identifier_t
{
    token_common_t	common;
    char *		name;
};

struct token_int_literal_t
{
    token_common_t	common;
    int			value;
};

struct token_float_literal_t
{
    token_common_t	common;
    double		value;
};

struct token_string_literal_t
{
    token_common_t	common;
    char *		value;
};

union token_t
{
    token_type_t		type;
    token_common_t		common;
    token_identifier_t		identifier;
    token_string_literal_t	string_literal;
    token_int_literal_t		int_literal;
    token_float_literal_t	float_literal;
};

/*
 * Parser
 */
struct ast_common_t
{
    ast_type_t				type;
    ast_t *				parent;
    GQueue *				children;

    GQueue *				predecessors;
    GQueue *				successors;

    gsize				magic;
};

/*
 * Defs
 */
struct ast_definition_common_t
{
    ast_common_t			common;
    ast_definition_type_t		type;
};

struct ast_function_definition_t
{
    ast_definition_common_t		common;

    char *				name;
    ast_variable_definition_t **	parameters;
    ast_type_spec_t *			return_type;
    ast_statement_t *			body;

    symbol_table_t *			symbol_table;
    ast_type_spec_t *			type_spec;

    int					level;
    int					env_size;

    node_t *				enter;
    node_t *				exit;
    node_t *				end;
};

struct ast_class_definition_t
{
    ast_definition_common_t		common;

    char *				name;
    ast_statement_t *			statement;

    ast_type_spec_t *			type_spec;

    int					level;
    int					env_size;

    symbol_table_t *			symbol_table;
};

struct ast_type_definition_t
{
    ast_definition_common_t		common;

    char *				name;
    ast_type_spec_t *			type_spec;
};

struct ast_variable_definition_t
{
    ast_definition_common_t		common;

    char *				name;
    ast_type_spec_t *			type_spec;
    int					offset;
    int					level;

    gboolean				field;
    gboolean				parameter;
    gboolean				used;
};

struct ast_label_definition_t
{
    ast_definition_common_t		common;

    char *				name;
    ast_label_statement_t *		statement;
    int					level;
};

/* Statements */
struct ast_statement_common_t
{
    ast_common_t			common;
    ast_statement_type_t		type;
};

struct ast_definition_statement_t
{
    ast_statement_common_t		common;

    ast_definition_t *			def;
};

struct ast_print_statement_t
{
    ast_statement_common_t		common;

    ast_expression_t **			exprs;
};

struct ast_loop_statement_t
{
    ast_statement_common_t		common;

    ast_statement_t *			init;
    ast_expression_t *			condition;
    ast_statement_t *			increment;
    ast_statement_t *			body;

    node_t *				start_node;
    node_t *				cont_node;
    node_t *				test_node;
    node_t *				done_node;
};

struct ast_if_statement_t
{
    ast_statement_common_t		common;

    ast_expression_t *			condition;
    ast_statement_t *			then_part;
    ast_statement_t *			else_part;

    node_t *				then_node;
    node_t *				else_node;
    node_t *				done_node;
};

struct ast_expression_statement_t
{
    ast_statement_common_t		common;

    ast_expression_t *			expr;
};

struct ast_compound_statement_t
{
    ast_statement_common_t		common;

    ast_statement_t *			first;
    ast_statement_t *			second;
};

struct ast_block_statement_t
{
    ast_statement_common_t		common;

    ast_statement_t *			body;
    symbol_table_t *			symbol_table;
};

struct ast_goto_statement_t
{
    ast_statement_common_t		common;

    ast_expression_t *			target;
};

struct ast_label_statement_t
{
    ast_statement_common_t		common;

    const char *			label;

    node_t *				node;

    ast_definition_t *			definition;
};

struct ast_return_statement_t
{
    ast_statement_common_t		common;

    ast_expression_t *			expr;
};

struct ast_switch_statement_t
{
    ast_statement_common_t		common;

    ast_expression_t *			condition;
    ast_case_t **			cases;

    node_t *				done_node;
};

/* Cases */
struct ast_case_common_t
{
    ast_common_t			common;
    ast_case_type_t			type;
    ast_statement_t *			statement;

    node_t *				label_node;
};

struct ast_expression_case_t
{
    ast_case_common_t			common;

    ast_expression_t *			expr;
};

union ast_case_t
{
    ast_case_common_t			common;
    ast_expression_case_t		expression;
};

/* Expressions */
struct ast_expression_common_t
{
    ast_common_t			common;

    gboolean				constant;
    value_t				constant_value;

    ast_expression_type_t		type;

    ast_type_spec_t *			type_spec;
    int					level;

    ast_variable_definition_t *		type_inferrer; /* Variable */
};

struct ast_int_literal_expression_t
{
    ast_expression_common_t		common;

    int					value;
};

struct ast_float_literal_expression_t
{
    ast_expression_common_t		common;

    double				value;
};

struct ast_bool_literal_expression_t
{
    ast_expression_common_t		common;

    gboolean				value;
};

struct ast_string_literal_expression_t
{
    ast_expression_common_t		common;

    char *				value;
};

struct ast_null_expression_t
{
    ast_expression_common_t		common;
};

struct ast_identifier_expression_t
{
    ast_expression_common_t		common;

    char *				name;

    ast_definition_t *			definition;
};

struct ast_binary_expression_t
{
    ast_expression_common_t		common;
    ast_binary_operator_t		operator;

    ast_expression_t *			left;
    ast_expression_t *			right;
};

struct ast_ternary_expression_t
{
    ast_expression_common_t		common;

    ast_expression_t *			cond;
    ast_expression_t *			then_expr;
    ast_expression_t *			else_expr;

    node_t *				then;
    node_t *				else_;
    node_t *				done;
};

struct ast_lambda_expression_t
{
    ast_expression_common_t		common;

    ast_function_definition_t *		function;
};

struct ast_call_expression_t
{
    ast_expression_common_t		common;

    ast_expression_t *			callee;
    ast_expression_t **			args;
};

struct ast_unary_expression_t
{
    ast_expression_common_t		common;
    ast_unary_operator_t		operator;

    ast_expression_t *			expr;
};

struct ast_statement_expression_t
{
    ast_expression_common_t		common;

    ast_statement_t *			statement;
    ast_expression_t *			expression;
};

struct ast_index_expression_t
{
    ast_expression_common_t		common;

    ast_expression_t *			left;
    ast_expression_t *			right;
};

struct ast_new_expression_t
{
    ast_expression_common_t		common;

    ast_type_spec_t *			type;
    ast_expression_t **			args;

    ast_definition_t *			definition;
};

struct ast_block_expression_t
{
    ast_expression_common_t		common;

    ast_expression_t *			body;

    symbol_table_t *			symbol_table;
};

struct ast_definition_expression_t
{
    ast_expression_common_t		common;

    ast_definition_t *			definition;
    ast_expression_t *			initializer;
};

struct ast_dot_expression_t
{
    ast_expression_common_t		common;

    ast_expression_t *			left;
    const char *			name;

    ast_definition_t *			definition;
};

/* Type spec */
struct ast_type_spec_common_t
{
    ast_common_t			common;
    ast_type_spec_type_t		type;
};

struct ast_identifier_type_spec_t
{
    ast_type_spec_common_t		common;

    const char *			name;

    ast_definition_t *			definition;
};

struct ast_function_type_spec_t
{
    ast_type_spec_common_t		common;

    ast_type_spec_t *			return_;
    ast_type_spec_t **			args;
};

struct ast_array_type_spec_t
{
    ast_type_spec_common_t		common;

    ast_type_spec_t *			child_type;
};

struct ast_object_type_spec_t
{
    ast_type_spec_common_t		common;

    ast_class_definition_t *		class;
};

/* Program */
struct ast_program_t
{
    ast_common_t			common;

    ast_function_definition_t **	functions;

    ast_statement_t *			statement;
    int					env_size;

    symbol_table_t *			symbol_table;

    node_t *				enter;

    void *				tmp;
};

/* Unions */
union ast_expression_t
{
    ast_expression_common_t		common;
    ast_int_literal_expression_t	int_literal;
    ast_float_literal_expression_t	float_literal;
    ast_bool_literal_expression_t	bool_literal;
    ast_string_literal_expression_t	string_literal;
    ast_null_expression_t		null;
    ast_identifier_expression_t		identifier;
    ast_unary_expression_t		unary;
    ast_binary_expression_t		binary;
    ast_ternary_expression_t		ternary;
    ast_call_expression_t		call;
    ast_lambda_expression_t		lambda;
    ast_statement_expression_t		statement;
    ast_index_expression_t		index;
    ast_new_expression_t		new;
    ast_block_expression_t		block;
    ast_definition_expression_t		definition;
    ast_dot_expression_t		dot;
};

union ast_definition_t
{
    ast_definition_common_t		common;
    ast_function_definition_t		function;
    ast_class_definition_t		class;
    ast_variable_definition_t		variable;
    ast_type_definition_t		type;
    ast_label_definition_t		label;
};

union ast_statement_t
{
    ast_statement_common_t		common;
    ast_definition_statement_t		definition;
    ast_print_statement_t		print;
    ast_loop_statement_t		loop;
    ast_if_statement_t			if_;
    ast_switch_statement_t		switch_;
    ast_expression_statement_t		expression;
    ast_compound_statement_t		compound;
    ast_block_statement_t		block;
    ast_goto_statement_t		goto_;
    ast_label_statement_t		label;
    ast_return_statement_t		return_;
};

union ast_type_spec_t
{
    ast_type_spec_common_t		common;
    ast_identifier_type_spec_t		identifier;
    ast_function_type_spec_t		function;
    ast_array_type_spec_t		array;
    ast_object_type_spec_t		object;
};

union ast_t
{
    ast_type_t				type;
    ast_common_t			common;

    ast_case_t				case_;
    ast_statement_t			statement;
    ast_expression_t			expression;
    ast_program_t			program;
    ast_type_spec_t			type_spec;
    ast_definition_t			definition;
};

/* AST constructors */
ast_definition_t *ast_definition_new_function	  (const char *name,
						   ast_variable_definition_t **parameters,
						   ast_type_spec_t *return_type,
						   ast_statement_t *body);
ast_definition_t *ast_definition_new_class	  (const char *name,
						   ast_statement_t *statement);
ast_definition_t *ast_definition_new_variable     (const char *name,
						   ast_type_spec_t *type_spec);
ast_definition_t *ast_definition_new_type         (const char *name,
						   ast_type_spec_t *type_spec);
ast_definition_t *ast_definition_new_label        (const char *name,
						   ast_label_statement_t *label);

ast_statement_t * ast_statement_new_loop	  (ast_statement_t *init,
						   ast_expression_t *cond,
						   ast_statement_t *body,
						   ast_statement_t *increment);
ast_statement_t * ast_statement_new_if            (ast_expression_t *condition,
						   ast_statement_t *if_part,
						   ast_statement_t *else_part);
ast_case_t *      ast_case_new_default		  (ast_statement_t *statement);
ast_case_t *	  ast_case_new_expression	  (ast_expression_t *expression,
						   ast_statement_t *statement);
ast_statement_t * ast_statement_new_switch        (ast_expression_t *condition,
						   ast_case_t **cases);
ast_statement_t * ast_statement_new_definition    (ast_definition_t *definition);
ast_statement_t * ast_statement_new_print         (ast_expression_t **exprs);
ast_statement_t * ast_statement_new_expression    (ast_expression_t *expr);
ast_statement_t * ast_statement_new_compound      (ast_statement_t *first,
						   ast_statement_t *second);
ast_statement_t * ast_statement_new_block         (ast_statement_t *body);
ast_statement_t * ast_statement_new_goto          (ast_expression_t *target);
ast_statement_t * ast_statement_new_break	  (void);
ast_statement_t * ast_statement_new_continue      (void);
ast_statement_t * ast_statement_new_label	  (const char *label);
ast_statement_t * ast_statement_new_return        (ast_expression_t *expr);
ast_statement_t * ast_statement_new_empty         (void);
ast_expression_t *ast_expression_new_int_literal  (const token_t *token);
ast_expression_t *ast_expression_new_float_literal (const token_t *token);
ast_expression_t *ast_expression_new_string_literal (const char *s);
ast_expression_t *ast_expression_new_bool_literal (gboolean value);
ast_expression_t *ast_expression_new_null	  (void);
ast_expression_t *ast_expression_new_identifier   (const char *name);
ast_expression_t *ast_expression_new_unary        (ast_unary_operator_t op,
						   ast_expression_t     *child);
ast_expression_t *ast_expression_new_binary       (ast_binary_operator_t op,
						   ast_expression_t *left,
						   ast_expression_t *right);
ast_expression_t *ast_expression_new_ternary      (ast_expression_t *left,
						   ast_expression_t *middle,
						   ast_expression_t *right);
ast_expression_t *ast_expression_new_call	  (ast_expression_t *callee,
						   ast_expression_t **args);
ast_expression_t *ast_expression_new_lambda       (ast_function_definition_t *fun);
ast_expression_t *ast_expression_new_statement    (ast_statement_t *statement,
						   ast_expression_t *expr);
ast_expression_t *ast_expression_new_new          (ast_type_spec_t  *type,
						   ast_expression_t **args);
ast_expression_t *ast_expression_new_block        (ast_expression_t *body);
ast_expression_t *ast_expression_new_dot	  (ast_expression_t *left,
						   const char       *name);
ast_expression_t *ast_expression_new_index        (ast_expression_t *left,
						   ast_expression_t *right);
ast_expression_t *ast_expression_new_void	  (void);
ast_expression_t *ast_expression_new_this         (void);

ast_type_spec_t * ast_type_spec_new		  (ast_type_spec_type_t type);
ast_type_spec_t * ast_type_spec_new_identifier    (const char *name);
void              ast_type_spec_init_object	  (ast_type_spec_t *type_spec,
						   ast_class_definition_t *class);
ast_type_spec_t * ast_type_spec_new_object	  (ast_class_definition_t *class);
ast_type_spec_t * ast_type_spec_new_function	  (ast_type_spec_t *return_,
						   ast_type_spec_t **args);
ast_type_spec_t * ast_type_spec_new_array         (ast_type_spec_t *child);
int		  ast_type_spec_get_size	  (ast_type_spec_t *type);

ast_program_t *   ast_program_new		  (ast_statement_t *statement);
ast_definition_t *ast_class_definition_lookup_var (ast_class_definition_t *class,
						   const char *name);
gboolean	  ast_is			  (ast_t           *ast,
						   ast_type_t       type,
						   int              subtype);
ast_function_definition_t *ast_enclosing_function (ast_t           *ast);
ast_class_definition_t    *ast_enclosing_class    (ast_t           *ast);
ast_loop_statement_t      *ast_enclosing_loop     (ast_t           *ast);
ast_switch_statement_t    *ast_enclosing_switch   (ast_t           *ast);
ast_program_t             *ast_enclosing_program  (ast_t           *ast);
gboolean		   ast_encloses           (ast_t           *outer,
						   ast_t           *inner);
void                       ast_ensure_ast         (ast_t	   *ast);

void program_breadth_first (ast_program_t *program,
			    node_callback_t callback,
			    gpointer data);

/* Garbage Collector */
void  gc_init  (void);
void *gc_alloc (int n_bytes);

/* Phases */
token_t *scan           (const char      *input);
ast_t *  parse          (const token_t   *tokens);
gboolean prepare        (ast_t           *ast);
gboolean symbol         (ast_t           *ast);
gboolean type_check     (ast_t           *ast);
gboolean mark_constants (ast_t           *ast);
gboolean switch_check   (ast_t           *ast);
gboolean graph          (ast_t           *ast);
gboolean init_check     (ast_t           *ast);
gboolean return_check   (ast_t           *ast);
gboolean levels		(ast_t		 *ast);
gboolean optimize       (ast_t           *ast);
gboolean offsets        (ast_t           *ast);
void     interpret      (ast_t           *ast);

/* Driver */
ast_t *  compile        (const char      *input,
			 gboolean         do_optimize,
			 gboolean	  debug_spew);

/* Debug spew */
void     dump_program   (ast_program_t   *program);
void     dump_type_spec (ast_type_spec_t *type_spec);
void     dump_tokens    (token_t         *tokens);
void     dump_graph     (ast_program_t   *program);

/* Internal testing */
void     run_internal_tests (void);