1999-07-18 00:01:13 +02:00
|
|
|
#ifndef __functor_H
|
|
|
|
|
#define __functor_H
|
|
|
|
|
/*
|
2005-02-03 05:56:20 +01:00
|
|
|
* Copyright (c) 1999-2005 Stephen Williams (steve@icarus.com)
|
1999-07-18 00:01:13 +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-02-03 05:56:20 +01:00
|
|
|
#ident "$Id: functor.h,v 1.21 2005/02/03 04:56:20 steve Exp $"
|
1999-07-18 00:01:13 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* The functor is an object that can be applied to a design to
|
|
|
|
|
* transform it. This is different from the target_t, which can only
|
|
|
|
|
* scan the design but not transform it in any way.
|
2000-07-16 06:56:07 +02:00
|
|
|
*
|
|
|
|
|
* When a functor it scanning a process, signal or node, the functor
|
|
|
|
|
* is free to manipulate the list by deleting items, including the
|
|
|
|
|
* node being scanned. The Design class scanner knows how to handle
|
|
|
|
|
* the situation. However, if objects are added to the netlist, there
|
|
|
|
|
* is no guarantee that object will be scanned unless the functor is
|
|
|
|
|
* rerun.
|
1999-07-18 00:01:13 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
class Design;
|
|
|
|
|
class NetNet;
|
|
|
|
|
class NetProcTop;
|
|
|
|
|
|
|
|
|
|
struct functor_t {
|
|
|
|
|
virtual ~functor_t();
|
|
|
|
|
|
2000-04-18 06:50:19 +02:00
|
|
|
/* Events are scanned here. */
|
|
|
|
|
virtual void event(class Design*des, class NetEvent*);
|
|
|
|
|
|
|
|
|
|
/* This is called once for each signal in the design. */
|
1999-07-18 00:01:13 +02:00
|
|
|
virtual void signal(class Design*des, class NetNet*);
|
|
|
|
|
|
|
|
|
|
/* This method is called for each process in the design. */
|
|
|
|
|
virtual void process(class Design*des, class NetProcTop*);
|
|
|
|
|
|
1999-12-30 05:19:12 +01:00
|
|
|
/* This method is called for each structural adder. */
|
|
|
|
|
virtual void lpm_add_sub(class Design*des, class NetAddSub*);
|
|
|
|
|
|
2000-04-20 02:28:03 +02:00
|
|
|
/* This method is called for each structural comparator. */
|
|
|
|
|
virtual void lpm_compare(class Design*des, class NetCompare*);
|
|
|
|
|
|
1999-12-17 07:18:15 +01:00
|
|
|
/* This method is called for each structural constant. */
|
|
|
|
|
virtual void lpm_const(class Design*des, class NetConst*);
|
|
|
|
|
|
2000-04-01 23:40:22 +02:00
|
|
|
/* This method is called for each structural constant. */
|
|
|
|
|
virtual void lpm_divide(class Design*des, class NetDivide*);
|
|
|
|
|
|
2000-09-17 23:26:15 +02:00
|
|
|
/* This method is called for each structural constant. */
|
|
|
|
|
virtual void lpm_modulo(class Design*des, class NetModulo*);
|
|
|
|
|
|
1999-11-01 03:07:40 +01:00
|
|
|
/* This method is called for each FF in the design. */
|
|
|
|
|
virtual void lpm_ff(class Design*des, class NetFF*);
|
1999-12-17 07:18:15 +01:00
|
|
|
|
|
|
|
|
/* Handle LPM combinational logic devices. */
|
|
|
|
|
virtual void lpm_logic(class Design*des, class NetLogic*);
|
2000-01-13 04:35:35 +01:00
|
|
|
|
|
|
|
|
/* This method is called for each multiplier. */
|
|
|
|
|
virtual void lpm_mult(class Design*des, class NetMult*);
|
2000-07-15 07:13:43 +02:00
|
|
|
|
|
|
|
|
/* This method is called for each MUX. */
|
|
|
|
|
virtual void lpm_mux(class Design*des, class NetMux*);
|
2005-02-03 05:56:20 +01:00
|
|
|
|
|
|
|
|
/* This method is called for each unary reduction gate. */
|
|
|
|
|
virtual void lpm_ureduce(class Design*des, class NetUReduce*);
|
1999-07-18 00:01:13 +02:00
|
|
|
};
|
|
|
|
|
|
1999-12-01 07:06:16 +01:00
|
|
|
struct proc_match_t {
|
|
|
|
|
virtual ~proc_match_t();
|
|
|
|
|
|
|
|
|
|
virtual int assign(class NetAssign*);
|
2000-08-01 04:48:41 +02:00
|
|
|
virtual int assign_nb(class NetAssignNB*);
|
1999-12-01 07:06:16 +01:00
|
|
|
virtual int condit(class NetCondit*);
|
2000-04-12 22:02:52 +02:00
|
|
|
virtual int event_wait(class NetEvWait*);
|
2000-02-13 05:35:43 +01:00
|
|
|
virtual int block(class NetBlock*);
|
1999-12-01 07:06:16 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
1999-07-18 00:01:13 +02:00
|
|
|
/*
|
|
|
|
|
* $Log: functor.h,v $
|
2005-02-03 05:56:20 +01:00
|
|
|
* Revision 1.21 2005/02/03 04:56:20 steve
|
|
|
|
|
* laborate reduction gates into LPM_RED_ nodes.
|
|
|
|
|
*
|
2002-08-12 03:34:58 +02:00
|
|
|
* Revision 1.20 2002/08/12 01:34:59 steve
|
|
|
|
|
* conditional ident string using autoconfig.
|
|
|
|
|
*
|
2002-06-05 05:44:25 +02:00
|
|
|
* Revision 1.19 2002/06/05 03:44:25 steve
|
|
|
|
|
* Add support for memory words in l-value of
|
|
|
|
|
* non-blocking assignments, and remove the special
|
|
|
|
|
* NetAssignMem_ and NetAssignMemNB classes.
|
|
|
|
|
*
|
2002-06-04 07:38:43 +02:00
|
|
|
* Revision 1.18 2002/06/04 05:38:44 steve
|
|
|
|
|
* Add support for memory words in l-value of
|
|
|
|
|
* blocking assignments, and remove the special
|
|
|
|
|
* NetAssignMem class.
|
|
|
|
|
*
|
2000-09-17 23:26:15 +02:00
|
|
|
* Revision 1.17 2000/09/17 21:26:15 steve
|
|
|
|
|
* Add support for modulus (Eric Aardoom)
|
|
|
|
|
*
|
2000-08-01 04:48:41 +02:00
|
|
|
* Revision 1.16 2000/08/01 02:48:42 steve
|
|
|
|
|
* Support <= in synthesis of DFF and ram devices.
|
|
|
|
|
*
|
2000-07-16 06:56:07 +02:00
|
|
|
* Revision 1.15 2000/07/16 04:56:07 steve
|
|
|
|
|
* Handle some edge cases during node scans.
|
|
|
|
|
*
|
2000-07-15 07:13:43 +02:00
|
|
|
* Revision 1.14 2000/07/15 05:13:44 steve
|
|
|
|
|
* Detect muxing Vz as a bufufN.
|
|
|
|
|
*
|
2000-04-20 02:28:03 +02:00
|
|
|
* Revision 1.13 2000/04/20 00:28:03 steve
|
|
|
|
|
* Catch some simple identity compareoptimizations.
|
1999-07-18 00:01:13 +02:00
|
|
|
*/
|
|
|
|
|
#endif
|