148 lines
4.1 KiB
C
148 lines
4.1 KiB
C
#ifndef __pointers_H
|
|
#define __pointers_H
|
|
/*
|
|
* Copyright (c) 2001 Stephen Williams (steve@icarus.com)
|
|
*
|
|
* 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: pointers.h,v 1.10 2003/07/03 20:03:36 steve Exp $"
|
|
#endif
|
|
|
|
/*
|
|
* This header file describes the various "pointer" integral types
|
|
* that are used in vvp, along with functions that can be used to
|
|
* manipulate those pointers.
|
|
*/
|
|
|
|
# include "config.h"
|
|
|
|
/*
|
|
* The vvp_ipoint_t is a 32bit integer that encodes the address of a
|
|
* functor input port.
|
|
*
|
|
* The typedef below gets the type properly declared as an integral
|
|
* type that is big enough. The config.h header file has the defines
|
|
* needed for the following pre-processor magic to work.
|
|
*/
|
|
# if SIZEOF_UNSIGNED >= 4
|
|
typedef unsigned vvp_ipoint_t;
|
|
#elif SIZEOF_UNSIGNED_LONG >= 4
|
|
typedef unsigned long vvp_ipoint_t;
|
|
#else
|
|
#error "I need an unsigned type that is 32 bits!"
|
|
#endif
|
|
|
|
/*
|
|
* This is a native-pointer version of the vvp_ipoint_t
|
|
*/
|
|
typedef struct functor_s *functor_t;
|
|
|
|
/*
|
|
* Given a functor generic address and a desired port, this function
|
|
* makes a complete vvp_ipoint_t that points to the port of the given
|
|
* functor. The The result points to the same functor as the input
|
|
* pointer, but addresses the supplied port instead.
|
|
*/
|
|
inline vvp_ipoint_t ipoint_make(vvp_ipoint_t func, unsigned port)
|
|
{
|
|
return (func & ~3) | (port & 3);
|
|
}
|
|
|
|
/*
|
|
* This implements pointer arithmetic for vvp_point_t pointers. Add
|
|
* the given index to the functor part of the pointer.
|
|
*/
|
|
inline vvp_ipoint_t ipoint_index(vvp_ipoint_t base, unsigned idx)
|
|
{
|
|
return base + (idx<<2);
|
|
}
|
|
|
|
/*
|
|
* Return the ipoint of an input into a multi-functor input vector.
|
|
*/
|
|
inline vvp_ipoint_t ipoint_input_index(vvp_ipoint_t base, unsigned idx)
|
|
{
|
|
return (base & ~3) + idx;
|
|
}
|
|
|
|
/*
|
|
* This function returns the port index of a functor given a complete
|
|
* vvp_ipoint_t pointer.
|
|
*/
|
|
inline unsigned ipoint_port(vvp_ipoint_t func)
|
|
{
|
|
return func & 3;
|
|
}
|
|
|
|
/*
|
|
* The functor event mode uses a pointer of this type to point to the
|
|
* extended event data.
|
|
*/
|
|
typedef struct event_functor_s *vvp_event_t;
|
|
|
|
|
|
typedef struct vthread_s*vthread_t;
|
|
|
|
|
|
/* vector of functors */
|
|
|
|
typedef struct vvp_fvector_s *vvp_fvector_t;
|
|
|
|
/* delay object */
|
|
|
|
typedef struct vvp_delay_s *vvp_delay_t;
|
|
|
|
|
|
/*
|
|
* $Log: pointers.h,v $
|
|
* Revision 1.10 2003/07/03 20:03:36 steve
|
|
* Remove the vvp_cpoint_t indirect code pointer.
|
|
*
|
|
* Revision 1.9 2002/08/12 01:35:08 steve
|
|
* conditional ident string using autoconfig.
|
|
*
|
|
* Revision 1.8 2001/12/06 03:31:25 steve
|
|
* Support functor delays for gates and UDP devices.
|
|
* (Stephan Boettcher)
|
|
*
|
|
* Revision 1.7 2001/11/07 03:34:42 steve
|
|
* Use functor pointers where vvp_ipoint_t is unneeded.
|
|
*
|
|
* Revision 1.6 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)
|
|
*
|
|
* Revision 1.5 2001/08/08 01:05:06 steve
|
|
* Initial implementation of vvp_fvectors.
|
|
* (Stephan Boettcher)
|
|
*
|
|
* Revision 1.4 2001/04/26 03:10:55 steve
|
|
* Redo and simplify UDP behavior.
|
|
*
|
|
* Revision 1.3 2001/03/26 04:00:39 steve
|
|
* Add the .event statement and the %wait instruction.
|
|
*
|
|
* Revision 1.2 2001/03/20 06:16:24 steve
|
|
* Add support for variable vectors.
|
|
*
|
|
* Revision 1.1 2001/03/11 00:29:39 steve
|
|
* Add the vvp engine to cvs.
|
|
*
|
|
*/
|
|
#endif
|