iverilog/vvp/resolv.h

89 lines
3.0 KiB
C
Raw Normal View History

2001-05-09 04:53:25 +02:00
#ifndef __resolv_H
#define __resolv_H
/*
2001-05-12 03:48:57 +02:00
* Copyright (c) 2001 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
*/
#ifdef HAVE_CVS_IDENT
#ident "$Id: resolv.h,v 1.15 2005/06/22 18:30:12 steve Exp $"
2001-05-09 04:53:25 +02:00
#endif
2001-12-18 06:32:11 +01:00
# include "config.h"
# include "vvp_net.h"
2001-05-09 04:53:25 +02:00
2001-12-15 02:54:38 +01:00
/*
* This functor type resolves its inputs using the Verilog method of
* combining signals, and outputs that resolved value. The puller
* value is also blended with the result. This helps with the
* implementation of tri0 and tri1, which have pull constants
* attached.
*
* This node takes in vvp_vector8_t values, and emits a vvp_vector8_t
* value. It also takes in vvp_vector4_t values, which it treats as
* strong values (or HiZ) for the sake of resolution. In any case, the
* propagated value is a vvp_vector8_t value.
2001-12-15 02:54:38 +01:00
*/
class resolv_functor : public vvp_net_fun_t {
2001-05-09 04:53:25 +02:00
public:
explicit resolv_functor(vvp_scalar_t hiz_value, const char* debug =0);
~resolv_functor();
2001-12-15 02:54:38 +01:00
void recv_vec4(vvp_net_ptr_t port, const vvp_vector4_t&bit);
void recv_vec8(vvp_net_ptr_t port, vvp_vector8_t bit);
2001-12-18 06:32:11 +01:00
void recv_vec4_pv(vvp_net_ptr_t port, const vvp_vector4_t&bit,
unsigned base, unsigned wid, unsigned vwid);
2001-12-15 02:54:38 +01:00
private:
vvp_vector8_t val_[4];
// Bit value to emit for HiZ bits.
vvp_scalar_t hiz_;
// True if debugging is enabled
const char* debug_label_;
2001-05-09 04:53:25 +02:00
};
/*
* $Log: resolv.h,v $
* Revision 1.15 2005/06/22 18:30:12 steve
* Inline more simple stuff, and more vector4_t by const reference for performance.
*
* Revision 1.14 2005/06/22 00:04:49 steve
* Reduce vvp_vector4 copies by using const references.
*
* Revision 1.13 2005/03/12 04:27:43 steve
* Implement VPI access to signal strengths,
* Fix resolution of ambiguous drive pairs,
* Fix spelling of scalar.
*
* Revision 1.12 2005/01/09 20:11:16 steve
* Add the .part/pv node and related functionality.
*
* Revision 1.11 2005/01/01 02:12:34 steve
* vvp_fun_signal propagates vvp_vector8_t vectors when appropriate.
*
* Revision 1.10 2004/12/31 06:00:06 steve
* Implement .resolv functors, and stub signals recv_vec8 method.
*
* Revision 1.9 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-05-09 04:53:25 +02:00
*
*/
#endif