summaryrefslogtreecommitdiff
path: root/package.c
blob: 0d7074bc917f65624bbb2107fcdbf62cac52ad7b (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
/*
  Copyright (C) 2019, 2020 Leo Tenenbaum.
  This file is part of toc. toc is distributed under version 3 of the GNU General Public License, without any warranty whatsoever.
  You should have received a copy of the GNU General Public License along with toc. If not, see <https://www.gnu.org/licenses/>.
*/

#define TOP_FMT_VERSION 0

static bool export_decl(Exporter *ex, Declaration *d);
static bool export_block(Exporter *ex, Block *b);
static bool export_expr(Exporter *ex, Expression *e);
static bool import_footer(Importer *i);
static void import_decl(Importer *im, Declaration *d);
static void import_expr(Importer *im, Expression *e);

static void exptr_create(Exporter *ex, FILE *out) {
	ex->out = out;
	ex->ident_id = 0;
	ex->exported_fns = NULL;
	ex->exported_structs = NULL;
	ex->exported_idents = NULL;
	ex->started = false;
	ex->code = NULL;
}

static inline void *imptr_malloc(Importer *i, size_t n) {
	return allocr_malloc(i->allocr, n);
}


static inline void export_u8(Exporter *ex, U8 u8) {
	write_u8(ex->out, u8);
}
static inline U8 import_u8(Importer *i) {
	return read_u8(i->in);
}
static inline void export_i8(Exporter *ex, I8 i8) {
	write_i8(ex->out, i8);
}
static inline I8 import_i8(Importer *i) {
	return read_i8(i->in);
}
static inline void export_u16(Exporter *ex, U16 u16) {
	write_u16(ex->out, u16);
}
static inline U16 import_u16(Importer *i) {
	return read_u16(i->in);
}
static inline void export_i16(Exporter *ex, I16 i16) {
	write_i16(ex->out, i16);
}
static inline I16 import_i16(Importer *i) {
	return read_i16(i->in);
}
static inline void export_u32(Exporter *ex, U32 u32) {
	write_u32(ex->out, u32);
}
static inline U32 import_u32(Importer *i) {
	return read_u32(i->in);
}
static inline void export_i32(Exporter *ex, I32 i32) {
	write_i32(ex->out, i32);
}
static inline I32 import_i32(Importer *i) {
	return read_i32(i->in);
}
static inline void export_u64(Exporter *ex, U64 u64) {
	write_u64(ex->out, u64);
}
static inline U64 import_u64(Importer *i) {
	return read_u64(i->in);
}
static inline void export_i64(Exporter *ex, I64 i64) {
	write_i64(ex->out, i64);
}
static inline I64 import_i64(Importer *i) {
	return read_i64(i->in);
}
static inline void export_f32(Exporter *ex, F32 f32) {
	write_f32(ex->out, f32);
}
static inline F32 import_f32(Importer *i) {
	return read_f32(i->in);
}
static inline void export_f64(Exporter *ex, F64 f64) {
	write_f64(ex->out, f64);
}
static inline F64 import_f64(Importer *i) {
	return read_f64(i->in);
}
static inline void export_bool(Exporter *ex, bool b) {
	write_bool(ex->out, b);
}
static inline bool import_bool(Importer *i) {
	return read_bool(i->in);
}
static inline void export_char(Exporter *ex, char c) {
	write_char(ex->out, c);
}
static inline bool import_char(Importer *i) {
	return read_char(i->in);
}
static inline void export_vlq(Exporter *ex, U64 x) {
	write_vlq(ex->out, x);
}
static inline U64 import_vlq(Importer *i) {
	return read_vlq(i->in);
}
static inline void export_len(Exporter *ex, size_t len) {
	export_vlq(ex, (U64)len);
}
static inline size_t import_len(Importer *i) {
	return (size_t)import_vlq(i);
}


static size_t import_arr_(Importer *im, void **arr, size_t sz) {
	*arr = NULL;
	size_t len = import_len(im);
	arr_set_lena_(arr, len, sz, im->allocr);
	return len;
}
/* 
reads length and allocates an array of that length
returns length 
*/
#define import_arr(im, arr) import_arr_(im, (void **)arr, sizeof **(arr))

static inline void export_str(Exporter *ex, const char *str, size_t len) {
#ifdef TOC_DEBUG
	for (size_t i = 0; i < len; ++i)
		export_char(ex, *str++);
#else
	fwrite(str, 1, len, ex->out);
#endif
}

static inline char *import_str(Importer *i, size_t len) {
	char *str = imptr_malloc(i, len+1);
	str[len] = 0;
	fread(str, 1, len, i->in);
	return str;
}

static void export_location(Exporter *ex, Location where) {
	/* for now, we only export the line */
	export_vlq(ex, (U64)where.start->pos.line);
}
static Location import_location(Importer *im) {
	Location l;
	l.start = NULL;
	l.simple_location = imptr_malloc(im, sizeof *l.simple_location);
	l.simple_location->ctx = &im->err_ctx;
	l.simple_location->line = (U32)import_vlq(im);
	return l;
}

/* handles NULL */
static inline void export_ident(Exporter *ex, Identifier i) {
	if (!i) {
		export_vlq(ex, 0);
		return;
	}
	
	if (!i->export_id) {
		i->export_id = ++ex->ident_id;
	}
	export_vlq(ex, i->export_id);
}
static inline Identifier import_ident(Importer *im) {
	U64 id = import_vlq(im);
	assert(id <= im->max_ident_id);
	return im->ident_map[id];
}

static const U8 toc_package_indicator[3] = {116, 111, 112};

/* writes the header */
static void exptr_start(Exporter *ex, const char *pkg_name, size_t pkg_name_len) {
	const char *code = ex->code;
	ex->started = true;
	export_u8(ex, toc_package_indicator[0]);
	export_u8(ex, toc_package_indicator[1]);
	export_u8(ex, toc_package_indicator[2]);
	export_u32(ex, TOP_FMT_VERSION);
	assert(ftell(ex->out) == 7L);
	export_u64(ex, 0); /* placeholder for identifier offset in file */
	export_len(ex, pkg_name_len);
	export_str(ex, pkg_name, pkg_name_len);
	
	bool has_code = code != NULL;
	export_bool(ex, has_code);
	if (has_code) {
		size_t len = strlen(code);
		export_len(ex, len);
		export_str(ex, code, len);
	}
}

/* where = where was this imported */
static bool import_pkg(Allocator *allocr, Package *p, FILE *f, const char *fname, Identifiers *parent_idents, ErrCtx *parent_ctx, Location where) {
	Importer i = {0};
	ErrCtx *err_ctx = &i.err_ctx;
	idents_create(&p->idents);
	i.pkg = p;
	i.in = f;
	i.import_location = where;
	i.allocr = allocr;
	*err_ctx = *parent_ctx;
	err_ctx->filename = fname;
	err_ctx->instance_stack = NULL;
	err_ctx->str = NULL;
	/* read header */
	U8 toc[3];
	toc[0] = import_u8(&i);
	toc[1] = import_u8(&i);
	toc[2] = import_u8(&i);
	if (toc[0] != toc_package_indicator[0] ||
		toc[1] != toc_package_indicator[1] ||
		toc[2] != toc_package_indicator[2]) {
		err_print(where, "%s is not a toc package file.", fname);
		return false;
	}
	U32 version_written = import_u32(&i);
	if (version_written != TOP_FMT_VERSION) {
		warn_print(where, "Warning: toc version mismatch. Package was created with version " U32_FMT " but version " STRINGIFY(TOP_FMT_VERSION) " is being used.\n"
				   "The package may be read incorrectly.",
				   version_written);
	}
	U64 ident_offset = import_u64(&i);
	size_t pkg_name_len = import_len(&i);
	char *pkg_name = import_str(&i, pkg_name_len);
	p->name = ident_get(parent_idents, pkg_name);
	bool has_code = import_bool(&i);
	if (has_code) {
		size_t code_len = import_len(&i);
		char *code = import_str(&i, code_len);
	    err_ctx->str = code;
	}
	long decls_offset = ftell(f);
	if (ident_offset > LONG_MAX) {
		err_print(where, "File %s is too large.", fname);
	}
	fseek(f, (long)ident_offset, SEEK_SET);
	/* read footer */
	if (!import_footer(&i))
		return false;
	fseek(f, decls_offset, SEEK_SET);
	/* read declarations */
	while (import_u8(&i)) {
		import_decl(&i, arr_add(&i.decls));
	}

	free(i.ident_map);
	return true;
}

/* needs to handle unresolved AND resolved types! (for fns with const params) */
static bool export_type(Exporter *ex, Type *type, Location where) {
	if (type->kind == TYPE_BUILTIN) {
		export_u8(ex, (U8)((int)type->builtin + TYPE_COUNT));
	} else {	
		export_u8(ex, (U8)type->kind);
	}
	assert(sizeof type->flags == 1);
	export_u8(ex, type->flags);
	switch (type->kind) {
	case TYPE_VOID:
	case TYPE_UNKNOWN:
	case TYPE_BUILTIN:
		break;
	case TYPE_PTR: export_type(ex, type->ptr, where); break;
	case TYPE_SLICE: export_type(ex, type->slice, where); break;
	case TYPE_TUPLE:
		export_len(ex, arr_len(type->tuple));
		arr_foreach(type->tuple, Type, sub)
			if (!export_type(ex, sub, where))
				return false;
		break;
	case TYPE_ARR:
		if (type->flags & TYPE_IS_RESOLVED)
			export_vlq(ex, type->arr.n);
		else
			if (!export_expr(ex, type->arr.n_expr))
				return false;
		
		if (!export_type(ex, type->arr.of, where))
			return false;
		break;
	case TYPE_FN:
		export_len(ex, arr_len(type->fn.types));
		arr_foreach(type->fn.types, Type, sub)
			if (!export_type(ex, sub, where))
				return false;
		export_bool(ex, type->fn.constness != NULL);
		/* [implied] if (type->fn.constness) */
		possibly_static_assert(sizeof(Constness) == 1); /* future-proofing */
		arr_foreach(type->fn.constness, Constness, c)
			export_u8(ex, *c);
		break;
	case TYPE_STRUCT: {
		StructDef *struc = type->struc;
		if (struc->export.id == 0) {
			StructDef **ptr = arr_add(&ex->exported_structs);
			*ptr = struc;
			size_t nexported_structs = arr_len(ex->exported_structs);
			if (nexported_structs > U32_MAX) {
				err_print(struc->where, "Too many exported structure definitions (the maximum is " STRINGIFY(U32_MAX) ").");
				return false;
			}
				
			struc->export.id = (U32)nexported_structs;
		}
		export_vlq(ex, (U64)struc->export.id);
	} break;
	case TYPE_EXPR:
		if (!export_expr(ex, type->expr))
			return false;
		break;
	}
	return true;
}

static inline Type *imptr_new_type(Importer *im) {
	return imptr_malloc(im, sizeof(Type));
}
static inline Expression *imptr_new_expr(Importer *im) {
	return imptr_malloc(im, sizeof(Expression));
}

static void import_type(Importer *im, Type *type) {
	U8 kind = import_u8(im);
	if (kind > TYPE_COUNT) {
		type->kind = TYPE_BUILTIN;
		type->builtin = (BuiltinType)(kind - TYPE_COUNT);
	} else {
		type->kind = (TypeKind)kind;
	}
	type->flags = import_u8(im);
	unsigned is_resolved = type->flags & TYPE_IS_RESOLVED;
	switch (type->kind) {
	case TYPE_VOID:
	case TYPE_BUILTIN:
	case TYPE_UNKNOWN:
		break;
	case TYPE_PTR:
		import_type(im, type->ptr = imptr_new_type(im));
		break;
	case TYPE_SLICE:
		import_type(im, type->slice = imptr_new_type(im));
		break;
	case TYPE_TUPLE: {
		size_t ntypes = import_arr(im, &type->tuple);
		for (size_t i = 0; i < ntypes; ++i) {
			import_type(im, &type->tuple[i]);
		}
	} break;
	case TYPE_ARR:
		if (is_resolved)
			type->arr.n = import_vlq(im);
		else
			import_expr(im, type->arr.n_expr = imptr_new_expr(im));
		import_type(im, type->arr.of = imptr_new_type(im));
		break;
	case TYPE_FN: {
		size_t i, ntypes = import_arr(im, &type->fn.types);
		for (i = 0; i < ntypes; ++i)
			import_type(im, &type->fn.types[i]);
		bool has_constness = import_bool(im);
		if (has_constness) {
			for (i = 0; i < ntypes; ++i)
				type->fn.constness[i] = import_u8(im);
		} else type->fn.constness = NULL;
	} break;
	case TYPE_STRUCT: {
		U64 struct_id = import_vlq(im);
		assert(struct_id);
		type->struc = &im->structs[struct_id - 1];
	} break;
	case TYPE_EXPR:
		import_expr(im, type->expr = imptr_new_expr(im));
		break;
	}
}

static bool export_fn_ptr(Exporter *ex, FnExpr *f, Location where) {
	if (f->export.id == 0) {
		FnExpr **fptr = arr_add(&ex->exported_fns);
		*fptr = f;
		size_t nexported_fns = arr_len(ex->exported_fns);
		if (nexported_fns > U32_MAX) {
			err_print(where, "Too many exported functions (the maximum is " STRINGIFY(U32_MAX) ").");
			return false;
		}
		f->export.id = (U32)nexported_fns;
	}
	export_len(ex, (size_t)f->export.id);
	return true;
}

static bool export_val(Exporter *ex, Value val, Type *type, Location where);
static bool export_val_ptr(Exporter *ex, void *val, Type *type, Location where) {
	switch (type->kind) {
	case TYPE_VOID: break;
	case TYPE_BUILTIN:
		switch (type->builtin) {
		case BUILTIN_I8: export_i8(ex, *(I8 *)val); break;
		case BUILTIN_U8: export_u8(ex, *(U8 *)val); break;
		case BUILTIN_I16: export_i16(ex, *(I16 *)val); break;
		case BUILTIN_U16: export_u16(ex, *(U16 *)val); break;
		case BUILTIN_I32: export_i32(ex, *(I32 *)val); break;
		case BUILTIN_U32: export_u32(ex, *(U32 *)val); break;
		case BUILTIN_I64: export_i64(ex, *(I64 *)val); break;
		case BUILTIN_U64: export_u64(ex, *(U64 *)val); break;
		case BUILTIN_F32: export_f32(ex, *(F32 *)val); break;
		case BUILTIN_F64: export_f64(ex, *(F64 *)val); break;
		case BUILTIN_BOOL: export_bool(ex, *(bool *)val); break;
		case BUILTIN_CHAR: export_char(ex, *(char *)val); break;
		case BUILTIN_TYPE:
			if (!export_type(ex, *(Type **)val, where))
				return false;
			break;
		case BUILTIN_PKG: {
			Package *pkg = *(Package **)val;
			export_ident(ex, pkg->name);
		} break;
		}
		break;
	case TYPE_TUPLE: {
		size_t n = arr_len(type->tuple);
		Value *vals = *(Value **)val;
		for (size_t i = 0; i < n; ++i) {
			if (!export_val(ex, vals[i], &type->tuple[i], where))
				return false;
		}
	} break;
	case TYPE_PTR:
		err_print(where, "Cannot export pointer.");
		return false;
	case TYPE_ARR: {
		size_t item_size = compiler_sizeof(type->arr.of);
		char *ptr = val;
		for (U64 i = 0; i < type->arr.n; ++i) {
			if (!export_val_ptr(ex, ptr, type->arr.of, where))
				return false;
			ptr += item_size;
		}
	} break;
	case TYPE_STRUCT:
		eval_struct_find_offsets(type);
		arr_foreach(type->struc->fields, Field, f) {
			if (!export_val_ptr(ex, (char *)val + f->offset, &f->type, where))
				return false;
		}
		break;
	case TYPE_SLICE: {
		Slice slice = *(Slice *)val;
		I64 n = slice.n;
		size_t item_size = compiler_sizeof(type->slice);
		export_i64(ex, n);
		char *ptr = slice.data;
		for (I64 i = 0; i < n; ++i) {
			if (!export_val_ptr(ex, ptr, type->slice, where))
				return false;
			ptr += item_size;
		}
	} break;
	case TYPE_FN:
		if (!export_fn_ptr(ex, *(FnExpr **)val, where))
			return false;
		break;
	case TYPE_UNKNOWN:
	case TYPE_EXPR:
		assert(0);
		return false;
	}
	return true;
}

static void import_val_ptr(Importer *im, void *v, Type *type) {
	switch (type->kind) {
	case TYPE_VOID: break;
	case TYPE_BUILTIN:
		switch (type->builtin) {
		case BUILTIN_I8: *(I8 *)v = import_i8(im); break;
		case BUILTIN_U8: *(U8 *)v = import_u8(im); break;
		case BUILTIN_I16: *(I16 *)v = import_i16(im); break;
		case BUILTIN_U16: *(U16 *)v = import_u16(im); break;
		case BUILTIN_I32: *(I32 *)v = import_i32(im); break;
		case BUILTIN_U32: *(U32 *)v = import_u32(im); break;
		case BUILTIN_I64: *(I64 *)v = import_i64(im); break;
		case BUILTIN_U64: *(U64 *)v = import_u64(im); break;
		case BUILTIN_F32: *(F32 *)v = import_f32(im); break;
		case BUILTIN_F64: *(F64 *)v = import_f64(im); break;
		case BUILTIN_BOOL: *(bool *)v = import_bool(im); break;
		case BUILTIN_CHAR: *(char *)v = import_char(im); break;
		case BUILTIN_TYPE:
			import_type(im, *(Type **)v = imptr_new_type(im));
			break;
		case BUILTIN_PKG:
			/* TODO */
			assert(0);
			break;
		}
	}
}

static inline bool export_val(Exporter *ex, Value val, Type *type, Location where) {
	return export_val_ptr(ex, val_get_ptr(&val, type), type, where);
}

static inline Value import_val(Importer *im, Type *type) {
	Value val;
	val = val_alloc(im->allocr, type);
	import_val_ptr(im, val_get_ptr(&val, type), type);
	return val;
}

static inline bool export_optional_val(Exporter *ex, Value *val, Type *type, Location where) {
	bool has_val = val != NULL;
	export_bool(ex, has_val);
	if (has_val) {
		return export_val(ex, *val, type, where);
	} else {
		return true;
	}
}

/* e can be NULL! */
static inline bool export_optional_expr(Exporter *ex, Expression *e) {
	bool has_e = e != NULL;
	export_bool(ex, has_e);
	if (has_e)
		return export_expr(ex, e);
	else
		return true;
}

static bool export_expr(Exporter *ex, Expression *e) {
	possibly_static_assert(sizeof e->flags == 1);
	export_u8(ex, (U8)e->flags);
	unsigned found_type = e->flags & EXPR_FOUND_TYPE;
    if (found_type) {
		if (!export_type(ex, &e->type, e->where))
			return false;
	}
	switch (e->kind) {
	case EXPR_LITERAL_INT:
		/* smaller int literals are more common */
		export_vlq(ex, e->intl);
		break;
	case EXPR_LITERAL_FLOAT:
		if (e->type.flags & TYPE_IS_FLEXIBLE || e->type.builtin == BUILTIN_F64)
			export_f64(ex, (F64)e->floatl);
		else
			export_f32(ex, (F32)e->floatl);
		break;
	case EXPR_LITERAL_BOOL:
		export_bool(ex, e->booll);
		break;
	case EXPR_LITERAL_CHAR:
		export_char(ex, e->charl);
		break;
	case EXPR_LITERAL_STR:
		fwrite(e->strl.str, 1, e->strl.len, ex->out);
		break;
	case EXPR_C:
		if (!export_expr(ex, e->c.code))
			return false;
		break;
	case EXPR_IDENT:
		export_ident(ex, e->ident);
		break;
	case EXPR_UNARY_OP:
		export_u8(ex, (U8)e->unary.op);
		if (!export_expr(ex, e->unary.of))
			return false;
		break;
	case EXPR_BINARY_OP:
		export_u8(ex, (U8)e->binary.op);
		if (!export_expr(ex, e->binary.lhs))
			return false;
		if (!export_expr(ex, e->binary.rhs))
			return false;
		break;
	case EXPR_VAL:
		if (!export_val(ex, e->val, &e->type, e->where))
			return false;
		break;
	case EXPR_TUPLE:
		export_len(ex, arr_len(e->tuple));
		arr_foreach(e->tuple, Expression, item)
			if (!export_expr(ex, item))
				return false;
		break;
	case EXPR_TYPE:
		if (!export_type(ex, &e->typeval, e->where))
			return false;
		break;
	case EXPR_FN:
		if (!export_fn_ptr(ex, e->fn, e->where))
			return false;
		break;
	case EXPR_BLOCK:
		if (!export_block(ex, &e->block))
			return false;
		break;
	case EXPR_NEW:
		if (!export_type(ex, &e->new.type, e->where))
			return false;
		if (!export_optional_expr(ex, e->new.n))
			return false;
		break;
	case EXPR_CAST:
		if (!export_expr(ex, e->cast.expr)
			|| !export_type(ex, &e->cast.type, e->where))
			return false;
		break;
	case EXPR_CALL: {
		CallExpr *c = &e->call;
		if (!export_expr(ex, c->fn))
			return false;
		if (found_type) {
			export_len(ex, arr_len(c->arg_exprs));
			arr_foreach(c->arg_exprs, Expression, arg)
				if (!export_expr(ex, arg))
					return false;
		} else {
			export_len(ex, arr_len(c->args));
			arr_foreach(c->args, Argument, arg) {
				export_location(ex, arg->where);
				export_ident(ex, arg->name);
				if (!export_expr(ex, &arg->val))
					return false;
			}
		}
	} break;
	case EXPR_IF: {
		IfExpr *i = &e->if_;
		if (!export_optional_expr(ex, i->cond))
			return false;
		if (!export_block(ex, &i->body)) return false;
		if (!export_optional_expr(ex, i->next_elif))
			return false;
	} break;
	case EXPR_WHILE: {
		WhileExpr *w = &e->while_;
		if (!export_optional_expr(ex, w->cond))
			return false;
		if (!export_block(ex, &w->body))
			return false;
	} break;
	case EXPR_PKG:
		if (found_type) {
			export_ident(ex, e->pkg.name_ident);
		} else {
			if (!export_expr(ex, e->pkg.name_expr))
				return false;
		}
		break;
	case EXPR_SLICE: {
		SliceExpr *s = &e->slice;
		if (!export_expr(ex, s->of)) return false;
		if (!export_optional_expr(ex, s->from))
			return false;
		if (!export_optional_expr(ex, s->to))
			return false;
	} break;
	case EXPR_EACH: {
		EachExpr *ea = e->each;
		export_u8(ex, ea->flags);
		if (!export_type(ex, &ea->type, e->where))
			return false;
		export_ident(ex, ea->index);
		export_ident(ex, ea->value);
		if (ea->flags & EACH_IS_RANGE) {
			if (!export_expr(ex, ea->range.from))
				return false;
			if (!export_optional_expr(ex, ea->range.to))
				return false;
			if (found_type) {
				if (!export_optional_val(ex, ea->range.stepval, &ea->type, e->where))
					return false;
			} else {
				if (!export_optional_expr(ex, ea->range.step))
					return false;
			}
		} else {
			if (!export_expr(ex, ea->of))
				return false;
		}
		if (!export_block(ex, &ea->body))
			return false;
	} break;
	}
	return true;
}

static void import_expr(Importer *im, Expression *e) {
	/* TODO */
	(void)im,(void)e;
}


static bool export_decl(Exporter *ex, Declaration *d) {
	assert(ex->started);
	possibly_static_assert(sizeof d->flags == 2);
	export_u16(ex, d->flags);

	unsigned found_type = d->flags & DECL_FOUND_TYPE;
	
	if (found_type && d->type.kind == TYPE_UNKNOWN) {
		err_print(d->where, "Can't export declaration of unknown type.");
		return false;
	}
	if (d->flags & DECL_EXPORT) {
		arr_foreach(d->idents, Identifier, ident) {
			if (!(*ident)->export_name) {
				Identifier *iptr = arr_add(&ex->exported_idents);
				*iptr = *ident;
				(*ident)->export_name = true;
			}
		}
	}
	
	export_location(ex, d->where);
	export_len(ex, arr_len(d->idents));
	arr_foreach(d->idents, Identifier, ident) {
		export_ident(ex, *ident);
	}

	if (found_type) {
		if (!export_type(ex, &d->type, d->where))
			return false;
	}
	if (d->flags & DECL_FOUND_VAL) {
		if (!export_val(ex, d->val, &d->type, d->where))
			return false;
	} else if (d->flags & DECL_HAS_EXPR) {
		if (!export_expr(ex, &d->expr))
			return false;
	}
	return true;
}

static void import_decl(Importer *im, Declaration *d) {
	d->flags = import_u16(im);
	possibly_static_assert(sizeof d->flags == 2);
	d->where = import_location(im);
	d->idents = NULL;
	size_t n_idents = import_arr(im, &d->idents);
	for (size_t i = 0; i < n_idents; ++i) {
		d->idents[i] = import_ident(im);
	}
	if (d->flags & DECL_FOUND_TYPE) {
		import_type(im, &d->type);
	}
	if (d->flags & DECL_FOUND_VAL) {
		d->val = import_val(im, &d->type);
		print_val(d->val, &d->type);
	} else if (d->flags & DECL_HAS_EXPR) {
	}
	exit(0);
}

/* exports a declaration. to be used by other files instead of export_decl. */
static bool export_decl_external(Exporter *ex, Declaration *d) {
	export_u8(ex, 1); /* indicate that there are more declarations */
	return export_decl(ex, d);
}

static bool export_stmt(Exporter *ex, Statement *s) {
	export_u8(ex, (U8)s->kind);
	switch (s->kind) {
	case STMT_EXPR:
		if (!export_expr(ex, &s->expr))
			return false;
		break;
	case STMT_DECL:
		if (!export_decl(ex, &s->decl))
			return false;
		break;
	case STMT_RET:
		assert(sizeof s->ret.flags == 1);
		export_u8(ex, (U8)s->ret.flags);
		if (s->ret.flags & RET_HAS_EXPR)
			if (!export_expr(ex, &s->ret.expr))
				return false;
		break;
	}
	return true;
}

static bool export_block(Exporter *ex, Block *b) {
	export_location(ex, b->where);
	export_len(ex, arr_len(b->stmts));
	arr_foreach(b->stmts, Statement, s) {
		if (!export_stmt(ex, s))
			return false;
	}
	if (!export_optional_expr(ex, b->ret_expr))
		return false;
	return true;
}

static bool export_fn(Exporter *ex, FnExpr *f) {
	export_len(ex, arr_len(f->params));
	arr_foreach(f->params, Declaration, param)
		if (!export_decl(ex, param))
			return false;
	export_len(ex, arr_len(f->ret_decls));
	arr_foreach(f->ret_decls, Declaration, ret_decl)
		if (!export_decl(ex, ret_decl))
			return false;
	/* no need to export the return type */
	if (!export_block(ex, &f->body))
		return false;
	return true;
}

static bool export_struct(Exporter *ex, StructDef *s) {
	export_ident(ex, s->name);
	if (s->name)
		*(Identifier *)arr_add(&ex->exported_idents) = s->name;
	export_len(ex, arr_len(s->fields));
	arr_foreach(s->fields, Field, f) {
		export_ident(ex, f->name);
		if (!export_type(ex, &f->type, s->where))
			return false;
	}
	return true;
}

static void import_struct(Importer *im, StructDef *s) {
	s->name = import_ident(im);
	size_t nfields = import_arr(im, &s->fields);
	for (size_t i = 0; i < nfields; ++i) {
		s->fields[i].name = import_ident(im);
		import_type(im, &s->fields[i].type);
	}
}

/* does NOT close the file */
static bool exptr_finish(Exporter *ex) {
	export_u8(ex, 0); /* no more declarations */
	
	long ident_offset = ftell(ex->out);

	fseek(ex->out, 7L, SEEK_SET);
	export_u64(ex, (U64)ident_offset);
	fseek(ex->out, 0L, SEEK_END);

	/* export total number of identifiers */
	long n_idents_offset = ftell(ex->out);
	export_u64(ex, 0); /* leave space for # of identifiers */
	
	/* export number of identifiers *whose names matter* */
	export_len(ex, arr_len(ex->exported_idents));
	arr_foreach(ex->exported_idents, Identifier, ident) {
		Identifier i = *ident;
		assert(i->export_name);
		export_vlq(ex, i->export_id);
		export_len(ex, ident_len(i));
		fprint_ident(ex->out, i);
	}
	
	export_len(ex, arr_len(ex->exported_structs));
	typedef StructDef *StructDefPtr;
	arr_foreach(ex->exported_structs, StructDefPtr, s) {
		if (!export_struct(ex, *s))
			return false;
	}
	arr_clear(&ex->exported_structs);

	export_len(ex, arr_len(ex->exported_fns));
	typedef FnExpr *FnExprPtr;
	arr_foreach(ex->exported_fns, FnExprPtr, f) {
		if (!export_fn(ex, *f))
			return false;
	}
	arr_clear(&ex->exported_fns);

	arr_clear(&ex->exported_idents);

	fseek(ex->out, n_idents_offset, SEEK_SET);
	export_u64(ex, ex->ident_id);

	if (ferror(ex->out)) {
		warn_print(LOCATION_NONE, "An error occured while writing the package output. It may be incorrect.");
	}
	
	return true;
}

static bool import_footer(Importer *im) {
	size_t i;
	im->max_ident_id = import_u64(im);
	
	im->ident_map = err_calloc(im->max_ident_id + 1, sizeof *im->ident_map);
	size_t n_named_idents = import_len(im);
	for (i = 0; i < n_named_idents; ++i) {
		U64 id = import_vlq(im);
		size_t name_len = import_vlq(im);
		char *name = err_malloc(name_len+1);
		name[name_len] = 0;
		fread(name, 1, name_len, im->in);
		char *copy = name; /* don't change the value of name */
		im->ident_map[id] = ident_insert(&im->pkg->idents, &copy);
		free(name);
	}
	for (i = 1; i <= im->max_ident_id; ++i) {
		if (!im->ident_map[i]) {
			im->ident_map[i] = ident_new_anonymous(&im->pkg->idents);
		}
	}

	size_t n_structs = import_arr(im, &im->structs);
#ifdef TOC_DEBUG
	/* for debugging: so that struct names show up as "anonymous struct" if they haven't been imported yet */
	arr_zero(im->structs);
#endif
	for (i = 0; i < n_structs; ++i) {
		import_struct(im, &im->structs[i]);
	}
	
	if (ferror(im->in)) {
		warn_print(im->import_location, "An error occured while reading the package. It may be incorrect.");
	}
	
	return true;
}