iverilog/vvp/vthread.cc

815 lines
20 KiB
C++
Raw Normal View History

2001-03-11 01:29:38 +01:00
/*
* Copyright (c) 2001 Stephen Williams (steve@icarus.com)
*
* This source code is free software; you can redistribute it
* and/or modify it in source code form under the terms of the GNU
* General Public License as published by the Free Software
* Foundation; either version 2 of the License, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
*/
#if !defined(WINNT)
2001-04-15 06:07:56 +02:00
#ident "$Id: vthread.cc,v 1.25 2001/04/15 04:07:56 steve Exp $"
2001-03-11 01:29:38 +01:00
#endif
# include "vthread.h"
# include "codes.h"
# include "schedule.h"
2001-03-11 23:42:11 +01:00
# include "functor.h"
# include "vpi_priv.h"
# include <malloc.h>
# include <string.h>
2001-03-11 23:42:11 +01:00
# include <assert.h>
2001-03-11 01:29:38 +01:00
2001-04-13 05:55:18 +02:00
/*
* This vhtread_s structure describes all there is to know about a
* thread, including its program counter, all the private bits it
* holds, and its place in other lists.
*
*
* ** Notes On The Interactions of %fork/%join/%end:
*
* The %fork instruction creates a new thread and pushes that onto the
* stack of children for the thread. This new thread, then, becomes
* the new direct descendent of the thread. This new thread is
* therefore also the first thread to be reaped when the parent does a
* %join.
*
* It is a programming error for a thread that created threads to not
* %join as many as it created before it %ends. The linear stack for
* tracking thread relationships will create a mess otherwise. For
* example, if A creates B then C, the stack is:
*
* A --> C --> B
*
* If C then %forks X, the stack is:
*
* A --> C --> X --> B
*
* If C %ends without a join, then the stack is:
*
* A --> C(zombie) --> X --> B
*
* If A then executes 2 %joins, it will read C and X (when it ends)
* leaving B in purgatory. What's worse, A will block on the schedules
* of X and C instead of C and B, possibly creating incorrect timing.
*
* The schedule_parent_on_end flag is used by threads to tell their
* children that they are waiting for it to end. It is set by a %join
* instruction if the child is not already done. The thread that
* executes a %join instruction sets the flag in its child.
*
* The i_have_ended flag, on the other hand, is used by threads to
* tell their parents that they are already dead. A thread that
* executes %end will set its own i_have_ended flag and let its parent
* reap it when the parent does the %join. If a thread has its
* schedule_parent_on_end flag set already when it %ends, then it
* reaps itself and simply schedules its parent. If a child has its
* i_have_ended flag set when a thread executes %join, then it is free
* to reap the child immediately.
2001-04-13 05:55:18 +02:00
*/
2001-03-11 01:29:38 +01:00
struct vthread_s {
/* This is the program counter. */
unsigned long pc;
2001-04-13 05:55:18 +02:00
/* These hold the private thread bits. */
unsigned char *bits;
2001-04-13 05:55:18 +02:00
unsigned nbits :16;
/* My parent sets this when it wants me to wake it up. */
unsigned schedule_parent_on_end :1;
unsigned i_have_ended :1;
unsigned waiting_for_event :1;
/* This points to the sole child of the thread. */
2001-03-30 06:55:22 +02:00
struct vthread_s*child;
2001-04-13 05:55:18 +02:00
/* This points to my parent, if I have one. */
struct vthread_s*parent;
/* This is used for keeping wait queues. */
struct vthread_s*next;
2001-03-11 01:29:38 +01:00
};
static void thr_check_addr(struct vthread_s*thr, unsigned addr)
{
if (addr < thr->nbits)
return;
assert(addr < 0x10000);
while (thr->nbits <= addr) {
thr->bits = (unsigned char*)realloc(thr->bits, thr->nbits/4 + 16);
memset(thr->bits + thr->nbits/4, 0xaa, 16);
thr->nbits += 16*4;
}
}
static inline unsigned thr_get_bit(struct vthread_s*thr, unsigned addr)
{
assert(addr < thr->nbits);
unsigned idx = addr % 4;
addr /= 4;
return (thr->bits[addr] >> (idx*2)) & 3;
}
static inline void thr_put_bit(struct vthread_s*thr,
unsigned addr, unsigned val)
{
thr_check_addr(thr, addr);
unsigned idx = addr % 4;
addr /= 4;
unsigned mask = 3 << (idx*2);
thr->bits[addr] = (thr->bits[addr] & ~mask) | (val << (idx*2));
}
2001-03-11 01:29:38 +01:00
/*
* Create a new thread with the given start address.
*/
2001-04-13 05:55:18 +02:00
vthread_t vthread_new(unsigned long pc)
2001-03-11 01:29:38 +01:00
{
vthread_t thr = new struct vthread_s;
2001-04-13 05:55:18 +02:00
thr->pc = pc;
thr->bits = (unsigned char*)malloc(16);
thr->nbits = 16*4;
thr->child = 0;
thr->parent = 0;
thr->next = 0;
thr->schedule_parent_on_end = 0;
thr->i_have_ended = 0;
thr->waiting_for_event = 0;
2001-03-11 01:29:38 +01:00
thr_put_bit(thr, 0, 0);
thr_put_bit(thr, 1, 1);
thr_put_bit(thr, 2, 2);
thr_put_bit(thr, 3, 3);
2001-03-11 01:29:38 +01:00
return thr;
}
2001-03-30 06:55:22 +02:00
static void vthread_reap(vthread_t thr)
{
assert(thr->next == 0);
assert(thr->child == 0);
2001-04-13 05:55:18 +02:00
free(thr->bits);
if (thr->child)
thr->child->parent = thr->parent;
if (thr->parent)
thr->parent->child = thr->child;
delete thr;
2001-03-30 06:55:22 +02:00
}
2001-03-11 01:29:38 +01:00
/*
* This function runs a thread by fetching an instruction,
* incrementing the PC, and executing the instruction.
*/
void vthread_run(vthread_t thr)
{
for (;;) {
vvp_code_t cp = codespace_index(thr->pc);
thr->pc += 1;
assert(cp->opcode);
/* Run the opcode implementation. If the execution of
the opcode returns false, then the thread is meant to
be paused, so break out of the loop. */
2001-03-11 01:29:38 +01:00
bool rc = (cp->opcode)(thr, cp);
if (rc == false)
return;
}
}
2001-04-13 05:55:18 +02:00
/*
* This is called by an event functor to wait up all the threads on
* its list. I in fact created that list in the %wait instruction, and
* I also am certain that the waiting_for_event flag is set.
*/
void vthread_schedule_list(vthread_t thr)
{
while (thr) {
vthread_t tmp = thr;
thr = thr->next;
2001-04-13 05:55:18 +02:00
assert(tmp->waiting_for_event);
tmp->waiting_for_event = 0;
schedule_vthread(tmp, 0);
}
}
2001-04-13 05:55:18 +02:00
2001-04-01 08:12:13 +02:00
bool of_AND(vthread_t thr, vvp_code_t cp)
{
assert(cp->bit_idx1 >= 4);
unsigned idx1 = cp->bit_idx1;
unsigned idx2 = cp->bit_idx2;
for (unsigned idx = 0 ; idx < cp->number ; idx += 1) {
unsigned lb = thr_get_bit(thr, idx1);
unsigned rb = thr_get_bit(thr, idx2);
if ((lb == 0) || (rb == 0)) {
thr_put_bit(thr, idx1, 0);
} else if ((lb == 1) && (rb == 1)) {
thr_put_bit(thr, idx1, 1);
} else {
thr_put_bit(thr, idx1, 2);
}
idx1 += 1;
if (idx2 >= 4)
idx2 += 1;
}
return true;
}
2001-03-31 03:59:58 +02:00
bool of_ADD(vthread_t thr, vvp_code_t cp)
{
assert(cp->bit_idx1 >= 4);
assert(cp->number <= 8*sizeof(unsigned long));
unsigned idx1 = cp->bit_idx1;
unsigned idx2 = cp->bit_idx2;
unsigned long lv = 0, rv = 0;
for (unsigned idx = 0 ; idx < cp->number ; idx += 1) {
unsigned lb = thr_get_bit(thr, idx1);
unsigned rb = thr_get_bit(thr, idx2);
if ((lb | rb) & 2)
goto x_out;
lv |= lb << idx;
rv |= rb << idx;
idx1 += 1;
if (idx2 >= 4)
idx2 += 1;
}
lv += rv;
for (unsigned idx = 0 ; idx < cp->number ; idx += 1) {
thr_put_bit(thr, cp->bit_idx1+idx, (lv&1) ? 1 : 0);
lv >>= 1;
}
return true;
x_out:
for (unsigned idx = 0 ; idx < cp->number ; idx += 1)
thr_put_bit(thr, cp->bit_idx1+idx, 2);
return true;
}
2001-03-11 01:29:38 +01:00
bool of_ASSIGN(vthread_t thr, vvp_code_t cp)
{
unsigned char bit_val = thr_get_bit(thr, cp->bit_idx2);
2001-03-12 00:06:49 +01:00
schedule_assign(cp->iptr, bit_val, cp->bit_idx1);
2001-03-11 01:29:38 +01:00
return true;
}
bool of_CMPS(vthread_t thr, vvp_code_t cp)
{
unsigned eq = 1;
unsigned eeq = 1;
unsigned lt = 0;
unsigned idx1 = cp->bit_idx1;
unsigned idx2 = cp->bit_idx2;
unsigned sig1 = thr_get_bit(thr, idx1 + cp->number - 1);
unsigned sig2 = thr_get_bit(thr, idx2 + cp->number - 1);
for (unsigned idx = 0 ; idx < cp->number ; idx += 1) {
unsigned lv = thr_get_bit(thr, idx1);
unsigned rv = thr_get_bit(thr, idx2);
if (lv > rv) {
lt = 0;
eeq = 0;
} else if (lv < rv) {
lt = 1;
eeq = 0;
}
if (eq != 2) {
if ((lv == 0) && (rv != 0))
eq = 0;
if ((lv == 1) && (rv != 1))
eq = 0;
if ((lv | rv) >= 2)
eq = 2;
}
if (idx1 >= 4) idx1 += 1;
if (idx2 >= 4) idx2 += 1;
}
if (eq == 2)
lt = 2;
else if ((sig1 == 1) && (sig2 == 0))
lt = 1;
else if ((sig1 == 0) && (sig2 == 1))
lt = 0;
thr_put_bit(thr, 4, eq);
thr_put_bit(thr, 5, lt);
thr_put_bit(thr, 6, eeq);
return true;
}
bool of_CMPU(vthread_t thr, vvp_code_t cp)
{
unsigned eq = 1;
unsigned eeq = 1;
unsigned lt = 0;
unsigned idx1 = cp->bit_idx1;
unsigned idx2 = cp->bit_idx2;
for (unsigned idx = 0 ; idx < cp->number ; idx += 1) {
unsigned lv = thr_get_bit(thr, idx1);
unsigned rv = thr_get_bit(thr, idx2);
if (lv > rv) {
lt = 0;
eeq = 0;
} else if (lv < rv) {
lt = 1;
eeq = 0;
}
if (eq != 2) {
if ((lv == 0) && (rv != 0))
eq = 0;
if ((lv == 1) && (rv != 1))
eq = 0;
if ((lv | rv) >= 2)
eq = 2;
}
if (idx1 >= 4) idx1 += 1;
if (idx2 >= 4) idx2 += 1;
}
if (eq == 2)
lt = 2;
thr_put_bit(thr, 4, eq);
thr_put_bit(thr, 5, lt);
thr_put_bit(thr, 6, eeq);
return true;
}
bool of_CMPX(vthread_t thr, vvp_code_t cp)
{
unsigned eq = 1;
unsigned idx1 = cp->bit_idx1;
unsigned idx2 = cp->bit_idx2;
for (unsigned idx = 0 ; idx < cp->number ; idx += 1) {
unsigned lv = thr_get_bit(thr, idx1);
unsigned rv = thr_get_bit(thr, idx2);
if ((lv < 2) && (rv < 2) && (lv != rv)) {
eq = 0;
break;
}
if (idx1 >= 4) idx1 += 1;
if (idx2 >= 4) idx2 += 1;
}
thr_put_bit(thr, 4, eq);
return true;
}
bool of_CMPZ(vthread_t thr, vvp_code_t cp)
{
unsigned eq = 1;
unsigned idx1 = cp->bit_idx1;
unsigned idx2 = cp->bit_idx2;
for (unsigned idx = 0 ; idx < cp->number ; idx += 1) {
unsigned lv = thr_get_bit(thr, idx1);
unsigned rv = thr_get_bit(thr, idx2);
if ((lv < 3) && (rv < 3) && (lv != rv)) {
eq = 0;
break;
}
if (idx1 >= 4) idx1 += 1;
if (idx2 >= 4) idx2 += 1;
}
thr_put_bit(thr, 4, eq);
return true;
}
2001-03-11 01:29:38 +01:00
bool of_DELAY(vthread_t thr, vvp_code_t cp)
{
//printf("thread %p: %%delay %lu\n", thr, cp->number);
2001-03-11 01:29:38 +01:00
schedule_vthread(thr, cp->number);
return false;
}
2001-04-13 05:55:18 +02:00
/*
* This terminates the current thread. If there is a parent who is
* waiting for me to die, then I schedule it. At any rate, I mark
* myself as a zombie by setting my pc to 0.
*/
2001-03-11 01:29:38 +01:00
bool of_END(vthread_t thr, vvp_code_t cp)
{
2001-04-13 05:55:18 +02:00
assert(! thr->waiting_for_event);
thr->i_have_ended = 1;
thr->pc = 0;
/* Reap direct descendents that have already ended. Do
this in a loop until I run out of dead children. */
while (thr->child && (thr->child->i_have_ended)) {
vthread_t tmp = thr->child;
vthread_reap(tmp);
}
/* If I have a parent who is waiting for me, then mark that I
have ended, and schedule that parent. The parent will reap
me, so don't do it here. */
if (thr->schedule_parent_on_end) {
assert(thr->parent);
schedule_vthread(thr->parent, 0);
return false;
}
/* If I have no parents, then no one can %join me and there is
no reason to stick around. This can happen, for example if
I am an ``initial'' thread. */
if (thr->parent == 0) {
if (thr->child)
fprintf(stderr, "vvp warning: A thread left dangling "
"children. This is probably caused\n"
" : a missing %%join in this thread.\n");
vthread_reap(thr);
return false;
}
/* If I make it this far, then I have a parent who may wish
to %join me. Remain a zombie so that it can. */
2001-03-11 01:29:38 +01:00
return false;
}
2001-04-13 05:55:18 +02:00
/*
* The %fork instruction causes a new child to be created and pushed
* in front of any existing child. This causes the new child to be the
* parent of any previous children, and for me to be the parent of the
* new child.
*/
2001-03-30 06:55:22 +02:00
bool of_FORK(vthread_t thr, vvp_code_t cp)
{
2001-04-13 05:55:18 +02:00
vthread_t child = vthread_new(cp->cptr);
child->child = thr->child;
child->parent = thr;
2001-03-30 06:55:22 +02:00
thr->child = child;
2001-04-13 05:55:18 +02:00
if (child->child) {
assert(child->child->parent == thr);
child->child->parent = child;
}
2001-03-30 06:55:22 +02:00
schedule_vthread(child, 0);
return true;
}
bool of_INV(vthread_t thr, vvp_code_t cp)
{
assert(cp->bit_idx1 >= 4);
for (unsigned idx = 0 ; idx < cp->bit_idx2 ; idx += 1) {
unsigned val = thr_get_bit(thr, cp->bit_idx1+idx);
switch (val) {
case 0:
val = 1;
break;
case 1:
val = 0;
break;
default:
val = 2;
break;
}
thr_put_bit(thr, cp->bit_idx1+idx, val);
}
return true;
}
2001-04-13 05:55:18 +02:00
/*
* The various JMP instruction work simply by pulling the new program
* counter from the instruction and resuming. If the jump is
* conditional, then test the bit for the expected value first.
*/
2001-03-20 07:16:23 +01:00
bool of_JMP(vthread_t thr, vvp_code_t cp)
{
thr->pc = cp->cptr;
return true;
}
bool of_JMP0(vthread_t thr, vvp_code_t cp)
{
if (thr_get_bit(thr, cp->bit_idx1) == 0)
thr->pc = cp->cptr;
return true;
}
bool of_JMP0XZ(vthread_t thr, vvp_code_t cp)
{
if (thr_get_bit(thr, cp->bit_idx1) != 1)
thr->pc = cp->cptr;
return true;
}
2001-03-31 19:36:02 +02:00
bool of_JMP1(vthread_t thr, vvp_code_t cp)
{
if (thr_get_bit(thr, cp->bit_idx1) == 1)
thr->pc = cp->cptr;
return true;
}
2001-04-13 05:55:18 +02:00
/*
* The %join instruction causes the thread to wait for the one and
* only child to die. If it is already dead (and a zombie) then I
* reap it and go on. Otherwise, I tell the child that I am ready for
* it to die, and it will reschedule me when it does.
*/
2001-03-30 06:55:22 +02:00
bool of_JOIN(vthread_t thr, vvp_code_t cp)
{
assert(thr->child);
2001-04-13 05:55:18 +02:00
assert(thr->child->parent == thr);
if (thr->child->i_have_ended) {
2001-03-30 06:55:22 +02:00
vthread_reap(thr->child);
return true;
}
2001-04-13 05:55:18 +02:00
thr->child->schedule_parent_on_end = 1;
2001-03-30 06:55:22 +02:00
return false;
}
bool of_LOAD(vthread_t thr, vvp_code_t cp)
{
assert(cp->bit_idx1 >= 4);
thr_put_bit(thr, cp->bit_idx1, functor_get(cp->iptr));
return true;
}
bool of_MOV(vthread_t thr, vvp_code_t cp)
{
assert(cp->bit_idx1 >= 4);
if (cp->bit_idx2 >= 4) {
for (unsigned idx = 0 ; idx < cp->number ; idx += 1)
thr_put_bit(thr,
cp->bit_idx1+idx,
thr_get_bit(thr, cp->bit_idx2+idx));
} else {
for (unsigned idx = 0 ; idx < cp->number ; idx += 1)
thr_put_bit(thr,
cp->bit_idx1+idx,
thr_get_bit(thr, cp->bit_idx2));
}
return true;
}
2001-03-11 01:29:38 +01:00
bool of_NOOP(vthread_t thr, vvp_code_t cp)
{
return true;
}
2001-04-02 00:25:33 +02:00
bool of_NORR(vthread_t thr, vvp_code_t cp)
{
assert(cp->bit_idx1 >= 4);
unsigned lb = 0;
unsigned idx2 = cp->bit_idx2;
for (unsigned idx = 0 ; idx < cp->number ; idx += 1) {
unsigned rb = thr_get_bit(thr, idx2);
if (rb == 1) {
lb = 1;
break;
}
if (rb != 0)
lb = 2;
}
thr_put_bit(thr, cp->bit_idx1, lb);
return true;
}
bool of_OR(vthread_t thr, vvp_code_t cp)
{
assert(cp->bit_idx1 >= 4);
unsigned idx1 = cp->bit_idx1;
unsigned idx2 = cp->bit_idx2;
for (unsigned idx = 0 ; idx < cp->number ; idx += 1) {
unsigned lb = thr_get_bit(thr, idx1);
unsigned rb = thr_get_bit(thr, idx2);
if ((lb == 1) || (rb == 1)) {
thr_put_bit(thr, idx1, 1);
} else if ((lb == 0) && (rb == 0)) {
thr_put_bit(thr, idx1, 0);
} else {
thr_put_bit(thr, idx1, 2);
}
idx1 += 1;
if (idx2 >= 4)
idx2 += 1;
}
return true;
}
2001-03-11 01:29:38 +01:00
bool of_SET(vthread_t thr, vvp_code_t cp)
{
unsigned char bit_val = thr_get_bit(thr, cp->bit_idx1);
functor_set(cp->iptr, bit_val, true);
2001-03-11 23:42:11 +01:00
2001-03-11 01:29:38 +01:00
return true;
}
bool of_VPI_CALL(vthread_t thr, vvp_code_t cp)
{
// printf("thread %p: %%vpi_call\n", thr);
vpip_execute_vpi_call(cp->handle);
return schedule_finished()? false : true;
}
/*
* Implement the wait by locating the functor for the event, and
* adding this thread to the threads list for the event.
*/
bool of_WAIT(vthread_t thr, vvp_code_t cp)
{
2001-04-13 05:55:18 +02:00
assert(! thr->waiting_for_event);
thr->waiting_for_event = 1;
functor_t fp = functor_index(cp->iptr);
assert((fp->mode == 1) || (fp->mode == 2));
vvp_event_t ep = fp->event;
thr->next = ep->threads;
ep->threads = thr;
return false;
}
2001-04-13 05:55:18 +02:00
2001-04-15 06:07:56 +02:00
bool of_XNOR(vthread_t thr, vvp_code_t cp)
{
assert(cp->bit_idx1 >= 4);
unsigned idx1 = cp->bit_idx1;
unsigned idx2 = cp->bit_idx2;
for (unsigned idx = 0 ; idx < cp->number ; idx += 1) {
unsigned lb = thr_get_bit(thr, idx1);
unsigned rb = thr_get_bit(thr, idx2);
if ((lb == 1) && (rb == 1)) {
thr_put_bit(thr, idx1, 1);
} else if ((lb == 0) && (rb == 0)) {
thr_put_bit(thr, idx1, 1);
} else if ((lb == 1) && (rb == 0)) {
thr_put_bit(thr, idx1, 0);
} else if ((lb == 0) && (rb == 1)) {
thr_put_bit(thr, idx1, 0);
} else {
thr_put_bit(thr, idx1, 2);
}
idx1 += 1;
if (idx2 >= 4)
idx2 += 1;
}
return true;
}
2001-04-13 05:55:18 +02:00
bool of_ZOMBIE(vthread_t, vvp_code_t)
{
return false;
}
2001-03-11 01:29:38 +01:00
/*
* $Log: vthread.cc,v $
2001-04-15 06:07:56 +02:00
* Revision 1.25 2001/04/15 04:07:56 steve
* Add support for behavioral xnor.
*
* Revision 1.24 2001/04/14 05:10:05 steve
* Initialize the waiting_for_event member.
*
2001-04-13 05:55:18 +02:00
* Revision 1.23 2001/04/13 03:55:18 steve
* More complete reap of all threads.
*
* Revision 1.22 2001/04/05 01:12:28 steve
* Get signed compares working correctly in vvp.
*
* Revision 1.21 2001/04/03 03:18:34 steve
* support functor_set push for blocking assignment.
*
2001-04-02 00:25:33 +02:00
* Revision 1.20 2001/04/01 22:25:33 steve
* Add the reduction nor instruction.
*
* Revision 1.19 2001/04/01 07:22:08 steve
* Implement the less-then and %or instructions.
*
2001-04-01 08:12:13 +02:00
* Revision 1.18 2001/04/01 06:12:14 steve
* Add the bitwise %and instruction.
*
* Revision 1.17 2001/04/01 04:34:28 steve
* Implement %cmp/x and %cmp/z instructions.
*
2001-03-31 19:36:02 +02:00
* Revision 1.16 2001/03/31 17:36:02 steve
* Add the jmp/1 instruction.
*
2001-03-31 03:59:58 +02:00
* Revision 1.15 2001/03/31 01:59:59 steve
* Add the ADD instrunction.
*
2001-03-30 06:55:22 +02:00
* Revision 1.14 2001/03/30 04:55:22 steve
* Add fork and join instructions.
*
* Revision 1.13 2001/03/29 03:46:36 steve
* Support named events as mode 2 functors.
*
* Revision 1.12 2001/03/26 04:00:39 steve
* Add the .event statement and the %wait instruction.
*
* Revision 1.11 2001/03/25 03:54:26 steve
* Add JMP0XZ and postpone net inputs when needed.
*
* Revision 1.10 2001/03/23 04:56:03 steve
* eq is x if either value of cmp/u has x or z.
*
* Revision 1.9 2001/03/23 01:53:46 steve
* Support set of functors from thread bits.
*
* Revision 1.8 2001/03/23 01:11:06 steve
* Handle vectors pulled out of a constant bit.
*
* Revision 1.7 2001/03/22 05:08:00 steve
* implement %load, %inv, %jum/0 and %cmp/u
*
2001-03-20 07:16:23 +01:00
* Revision 1.6 2001/03/20 06:16:24 steve
* Add support for variable vectors.
*
* Revision 1.5 2001/03/19 01:55:38 steve
* Add support for the vpiReset sim control.
*
* Revision 1.4 2001/03/16 01:44:34 steve
* Add structures for VPI support, and all the %vpi_call
* instruction. Get linking of VPI modules to work.
*
2001-03-12 00:06:49 +01:00
* Revision 1.3 2001/03/11 23:06:49 steve
* Compact the vvp_code_s structure.
*
2001-03-11 23:42:11 +01:00
* Revision 1.2 2001/03/11 22:42:11 steve
* Functor values and propagation.
*
2001-03-11 01:29:38 +01:00
* Revision 1.1 2001/03/11 00:29:39 steve
* Add the vvp engine to cvs.
*
*/