2001-05-09 04:53:25 +02:00
|
|
|
/*
|
2004-12-11 03:31:25 +01:00
|
|
|
* Copyright (c) 2001-2004 Stephen Williams (steve@icarus.com)
|
2001-05-09 04:53:25 +02: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-03-12 05:27:42 +01:00
|
|
|
#ident "$Id: resolv.cc,v 1.22 2005/03/12 04:27:43 steve Exp $"
|
2001-05-09 04:53:25 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
# include "resolv.h"
|
|
|
|
|
# include "schedule.h"
|
2002-07-05 22:08:44 +02:00
|
|
|
# include "statistics.h"
|
2004-12-31 07:00:06 +01:00
|
|
|
# include <stdio.h>
|
2001-12-15 02:54:38 +01:00
|
|
|
# include <assert.h>
|
2001-05-09 04:53:25 +02:00
|
|
|
|
2001-05-30 05:02:35 +02:00
|
|
|
|
2005-03-12 05:27:42 +01:00
|
|
|
resolv_functor::resolv_functor(vvp_scalar_t hiz_value)
|
2004-12-31 07:00:06 +01:00
|
|
|
: hiz_(hiz_value)
|
2001-05-12 22:38:06 +02:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2004-12-31 07:00:06 +01:00
|
|
|
resolv_functor::~resolv_functor()
|
2001-12-15 02:54:38 +01:00
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2004-12-31 07:00:06 +01:00
|
|
|
void resolv_functor::recv_vec4(vvp_net_ptr_t port, vvp_vector4_t bit)
|
2001-12-15 02:54:38 +01:00
|
|
|
{
|
2004-12-31 07:00:06 +01:00
|
|
|
recv_vec8(port, vvp_vector8_t(bit, 6 /* STRONG */));
|
2001-12-15 02:54:38 +01:00
|
|
|
}
|
|
|
|
|
|
2005-01-09 21:11:15 +01:00
|
|
|
void resolv_functor::recv_vec4_pv(vvp_net_ptr_t port, vvp_vector4_t bit,
|
|
|
|
|
unsigned base, unsigned wid, unsigned vwid)
|
|
|
|
|
{
|
|
|
|
|
assert(bit.size() == wid);
|
|
|
|
|
vvp_vector4_t res (vwid);
|
|
|
|
|
|
|
|
|
|
for (unsigned idx = 0 ; idx < base ; idx += 1)
|
|
|
|
|
res.set_bit(idx, BIT4_Z);
|
|
|
|
|
|
|
|
|
|
for (unsigned idx = 0 ; idx < wid ; idx += 1)
|
|
|
|
|
res.set_bit(idx+base, bit.value(idx));
|
|
|
|
|
|
|
|
|
|
for (unsigned idx = base+wid ; idx < vwid ; idx += 1)
|
|
|
|
|
res.set_bit(idx, BIT4_Z);
|
|
|
|
|
|
|
|
|
|
recv_vec4(port, res);
|
|
|
|
|
}
|
|
|
|
|
|
2004-12-31 07:00:06 +01:00
|
|
|
void resolv_functor::recv_vec8(vvp_net_ptr_t port, vvp_vector8_t bit)
|
2001-05-09 04:53:25 +02:00
|
|
|
{
|
2004-12-31 07:00:06 +01:00
|
|
|
unsigned pdx = port.port();
|
|
|
|
|
vvp_net_t*ptr = port.ptr();
|
2001-12-06 04:31:24 +01:00
|
|
|
|
2004-12-31 07:00:06 +01:00
|
|
|
val_[pdx] = bit;
|
2001-12-06 04:31:24 +01:00
|
|
|
|
2004-12-31 07:00:06 +01:00
|
|
|
vvp_vector8_t out (bit);
|
2001-05-09 04:53:25 +02:00
|
|
|
|
2004-12-31 07:00:06 +01:00
|
|
|
for (unsigned idx = 0 ; idx < 4 ; idx += 1) {
|
|
|
|
|
if (val_[idx].size() == 0)
|
|
|
|
|
continue;
|
|
|
|
|
if (idx == pdx)
|
|
|
|
|
continue;
|
2004-12-11 03:31:25 +01:00
|
|
|
|
2004-12-31 07:00:06 +01:00
|
|
|
out = resolve(out, val_[idx]);
|
|
|
|
|
}
|
2004-12-11 03:31:25 +01:00
|
|
|
|
2005-02-13 06:26:30 +01:00
|
|
|
if (! hiz_.is_hiz()) {
|
|
|
|
|
for (unsigned idx = 0 ; idx < out.size() ; idx += 1) {
|
|
|
|
|
if (out.value(idx).is_hiz())
|
|
|
|
|
out.set_bit(idx, hiz_);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2004-12-31 07:00:06 +01:00
|
|
|
vvp_send_vec8(ptr->out, out);
|
2004-12-11 03:31:25 +01:00
|
|
|
}
|
|
|
|
|
|
2001-12-18 06:32:11 +01:00
|
|
|
|
2001-05-09 04:53:25 +02:00
|
|
|
/*
|
|
|
|
|
* $Log: resolv.cc,v $
|
2005-03-12 05:27:42 +01:00
|
|
|
* Revision 1.22 2005/03/12 04:27:43 steve
|
|
|
|
|
* Implement VPI access to signal strengths,
|
|
|
|
|
* Fix resolution of ambiguous drive pairs,
|
|
|
|
|
* Fix spelling of scalar.
|
|
|
|
|
*
|
2005-02-13 06:26:30 +01:00
|
|
|
* Revision 1.21 2005/02/13 05:26:30 steve
|
|
|
|
|
* tri0 and tri1 resolvers must replace HiZ with 0/1 after resolution.
|
|
|
|
|
*
|
2005-01-09 21:11:15 +01:00
|
|
|
* Revision 1.20 2005/01/09 20:11:16 steve
|
|
|
|
|
* Add the .part/pv node and related functionality.
|
|
|
|
|
*
|
2004-12-31 07:00:06 +01:00
|
|
|
* Revision 1.19 2004/12/31 06:00:06 steve
|
|
|
|
|
* Implement .resolv functors, and stub signals recv_vec8 method.
|
|
|
|
|
*
|
2004-12-11 03:31:25 +01:00
|
|
|
* Revision 1.18 2004/12/11 02:31:30 steve
|
|
|
|
|
* Rework of internals to carry vectors through nexus instead
|
|
|
|
|
* of single bits. Make the ivl, tgt-vvp and vvp initial changes
|
|
|
|
|
* down this path.
|
2001-12-18 06:32:11 +01:00
|
|
|
*
|
2001-05-09 04:53:25 +02:00
|
|
|
*/
|
|
|
|
|
|