This file is indexed.

/usr/include/fauhdli.h is in libfauhdli-dev 20130704-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  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
/* $Id: fauhdli.h 4778 2009-09-30 15:39:08Z potyra $
 * Interpreter library. External API
 *
 * 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.
 */


#ifndef __FAUHDLI_H_INCLUDED
#define __FAUHDLI_H_INCLUDED

#include <stdbool.h>
#include <basetypes.h>
#include <stdlib.h>

/** forward declaration of struct fauhdli, which is opaque to external 
 *  users. */
struct fauhdli;

/** any directly used VHDL value. */
union fauhdli_value {
	/** integer value */
	universal_integer univ_int;
	/** real value */
	universal_real univ_real;
	/** pointer value */
	void *pointer;
};

/** Callbacks for foreign interface. */
struct glue_vhdl_cb {
	/* --------------- memory management ------------ */

	/** allocate memory (optional, fallback: malloc).
	 *  @param size number of bytes to allocate. 
	 *  @return pointer to allocated memory (or NULL on error).
	 */
	void *(*malloc)(size_t size);

	/** free allocated memory again (optional, fallback: free).
	 *  @param ptr pointer to allocated chunk.
	 */
	void (*free)(void *ptr);

	/* ------------------ scheduling --------------- */

	/* for the scheduling callbacks, either all must be set, or 
	 * None may be set, resulting in the builtin implementation.
	 */

	/** Get virtual time.
	 *  @return virtual time. */
	unsigned long long (*time_virt)(void);

	/** Register a timer to call func with parameter data as soon as the
	 *  simulation time tsc is reached.
	 *  @param tsc virtual timestamp counter, 1 second == 1 * TIME_HZ.
	 *  @param func callback that will be called.
	 *  @param data parameter to the callback.
	 */
	void (*time_call_at)(
				unsigned long long tsc,
				void (*func)(void *data), 
				void *data);

	/** Delete a registered timer from time_call_at.
	 *  @param func callback that would have been called.
	 *  @param data data that would have been the argument (must match
	 *         data from time_call_at/time_call_after).
	 *  @return 0 for success, 1 if the timer was not found.
	 */
	int (*time_call_delete)(void (*func)(void *), void *data);

	/** Tell the scheduler to quit the simulation.
	 *  @param status: 0=success, others=error.
	 */
	void (*quit)(int status);

	/* ------------------- logging ----------------- */
	/** Log an interpreter error message. Optional, fallback: builtin
	 *  implementation.
	 *  @param level severity of error (0=fatal, 1=critical, 2=error,
	 *         3=warning, 4=info, 5=debug)
	 *  @param type submodule from which the error comes.
	 *  @param name name of the module/function that throws the error.
	 *  @param fmt format string.
	 */
	void (*log)(
				int level,
				const char *type, 
				const char *name, 
				const char *fmt, 
				...);

	/** Create a foreign component (entity).
	 *  @param _cpssp opaque pointer.
	 *  @param type type of the component (entity name).
	 *  @param name name of the instantiated unit
	 *  @return unique component id.
	 */
	unsigned int (*comp_create)(
				void *_cpssp, 
				const char *type, 
				const char *name);

	/** Initialize a foreign component.
	 *  The foreign component must first have been created with
	 *  comp_create and the ports must have been connected
	 *  with comp_port_connect.
	 *
	 *  @param _cpssp opaque pointer.
	 *  @param comp component id (cf. glue_vhdl_comp_create).
	 */
	void (*comp_init)(void *_cpssp, unsigned int comp_id);

	/*  Create a foreign signal and return its ID.
	 *  @param _cpssp opaque pointer.
	 *  @param type type of the signal.
	 *  @param name signal name (for debugging only)
	 *  @return unique signal id.
	 */
	unsigned int (*signal_create)(
				void *_cpssp, 
				const char *type, 
				const char *name);


	/** connect a foreign signal to the port of a foreign component.
	 *  @param _cpssp opaque pointer.
	 *  @param comp unique component id (cf. comp_create, return value)
	 *  @param port name of the desired port.
	 *  @param sig unique signal id (cf. signal_create, return value)
	 */ 
	void (*comp_port_connect)(
				void *_cpssp, 
				unsigned int comp, 
				const char *port,
				unsigned int sig);


