summaryrefslogtreecommitdiff
path: root/interpreter/lookup_symbols.c
blob: 271d0c8889173aff26871b3cf4097ab1a4b7af34 (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
/* $Id: lookup_symbols.c 4974 2010-10-18 17:10:52Z potyra $
 * Interpreter library: resolve labels/references.
 *
 * Copyright (C) 2008-2009 FAUmachine Team <info@faumachine.org>.
 * This program is free software. You can redistribute it and/or modify it
 * under the terms of the GNU General Public License, either version 2 of
 * the License, or (at your option) any later version. See COPYING.
 */

#include "lookup_symbols.h"
#include "kernel.h" /* for driver/signal struct */
#include <stdlib.h>
#include <assert.h>
#include <string.h>
#include <stdbool.h>
#include "glue-log.h"

#define ARRAY_SIZE(t)	(sizeof t / sizeof(t[0]))

struct symbol_table_label {
	const char *name;
	struct slist_entry *target;
};

struct symbol_table_type {
	const char *name;
	struct type_declaration *type;
};

struct symbol_table_container_ref {
	const char *name;
	unsigned int nesting;
	struct code_container *container;
	struct symbol_table_container_ref *next;
	struct symbol_table_container_ref *prev;
};

struct symbol_table_data_ref {
	const char *name;
	unsigned int nesting;
	const struct data_definition *definition;
	struct symbol_table_data_ref *next;
	struct symbol_table_data_ref *prev;
};

struct symbol_table {
	unsigned int nlabels;
	unsigned int ntypes;
	/* labels are only valid in one container's text segment,
	 * so these will just be stuffed into one array */
	struct symbol_table_label labels[10000];
	struct symbol_table_type type[1000];
	/* container head and tail pointer */
	struct symbol_table_container_ref *container_head;
	struct symbol_table_container_ref *container_tail;
	/* data head and tail pointer */
	struct symbol_table_data_ref *data_head;
	struct symbol_table_data_ref *data_tail;
	/* hacky store the callbacks there for logging */
	const struct glue_vhdl_cb *callbacks;
};

static void
symbol_resolve_type_elements(
	const struct symbol_table *symtab,
	struct type_declaration *type_decl
);


static void
symbol_label_add(
	struct symbol_table *symtab,
	const char *name,
	struct slist_entry *entry
)
{
	assert(symtab->nlabels < ARRAY_SIZE(symtab->labels));
	symtab->labels[symtab->nlabels].name = name;
	symtab->labels[symtab->nlabels].target = entry;
	symtab->nlabels++;
}

static void
symtab_clear_labels(struct symbol_table *symtab)
{
	symtab->nlabels = 0;
}

/** remove every container reference entry that has a nesting level
 *  >= nesting_level.
 *  @param symtab symbol table instance.
 *  @param nesting_level remove entries >= nesting_level.
 */
static void
symtab_remove_container_refs(
	struct symbol_table *symtab, 
	unsigned int nesting_level
)
{
	struct symbol_table_container_ref *i = symtab->container_tail;
	struct symbol_table_container_ref *j;

	while (i != NULL) {
		if (i->nesting < nesting_level) {
			break;
		}

		j = i;
		i = i->prev;
		symtab->callbacks->free(j);
	}

	if (i == NULL) {
		symtab->container_head = NULL;
		symtab->container_tail = NULL;
	} else {
		i->next = NULL;
		symtab->container_tail = i;
	}
}

static void
symtab_register_container_ref(
	struct symbol_table *symtab,
	struct code_container *container,
	unsigned int nesting_level
)
{
	struct symbol_table_container_ref *ref;

	ref = symtab->callbacks->malloc(
				sizeof(struct symbol_table_container_ref));
	assert(ref != NULL);

	ref->name = container->name;
	ref->nesting = nesting_level;
	ref->container = container;
	ref->next = NULL;
	ref->prev = symtab->container_tail;

	if (symtab->container_tail == NULL) {
		symtab->container_head = ref;
		symtab->container_tail = ref;
	} else {
		assert(symtab->container_tail->nesting <= nesting_level);
		symtab->container_tail->next = ref;
		symtab->container_tail = ref;
	}
}

static void
symtab_register_data_ref(
	struct symbol_table *symtab,
	const struct data_definition *data,
	unsigned int nesting_level
)
{
	struct symbol_table_data_ref *ref;

	ref = symtab->callbacks->malloc(sizeof(struct symbol_table_data_ref));
	assert(ref != NULL);
	assert(data->nesting_level == nesting_level);

	ref->name = data->name;
	ref->nesting = nesting_level;
	ref->next = NULL;
	ref->prev = symtab->data_tail;
	ref->definition = data;

	if (symtab->data_tail == NULL) {
		symtab->data_tail = ref;
		symtab->data_head = ref;
	} else {
		assert(symtab->data_tail->nesting <= nesting_level);
		symtab->data_tail->next = ref;
		symtab->data_tail = ref;
	}
}

static void
symtab_remove_data_refs(
	struct symbol_table *symtab, 
	unsigned int nesting_level
)
{
	struct symbol_table_data_ref *i = symtab->data_tail;
	struct symbol_table_data_ref *j;

	while (i != NULL) {
		if (i->nesting < nesting_level) {
			break;
		}

		j = i;
		i = i->prev;
		symtab->callbacks->free(j);
	}

	if (i == NULL) {
		symtab->data_tail = NULL;
		symtab->data_head = NULL;
	} else {
		symtab->data_tail = i;
		i->next = NULL;
	}
}

static void
symbol_type_add(
	struct symbol_table *symtab,
	struct type_declaration *type
)
{
	assert(symtab->ntypes < ARRAY_SIZE(symtab->type));
	symtab->type[symtab->ntypes].name = type->name;
	symtab->type[symtab->ntypes].type = type;
	symtab->ntypes++;
}

static struct type_declaration *
symbol_lookup_type(
	const struct symbol_table *symtab,
	const char *name
)
{
	unsigned int i;
	for (i = 0; i < symtab->ntypes; i++) {
		if (strcmp(name, symtab->type[i].name) == 0) {
			return symtab->type[i].type;
		}
	}

	return NULL;
}

/** resolve one type element
 *  @param symtab symbol table instance.
 *  @param elem element to resolve
 *  @param offset number of basic element before this type element.
 *  @return number of basic elements of this type element.
 */
static int
symbol_resolve_type_element(
	const struct symbol_table *symtab,
	struct type_element *elem,
	int offset
)
{
	struct type_declaration *type_decl;

	assert(elem != NULL);
	elem->offset = offset;
	type_decl = symbol_lookup_type(symtab, elem->name);
	
	if (type_decl == NULL) {
		symtab->callbacks->log(
			FAUHDLI_LOG_ERROR, "fauhdli", "symboltable",
			"Cannot lookup type %s\n", elem->name);
		return 0;
	}

	/* type already seen? */
	if (type_decl->elem_count == -1) {
		symbol_resolve_type_elements(symtab, type_decl);
		assert(type_decl->elem_count != -1); 
	}

	elem->elem_count = elem->elements * type_decl->elem_count;
	elem->type = type_decl;
	return elem->elem_count;
}

static void
symbol_resolve_type_elements(
	const struct symbol_table *symtab,
	struct type_declaration *type_decl
)
{
	struct slist_entry *i;
	int offset = 0;
	
	if (type_decl->elements == NULL) {
		/* must be a builtin type. */
		assert(type_decl->elem_count != -1);
		return;
	}

	for (i = type_decl->elements->first; i != NULL; i = i->next) {
		struct type_element *elem = (struct type_element *)i->data;

		offset += symbol_resolve_type_element(symtab, elem, offset);
	}
	type_decl->elem_count = offset;
}

static size_t
symtab_get_data_size(const struct data_definition *data)
{
	size_t basic_size = 0;

	if (data->type->elem_count < 0) {
		/* can only happen, if resolution failed before */
		assert(0);
		return 0;
	}
	
	basic_size = sizeof(union fauhdli_value);
	return basic_size * data->type->elem_count;
}

/** determine the complete storage size of one segment.
 *  @param seg data or transfer segmenet
 *  @return storage size of the segment in bytes.
 */
static size_t
symtab_get_seg_size(struct slist *seg)
{
	struct slist_entry *i;
	size_t offset = 0;
	size_t sz;

	for (i = seg->first; i != NULL; i = i->next) {
		struct data_definition *d = 
			(struct data_definition *)i->data;

		d->offset = offset;
		sz = symtab_get_data_size(d);
		d->storage_size = sz;
		offset += sz;
	}

	return offset;
}

static const struct data_definition *
symbol_data_reference_resolve(
	const struct symbol_table *symtab,
	const char *name
)
{
	struct symbol_table_data_ref *i;

	for (i = symtab->data_head; i != NULL; i = i->next) {
		if (strcmp(i->name, name) == 0) {
			assert(i->definition != NULL);
			return i->definition;
		}
	}

	symtab->callbacks->log(
		FAUHDLI_LOG_WARNING, "fauhdli", "symboltable",
		"cannot resolve reference \"%s\"\n", name);
	return NULL;
}

static const struct symbol_table_label *
symbol_label_resolve(const struct symbol_table *symtab, const char *name)
{
	unsigned int i;
	for (i = 0; i < symtab->nlabels; i++) {
		if (strcmp(name, symtab->labels[i].name) == 0) {
			return &symtab->labels[i];
		}
	}

	symtab->callbacks->log(
		FAUHDLI_LOG_ERROR, "fauhdli", "symboltable", 
		"cannot resolve label \"%s\"\n", name);
	return NULL;
}

static void
symtab_operand_container_resolve(
	const struct symbol_table *symtab, 
	struct operand *op
)
{
	struct symbol_table_container_ref *i;
	const char *name;

	assert(op->kind == OPERAND_REFERENCE);
	name = op->bytype.data.name;

	for (i = symtab->container_head; i != NULL; i = i->next) {
		if (strcmp(i->name, name) == 0) {
			op->bytype.data.container = i->container;
			op->bytype.data.ref = NULL;
			return;
		}
	}

	symtab->callbacks->log(FAUHDLI_LOG_ERROR, "fauhdli", "symbol_table",
		"could not resolve function/container %s\n", name);
	op->bytype.data.container = NULL;
}

static void
symtab_resolver_resolve(
	const struct symbol_table *symtab,
	struct data_definition *data
)
{
	struct symbol_table_container_ref *i;

	if (data->resolver.name == NULL) {
		return;
	}

	for (i = symtab->container_head; i != NULL; i = i->next) {
		if (strcmp(i->name, data->resolver.name) == 0) {
			data->resolver.container = i->container;
			symtab->callbacks->free(data->resolver.name);
			return;
		}
	}

	symtab->callbacks->log(FAUHDLI_LOG_ERROR, "fauhdli", "symbol_table",
		"could not resolver resolution function %s\n",
		data->resolver.name);
}


static void
symtab_resolve_transfer(
	const struct code_container *container,
	struct operand *tref,
	const struct glue_vhdl_cb *callbacks
)
{
	struct slist_entry *i;
	struct data_definition *d;

	assert(tref->kind == OPERAND_REFERENCE);

	if (container->transfer_segment == NULL) {
		callbacks->log(FAUHDLI_LOG_ERROR, "fauhdli", "symboltable",
			"Cannot resolve transfer reference \"%s\", since "
			"\"%s\" has no transfer paremeters.\n",
			tref->bytype.data.name, container->name);
		return;
	}

	for (i = container->transfer_segment->first; i != NULL; i = i->next) {
		d = (struct data_definition *)i->data;

		if (strcmp(d->name, tref->bytype.data.name) == 0) {
			/* matching entry */
			tref->bytype.data.ref = d;
			tref->bytype.data.container = NULL;
			return;
		}
	}

	callbacks->log(FAUHDLI_LOG_ERROR, "fauhdli", "symboltable",
		"cannot resolve transfer element \"%s\" in "
		"container \"%s\"\n", tref->bytype.data.name, 
		container->name);
}


static void
symtab_operand_resolve(
	struct symbol_table *symtab, 
	struct operand *op
)
{
	const struct symbol_table_label *entry;
	const struct data_definition *ref;

	switch (op->kind) {
	case OPERAND_TARGET:
		entry = symbol_label_resolve(symtab, 
					op->bytype.target.name);
		op->bytype.target.ref = entry->target;
		break;

	case OPERAND_REFERENCE:
		ref = symbol_data_reference_resolve(symtab,
					op->bytype.data.name);
		op->bytype.data.ref = ref;
		op->bytype.data.container = NULL;
		break;

	default:
		break;
	}
}

static void
symtab_opcode_resolve(
	struct symbol_table *symtab, 
	struct opcode *opcode
)
{
	const struct annotation_spec *spec = 
		fauhdli_find_annotation("foreign", opcode->annotations);

	/* special handling for opcodes that have container references */
	switch (opcode->kind) {
	case OPCODE_BEGINTRANS:
	case OPCODE_ENDTRANS:
	case OPCODE_CALL:
	case OPCODE_PROC:
		/* op1: container */
		assert(opcode->op1 != NULL);
		if (spec != NULL) {
			/* don't resolve the container for foreign 
			 * function call opcodes */
			return;
		}
		symtab_operand_container_resolve(symtab, opcode->op1);
		return;

	case OPCODE_SETPARAM:
		/* op2: container, op3: transfer element of container op2 */
		assert(opcode->op1 != NULL);
		assert(opcode->op2 != NULL);
		assert(opcode->op3 != NULL);

		symtab_operand_resolve(symtab, opcode->op1);

		if (spec != NULL) {
			/* don't resolve containers of foreign setparam */
			return;
		}
		symtab_operand_container_resolve(symtab, opcode->op2);

		assert(opcode->op2->kind == OPERAND_REFERENCE);
		assert(opcode->op2->bytype.data.container != NULL);

		symtab_resolve_transfer(
				opcode->op2->bytype.data.container,
				opcode->op3,
				symtab->callbacks);
		return;
	
	case OPCODE_GETPARAM:
		/* op2: container, op1: transfer element of container op2 */
		assert(opcode->op1 != NULL);
		assert(opcode->op2 != NULL);
		assert(opcode->op3 != NULL);

		symtab_operand_resolve(symtab, opcode->op3);
		if (spec != NULL) {
			/* don't resolve containers of foreign setparam */
			return;
		}
		symtab_operand_container_resolve(symtab, opcode->op2);

		assert(opcode->op2->kind == OPERAND_REFERENCE);
		assert(opcode->op2->bytype.data.container != NULL);

		symtab_resolve_transfer(
				opcode->op2->bytype.data.container,
				opcode->op1,
				symtab->callbacks);
		return;

	case OPCODE_AOFFSET:
	case OPCODE_ROFFSET:
		assert(opcode->indexed_type != NULL);
		symbol_resolve_type_element(symtab, opcode->indexed_type, 0);
		break;

	default:
		break;
	}

	if (opcode->op1 != NULL) {
		symtab_operand_resolve(symtab, opcode->op1);
	}

	if (opcode->op2 != NULL) {
		symtab_operand_resolve(symtab, opcode->op2);
	}

	if (opcode->op3 != NULL) {
		symtab_operand_resolve(symtab, opcode->op3);
	}
}

static void
symtab_register_labels(
	struct symbol_table *symtab,
	struct slist *text_seg
)
{
	struct slist_entry *i;
	struct opcode *opcode;

	for (i = text_seg->first; i != NULL; i = i->next) {
		opcode = (struct opcode*)i->data;

		switch (opcode->kind) {
		case OPCODE_LABEL:
			assert(opcode->label != NULL);
			symbol_label_add(symtab, opcode->label, i);
			break;

		default:
			break;
		}
	}
}

static void
symtab_resolve_text_seg(
	struct symbol_table *symtab,
	struct slist *seg
)
{
	struct slist_entry *i;

	for (i = seg->first; i != NULL; i = i->next) {
		symtab_opcode_resolve(
			symtab,
			(struct opcode*)i->data
		);
	}
}

static void
symtab_register_data(
	struct symbol_table *symtab,
	struct slist *seg,
	unsigned int nesting_level,
	enum segment_kind loc
)
{
	struct slist_entry *i;
	struct data_definition *d;

	for (i = seg->first; i != NULL; i = i->next) {
		d = (struct data_definition *)i->data;

		d->nesting_level = nesting_level;
		d->loc = loc;
		symtab_register_data_ref(symtab, d, nesting_level);

		symbol_resolve_type_element(symtab, d->type, 0);
		symtab_resolver_resolve(symtab,	d);
	}
}

static void
symtab_register_types(struct symbol_table *symtab, struct slist *seg)
{
	struct slist_entry *i;
	struct type_declaration *t;

	for (i = seg->first; i != NULL; i = i->next) {
		t = (struct type_declaration *)i->data;
		
		symbol_type_add(symtab, t);
		symbol_resolve_type_elements(symtab, t);
	}
}


static void
symtab_walk_container(
	struct symbol_table *symtab, 
	struct code_container *container,
	unsigned int nesting_level
)
{
	struct slist_entry *i;

	container->nesting_level = nesting_level;
	symtab_register_container_ref(symtab, container, nesting_level);

	if (container->type_definitions != NULL) {
		symtab_register_types(symtab, container->type_definitions);
	}

	if (container->transfer_segment != NULL) {
		symtab_register_data(symtab, container->transfer_segment, 
					nesting_level, SEGMENT_TRANSFER);
		container->transfer_size = 
			symtab_get_seg_size(container->transfer_segment);
	} else {
		container->transfer_size = 0;
	}

	if (container->stack_segment != NULL) {
		symtab_register_data(symtab, container->stack_segment,
					nesting_level, SEGMENT_STACK);
		container->stack_size = 
			symtab_get_seg_size(container->stack_segment);
	} else {
		container->stack_size = 0;
	}

	if (container->sub_containers != NULL) {
		for (i = container->sub_containers->first; i != NULL; 
			i = i->next) {

			symtab_walk_container(
				symtab, 
				(struct code_container*)i->data,
				nesting_level + 1
			);
		}
	}

	if (container->text_segment != NULL) {
		symtab_register_labels(
				symtab,
				container->text_segment
		);
		symtab_resolve_text_seg(symtab, container->text_segment);
		symtab_clear_labels(symtab);
	}

	symtab_remove_container_refs(symtab, nesting_level + 1);
	symtab_remove_data_refs(symtab, nesting_level);
}

static void
symbol_table_register_builtins(
	struct fauhdli *instance, 
	struct symbol_table *symtab
)
{
	/* universal_integer */
	static struct type_declaration univ_int_t = {
		.elements = NULL, /* internal */
		.elem_count = 1
	};

	/* universal_real */
	static struct type_declaration univ_real_t = {
		.elements = NULL, /* internal */
		.elem_count = 1
	};

	static struct type_declaration base_pointer_t = {
		.elements = NULL, /* internal */
		.elem_count = 1
	};

	univ_int_t.name = strdup("universal_integer");
	slset_add(
		instance->cleanup_ptrs, 
		univ_int_t.name, 
		symtab->callbacks->malloc);

	univ_real_t.name = strdup("universal_real");
	slset_add(
		instance->cleanup_ptrs, 
		univ_real_t.name,
		symtab->callbacks->malloc);

	base_pointer_t.name = strdup("__pointer__");
	slset_add(
		instance->cleanup_ptrs, 
		base_pointer_t.name,
		symtab->callbacks->malloc);

	symbol_type_add(symtab, &univ_int_t);
	symbol_type_add(symtab, &univ_real_t);
	symbol_type_add(symtab, &base_pointer_t);

	/* TODO: builtin functions */
}

static void
symbol_table_init(struct fauhdli *instance, struct symbol_table *symtab)
{
	symtab->nlabels = 0;
	symtab->ntypes = 0;
	symtab->container_head = NULL;
	symtab->container_tail = NULL;
	symtab->data_head = NULL;
	symtab->data_tail = NULL;
	symtab->callbacks = &instance->callbacks;

	symbol_table_register_builtins(instance, symtab);
}

void
fauhdli_resolve_symbols(struct fauhdli *instance)
{
	struct symbol_table symtab;

	assert(instance->container != NULL);
	symbol_table_init(instance, &symtab);

	symtab_walk_container(&symtab, instance->container, 1);
	symtab_remove_container_refs(&symtab, 0);
}