441 lines
11 KiB
C++
441 lines
11 KiB
C++
/*
|
|
* Copyright (c) 1999-2000 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: set_width.cc,v 1.23 2002/08/12 01:35:00 steve Exp $"
|
|
#endif
|
|
|
|
# include "config.h"
|
|
|
|
# include <iostream>
|
|
|
|
/*
|
|
* This file contains set_width methods for the various NetExpr
|
|
* classes. The set_width method is used by elaboration to ask the
|
|
* expression to resize itself. If the expression can't, then the
|
|
* set_width method will return false and the caller will arrange for
|
|
* whatever is needed to deal with the size mismatch.
|
|
*/
|
|
# include "netlist.h"
|
|
# include "netmisc.h"
|
|
# include <typeinfo>
|
|
|
|
|
|
bool NetExpr::set_width(unsigned w)
|
|
{
|
|
cerr << typeid(*this).name() << ": set_width(unsigned) "
|
|
"not implemented." << endl;
|
|
expr_width(w);
|
|
return false;
|
|
}
|
|
|
|
bool NetEBinary::set_width(unsigned w)
|
|
{
|
|
bool flag = true;
|
|
switch (op_) {
|
|
|
|
case 'l': // left shift (<<)
|
|
case 'r': // right shift (>>)
|
|
/* these operators are handled in the derived class. */
|
|
assert(0);
|
|
break;
|
|
|
|
/* The default rule is that the operands of the binary
|
|
operator might as well use the same width as the
|
|
output from the binary operation. */
|
|
default:
|
|
expr_width(left_->expr_width() > right_->expr_width()
|
|
? left_->expr_width() : right_->expr_width());
|
|
cerr << "NetEBinary::set_width(): Using default for " <<
|
|
op_ << "." << endl;
|
|
flag = false;
|
|
|
|
case '%':
|
|
case '/':
|
|
flag = left_->set_width(w) && flag;
|
|
flag = right_->set_width(w) && flag;
|
|
expr_width(w);
|
|
break;
|
|
}
|
|
return flag;
|
|
}
|
|
|
|
/*
|
|
* The bitwise logical operators have operands the same size as the
|
|
* result. Anything else is a mess.
|
|
*/
|
|
bool NetEBAdd::set_width(unsigned w)
|
|
{
|
|
|
|
unsigned wid = w;
|
|
if (left_->expr_width() > wid)
|
|
wid = left_->expr_width();
|
|
if (right_->expr_width() > wid)
|
|
wid = right_->expr_width();
|
|
|
|
left_->set_width(wid);
|
|
right_->set_width(wid);
|
|
|
|
if (left_->expr_width() < wid) {
|
|
NetExpr*tmp = pad_to_width(left_, wid);
|
|
assert(tmp);
|
|
left_ = tmp;
|
|
}
|
|
|
|
if (right_->expr_width() < wid) {
|
|
NetExpr*tmp = pad_to_width(right_, wid);
|
|
assert(tmp);
|
|
right_ = tmp;
|
|
}
|
|
|
|
expr_width(wid);
|
|
return wid == w;
|
|
}
|
|
|
|
/*
|
|
* The bitwise logical operators have operands the same size as the
|
|
* result. Anything else is a mess. I first try to get the operands to
|
|
* shrink to the desired size. I then expand operands that are too small.
|
|
*/
|
|
bool NetEBBits::set_width(unsigned w)
|
|
{
|
|
/* First, give the operands a chance to adjust themselves to
|
|
the requested width. */
|
|
left_->set_width(w);
|
|
right_->set_width(w);
|
|
|
|
|
|
/* */
|
|
|
|
unsigned use_width = w;
|
|
|
|
|
|
/* If the operands end up too small, then pad them to suit. */
|
|
|
|
if (left_->expr_width() < use_width) {
|
|
NetExpr*tmp = pad_to_width(left_, use_width);
|
|
assert(tmp);
|
|
left_ = tmp;
|
|
}
|
|
|
|
if (right_->expr_width() < w) {
|
|
NetExpr*tmp = pad_to_width(right_, use_width);
|
|
assert(tmp);
|
|
right_ = tmp;
|
|
}
|
|
|
|
|
|
/* And here is the final width. If this is not the size the
|
|
caller requested, then return false. Otherwise, return
|
|
true. */
|
|
expr_width(use_width);
|
|
return w == use_width;
|
|
}
|
|
|
|
/*
|
|
* Comparison operators allow the subexpressions to have
|
|
* their own natural width, but the comparison operator result has a
|
|
* fixed width of 1.
|
|
*/
|
|
bool NetEBComp::set_width(unsigned w)
|
|
{
|
|
return (w == 1);
|
|
}
|
|
|
|
/*
|
|
* There is nothing we can do to the operands of a division to make it
|
|
* confirm to the requested width. Force the context to pad or truncate.
|
|
*/
|
|
bool NetEBDiv::set_width(unsigned w)
|
|
{
|
|
return w == expr_width();
|
|
}
|
|
|
|
bool NetEBLogic::set_width(unsigned w)
|
|
{
|
|
bool flag;
|
|
flag = left_->set_width(right_->expr_width());
|
|
if (!flag)
|
|
flag = right_->set_width(left_->expr_width());
|
|
return (w == 1);
|
|
}
|
|
|
|
/*
|
|
* There is nothing we can do to the operands of a multiply to make it
|
|
* confirm to the requested width. Force the context to pad or truncate.
|
|
*/
|
|
bool NetEBMult::set_width(unsigned w)
|
|
{
|
|
return w == expr_width();
|
|
}
|
|
|
|
/*
|
|
* The shift operator allows the shift amount to have its own
|
|
* natural width. The width of the operator result is the width of the
|
|
* left operand, the value that is to be shifted.
|
|
*/
|
|
bool NetEBShift::set_width(unsigned w)
|
|
{
|
|
bool flag = true;
|
|
|
|
left_->set_width(w);
|
|
if (left_->expr_width() < w)
|
|
left_ = pad_to_width(left_, w);
|
|
|
|
expr_width(left_->expr_width());
|
|
flag = expr_width() == w;
|
|
|
|
return flag;
|
|
}
|
|
|
|
/*
|
|
* Add up the widths from all the expressions that are concatenated
|
|
* together. This is the width of the expression, tough luck if you
|
|
* want it otherwise.
|
|
*
|
|
* If during the course of elaboration one of the sub-expressions is
|
|
* broken, then don't count it in the width. This doesn't really
|
|
* matter because the null expression is indication of an error and
|
|
* the compiler will not go beyond elaboration.
|
|
*/
|
|
bool NetEConcat::set_width(unsigned w)
|
|
{
|
|
unsigned sum = 0;
|
|
for (unsigned idx = 0 ; idx < parms_.count() ; idx += 1)
|
|
if (parms_[idx] != 0)
|
|
sum += parms_[idx]->expr_width();
|
|
|
|
sum *= repeat();
|
|
expr_width(sum);
|
|
if (sum != w) return false;
|
|
return true;
|
|
}
|
|
|
|
bool NetEConst::set_width(unsigned w)
|
|
{
|
|
if (w == value_.len()) {
|
|
expr_width(w);
|
|
return true;
|
|
}
|
|
|
|
if (w > value_.len()) {
|
|
verinum::V pad = verinum::V0;
|
|
if (value_.has_sign())
|
|
pad = value_.get(value_.len()-1);
|
|
|
|
verinum tmp (verinum::V0, w);
|
|
for (unsigned idx = 0 ; idx < value_.len() ; idx += 1)
|
|
tmp.set(idx, value_[idx]);
|
|
for (unsigned idx = value_.len() ; idx < w ; idx += 1)
|
|
tmp.set(idx, pad);
|
|
|
|
value_ = tmp;
|
|
|
|
expr_width(w);
|
|
return true;
|
|
|
|
} else {
|
|
unsigned use_w = w;
|
|
bool flag = true;
|
|
|
|
// Don't reduce a number too small to hold all the
|
|
// significant bits.
|
|
for (unsigned idx = w ; idx < value_.len() ; idx += 1)
|
|
if (value_[idx] != verinum::V0)
|
|
use_w = idx+1;
|
|
|
|
verinum tmp (verinum::V0, use_w);
|
|
for (unsigned idx = 0 ; idx < use_w ; idx += 1)
|
|
tmp.set(idx, value_[idx]);
|
|
|
|
value_ = tmp;
|
|
expr_width(use_w);
|
|
return use_w == w;
|
|
}
|
|
}
|
|
|
|
bool NetEMemory::set_width(unsigned w)
|
|
{
|
|
if (w != mem_->width())
|
|
return false;
|
|
|
|
expr_width(w);
|
|
return true;
|
|
}
|
|
|
|
bool NetEParam::set_width(unsigned)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool NetESFunc::set_width(unsigned w)
|
|
{
|
|
return w == expr_width();
|
|
}
|
|
|
|
/*
|
|
* The signal should automatically pad with zeros to get to th desired
|
|
* width. Do not allow signal bits to be truncated, however.
|
|
*/
|
|
bool NetESignal::set_width(unsigned w)
|
|
{
|
|
if (w != bit_count())
|
|
return false;
|
|
|
|
return true;
|
|
}
|
|
|
|
bool NetEBitSel::set_width(unsigned w)
|
|
{
|
|
if (w != 1) return false;
|
|
return true;
|
|
}
|
|
|
|
bool NetETernary::set_width(unsigned w)
|
|
{
|
|
bool flag = true;
|
|
flag = flag && true_val_->set_width(w);
|
|
flag = flag && false_val_->set_width(w);
|
|
expr_width(true_val_->expr_width());
|
|
return flag;
|
|
}
|
|
|
|
/*
|
|
* XXXX FIX ME: For now, just take whatever the caller says as my
|
|
* width. What I really need to do is note the width of the output
|
|
* parameter of the function definition and take that into account.
|
|
*/
|
|
bool NetEUFunc::set_width(unsigned wid)
|
|
{
|
|
expr_width(wid);
|
|
return true;
|
|
}
|
|
|
|
bool NetEUnary::set_width(unsigned w)
|
|
{
|
|
bool flag = true;
|
|
switch (op_) {
|
|
case '~':
|
|
case '-':
|
|
flag = expr_->set_width(w);
|
|
expr_width(w);
|
|
break;
|
|
case '!':
|
|
return w == 1;
|
|
default:
|
|
flag = expr_width() == w;
|
|
break;
|
|
}
|
|
|
|
return flag;
|
|
}
|
|
|
|
/*
|
|
* Unary reduction operators allow its operand to have any width. The
|
|
* result is defined to be 1.
|
|
*/
|
|
bool NetEUReduce::set_width(unsigned w)
|
|
{
|
|
return w == 1;
|
|
}
|
|
|
|
|
|
/*
|
|
* $Log: set_width.cc,v $
|
|
* Revision 1.23 2002/08/12 01:35:00 steve
|
|
* conditional ident string using autoconfig.
|
|
*
|
|
* Revision 1.22 2002/05/05 21:11:50 steve
|
|
* Put off evaluation of concatenation repeat expresions
|
|
* until after parameters are defined. This allows parms
|
|
* to be used in repeat expresions.
|
|
*
|
|
* Add the builtin $signed system function.
|
|
*
|
|
* Revision 1.21 2002/04/27 04:49:27 steve
|
|
* If the verinum is already right, no need to reset it.
|
|
*
|
|
* Revision 1.20 2001/11/19 04:26:46 steve
|
|
* Unary reduction operators are all 1-bit results.
|
|
*
|
|
* Revision 1.19 2001/07/27 04:51:44 steve
|
|
* Handle part select expressions as variants of
|
|
* NetESignal/IVL_EX_SIGNAL objects, instead of
|
|
* creating new and useless temporary signals.
|
|
*
|
|
* Revision 1.18 2001/07/25 03:10:49 steve
|
|
* Create a config.h.in file to hold all the config
|
|
* junk, and support gcc 3.0. (Stephan Boettcher)
|
|
*
|
|
* Revision 1.17 2001/02/08 01:10:30 steve
|
|
* Remove dead code.
|
|
*
|
|
* Revision 1.16 2001/02/07 21:47:13 steve
|
|
* Fix expression widths for rvalues and parameters (PR#131,132)
|
|
*
|
|
* Revision 1.15 2001/01/27 05:41:48 steve
|
|
* Fix sign extension of evaluated constants. (PR#91)
|
|
*
|
|
* Revision 1.14 2000/06/18 03:29:52 steve
|
|
* Handle width expansion of shift operators.
|
|
*
|
|
* Revision 1.13 2000/05/04 03:37:59 steve
|
|
* Add infrastructure for system functions, move
|
|
* $time to that structure and add $random.
|
|
*
|
|
* Revision 1.12 2000/04/28 18:43:23 steve
|
|
* integer division in expressions properly get width.
|
|
*
|
|
* Revision 1.11 2000/04/26 03:33:32 steve
|
|
* Do not set width too small to hold significant bits.
|
|
*
|
|
* Revision 1.10 2000/04/21 02:46:42 steve
|
|
* Many Unary operators have known widths.
|
|
*
|
|
* Revision 1.9 2000/02/23 02:56:55 steve
|
|
* Macintosh compilers do not support ident.
|
|
*
|
|
* Revision 1.8 2000/01/13 03:35:35 steve
|
|
* Multiplication all the way to simulation.
|
|
*
|
|
* Revision 1.7 2000/01/01 19:56:51 steve
|
|
* Properly expand/shrink constants in expressions.
|
|
*
|
|
* Revision 1.6 1999/10/05 06:19:46 steve
|
|
* Add support for reduction NOR.
|
|
*
|
|
* Revision 1.5 1999/10/05 04:02:10 steve
|
|
* Relaxed width handling for <= assignment.
|
|
*
|
|
* Revision 1.4 1999/09/29 00:42:51 steve
|
|
* Allow expanding of additive operators.
|
|
*
|
|
* Revision 1.3 1999/09/23 03:56:57 steve
|
|
* Support shift operators.
|
|
*
|
|
* Revision 1.2 1999/09/23 02:27:50 steve
|
|
* comparison parameter width is self determined.
|
|
*
|
|
* Revision 1.1 1999/09/23 00:21:55 steve
|
|
* Move set_width methods into a single file,
|
|
* Add the NetEBLogic class for logic expressions,
|
|
* Fix error setting with of && in if statements.
|
|
*
|
|
*/
|
|
|