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
|
#pragma once
// Logic defining ASTs (abstract syntax trees) to represent code
#include <err.h>
#include <gc/cord.h>
#include <printf.h>
#include <stdbool.h>
#include <stdint.h>
#include <stdlib.h>
#include "stdlib/datatypes.h"
#include "stdlib/files.h"
#include "stdlib/util.h"
#define NewAST(_file, _start, _end, ast_tag, ...) (new(ast_t, .file=_file, .start=_start, .end=_end,\
.tag=ast_tag, .__data.ast_tag={__VA_ARGS__}))
#define NewTypeAST(_file, _start, _end, ast_tag, ...) (new(type_ast_t, .file=_file, .start=_start, .end=_end,\
.tag=ast_tag, .__data.ast_tag={__VA_ARGS__}))
#define FakeAST(ast_tag, ...) (new(ast_t, .tag=ast_tag, .__data.ast_tag={__VA_ARGS__}))
#define WrapAST(ast, ast_tag, ...) (new(ast_t, .file=(ast)->file, .start=(ast)->start, .end=(ast)->end, .tag=ast_tag, .__data.ast_tag={__VA_ARGS__}))
#define TextAST(ast, _str) WrapAST(ast, TextLiteral, .str=GC_strdup(_str))
#define Match(x, _tag) ((x)->tag == _tag ? &(x)->__data._tag : (errx(1, __FILE__ ":%d This was supposed to be a " # _tag "\n", __LINE__), &(x)->__data._tag))
#define REVERSE_LIST(list) do { \
__typeof(list) _prev = NULL; \
__typeof(list) _next = NULL; \
auto _current = list; \
while (_current != NULL) { \
_next = _current->next; \
_current->next = _prev; \
_prev = _current; \
_current = _next; \
} \
list = _prev; \
} while(0)
struct binding_s;
typedef struct type_ast_s type_ast_t;
typedef struct ast_s ast_t;
typedef struct ast_list_s {
ast_t *ast;
struct ast_list_s *next;
} ast_list_t;
typedef struct arg_ast_s {
const char *name;
type_ast_t *type;
ast_t *value;
struct arg_ast_s *next;
} arg_ast_t;
typedef struct when_clause_s {
ast_t *tag_name;
ast_list_t *args;
ast_t *body;
struct when_clause_s *next;
} when_clause_t;
typedef enum {
BINOP_UNKNOWN,
BINOP_POWER=100, BINOP_MULT, BINOP_DIVIDE, BINOP_MOD, BINOP_MOD1, BINOP_PLUS,
BINOP_MINUS, BINOP_CONCAT, BINOP_LSHIFT, BINOP_RSHIFT, BINOP_MIN,
BINOP_MAX, BINOP_EQ, BINOP_NE, BINOP_LT, BINOP_LE, BINOP_GT, BINOP_GE,
BINOP_CMP,
BINOP_AND, BINOP_OR, BINOP_XOR,
} binop_e;
extern const char *binop_method_names[BINOP_XOR+1];
typedef enum {
UnknownTypeAST,
VarTypeAST,
PointerTypeAST,
ArrayTypeAST,
SetTypeAST,
ChannelTypeAST,
TableTypeAST,
FunctionTypeAST,
OptionalTypeAST,
} type_ast_e;
typedef struct tag_ast_s {
const char *name;
arg_ast_t *fields;
bool secret:1;
struct tag_ast_s *next;
} tag_ast_t;
struct type_ast_s {
type_ast_e tag;
file_t *file;
const char *start, *end;
union {
#pragma GCC diagnostic ignored "-Wpedantic"
struct {} UnknownTypeAST;
struct {
const char *name;
} VarTypeAST;
struct {
type_ast_t *pointed;
bool is_stack:1;
} PointerTypeAST;
struct {
type_ast_t *item;
} ArrayTypeAST, ChannelTypeAST;
struct {
type_ast_t *key, *value;
} TableTypeAST;
struct {
type_ast_t *item;
} SetTypeAST;
struct {
arg_ast_t *args;
type_ast_t *ret;
} FunctionTypeAST;
struct {
type_ast_t *type;
} OptionalTypeAST;
} __data;
};
typedef enum {
Unknown = 0,
Null, Bool, Var,
Int, Num,
TextLiteral, TextJoin, PrintStatement,
Declare, Assign,
BinaryOp, UpdateAssign,
Not, Negative, HeapAllocate, StackReference,
Min, Max,
Array, Channel, Set, Table, TableEntry, Comprehension,
FunctionDef, Lambda,
FunctionCall, MethodCall,
Block,
For, While, If, When,
Reduction,
Skip, Stop, Pass,
Defer,
Return,
Extern,
StructDef, EnumDef, LangDef,
Index, FieldAccess, Optional, NonOptional,
DateTime,
DocTest,
Use,
InlineCCode,
} ast_e;
struct ast_s {
ast_e tag;
file_t *file;
const char *start, *end;
union {
struct {} Unknown;
struct {
type_ast_t *type;
} Null;
struct {
bool b;
} Bool;
struct {
const char *name;
} Var;
struct {
const char *str;
enum { IBITS_UNSPECIFIED=0, IBITS_BYTE=7, IBITS8=8, IBITS16=16, IBITS32=32, IBITS64=64 } bits;
} Int;
struct {
double n;
enum { NBITS_UNSPECIFIED=0, NBITS32=32, NBITS64=64 } bits;
} Num;
struct {
CORD cord;
} TextLiteral;
struct {
const char *lang;
ast_list_t *children;
} TextJoin;
struct {
ast_list_t *to_print;
} PrintStatement;
struct {
ast_t *var;
ast_t *value;
} Declare;
struct {
ast_list_t *targets, *values;
} Assign;
struct {
ast_t *lhs;
binop_e op;
ast_t *rhs;
} BinaryOp, UpdateAssign;
struct {
ast_t *value;
} Not, Negative, HeapAllocate, StackReference;
struct {
ast_t *lhs, *rhs, *key;
} Min, Max;
struct {
type_ast_t *item_type;
ast_list_t *items;
} Array;
struct {
type_ast_t *item_type;
ast_t *max_size;
} Channel;
struct {
type_ast_t *item_type;
ast_list_t *items;
} Set;
struct {
type_ast_t *key_type, *value_type;
ast_t *fallback;
ast_list_t *entries;
} Table;
struct {
ast_t *key, *value;
} TableEntry;
struct {
ast_list_t *vars;
ast_t *expr, *iter, *filter;
} Comprehension;
struct {
ast_t *name;
arg_ast_t *args;
type_ast_t *ret_type;
ast_t *body;
ast_t *cache;
bool is_inline;
} FunctionDef;
struct {
arg_ast_t *args;
type_ast_t *ret_type;
ast_t *body;
int64_t id;
} Lambda;
struct {
ast_t *fn;
arg_ast_t *args;
} FunctionCall;
struct {
const char *name;
ast_t *self;
arg_ast_t *args;
} MethodCall;
struct {
ast_list_t *statements;
} Block;
struct {
ast_list_t *vars;
ast_t *iter, *body, *empty;
} For;
struct {
ast_t *condition, *body;
} While;
struct {
ast_t *condition, *body, *else_body;
} If;
struct {
ast_t *subject;
when_clause_t *clauses;
ast_t *else_body;
} When;
struct {
ast_t *iter, *combination, *fallback;
} Reduction;
struct {
const char *target;
} Skip, Stop;
struct {} Pass;
struct {
ast_t *body;
} Defer;
struct {
ast_t *value;
} Return;
struct {
const char *name;
type_ast_t *type;
} Extern;
struct {
const char *name;
arg_ast_t *fields;
ast_t *namespace;
bool secret:1;
} StructDef;
struct {
const char *name;
tag_ast_t *tags;
ast_t *namespace;
} EnumDef;
struct {
const char *name;
ast_t *namespace;
} LangDef;
struct {
ast_t *indexed, *index;
bool unchecked;
} Index;
struct {
ast_t *fielded;
const char *field;
} FieldAccess;
struct {
ast_t *value;
} Optional, NonOptional;
struct {
DateTime_t dt;
} DateTime;
struct {
ast_t *expr;
const char *output;
bool skip_source:1;
} DocTest;
struct {
ast_t *var;
const char *path;
enum { USE_LOCAL, USE_MODULE, USE_SHARED_OBJECT, USE_HEADER, USE_C_CODE, USE_ASM } what;
} Use;
struct {
CORD code;
struct type_s *type;
type_ast_t *type_ast;
} InlineCCode;
} __data;
};
CORD ast_to_xml(ast_t *ast);
CORD type_ast_to_xml(type_ast_t *ast);
int printf_ast(FILE *stream, const struct printf_info *info, const void *const args[]);
PUREFUNC bool is_idempotent(ast_t *ast);
void visit_topologically(ast_list_t *ast, Closure_t fn);
// vim: ts=4 sw=0 et cino=L2,l1,(0,W4,m1,\:0
|