	/** Create a foreign architecture. A foreign architecture means, that
	 *  it is really declared in VHDL, but could e.g. instantiate only 
	 *  foreign entities. This is mainly a callback before the VHDL
	 *  architecture gets created (but after the signals for the 
	 *  architecture have been created), in case of need.
	 *
	 *  @param _cpssp opaque pointer.
	 *  @param type type of the component (entity name).
	 *  @param name name of the instantiated architecture
	 *  @return unique architecture id.
	 */
	unsigned int (*arch_create)(
				void *_cpssp,
				const char *type,
				const char *name);

	/** Initialize a foreign architecture.
	 *  The foreign architecture must first have been created with
	 *  glue_vhdl_arch_create and the ports must have been connected
	 *  with glue_vhdl_arch_port_connect (same with generics).
	 *
	 *  @param _cpssp opaque pointer.
	 *  @param arch architecture id (cf. arch_create).
	 */
	void (*arch_init)(void *_cpssp, unsigned int arch);

	/** connect a foreign signal to the port of a foreign component.
	 *  @param _cpssp opaque pointer
	 *  @param arch unique architecture id (cf. glue_vhdl_arch_create, 
	 *  	   return value)
	 *  @param port name of the desired port.
	 *  @param sig unique signal id (cf. glue_vhdl_create_signal, return 
	 *         value)
	 */ 
	void (*arch_port_connect)(
				void *_cpssp,
				unsigned int arch, 
				const char *port, 
				unsigned int sig);

	/** Set the value of a foreign driver.
	 *  @param _cpssp opaque pointer.
	 *  @param sig_id signal id.
	 *  @param data data fitting to the signal. (FIXME composites).
	 *  @param drv pointer to VHDL driver (cf. connect_out, this 
	 *         pointer can be used to identify a driver. It mustn't
	 *         be modified nor may any assumptions be made about the
	 *         data stored at the driver.)
	 */
	void (*drv_set)(
				void *_cpssp, 
				unsigned int sig_id, 
				union fauhdli_value data,
				void *drv);

	/** Connect a VHDL signal to a foreign signal so that writes are 
	 *  getting forwarded to the foreign interface.
	 *  This function gets called if a VHDL driver is connected to a 
	 *  foreign VHDL signal.
	 *  @param _cpssp opaque pointer.
	 *  @param sig_id foreign signal id.
	 *  @param init initial driving value.
	 *  @param drv corresponding driver pointer.
	 */
	void (*connect_out)(
				void *_cpssp,
				unsigned int sig_id,
				union fauhdli_value init,
				void *drv);

	/** Connect a foreign signal that is read from VHDL.
	 *  Register a foreign signal, that is read from VHDL. Whenever the
	 *  foreign signal recieves a new value, it should call
	 *  fauhdli_foreign_drv_update.
	 *  @param _cpssp opaque pointer.
	 *  @param sig_id unique foreign signal id.
	 *  @param drv driver instance that will be passed as _drv parameter 
	 *  	   for fauhdli_foreign_drv_update.
	 */
	void (*connect_in)(
				void *_cpssp,
				unsigned int sig_id,
				void *drv);

	/** set a generic of a foreign component (which is not an array).
	 *  @param _cpssp opaque pointer.
	 *  @param comp unique component id (cf. comp_create, return value)
	 *  @param generic name of the desired generic.
	 *  @param val VHDL value (direct value for non-composites, 
	 *  	   pointer for record types).
	 *  @param type name of the corresponding VHDL type.
	 */
	void (*comp_generic_nonarray_set)(
				void *_cpssp,
				unsigned int comp,
				const char *generic,
				union fauhdli_value val,
				const char *type);

