2001-05-09 04:53:25 +02:00
|
|
|
#ifndef __resolv_H
|
|
|
|
|
#define __resolv_H
|
|
|
|
|
/*
|
2008-04-21 04:21:41 +02:00
|
|
|
* Copyright (c) 2001-2008 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
|
|
|
|
|
*/
|
|
|
|
|
|
2001-12-18 06:32:11 +01:00
|
|
|
# include "config.h"
|
2004-12-11 03:31:25 +01:00
|
|
|
# include "vvp_net.h"
|
2001-05-09 04:53:25 +02:00
|
|
|
|
2001-12-15 02:54:38 +01:00
|
|
|
/*
|
2008-01-29 21:19:59 +01:00
|
|
|
* This functor type resolves its inputs using the Verilog method of
|
2001-12-15 03:11:51 +01:00
|
|
|
* combining signals, and outputs that resolved value. The puller
|
|
|
|
|
* value is also blended with the result. This helps with the
|
2004-12-11 03:31:25 +01:00
|
|
|
* implementation of tri0 and tri1, which have pull constants
|
|
|
|
|
* attached.
|
|
|
|
|
*
|
|
|
|
|
* This node takes in vvp_vector8_t values, and emits a vvp_vector8_t
|
2005-01-01 03:12:34 +01:00
|
|
|
* 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
|
|
|
*/
|
2004-12-11 03:31:25 +01:00
|
|
|
class resolv_functor : public vvp_net_fun_t {
|
2001-05-09 04:53:25 +02:00
|
|
|
|
|
|
|
|
public:
|
2007-07-12 06:38:56 +02:00
|
|
|
explicit resolv_functor(vvp_scalar_t hiz_value, const char* debug =0);
|
2004-12-11 03:31:25 +01:00
|
|
|
~resolv_functor();
|
2001-12-15 02:54:38 +01:00
|
|
|
|
2008-10-28 18:52:39 +01:00
|
|
|
void recv_vec4(vvp_net_ptr_t port, const vvp_vector4_t&bit,
|
|
|
|
|
vvp_context_t);
|
2008-06-12 21:08:02 +02:00
|
|
|
void recv_vec8(vvp_net_ptr_t port, const vvp_vector8_t&bit);
|
2001-12-18 06:32:11 +01:00
|
|
|
|
2005-06-22 20:30:12 +02:00
|
|
|
void recv_vec4_pv(vvp_net_ptr_t port, const vvp_vector4_t&bit,
|
2008-10-28 18:52:39 +01:00
|
|
|
unsigned base, unsigned wid, unsigned vwid,
|
|
|
|
|
vvp_context_t);
|
2008-07-17 02:58:34 +02:00
|
|
|
void recv_vec8_pv(vvp_net_ptr_t port, const vvp_vector8_t&bit,
|
|
|
|
|
unsigned base, unsigned wid, unsigned vwid);
|
2005-01-09 21:11:15 +01:00
|
|
|
|
2001-12-15 02:54:38 +01:00
|
|
|
private:
|
2004-12-31 07:00:06 +01:00
|
|
|
vvp_vector8_t val_[4];
|
2007-07-12 06:38:56 +02:00
|
|
|
// Bit value to emit for HiZ bits.
|
2005-03-12 05:27:42 +01:00
|
|
|
vvp_scalar_t hiz_;
|
2007-07-12 06:38:56 +02:00
|
|
|
// True if debugging is enabled
|
|
|
|
|
const char* debug_label_;
|
2001-05-09 04:53:25 +02:00
|
|
|
};
|
|
|
|
|
|
2008-04-21 04:21:41 +02:00
|
|
|
class resolv_wired_logic : public vvp_net_fun_t {
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
explicit resolv_wired_logic(void);
|
|
|
|
|
~resolv_wired_logic();
|
|
|
|
|
|
2008-10-28 18:52:39 +01:00
|
|
|
void recv_vec4(vvp_net_ptr_t port, const vvp_vector4_t&bit,
|
|
|
|
|
vvp_context_t);
|
2008-04-21 04:21:41 +02:00
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
virtual vvp_vector4_t wired_logic_math_(vvp_vector4_t&a, vvp_vector4_t&b) =0;
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
vvp_vector4_t val_[4];
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class resolv_triand : public resolv_wired_logic {
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
explicit resolv_triand(void) { }
|
|
|
|
|
~resolv_triand() { }
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
virtual vvp_vector4_t wired_logic_math_(vvp_vector4_t&a, vvp_vector4_t&b);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
class resolv_trior : public resolv_wired_logic {
|
|
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
explicit resolv_trior(void) { }
|
|
|
|
|
~resolv_trior() { }
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
virtual vvp_vector4_t wired_logic_math_(vvp_vector4_t&a, vvp_vector4_t&b);
|
|
|
|
|
};
|
|
|
|
|
|
2001-05-09 04:53:25 +02:00
|
|
|
#endif
|