2001-04-24 04:23:58 +02:00
|
|
|
#ifndef __udp_H
|
|
|
|
|
#define __udp_H
|
|
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2001 Stephen Williams (steve@icarus.com)
|
|
|
|
|
* Copyright (c) 2001 Stephan Boettcher <stephan@nevis.columbia.edu>
|
|
|
|
|
*
|
|
|
|
|
* 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
|
2003-09-17 05:39:55 +02:00
|
|
|
#ident "$Id: udp.h,v 1.13 2003/09/17 03:39:55 steve Exp $"
|
2001-04-24 04:23:58 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include "functor.h"
|
|
|
|
|
|
2001-10-31 05:27:46 +01:00
|
|
|
// UDP implementation:
|
|
|
|
|
|
2001-07-24 03:44:50 +02:00
|
|
|
typedef struct udp_table_entry_s *udp_table_entry_t;
|
|
|
|
|
|
2001-10-31 05:27:46 +01:00
|
|
|
struct vvp_udp_s
|
2001-04-24 04:23:58 +02:00
|
|
|
{
|
2001-05-06 05:51:37 +02:00
|
|
|
char *name;
|
2001-07-24 03:44:50 +02:00
|
|
|
udp_table_entry_t table;
|
2003-06-17 23:28:59 +02:00
|
|
|
unsigned ntable;
|
|
|
|
|
unsigned sequ;
|
|
|
|
|
unsigned nin;
|
2001-10-31 05:27:46 +01:00
|
|
|
unsigned char init;
|
|
|
|
|
|
2001-07-24 03:44:50 +02:00
|
|
|
void compile_table(char **tab);
|
2001-10-31 05:27:46 +01:00
|
|
|
unsigned char propagate(functor_t fu, vvp_ipoint_t i);
|
|
|
|
|
|
|
|
|
|
private:
|
2001-07-24 03:44:50 +02:00
|
|
|
void compile_row_(udp_table_entry_t, char *);
|
2001-04-24 04:23:58 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct vvp_udp_s *udp_create(char *label);
|
|
|
|
|
struct vvp_udp_s *udp_find(char *label);
|
2001-05-06 05:51:37 +02:00
|
|
|
|
2001-04-24 04:23:58 +02:00
|
|
|
|
2001-10-31 05:27:46 +01:00
|
|
|
// UDP instances:
|
2003-09-17 05:39:55 +02:00
|
|
|
/*
|
|
|
|
|
* A complete UDP instance includes one udp_functor_s functor that
|
|
|
|
|
* holds the output of the UDP, as well as the first 4 inputs. This
|
|
|
|
|
* also points to the vvp_udp_s table that is the behavior for the
|
|
|
|
|
* device.
|
|
|
|
|
*
|
|
|
|
|
* If there are more then 4 inputs to the device, then enough
|
|
|
|
|
* edge_inputs_functor_s functors is created to receive all the
|
|
|
|
|
* inputs. All the edge_inputs_functors_s ::out members point to the
|
|
|
|
|
* leading udp_functor_s object, so the ::set methods all invoke the
|
|
|
|
|
* ::set method of this functor.
|
|
|
|
|
*
|
|
|
|
|
* +---+ First object is a udp_functor_s object
|
|
|
|
|
* <----+ +--
|
|
|
|
|
* | +--
|
|
|
|
|
* | +--
|
|
|
|
|
* | +--
|
|
|
|
|
* +---+
|
|
|
|
|
* ^
|
|
|
|
|
* | +---+ Subsequent objects are edge_inputs_functor_s
|
|
|
|
|
* \-+ +-- that point their outputs to the leading
|
|
|
|
|
* ^ | +-- udp_functor_s object. There are as many
|
|
|
|
|
* | | +-- edge_inputs_functor_s objects as needed
|
|
|
|
|
* | | +-- to accommodate all the inputs of the user
|
|
|
|
|
* | +---+ defined primitive.
|
|
|
|
|
* |
|
|
|
|
|
* | +---+
|
|
|
|
|
* \-+ +--
|
|
|
|
|
* | +--
|
|
|
|
|
* | +--
|
|
|
|
|
* | +--
|
|
|
|
|
* +---+
|
|
|
|
|
* .
|
|
|
|
|
* .
|
|
|
|
|
* .
|
|
|
|
|
* (The propagate method of the vvp_udp_s object relies on the fact
|
|
|
|
|
* that the initial udp_functor_s and the subsequend
|
|
|
|
|
* edge_inputs_functor_s objects are consecutive in functor space.)
|
|
|
|
|
*/
|
2001-10-31 05:27:46 +01:00
|
|
|
class udp_functor_s : public edge_inputs_functor_s
|
|
|
|
|
{
|
2003-09-17 05:39:55 +02:00
|
|
|
public:
|
2001-10-31 05:27:46 +01:00
|
|
|
explicit udp_functor_s(vvp_udp_s *u) : udp(u) {}
|
|
|
|
|
void set(vvp_ipoint_t i, bool push, unsigned val, unsigned str);
|
|
|
|
|
vvp_udp_s *udp;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
2001-04-24 04:23:58 +02:00
|
|
|
/*
|
|
|
|
|
* $Log: udp.h,v $
|
2003-09-17 05:39:55 +02:00
|
|
|
* Revision 1.13 2003/09/17 03:39:55 steve
|
|
|
|
|
* Internal documentation of UDP devices.
|
|
|
|
|
*
|
2003-06-17 23:28:59 +02:00
|
|
|
* Revision 1.12 2003/06/17 21:28:59 steve
|
|
|
|
|
* Remove short int restrictions from vvp opcodes. (part 2)
|
|
|
|
|
*
|
2002-08-12 03:34:58 +02:00
|
|
|
* Revision 1.11 2002/08/12 01:35:08 steve
|
|
|
|
|
* conditional ident string using autoconfig.
|
|
|
|
|
*
|
2001-10-31 05:27:46 +01:00
|
|
|
* Revision 1.10 2001/10/31 04:27:47 steve
|
|
|
|
|
* Rewrite the functor type to have fewer functor modes,
|
|
|
|
|
* and use objects to manage the different types.
|
|
|
|
|
* (Stephan Boettcher)
|
|
|
|
|
*
|
2001-08-09 21:38:23 +02:00
|
|
|
* Revision 1.9 2001/08/09 19:38:23 steve
|
|
|
|
|
* Nets (wires) do not use their own functors.
|
|
|
|
|
* Modifications to propagation of values.
|
|
|
|
|
* (Stephan Boettcher)
|
2001-04-24 04:23:58 +02:00
|
|
|
*/
|
|
|
|
|
#endif
|