	/** set a generic of a foreign component (which is an array).
	 *  @param _cpssp opaque pointer.
	 *  @param comp unique component id (cf. glue_vhdl_comp_create,
	 *  	   return value)
	 *  @param generic name of the desired generic.
	 *  @param element_type type name of the element type
	 *  @param base pointer to base of array.
	 *  @param array_size size of array.
	 */
	void (*comp_generic_array_set)(
				void *_cpssp,
				unsigned int comp,
				const char *generic,
				const char *element_type,
				union fauhdli_value base,
				universal_integer array_size);


	/** set a generic of a foreign architecture (which is not an array).
	 *  @param _cpssp opaque pointer.
	 *  @param comp unique component id (cf. glue_vhdl_comp_create, 
	 *  	   return value)
	 *  @param generic name of the desired generic.
	 *  @param val VHDL value (direct value for non-composites, pointer 
	 *  	   for record types).
	 *  @param type name of the corresponding VHDL type.
	 */
	void (*arch_generic_nonarray_set)(
				void *_cpssp,
				unsigned int arch,
				const char *generic,
				union fauhdli_value val,
				const char *type);

	/** set a generic of a foreign architecture (which is an array).
	 *  @param _cpssp opaque pointer.
	 *  @param arch unique architecture id (cf. arch_create, 
	 *  	   return value)
	 *  @param generic name of the desired generic.
	 *  @param element_type type name of the element type
	 *  @param base pointer to base of array.
	 *  @param array_size size of array.
	 */
	void (*arch_generic_array_set)(
				void *_cpssp,
				unsigned int arch,
				const char *generic,
				const char *element_type,
				union fauhdli_value base,
				universal_integer array_size);

	/** Set a procedure call argument of a foreign procedure.
	 *  @param _cpssp opaque pointer.
	 *  @param proc name of the foreign procedure.
	 *  @param param name of the parameter
	 *  @param value parameter value. Content depending on the signature
	 *         of the foreign procedure.
	 *         For parameter passing mechanisms, see GenCode.cpp.
	 */
	void (*proc_set)(
				void *_cpssp,
				const char *proc,
				const char *param, 
				union fauhdli_value value);

	/** Call a foreign procedure.
	 *  @param _cpssp opaque pointer.
	 *  @param proc name of the procedure to call.
	 */
	void (*proc_call)(void *_cpssp, const char *proc);
};


/** create the VHDL interpreter.
 *  @param parse_file intermediate code file to parse.
 *  @param trace_file name of vcd trace file (to trace signals of top_entity)
 *         or NULL, if no output is desired.
 *  @param debug debugging output enabled/disabled?
 *  @param callbacks callbacks for foreign interface.
 *  @param _cpssp opaque pointer that will get passed back to the callbacks.
 *  @return fauhdli instance.
 */
extern
__attribute__((visibility("default")))
struct fauhdli *
fauhdli_create(
	const char *parse_file, 
	const char *trace_file, 
	bool debug,
	const struct glue_vhdl_cb *callbacks,
	void *_cpssp
);

/** destroy the fauhdli instance.
 *  @param instance fauhdli instance.
 */
extern void
__attribute__((visibility("default")))
fauhdli_destroy(struct fauhdli *instance);

/** initialize/run simulator
 *  @param instance simulator instance.
 *  @param top_entity start simulation with entity called like this.
 */
extern void
__attribute__((visibility("default")))
fauhdli_init(struct fauhdli *instance, const char *top_entity);


/** find out the foreign signal id for a signal
 *  @param _sig pointer to signal instance.
 *  @return foreign signal id
 */
extern
__attribute__((visibility("default")))
unsigned int
fauhdli_get_sig_id(const void *_sig);

/** find out the foreign signal id for a driver
 *  @param _drv pointer to driver instance.
 *  @return foreign signal id
 */
extern
__attribute__((visibility("default")))
unsigned int
fauhdli_get_sig_id_driver(const void *_drv);

/** Update the value of a driver.
 *  @param instance fauhdli instance.
 *  @param _drv pointer to the VHDL driver instance.
 *  @param value updated value.
 */
extern void
__attribute__((visibility("default")))
fauhdli_set_driver(
	struct fauhdli *instance, 
	void *_drv, 
	union fauhdli_value value
);

#endif /* __FAUHDLI_H_INCLUDED */