1998-11-04 00:28:49 +01:00
|
|
|
/*
|
2005-02-03 05:56:20 +01:00
|
|
|
* Copyright (c) 1999-2005 Stephen Williams (steve@icarus.com)
|
1998-11-04 00:28:49 +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
|
|
|
|
|
*/
|
2002-08-12 03:34:58 +02:00
|
|
|
#ifdef HAVE_CVS_IDENT
|
2005-07-07 18:22:49 +02:00
|
|
|
#ident "$Id: functor.cc,v 1.35 2005/07/07 16:22:49 steve Exp $"
|
1998-11-04 00:28:49 +01:00
|
|
|
#endif
|
|
|
|
|
|
2001-07-25 05:10:48 +02:00
|
|
|
# include "config.h"
|
|
|
|
|
|
|
|
|
|
# include <iostream>
|
|
|
|
|
|
1999-07-18 00:01:13 +02:00
|
|
|
# include "functor.h"
|
1998-11-04 00:28:49 +01:00
|
|
|
# include "netlist.h"
|
|
|
|
|
|
1999-07-18 00:01:13 +02:00
|
|
|
functor_t::~functor_t()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2000-04-18 06:50:19 +02:00
|
|
|
void functor_t::event(class Design*, class NetEvent*)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
1999-07-18 00:01:13 +02:00
|
|
|
void functor_t::signal(class Design*, class NetNet*)
|
|
|
|
|
{
|
|
|
|
|
}
|
1998-11-04 00:28:49 +01:00
|
|
|
|
1999-07-18 00:01:13 +02:00
|
|
|
void functor_t::process(class Design*, class NetProcTop*)
|
1998-11-04 00:28:49 +01:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
1999-12-30 05:19:12 +01:00
|
|
|
void functor_t::lpm_add_sub(class Design*, class NetAddSub*)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2000-04-20 02:28:03 +02:00
|
|
|
void functor_t::lpm_compare(class Design*, class NetCompare*)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
1999-12-17 07:18:15 +01:00
|
|
|
void functor_t::lpm_const(class Design*, class NetConst*)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2000-04-01 23:40:22 +02:00
|
|
|
void functor_t::lpm_divide(class Design*, class NetDivide*)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2005-07-07 18:22:49 +02:00
|
|
|
void functor_t::lpm_literal(class Design*, class NetLiteral*)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2000-09-17 23:26:15 +02:00
|
|
|
void functor_t::lpm_modulo(class Design*, class NetModulo*)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
1999-11-01 03:07:40 +01:00
|
|
|
void functor_t::lpm_ff(class Design*, class NetFF*)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
1999-12-17 07:18:15 +01:00
|
|
|
void functor_t::lpm_logic(class Design*, class NetLogic*)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2000-01-13 04:35:35 +01:00
|
|
|
void functor_t::lpm_mult(class Design*, class NetMult*)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2000-07-15 07:13:43 +02:00
|
|
|
void functor_t::lpm_mux(class Design*, class NetMux*)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2005-05-24 03:44:27 +02:00
|
|
|
void functor_t::sign_extend(class Design*, class NetSignExtend*)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2005-02-03 05:56:20 +01:00
|
|
|
void functor_t::lpm_ureduce(class Design*, class NetUReduce*)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2000-07-15 07:13:43 +02:00
|
|
|
|
2000-04-18 06:50:19 +02:00
|
|
|
void NetScope::run_functor(Design*des, functor_t*fun)
|
|
|
|
|
{
|
|
|
|
|
for (NetScope*cur = sub_ ; cur ; cur = cur->sib_) {
|
|
|
|
|
cur->run_functor(des, fun);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (NetEvent*cur = events_ ; cur ; /* */) {
|
|
|
|
|
NetEvent*tmp = cur;
|
|
|
|
|
cur = cur->snext_;
|
|
|
|
|
fun->event(des, tmp);
|
|
|
|
|
}
|
|
|
|
|
|
2000-11-19 21:48:30 +01:00
|
|
|
// apply to signals. Each iteration, allow for the possibility
|
|
|
|
|
// that the current signal deletes itself.
|
1999-07-18 00:01:13 +02:00
|
|
|
if (signals_) {
|
2000-11-19 21:48:30 +01:00
|
|
|
unsigned count = 0;
|
1999-07-18 00:01:13 +02:00
|
|
|
NetNet*cur = signals_->sig_next_;
|
|
|
|
|
do {
|
2000-11-19 21:48:30 +01:00
|
|
|
count += 1;
|
|
|
|
|
cur = cur->sig_next_;
|
|
|
|
|
} while (cur != signals_->sig_next_);
|
|
|
|
|
|
|
|
|
|
cur = signals_->sig_next_;
|
|
|
|
|
for (unsigned idx = 0 ; idx < count ; idx += 1) {
|
1999-11-18 04:52:19 +01:00
|
|
|
NetNet*tmp = cur->sig_next_;
|
2000-05-02 02:58:11 +02:00
|
|
|
fun->signal(des, cur);
|
1999-11-18 04:52:19 +01:00
|
|
|
cur = tmp;
|
2000-11-19 21:48:30 +01:00
|
|
|
}
|
1999-07-18 00:01:13 +02:00
|
|
|
}
|
2000-05-02 02:58:11 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void Design::functor(functor_t*fun)
|
|
|
|
|
{
|
|
|
|
|
// Scan the scopes
|
2004-10-04 03:10:51 +02:00
|
|
|
for (list<NetScope*>::const_iterator scope = root_scopes_.begin();
|
2001-10-19 23:53:24 +02:00
|
|
|
scope != root_scopes_.end(); scope++)
|
|
|
|
|
(*scope)->run_functor(this, fun);
|
1999-07-18 00:01:13 +02:00
|
|
|
|
|
|
|
|
// apply to processes
|
1999-07-18 07:52:46 +02:00
|
|
|
procs_idx_ = procs_;
|
|
|
|
|
while (procs_idx_) {
|
|
|
|
|
NetProcTop*idx = procs_idx_;
|
|
|
|
|
procs_idx_ = idx->next_;
|
1999-07-18 00:01:13 +02:00
|
|
|
fun->process(this, idx);
|
1999-07-18 07:52:46 +02:00
|
|
|
}
|
1999-11-01 03:07:40 +01:00
|
|
|
|
|
|
|
|
// apply to nodes
|
|
|
|
|
if (nodes_) {
|
2002-08-16 07:18:27 +02:00
|
|
|
assert(nodes_functor_cur_ == 0);
|
|
|
|
|
assert(nodes_functor_nxt_ == 0);
|
|
|
|
|
|
2000-07-16 06:56:07 +02:00
|
|
|
/* Scan the circular list of nodes, starting with the
|
2002-08-16 07:18:27 +02:00
|
|
|
front of the list.
|
|
|
|
|
|
|
|
|
|
This loop interacts with the Design::del_node method
|
|
|
|
|
so that the functor is free to delete any nodes it
|
|
|
|
|
choose. The destructors of the NetNode objects call
|
|
|
|
|
the del_node method, which checks with the
|
|
|
|
|
nodes_functor_* members, to keep the iterator
|
|
|
|
|
operating safely. */
|
|
|
|
|
nodes_functor_cur_ = nodes_;
|
1999-11-01 03:07:40 +01:00
|
|
|
do {
|
2002-08-16 07:18:27 +02:00
|
|
|
nodes_functor_nxt_ = nodes_functor_cur_->node_next_;
|
|
|
|
|
nodes_functor_cur_->functor_node(this, fun);
|
|
|
|
|
|
|
|
|
|
if (nodes_functor_nxt_ == 0)
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
nodes_functor_cur_ = nodes_functor_nxt_;
|
|
|
|
|
} while (nodes_ && (nodes_functor_cur_ != nodes_));
|
|
|
|
|
nodes_functor_cur_ = 0;
|
|
|
|
|
nodes_functor_nxt_ = 0;
|
2000-07-16 06:56:07 +02:00
|
|
|
|
1999-11-01 03:07:40 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void NetNode::functor_node(Design*, functor_t*)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
1999-12-30 05:19:12 +01:00
|
|
|
void NetAddSub::functor_node(Design*des, functor_t*fun)
|
|
|
|
|
{
|
|
|
|
|
fun->lpm_add_sub(des, this);
|
|
|
|
|
}
|
|
|
|
|
|
2000-04-20 02:28:03 +02:00
|
|
|
void NetCompare::functor_node(Design*des, functor_t*fun)
|
|
|
|
|
{
|
|
|
|
|
fun->lpm_compare(des, this);
|
|
|
|
|
}
|
|
|
|
|
|
1999-12-17 07:18:15 +01:00
|
|
|
void NetConst::functor_node(Design*des, functor_t*fun)
|
|
|
|
|
{
|
|
|
|
|
fun->lpm_const(des, this);
|
|
|
|
|
}
|
|
|
|
|
|
2000-04-01 23:40:22 +02:00
|
|
|
void NetDivide::functor_node(Design*des, functor_t*fun)
|
|
|
|
|
{
|
|
|
|
|
fun->lpm_divide(des, this);
|
|
|
|
|
}
|
|
|
|
|
|
1999-11-01 03:07:40 +01:00
|
|
|
void NetFF::functor_node(Design*des, functor_t*fun)
|
|
|
|
|
{
|
|
|
|
|
fun->lpm_ff(des, this);
|
1999-07-18 00:01:13 +02:00
|
|
|
}
|
|
|
|
|
|
2005-07-07 18:22:49 +02:00
|
|
|
void NetLiteral::functor_node(Design*des, functor_t*fun)
|
|
|
|
|
{
|
|
|
|
|
fun->lpm_literal(des, this);
|
|
|
|
|
}
|
|
|
|
|
|
1999-12-17 07:18:15 +01:00
|
|
|
void NetLogic::functor_node(Design*des, functor_t*fun)
|
|
|
|
|
{
|
|
|
|
|
fun->lpm_logic(des, this);
|
|
|
|
|
}
|
|
|
|
|
|
2000-09-17 23:26:15 +02:00
|
|
|
void NetModulo::functor_node(Design*des, functor_t*fun)
|
|
|
|
|
{
|
|
|
|
|
fun->lpm_modulo(des, this);
|
|
|
|
|
}
|
|
|
|
|
|
2000-01-13 04:35:35 +01:00
|
|
|
void NetMult::functor_node(Design*des, functor_t*fun)
|
|
|
|
|
{
|
|
|
|
|
fun->lpm_mult(des, this);
|
|
|
|
|
}
|
|
|
|
|
|
2000-07-15 07:13:43 +02:00
|
|
|
void NetMux::functor_node(Design*des, functor_t*fun)
|
|
|
|
|
{
|
|
|
|
|
fun->lpm_mux(des, this);
|
|
|
|
|
}
|
|
|
|
|
|
2005-05-24 03:44:27 +02:00
|
|
|
void NetSignExtend::functor_node(Design*des, functor_t*fun)
|
|
|
|
|
{
|
|
|
|
|
fun->sign_extend(des, this);
|
|
|
|
|
}
|
|
|
|
|
|
2005-02-03 05:56:20 +01:00
|
|
|
void NetUReduce::functor_node(Design*des, functor_t*fun)
|
|
|
|
|
{
|
|
|
|
|
fun->lpm_ureduce(des, this);
|
|
|
|
|
}
|
|
|
|
|
|
1999-12-01 07:06:16 +01:00
|
|
|
proc_match_t::~proc_match_t()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int NetProc::match_proc(proc_match_t*that)
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int proc_match_t::assign(NetAssign*)
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int NetAssign::match_proc(proc_match_t*that)
|
|
|
|
|
{
|
|
|
|
|
return that->assign(this);
|
|
|
|
|
}
|
|
|
|
|
|
2000-08-01 04:48:41 +02:00
|
|
|
int proc_match_t::assign_nb(NetAssignNB*)
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int NetAssignNB::match_proc(proc_match_t*that)
|
|
|
|
|
{
|
|
|
|
|
return that->assign_nb(this);
|
|
|
|
|
}
|
|
|
|
|
|
2000-02-13 05:35:43 +01:00
|
|
|
int proc_match_t::block(NetBlock*)
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int NetBlock::match_proc(proc_match_t*that)
|
|
|
|
|
{
|
|
|
|
|
return that->block(this);
|
|
|
|
|
}
|
|
|
|
|
|
1999-12-01 07:06:16 +01:00
|
|
|
int proc_match_t::condit(NetCondit*)
|
|
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int NetCondit::match_proc(proc_match_t*that)
|
|
|
|
|
{
|
|
|
|
|
return that->condit(this);
|
|
|
|
|
}
|
|
|
|
|
|
2000-04-12 22:02:52 +02:00
|
|
|
int NetEvWait::match_proc(proc_match_t*that)
|
1999-12-01 07:06:16 +01:00
|
|
|
{
|
2000-04-12 22:02:52 +02:00
|
|
|
return that->event_wait(this);
|
1999-12-01 07:06:16 +01:00
|
|
|
}
|
|
|
|
|
|
2000-04-12 22:02:52 +02:00
|
|
|
int proc_match_t::event_wait(NetEvWait*)
|
1999-12-01 07:06:16 +01:00
|
|
|
{
|
2000-04-12 22:02:52 +02:00
|
|
|
return 0;
|
1999-12-01 07:06:16 +01:00
|
|
|
}
|
|
|
|
|
|
1998-11-04 00:28:49 +01:00
|
|
|
/*
|
1999-07-18 00:01:13 +02:00
|
|
|
* $Log: functor.cc,v $
|
2005-07-07 18:22:49 +02:00
|
|
|
* Revision 1.35 2005/07/07 16:22:49 steve
|
|
|
|
|
* Generalize signals to carry types.
|
|
|
|
|
*
|
2005-05-24 03:44:27 +02:00
|
|
|
* Revision 1.34 2005/05/24 01:44:27 steve
|
|
|
|
|
* Do sign extension of structuran nets.
|
|
|
|
|
*
|
2005-02-03 05:56:20 +01:00
|
|
|
* Revision 1.33 2005/02/03 04:56:20 steve
|
|
|
|
|
* laborate reduction gates into LPM_RED_ nodes.
|
|
|
|
|
*
|
2004-10-04 03:10:51 +02:00
|
|
|
* Revision 1.32 2004/10/04 01:10:53 steve
|
|
|
|
|
* Clean up spurious trailing white space.
|
|
|
|
|
*
|
2002-08-16 07:18:27 +02:00
|
|
|
* Revision 1.31 2002/08/16 05:18:27 steve
|
|
|
|
|
* Fix intermix of node functors and node delete.
|
|
|
|
|
*
|
2002-08-12 03:34:58 +02:00
|
|
|
* Revision 1.30 2002/08/12 01:34:59 steve
|
|
|
|
|
* conditional ident string using autoconfig.
|
|
|
|
|
*
|
2002-08-11 00:07:38 +02:00
|
|
|
* Revision 1.29 2002/08/10 22:07:38 steve
|
|
|
|
|
* Remove useless error messages.
|
|
|
|
|
*
|
2002-06-05 05:44:25 +02:00
|
|
|
* Revision 1.28 2002/06/05 03:44:25 steve
|
|
|
|
|
* Add support for memory words in l-value of
|
|
|
|
|
* non-blocking assignments, and remove the special
|
|
|
|
|
* NetAssignMem_ and NetAssignMemNB classes.
|
|
|
|
|
*
|
2002-06-04 07:38:43 +02:00
|
|
|
* Revision 1.27 2002/06/04 05:38:44 steve
|
|
|
|
|
* Add support for memory words in l-value of
|
|
|
|
|
* blocking assignments, and remove the special
|
|
|
|
|
* NetAssignMem class.
|
|
|
|
|
*
|
2001-10-19 23:53:24 +02:00
|
|
|
* Revision 1.26 2001/10/19 21:53:24 steve
|
|
|
|
|
* Support multiple root modules (Philip Blundell)
|
|
|
|
|
*
|
2001-07-25 05:10:48 +02:00
|
|
|
* Revision 1.25 2001/07/25 03:10:49 steve
|
|
|
|
|
* Create a config.h.in file to hold all the config
|
|
|
|
|
* junk, and support gcc 3.0. (Stephan Boettcher)
|
|
|
|
|
*
|
2000-11-19 21:48:30 +01:00
|
|
|
* Revision 1.24 2000/11/19 20:48:30 steve
|
|
|
|
|
* Fix cases where signal iteration might die early.
|
|
|
|
|
*
|
2000-11-18 05:53:04 +01:00
|
|
|
* Revision 1.23 2000/11/18 04:53:04 steve
|
|
|
|
|
* Watch out in functor, it may delete the last signal.
|
|
|
|
|
*
|
2000-09-17 23:26:15 +02:00
|
|
|
* Revision 1.22 2000/09/17 21:26:15 steve
|
|
|
|
|
* Add support for modulus (Eric Aardoom)
|
|
|
|
|
*
|
2000-08-01 04:48:41 +02:00
|
|
|
* Revision 1.21 2000/08/01 02:48:41 steve
|
|
|
|
|
* Support <= in synthesis of DFF and ram devices.
|
1998-11-04 00:28:49 +01:00
|
|
|
*/
|
|
|
|
|
|