iverilog/vvp/event.cc

194 lines
5.1 KiB
C++
Raw Permalink Normal View History

2001-11-06 04:07:21 +01:00
/*
* Copyright (c) 2001-2010 Stephen Williams (steve@icarus.com)
2001-11-06 04:07:21 +01:00
*
* 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
*/
# include "event.h"
# include "compile.h"
# include "vthread.h"
# include "schedule.h"
# include "vpi_priv.h"
2001-11-06 04:07:21 +01:00
# include <string.h>
# include <assert.h>
2001-11-16 05:22:27 +01:00
# include <stdlib.h>
2001-11-06 04:07:21 +01:00
#ifdef HAVE_MALLOC_H
# include <malloc.h>
#endif
event_functor_s::event_functor_s(edge_t e)
: edge(e)
{
threads = 0;
}
2001-11-06 04:07:21 +01:00
event_functor_s::~event_functor_s()
2001-11-06 04:07:21 +01:00
{}
2001-12-30 00:59:06 +01:00
/*
* Receive a value into an event functor, whether an edge or event/or.
* Detect edges, if any, then schedule awakened threads.
*/
2001-11-06 04:07:21 +01:00
void event_functor_s::set(vvp_ipoint_t ptr, bool, unsigned val, unsigned)
{
old_ival = ival;
put(ptr, val);
/* Only go through the effort if there is someone interested
in the results... */
if (threads || out) {
bool edge_p = true;
2001-12-30 00:59:06 +01:00
/* If there is an edge detect lookup table, then use the
2002-01-24 05:17:46 +01:00
old input and new input to detect whether this is the
2001-12-30 00:59:06 +01:00
requested edge. If there is no edge table, then any
set is a match. */
2001-11-06 04:07:21 +01:00
if (edge) {
2001-11-06 04:07:21 +01:00
unsigned pp = ipoint_port(ptr);
2001-11-06 04:07:21 +01:00
unsigned oval = (old_ival >> 2*pp) & 3;
unsigned nval = (ival >> 2*pp) & 3;
2002-03-17 04:24:34 +01:00
edge_p = edge & VVP_EDGE(oval,nval);
2001-11-06 04:07:21 +01:00
}
2001-12-30 00:59:06 +01:00
/* If we detect an edge, then schedule any threads that
are attached to this event, then propagate the
positive detect to the output.
Note that only other events (notably event/or
functors) can be connected to event outputs. */
2001-11-06 04:07:21 +01:00
if (edge_p) {
vthread_t tmp = threads;
threads = 0;
vthread_schedule_list(tmp);
2001-12-30 00:59:06 +01:00
if (out) {
functor_set(out, 0, St0, true);
}
// only one output? Why not propagate?
//schedule_assign(out, 0, 0);
2001-11-06 04:07:21 +01:00
}
}
}
named_event_functor_s::named_event_functor_s()
{
threads = 0;
}
named_event_functor_s::~named_event_functor_s()
{
}
void named_event_functor_s::set(vvp_ipoint_t ptr, bool push,
unsigned val, unsigned str)
{
put(ptr, val);
if (threads) {
vthread_t tmp = threads;
threads = 0;
vthread_schedule_list(tmp);
}
vpip_run_named_event_callbacks(handle);
2003-11-26 02:47:18 +01:00
/* This event may nest, so progagate if I have an output. */
if (out) functor_set(out, 0, St0, true);
}
2001-11-06 04:07:21 +01:00
/*
** Create an event functor
** edge: compile_event(label, type, argc, argv)
** or: compile_event(label, NULL, argc, argv)
**
** Named events are handled elsewhere.
2001-11-06 04:07:21 +01:00
*/
void compile_event(char*label, char*type,
unsigned argc, struct symb_s*argv)
{
event_functor_s::edge_t edge = vvp_edge_none;
if (argc && type) {
if (strcmp(type,"posedge") == 0)
edge = vvp_edge_posedge;
else if (strcmp(type,"negedge") == 0)
edge = vvp_edge_negedge;
else if (strcmp(type,"edge") == 0)
edge = vvp_edge_anyedge;
assert(argc <= 4 || edge == vvp_edge_none);
}
free(type);
functor_t obj = new event_functor_s(edge);
vvp_ipoint_t fdx = functor_allocate(1);
functor_define(fdx, obj);
define_functor_symbol(label, fdx);
free(label);
/* Run through the arguments looking for the functors that are
connected to my input ports. For each source functor that I
find, connect the output of that functor to the indexed
input by inserting myself (complete with the port number in
the vvp_ipoint_t) into the list that the source heads.
If the source functor is not declared yet, then don't do
the link yet. Save the reference to be resolved later. */
2001-11-06 04:07:21 +01:00
if (edge != vvp_edge_none)
inputs_connect(fdx, argc, argv);
else
// Are we sure that we have those .event/or
2001-11-06 04:07:21 +01:00
// drivers exclusively?
for (unsigned i=0; i<argc; i++) {
inputs_connect(fdx, 1, argv+i);
}
free(argv);
}
/*
* This handles the compile of named events. This functor has no
* inputs, it is only accessed by behavioral trigger statements, which
* in vvp are %set instructions.
*/
void compile_named_event(char*label, char*name)
{
2003-04-23 05:09:25 +02:00
named_event_functor_s* fp = new named_event_functor_s;
vvp_ipoint_t fdx = functor_allocate(1);
2003-04-23 05:09:25 +02:00
functor_define(fdx, fp);
vpiHandle obj = vpip_make_named_event(name, fdx);
2003-04-23 05:09:25 +02:00
/* The event needs a back pointer so that triggers to the
event functor (%set) can access the callbacks. */
fp->handle = obj;
compile_vpi_symbol(label, obj);
vpip_attach_to_current_scope(obj);
free(label);
free(name);
}