1999-09-29 02:42:50 +02:00
|
|
|
#ifndef __netmisc_H
|
|
|
|
|
#define __netmisc_H
|
|
|
|
|
/*
|
2000-02-23 03:56:53 +01:00
|
|
|
* Copyright (c) 1999-2000 Stephen Williams (steve@icarus.com)
|
1999-09-29 02:42:50 +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
|
|
|
|
|
*/
|
2000-02-23 03:56:53 +01:00
|
|
|
#if !defined(WINNT) && !defined(macintosh)
|
2001-02-15 07:59:35 +01:00
|
|
|
#ident "$Id: netmisc.h,v 1.12 2001/02/15 06:59:36 steve Exp $"
|
1999-09-29 02:42:50 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
# include "netlist.h"
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* This funciton transforms an expression by padding the high bits
|
|
|
|
|
* with V0 until the expression has the desired width. This may mean
|
|
|
|
|
* not transforming the expression at all, if it is already wide
|
|
|
|
|
* enough.
|
|
|
|
|
*/
|
|
|
|
|
extern NetExpr*pad_to_width(NetExpr*expr, unsigned wid);
|
2001-02-15 07:59:35 +01:00
|
|
|
extern NetNet*pad_to_width(Design*des, NetNet*n, unsigned w);
|
1999-09-29 02:42:50 +02:00
|
|
|
|
2000-05-14 19:55:04 +02:00
|
|
|
/*
|
|
|
|
|
* This local function returns true if all the the possible drivers of
|
|
|
|
|
* this link are constant. It will also return true if there are no
|
|
|
|
|
* drivers at all.
|
|
|
|
|
*/
|
|
|
|
|
extern bool link_drivers_constant(const Link&lnk);
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* This function returns the value of the constant driving this link,
|
|
|
|
|
* or Vz if there is no constant. The results of this function are
|
|
|
|
|
* only meaningful if link_drivers_constant(lnk) == true.
|
|
|
|
|
*/
|
|
|
|
|
extern verinum::V driven_value(const Link&lnk);
|
|
|
|
|
|
2000-09-20 04:53:14 +02:00
|
|
|
/*
|
|
|
|
|
* In some cases the lval is accessible as a pointer to the head of
|
|
|
|
|
* a list of NetAssign_ objects. This function returns the width of
|
|
|
|
|
* the l-value represented by this list.
|
|
|
|
|
*/
|
|
|
|
|
extern unsigned count_lval_width(const class NetAssign_*first);
|
|
|
|
|
|
2001-02-10 21:29:39 +01:00
|
|
|
/*
|
|
|
|
|
* This function elaborates an expression, and tries to evaluate it
|
|
|
|
|
* right away. It is useful for those places where the user is
|
|
|
|
|
* supposed to supply a constant expression.
|
|
|
|
|
*/
|
|
|
|
|
class PExpr;
|
|
|
|
|
extern NetExpr* elab_and_eval(Design*des, NetScope*scope, const PExpr*pe);
|
2000-09-20 04:53:14 +02:00
|
|
|
|
1999-09-29 02:42:50 +02:00
|
|
|
/*
|
|
|
|
|
* $Log: netmisc.h,v $
|
2001-02-15 07:59:35 +01:00
|
|
|
* Revision 1.12 2001/02/15 06:59:36 steve
|
|
|
|
|
* FreeBSD port has a maintainer now.
|
|
|
|
|
*
|
2001-02-10 21:29:39 +01:00
|
|
|
* Revision 1.11 2001/02/10 20:29:39 steve
|
|
|
|
|
* In the context of range declarations, use elab_and_eval instead
|
|
|
|
|
* of the less robust eval_const methods.
|
|
|
|
|
*
|
2000-11-20 01:58:40 +01:00
|
|
|
* Revision 1.10 2000/11/20 00:58:40 steve
|
|
|
|
|
* Add support for supply nets (PR#17)
|
|
|
|
|
*
|
2000-09-20 04:53:14 +02:00
|
|
|
* Revision 1.9 2000/09/20 02:53:15 steve
|
|
|
|
|
* Correctly measure comples l-values of assignments.
|
|
|
|
|
*
|
2000-06-25 21:59:41 +02:00
|
|
|
* Revision 1.8 2000/06/25 19:59:42 steve
|
|
|
|
|
* Redesign Links to include the Nexus class that
|
|
|
|
|
* carries properties of the connected set of links.
|
|
|
|
|
*
|
2000-05-14 19:55:04 +02:00
|
|
|
* Revision 1.7 2000/05/14 17:55:04 steve
|
|
|
|
|
* Support initialization of FF Q value.
|
1999-09-29 02:42:50 +02:00
|
|
|
*/
|
|
|
|
|
#endif
|