File: sig_std_logic.c

package info (click to toggle)
faumachine 20100527-2
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 53,836 kB
  • ctags: 20,552
  • sloc: ansic: 179,550; asm: 3,645; makefile: 3,611; perl: 2,103; sh: 1,529; python: 600; xml: 563; lex: 210; vhdl: 204
file content (293 lines) | stat: -rw-r--r-- 7,272 bytes parent folder | download | duplicates (2)
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
/*
 * $Id: sig_std_logic.c,v 1.8 2009-05-21 16:38:09 vrsieh Exp $
 *
 * Copyright (C) 2007-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 "config.h"

#include <assert.h>
#include <stdio.h>
#include <stdlib.h>

#include "fixme.h"

#include "sig_std_logic.h"

static unsigned int
sig_std_logic_resolve(unsigned int val0, unsigned int val1)
{
	switch (val0) {
	case SIG_STD_LOGIC_U: return SIG_STD_LOGIC_U;
	case SIG_STD_LOGIC_X: 
		switch (val1) {
		case SIG_STD_LOGIC_U: return SIG_STD_LOGIC_U;
		case SIG_STD_LOGIC_X: return SIG_STD_LOGIC_X;
		case SIG_STD_LOGIC_0: return SIG_STD_LOGIC_X;
		case SIG_STD_LOGIC_1: return SIG_STD_LOGIC_X;
		case SIG_STD_LOGIC_W: return SIG_STD_LOGIC_X;
		case SIG_STD_LOGIC_L: return SIG_STD_LOGIC_X;
		case SIG_STD_LOGIC_H: return SIG_STD_LOGIC_X;
		case SIG_STD_LOGIC_Z: return SIG_STD_LOGIC_X;
		default: assert(0);
		}
	case SIG_STD_LOGIC_0:
		switch (val1) {
		case SIG_STD_LOGIC_U: return SIG_STD_LOGIC_U;
		case SIG_STD_LOGIC_X: return SIG_STD_LOGIC_X;
		case SIG_STD_LOGIC_0: return SIG_STD_LOGIC_0;
		case SIG_STD_LOGIC_1: return SIG_STD_LOGIC_X;
		case SIG_STD_LOGIC_W: return SIG_STD_LOGIC_0;
		case SIG_STD_LOGIC_L: return SIG_STD_LOGIC_0;
		case SIG_STD_LOGIC_H: return SIG_STD_LOGIC_0;
		case SIG_STD_LOGIC_Z: return SIG_STD_LOGIC_0;
		default: assert(0);
		}
	case SIG_STD_LOGIC_1:
		switch (val1) {
		case SIG_STD_LOGIC_U: return SIG_STD_LOGIC_U;
		case SIG_STD_LOGIC_X: return SIG_STD_LOGIC_X;
		case SIG_STD_LOGIC_0: return SIG_STD_LOGIC_X;
		case SIG_STD_LOGIC_1: return SIG_STD_LOGIC_1;
		case SIG_STD_LOGIC_W: return SIG_STD_LOGIC_1;
		case SIG_STD_LOGIC_L: return SIG_STD_LOGIC_1;
		case SIG_STD_LOGIC_H: return SIG_STD_LOGIC_1;
		case SIG_STD_LOGIC_Z: return SIG_STD_LOGIC_1;
		default: assert(0);
		}
	case SIG_STD_LOGIC_W:
		switch (val1) {
		case SIG_STD_LOGIC_U: return SIG_STD_LOGIC_U;
		case SIG_STD_LOGIC_X: return SIG_STD_LOGIC_X;
		case SIG_STD_LOGIC_0: return SIG_STD_LOGIC_0;
		case SIG_STD_LOGIC_1: return SIG_STD_LOGIC_1;
		case SIG_STD_LOGIC_W: return SIG_STD_LOGIC_W;
		case SIG_STD_LOGIC_L: return SIG_STD_LOGIC_W;
		case SIG_STD_LOGIC_H: return SIG_STD_LOGIC_W;
		case SIG_STD_LOGIC_Z: return SIG_STD_LOGIC_W;
		default: assert(0);
		}
	case SIG_STD_LOGIC_L:
		switch (val1) {
		case SIG_STD_LOGIC_U: return SIG_STD_LOGIC_U;
		case SIG_STD_LOGIC_X: return SIG_STD_LOGIC_X;
		case SIG_STD_LOGIC_0: return SIG_STD_LOGIC_0;
		case SIG_STD_LOGIC_1: return SIG_STD_LOGIC_1;
		case SIG_STD_LOGIC_W: return SIG_STD_LOGIC_W;
		case SIG_STD_LOGIC_L: return SIG_STD_LOGIC_L;
		case SIG_STD_LOGIC_H: return SIG_STD_LOGIC_W;
		case SIG_STD_LOGIC_Z: return SIG_STD_LOGIC_L;
		default: assert(0);
		}
	case SIG_STD_LOGIC_H:
		switch (val1) {
		case SIG_STD_LOGIC_U: return SIG_STD_LOGIC_U;
		case SIG_STD_LOGIC_X: return SIG_STD_LOGIC_X;
		case SIG_STD_LOGIC_0: return SIG_STD_LOGIC_0;
		case SIG_STD_LOGIC_1: return SIG_STD_LOGIC_1;
		case SIG_STD_LOGIC_W: return SIG_STD_LOGIC_W;
		case SIG_STD_LOGIC_L: return SIG_STD_LOGIC_W;
		case SIG_STD_LOGIC_H: return SIG_STD_LOGIC_H;
		case SIG_STD_LOGIC_Z: return SIG_STD_LOGIC_H;
		default: assert(0);
		}
	case SIG_STD_LOGIC_Z:
		switch (val1) {
		case SIG_STD_LOGIC_U: return SIG_STD_LOGIC_U;
		case SIG_STD_LOGIC_X: return SIG_STD_LOGIC_X;
		case SIG_STD_LOGIC_0: return SIG_STD_LOGIC_0;
		case SIG_STD_LOGIC_1: return SIG_STD_LOGIC_1;
		case SIG_STD_LOGIC_W: return SIG_STD_LOGIC_W;
		case SIG_STD_LOGIC_L: return SIG_STD_LOGIC_L;
		case SIG_STD_LOGIC_H: return SIG_STD_LOGIC_H;
		case SIG_STD_LOGIC_Z: return SIG_STD_LOGIC_Z;
		default: assert(0);
		}
	default: assert(0);
	}
}

static void
sig_std_logic_flush(struct sig_std_logic *b)
{
	unsigned int i;
	unsigned int nr;

	for (i = 0; i < b->in_count; i++) {
		void (*func)(void *, unsigned int);
		unsigned int new_val;

		new_val = SIG_STD_LOGIC_Z;

		for (nr = 0; nr < b->out_count; nr++) {
			if (b->out[nr].s == b->in[i].s) continue;

			new_val = sig_std_logic_resolve(new_val, b->out[nr].out);
		}

		func = b->in[i].f->set_ext;
		if (func
		 && b->in[i].in != new_val) {
			b->in[i].in = new_val;
			func(b->in[i].s, new_val);
		}

		for (nr = 0; nr < b->out_count; nr++) {
			if (b->out[nr].s != b->in[i].s) continue;

			new_val = sig_std_logic_resolve(new_val, b->out[nr].out);
		}

		func = b->in[i].f->set;
		if (func
		 && b->in[i].in != new_val) {
			b->in[i].in = new_val;
			func(b->in[i].s, new_val);
		}
	}
}

void
sig_std_logic_set(struct sig_std_logic *b, void *s, unsigned int val)
{
	unsigned int nr;

	for (nr = 0; ; nr++) {
		if (nr == b->out_count) {
			assert(0);
			break;
		}
		if (b->out[nr].s == s) {
			b->out[nr].out = val;
			break;
		}
	}

	sig_std_logic_flush(b);
}

void
sig_std_logic_connect_in(
	struct sig_std_logic *b,
	void *s,
	const struct sig_std_logic_funcs *f
)
{
	assert(b);
	assert(b->type == SIG_GEN_STD_LOGIC);
	assert(b->in_count < sizeof(b->in) / sizeof(b->in[0]));
	// assert(s);
	assert(f);
	assert(f->set || f->set_ext);
	assert(! f->set || ! f->set_ext);

	b->in[b->in_count].s = s;
	b->in[b->in_count].f = f;
	b->in[b->in_count].in = SIG_STD_LOGIC_U;
	b->in_count++;

	sig_std_logic_flush(b);
}

void
sig_std_logic_connect_out(
	struct sig_std_logic *b,
	void *s,
	unsigned int val
)
{
	assert(b);
	assert(b->type == SIG_GEN_STD_LOGIC);
	assert(b->out_count < sizeof(b->out) / sizeof(b->out[0]));
	// assert(s);
	assert(val == SIG_STD_LOGIC_U
	    || val == SIG_STD_LOGIC_X
	    || val == SIG_STD_LOGIC_0
	    || val == SIG_STD_LOGIC_1
	    || val == SIG_STD_LOGIC_W
	    || val == SIG_STD_LOGIC_L
	    || val == SIG_STD_LOGIC_H
	    || val == SIG_STD_LOGIC_Z);

	b->out[b->out_count].s = s;
	b->out[b->out_count].out = val;
	b->out_count++;

	sig_std_logic_flush(b);
}

static void
sig_std_logic_s0_set(void *_f, unsigned int val)
{
	struct sig_std_logic_merge *f = (struct sig_std_logic_merge *) _f;

	sig_std_logic_set(f->s1, f, val);
}

static void
sig_std_logic_s1_set(void *_f, unsigned int val)
{
	struct sig_std_logic_merge *f = (struct sig_std_logic_merge *) _f;

	sig_std_logic_set(f->s0, f, val);
}

struct sig_std_logic_merge *
sig_std_logic_merge(struct sig_std_logic *s0, struct sig_std_logic *s1)
{
	static struct sig_std_logic_funcs s0_funcs = {
		.set_ext = sig_std_logic_s0_set,
	};
	static struct sig_std_logic_funcs s1_funcs = {
		.set_ext = sig_std_logic_s1_set,
	};
	struct sig_std_logic_merge *m;

	m = malloc(sizeof(*m));
	assert(m);

	/* Out */
	m->s0 = s0;
	sig_std_logic_connect_out(s0, m, SIG_STD_LOGIC_Z);
	m->s1 = s1;
	sig_std_logic_connect_out(s1, m, SIG_STD_LOGIC_Z);

	/* In */
	sig_std_logic_connect_in(s0, m, &s0_funcs);
	sig_std_logic_connect_in(s1, m, &s1_funcs);

	return m;
}

void
sig_std_logic_split(struct sig_std_logic_merge *m)
{
	fixme();
}

struct sig_std_logic *
sig_std_logic_create(const char *name)
{
	struct sig_std_logic *b;

	b = malloc(sizeof(*b));
	assert(b);

	b->type = SIG_GEN_STD_LOGIC;
	b->out_count = 0;
	b->in_count = 0;

	return b;
}

void
sig_std_logic_destroy(struct sig_std_logic *sig)
{
	assert(sig);
	assert(sig->type == SIG_GEN_STD_LOGIC);

	free(sig);
}