1999-09-20 04:21:10 +02:00
|
|
|
/*
|
2021-01-02 23:04:06 +01:00
|
|
|
* Copyright (c) 1999-2021 Stephen Williams (steve@icarus.com)
|
1999-09-20 04:21:10 +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
|
2012-08-29 03:41:23 +02:00
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
1999-09-20 04:21:10 +02:00
|
|
|
*/
|
|
|
|
|
|
2001-07-25 05:10:48 +02:00
|
|
|
# include "config.h"
|
2003-03-11 00:40:53 +01:00
|
|
|
# include "compiler.h"
|
2001-07-25 05:10:48 +02:00
|
|
|
|
|
|
|
|
# include <iostream>
|
2008-01-05 00:23:47 +01:00
|
|
|
# include <cstdlib>
|
2008-08-20 22:42:51 +02:00
|
|
|
# include <cstring>
|
2010-05-31 22:12:06 +02:00
|
|
|
# include <cmath>
|
2001-07-25 05:10:48 +02:00
|
|
|
|
1999-09-20 04:21:10 +02:00
|
|
|
# include "netlist.h"
|
2007-04-07 06:46:18 +02:00
|
|
|
# include "ivl_assert.h"
|
2008-03-08 03:51:50 +01:00
|
|
|
# include "netmisc.h"
|
1999-09-20 04:21:10 +02:00
|
|
|
|
2021-11-04 17:12:04 +01:00
|
|
|
using namespace std;
|
|
|
|
|
|
2011-02-26 23:59:52 +01:00
|
|
|
NetExpr* NetExpr::eval_tree()
|
1999-09-20 04:21:10 +02:00
|
|
|
{
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-07 22:07:10 +01:00
|
|
|
static void eval_debug(const NetExpr*expr, NetExpr*res, bool is_real)
|
|
|
|
|
{
|
|
|
|
|
if (res != 0) {
|
|
|
|
|
res->set_line(*expr);
|
|
|
|
|
if (debug_eval_tree) {
|
|
|
|
|
cerr << expr->get_fileline() << ": debug: Evaluated";
|
|
|
|
|
if (is_real) cerr << " (real)";
|
|
|
|
|
cerr << ": " << *expr << " --> " << *res << endl;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-05-29 22:56:16 +02:00
|
|
|
static bool get_real_arg_(const NetExpr*expr, verireal&val)
|
2007-04-07 06:46:18 +02:00
|
|
|
{
|
2008-03-08 03:51:50 +01:00
|
|
|
switch (expr->expr_type()) {
|
2007-04-07 06:46:18 +02:00
|
|
|
case IVL_VT_REAL: {
|
2012-05-29 22:56:16 +02:00
|
|
|
const NetECReal*c = dynamic_cast<const NetECReal*> (expr);
|
2008-03-08 03:51:50 +01:00
|
|
|
if (c == 0) return false;
|
|
|
|
|
val = c->value();
|
2007-04-07 06:46:18 +02:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case IVL_VT_BOOL:
|
|
|
|
|
case IVL_VT_LOGIC: {
|
2012-05-29 22:56:16 +02:00
|
|
|
const NetEConst*c = dynamic_cast<const NetEConst*>(expr);
|
2008-03-08 03:51:50 +01:00
|
|
|
if (c == 0) return false;
|
|
|
|
|
verinum tmp = c->value();
|
|
|
|
|
val = verireal(tmp.as_double());
|
2007-04-07 06:46:18 +02:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2012-10-08 05:29:24 +02:00
|
|
|
case IVL_VT_DARRAY:
|
|
|
|
|
return false;
|
|
|
|
|
|
2007-04-07 06:46:18 +02:00
|
|
|
default:
|
|
|
|
|
assert(0);
|
|
|
|
|
}
|
|
|
|
|
|
2008-03-08 03:51:50 +01:00
|
|
|
return true;
|
|
|
|
|
}
|
2007-04-07 06:46:18 +02:00
|
|
|
|
2012-05-29 22:56:16 +02:00
|
|
|
static bool get_real_arguments(const NetExpr*le, const NetExpr*re,
|
2010-11-01 22:37:06 +01:00
|
|
|
double&lval, double&rval)
|
|
|
|
|
{
|
|
|
|
|
verireal val;
|
|
|
|
|
|
|
|
|
|
if (!get_real_arg_(le, val)) return false;
|
|
|
|
|
lval = val.as_double();
|
|
|
|
|
|
|
|
|
|
if (!get_real_arg_(re, val)) return false;
|
|
|
|
|
rval = val.as_double();
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-04 00:58:06 +01:00
|
|
|
NetExpr* NetEBinary::eval_tree()
|
|
|
|
|
{
|
|
|
|
|
eval_expr(left_);
|
|
|
|
|
eval_expr(right_);
|
|
|
|
|
|
2013-02-07 22:44:40 +01:00
|
|
|
return eval_arguments_(left_, right_);
|
2013-02-04 00:58:06 +01:00
|
|
|
}
|
|
|
|
|
|
2013-02-03 10:32:49 +01:00
|
|
|
NetExpr* NetEBinary::eval_arguments_(const NetExpr*, const NetExpr*) const
|
2008-03-08 03:51:50 +01:00
|
|
|
{
|
2013-02-04 00:58:06 +01:00
|
|
|
// this method should be overridden in all sub-classes
|
2013-02-03 10:32:49 +01:00
|
|
|
ivl_assert(*this, 0);
|
|
|
|
|
return 0;
|
2007-04-07 06:46:18 +02:00
|
|
|
}
|
|
|
|
|
|
2012-05-29 22:56:16 +02:00
|
|
|
NetECReal* NetEBAdd::eval_tree_real_(const NetExpr*l, const NetExpr*r) const
|
2010-11-01 22:37:06 +01:00
|
|
|
{
|
2012-05-29 22:56:16 +02:00
|
|
|
double lval;
|
|
|
|
|
double rval;
|
2010-11-01 22:37:06 +01:00
|
|
|
|
2012-05-29 22:56:16 +02:00
|
|
|
bool flag = get_real_arguments(l, r, lval, rval);
|
2010-11-01 22:37:06 +01:00
|
|
|
if (!flag) return 0;
|
|
|
|
|
|
2012-05-29 22:56:16 +02:00
|
|
|
double res_val;
|
2010-11-01 22:37:06 +01:00
|
|
|
|
|
|
|
|
switch (op()) {
|
|
|
|
|
case '+':
|
|
|
|
|
res_val = lval + rval;
|
|
|
|
|
break;
|
|
|
|
|
case '-':
|
|
|
|
|
res_val = lval - rval;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
ivl_assert(*this, 0);
|
|
|
|
|
}
|
|
|
|
|
|
2012-05-29 22:56:16 +02:00
|
|
|
NetECReal*res = new NetECReal( verireal(res_val) );
|
2010-11-01 22:37:06 +01:00
|
|
|
ivl_assert(*this, res);
|
2013-02-07 22:44:40 +01:00
|
|
|
eval_debug(this, res, true);
|
2010-11-01 22:37:06 +01:00
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-26 23:59:52 +01:00
|
|
|
NetExpr* NetEBAdd::eval_tree()
|
1999-10-11 01:29:37 +02:00
|
|
|
{
|
2011-02-26 23:59:52 +01:00
|
|
|
eval_expr(left_);
|
|
|
|
|
eval_expr(right_);
|
2007-04-07 06:46:18 +02:00
|
|
|
|
2012-05-29 22:56:16 +02:00
|
|
|
// First try to elaborate the expression completely.
|
|
|
|
|
NetExpr*res = eval_arguments_(left_,right_);
|
2013-02-07 22:44:40 +01:00
|
|
|
if (res != 0) return res;
|
2005-11-10 14:28:11 +01:00
|
|
|
|
2012-05-29 22:56:16 +02:00
|
|
|
// If the expression type is real, then do not attempt the
|
|
|
|
|
// following alternative processing.
|
|
|
|
|
if (expr_type() == IVL_VT_REAL)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
// The expression has not evaluated to a constant. Let's still
|
|
|
|
|
// try to optimize by trying to combine a right constant value
|
|
|
|
|
// with the right constant value of a sub-expression add. For
|
|
|
|
|
// example, the expression (a + 2) - 1 can be rewritten as a + 1.
|
2005-11-10 14:28:11 +01:00
|
|
|
|
|
|
|
|
NetEBAdd*se = dynamic_cast<NetEBAdd*>(left_);
|
2012-05-29 22:56:16 +02:00
|
|
|
NetEConst*lc = se? dynamic_cast<NetEConst*>(se->right_) : 0;
|
|
|
|
|
NetEConst*rc = dynamic_cast<NetEConst*>(right_);
|
2005-11-10 14:28:11 +01:00
|
|
|
|
|
|
|
|
if (lc != 0 && rc != 0) {
|
2008-12-19 06:33:31 +01:00
|
|
|
ivl_assert(*this, se != 0);
|
|
|
|
|
|
|
|
|
|
if (debug_eval_tree) {
|
|
|
|
|
cerr << get_fileline() << ": debug: "
|
2009-03-08 02:16:13 +01:00
|
|
|
<< "Partially evaluate " << *this
|
2008-12-19 06:33:31 +01:00
|
|
|
<< " using (a+2)-1 --> (a+1) transform." << endl;
|
|
|
|
|
}
|
|
|
|
|
|
2005-11-10 14:28:11 +01:00
|
|
|
verinum lval = lc->value();
|
|
|
|
|
verinum rval = rc->value();
|
|
|
|
|
|
2011-02-26 23:59:52 +01:00
|
|
|
unsigned wid = expr_width();
|
|
|
|
|
ivl_assert(*this, wid > 0);
|
|
|
|
|
ivl_assert(*this, lval.len() == wid);
|
|
|
|
|
ivl_assert(*this, rval.len() == wid);
|
2008-10-04 04:52:26 +02:00
|
|
|
|
2005-11-10 14:28:11 +01:00
|
|
|
verinum val;
|
|
|
|
|
if (op_ == se->op_) {
|
|
|
|
|
/* (a + lval) + rval --> a + (rval+lval) */
|
|
|
|
|
/* (a - lval) - rval --> a - (rval+lval) */
|
2014-02-25 21:39:21 +01:00
|
|
|
val = cast_to_width(rval + lval, wid);
|
2005-11-10 14:28:11 +01:00
|
|
|
} else {
|
|
|
|
|
/* (a - lval) + rval --> a + (rval-lval) */
|
|
|
|
|
/* (a + lval) - rval --> a - (rval-lval) */
|
2014-02-25 21:39:21 +01:00
|
|
|
val = cast_to_width(rval - lval, wid);
|
2008-10-04 04:52:26 +02:00
|
|
|
}
|
|
|
|
|
|
2005-11-10 14:28:11 +01:00
|
|
|
NetEConst*tmp = new NetEConst(val);
|
|
|
|
|
left_ = se->left_->dup_expr();
|
|
|
|
|
delete se;
|
2008-03-08 03:51:50 +01:00
|
|
|
tmp->set_line(*right_);
|
2005-11-10 14:28:11 +01:00
|
|
|
delete right_;
|
|
|
|
|
right_ = tmp;
|
1999-10-11 01:29:37 +02:00
|
|
|
}
|
|
|
|
|
|
2012-05-29 22:56:16 +02:00
|
|
|
// We may have changed the subexpression, but the result is
|
|
|
|
|
// still not constant, so return nil here anyhow.
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NetExpr* NetEBAdd::eval_arguments_(const NetExpr*l, const NetExpr*r) const
|
|
|
|
|
{
|
|
|
|
|
if (expr_type() == IVL_VT_REAL)
|
|
|
|
|
return eval_tree_real_(l,r);
|
|
|
|
|
|
|
|
|
|
const NetEConst*lc = dynamic_cast<const NetEConst*>(l);
|
|
|
|
|
const NetEConst*rc = dynamic_cast<const NetEConst*>(r);
|
|
|
|
|
|
|
|
|
|
/* If both operands are constant, then replace the entire
|
|
|
|
|
expression with a constant value. */
|
|
|
|
|
if (lc != 0 && rc != 0) {
|
|
|
|
|
verinum lval = lc->value();
|
|
|
|
|
verinum rval = rc->value();
|
|
|
|
|
|
|
|
|
|
unsigned wid = expr_width();
|
|
|
|
|
ivl_assert(*this, wid > 0);
|
|
|
|
|
ivl_assert(*this, lval.len() == wid);
|
|
|
|
|
ivl_assert(*this, rval.len() == wid);
|
|
|
|
|
|
|
|
|
|
verinum val;
|
|
|
|
|
switch (op_) {
|
|
|
|
|
case '+':
|
2014-02-25 21:39:21 +01:00
|
|
|
val = cast_to_width(lval + rval, wid);
|
2012-05-29 22:56:16 +02:00
|
|
|
break;
|
|
|
|
|
case '-':
|
2014-02-25 21:39:21 +01:00
|
|
|
val = cast_to_width(lval - rval, wid);
|
2012-05-29 22:56:16 +02:00
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NetEConst *res = new NetEConst(val);
|
|
|
|
|
ivl_assert(*this, res);
|
2013-02-07 22:44:40 +01:00
|
|
|
eval_debug(this, res, false);
|
2012-05-29 22:56:16 +02:00
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2005-11-10 14:28:11 +01:00
|
|
|
/* Nothing more to be done, the value is not constant. */
|
|
|
|
|
return 0;
|
1999-10-11 01:29:37 +02:00
|
|
|
}
|
|
|
|
|
|
2013-02-03 10:32:49 +01:00
|
|
|
NetEConst* NetEBBits::eval_arguments_(const NetExpr*l, const NetExpr*r) const
|
|
|
|
|
{
|
|
|
|
|
const NetEConst*lc = dynamic_cast<const NetEConst*>(l);
|
|
|
|
|
const NetEConst*rc = dynamic_cast<const NetEConst*>(r);
|
2008-03-08 03:51:50 +01:00
|
|
|
if (lc == 0 || rc == 0) return 0;
|
2002-05-25 18:43:47 +02:00
|
|
|
|
|
|
|
|
/* Notice the special case where one of the operands is 0 and
|
|
|
|
|
this is a bitwise &. If this happens, then the result is
|
|
|
|
|
known to be 0. */
|
2008-03-08 03:51:50 +01:00
|
|
|
if ((op() == '&') && (lc->value() == verinum(0))) {
|
2002-05-25 18:43:47 +02:00
|
|
|
verinum res (verinum::V0, expr_width());
|
2014-02-15 12:39:05 +01:00
|
|
|
res.has_sign(has_sign());
|
2013-02-04 00:58:06 +01:00
|
|
|
NetEConst*tmp = new NetEConst(res);
|
|
|
|
|
ivl_assert(*this, tmp);
|
2013-02-07 22:44:40 +01:00
|
|
|
eval_debug(this, tmp, false);
|
2013-02-04 00:58:06 +01:00
|
|
|
return tmp;
|
2002-05-25 18:43:47 +02:00
|
|
|
}
|
|
|
|
|
|
2008-03-08 03:51:50 +01:00
|
|
|
if ((op() == '&') && (rc->value() == verinum(0))) {
|
2002-05-25 18:43:47 +02:00
|
|
|
verinum res (verinum::V0, expr_width());
|
2014-02-15 12:39:05 +01:00
|
|
|
res.has_sign(has_sign());
|
2013-02-04 00:58:06 +01:00
|
|
|
NetEConst*tmp = new NetEConst(res);
|
|
|
|
|
ivl_assert(*this, tmp);
|
2013-02-07 22:44:40 +01:00
|
|
|
eval_debug(this, tmp, false);
|
2013-02-04 00:58:06 +01:00
|
|
|
return tmp;
|
2002-05-25 18:43:47 +02:00
|
|
|
}
|
|
|
|
|
|
2001-01-02 04:23:40 +01:00
|
|
|
verinum lval = lc->value();
|
|
|
|
|
verinum rval = rc->value();
|
|
|
|
|
|
|
|
|
|
unsigned wid = expr_width();
|
2011-02-26 23:59:52 +01:00
|
|
|
ivl_assert(*this, wid > 0);
|
|
|
|
|
ivl_assert(*this, lval.len() == wid);
|
|
|
|
|
ivl_assert(*this, rval.len() == wid);
|
2001-01-02 04:23:40 +01:00
|
|
|
|
|
|
|
|
verinum res (verinum::V0, wid);
|
|
|
|
|
|
|
|
|
|
switch (op()) {
|
|
|
|
|
|
|
|
|
|
case '|': {
|
2011-02-26 23:59:52 +01:00
|
|
|
for (unsigned idx = 0 ; idx < wid ; idx += 1)
|
2001-01-02 04:23:40 +01:00
|
|
|
res.set(idx, lval.get(idx) | rval.get(idx));
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case '&': {
|
2011-02-26 23:59:52 +01:00
|
|
|
for (unsigned idx = 0 ; idx < wid ; idx += 1)
|
2001-01-02 04:23:40 +01:00
|
|
|
res.set(idx, lval.get(idx) & rval.get(idx));
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-30 11:53:44 +01:00
|
|
|
case 'X': {
|
|
|
|
|
for (unsigned idx = 0 ; idx < wid ; idx += 1)
|
|
|
|
|
res.set(idx, ~(lval.get(idx) ^ rval.get(idx)));
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2003-10-26 05:54:56 +01:00
|
|
|
case '^': {
|
2011-02-26 23:59:52 +01:00
|
|
|
for (unsigned idx = 0 ; idx < wid ; idx += 1)
|
2003-10-26 05:54:56 +01:00
|
|
|
res.set(idx, lval.get(idx) ^ rval.get(idx));
|
|
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2001-01-02 04:23:40 +01:00
|
|
|
default:
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2014-02-15 12:39:05 +01:00
|
|
|
res.has_sign(has_sign());
|
2013-02-03 10:32:49 +01:00
|
|
|
NetEConst*tmp = new NetEConst(res);
|
|
|
|
|
ivl_assert(*this, tmp);
|
2013-02-07 22:44:40 +01:00
|
|
|
eval_debug(this, tmp, false);
|
2013-02-03 10:32:49 +01:00
|
|
|
return tmp;
|
2001-01-02 04:23:40 +01:00
|
|
|
}
|
|
|
|
|
|
2012-05-29 22:56:16 +02:00
|
|
|
NetEConst* NetEBComp::eval_less_(const NetExpr*le, const NetExpr*re) const
|
2001-02-09 06:44:23 +01:00
|
|
|
{
|
2012-05-29 22:56:16 +02:00
|
|
|
if (le->expr_type() == IVL_VT_REAL || re->expr_type() == IVL_VT_REAL)
|
|
|
|
|
return eval_leeq_real_(le, re, false);
|
2008-01-24 05:43:13 +01:00
|
|
|
|
2012-05-29 22:56:16 +02:00
|
|
|
const NetEConst*rc = dynamic_cast<const NetEConst*>(re);
|
2010-11-01 22:37:06 +01:00
|
|
|
if (rc == 0) return 0;
|
2001-02-09 06:44:23 +01:00
|
|
|
|
2010-11-01 22:37:06 +01:00
|
|
|
verinum rv = rc->value();
|
2001-02-09 06:44:23 +01:00
|
|
|
if (! rv.is_defined()) {
|
2010-11-01 22:37:06 +01:00
|
|
|
NetEConst*res = new NetEConst(verinum(verinum::Vx, 1));
|
|
|
|
|
ivl_assert(*this, res);
|
|
|
|
|
return res;
|
2001-02-09 06:44:23 +01:00
|
|
|
}
|
|
|
|
|
|
2012-05-29 22:56:16 +02:00
|
|
|
if (NetEConst*tmp = must_be_leeq_(le, rv, false)) {
|
2008-01-24 05:43:13 +01:00
|
|
|
return tmp;
|
2001-02-09 06:44:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Now go on to the normal test of the values. */
|
2012-05-29 22:56:16 +02:00
|
|
|
const NetEConst*lc = dynamic_cast<const NetEConst*>(le);
|
2010-11-01 22:37:06 +01:00
|
|
|
if (lc == 0) return 0;
|
|
|
|
|
|
|
|
|
|
verinum lv = lc->value();
|
2001-02-09 06:44:23 +01:00
|
|
|
if (! lv.is_defined()) {
|
2010-11-01 22:37:06 +01:00
|
|
|
NetEConst*res = new NetEConst(verinum(verinum::Vx, 1));
|
|
|
|
|
ivl_assert(*this, res);
|
|
|
|
|
return res;
|
2001-02-09 06:44:23 +01:00
|
|
|
}
|
|
|
|
|
|
2008-01-24 05:43:13 +01:00
|
|
|
if (lv < rv) {
|
2010-11-01 22:37:06 +01:00
|
|
|
NetEConst*res = new NetEConst(verinum(verinum::V1, 1));
|
|
|
|
|
ivl_assert(*this, res);
|
|
|
|
|
return res;
|
2002-04-27 05:17:15 +02:00
|
|
|
} else {
|
2010-11-01 22:37:06 +01:00
|
|
|
NetEConst*res = new NetEConst(verinum(verinum::V0, 1));
|
|
|
|
|
ivl_assert(*this, res);
|
|
|
|
|
return res;
|
2003-06-05 06:28:24 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-05-29 22:56:16 +02:00
|
|
|
NetEConst* NetEBComp::must_be_leeq_(const NetExpr*le, const verinum&rv, bool eq_flag) const
|
2008-01-24 05:43:13 +01:00
|
|
|
{
|
2014-02-18 22:22:19 +01:00
|
|
|
// The following optimization is not valid if le can contain 'x'
|
|
|
|
|
// or 'z' values.
|
|
|
|
|
if (le->expr_type() == IVL_VT_LOGIC) return 0;
|
|
|
|
|
|
2008-01-24 05:43:13 +01:00
|
|
|
assert(le->expr_width() > 0);
|
|
|
|
|
verinum lv (verinum::V1, le->expr_width());
|
|
|
|
|
if (le->has_sign() && rv.has_sign()) {
|
|
|
|
|
// If the expression is signed, then the largest
|
|
|
|
|
// possible value for the left_ needs to have a 0 in the
|
|
|
|
|
// sign position.
|
|
|
|
|
lv.set(lv.len()-1, verinum::V0);
|
|
|
|
|
lv.has_sign(true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (lv < rv || (eq_flag && (lv == rv))) {
|
2010-11-01 22:37:06 +01:00
|
|
|
NetEConst*res = new NetEConst(verinum(verinum::V1, 1));
|
|
|
|
|
ivl_assert(*this, res);
|
|
|
|
|
return res;
|
2008-01-24 05:43:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2012-05-29 22:56:16 +02:00
|
|
|
NetEConst* NetEBComp::eval_leeq_real_(const NetExpr*le, const NetExpr*re, bool eq_flag) const
|
2010-11-01 22:37:06 +01:00
|
|
|
{
|
|
|
|
|
double lval;
|
|
|
|
|
double rval;
|
|
|
|
|
|
|
|
|
|
bool flag = get_real_arguments(le, re, lval, rval);
|
|
|
|
|
if (! flag) return 0;
|
|
|
|
|
|
|
|
|
|
bool tmp = false;
|
|
|
|
|
if (lval < rval) tmp = true;
|
|
|
|
|
if (tmp == false && eq_flag && lval == rval) tmp = true;
|
|
|
|
|
|
|
|
|
|
verinum result(tmp ? verinum::V1 : verinum::V0, 1);
|
|
|
|
|
NetEConst*res = new NetEConst(result);
|
|
|
|
|
ivl_assert(*this, res);
|
|
|
|
|
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
2012-05-29 22:56:16 +02:00
|
|
|
NetEConst* NetEBComp::eval_leeq_(const NetExpr*le, const NetExpr*re) const
|
1999-09-20 04:21:10 +02:00
|
|
|
{
|
2012-05-29 22:56:16 +02:00
|
|
|
if (le->expr_type() == IVL_VT_REAL || re->expr_type() == IVL_VT_REAL)
|
|
|
|
|
return eval_leeq_real_(le, re, true);
|
2003-06-05 06:28:24 +02:00
|
|
|
|
2012-05-29 22:56:16 +02:00
|
|
|
const NetEConst*r = dynamic_cast<const NetEConst*>(re);
|
1999-09-20 04:21:10 +02:00
|
|
|
if (r == 0) return 0;
|
|
|
|
|
|
|
|
|
|
verinum rv = r->value();
|
2000-12-16 20:03:30 +01:00
|
|
|
if (! rv.is_defined()) {
|
2010-11-01 22:37:06 +01:00
|
|
|
NetEConst*res = new NetEConst(verinum(verinum::Vx, 1));
|
|
|
|
|
ivl_assert(*this, res);
|
|
|
|
|
return res;
|
2000-12-16 20:03:30 +01:00
|
|
|
}
|
1999-09-20 04:21:10 +02:00
|
|
|
|
2012-05-29 22:56:16 +02:00
|
|
|
if (NetEConst*tmp = must_be_leeq_(le, rv, true)) {
|
2008-01-24 05:43:13 +01:00
|
|
|
return tmp;
|
1999-09-20 04:21:10 +02:00
|
|
|
}
|
|
|
|
|
|
2000-12-16 20:03:30 +01:00
|
|
|
/* Now go on to the normal test of the values. */
|
2012-05-29 22:56:16 +02:00
|
|
|
const NetEConst*l = dynamic_cast<const NetEConst*>(le);
|
2000-12-16 21:00:17 +01:00
|
|
|
if (l == 0) return 0;
|
2010-11-01 22:37:06 +01:00
|
|
|
|
2008-01-24 05:43:13 +01:00
|
|
|
verinum lv = l->value();
|
2000-12-16 20:03:30 +01:00
|
|
|
if (! lv.is_defined()) {
|
2010-11-01 22:37:06 +01:00
|
|
|
NetEConst*res = new NetEConst(verinum(verinum::Vx, 1));
|
|
|
|
|
ivl_assert(*this, res);
|
|
|
|
|
return res;
|
2000-12-16 20:03:30 +01:00
|
|
|
}
|
|
|
|
|
|
2008-01-24 05:43:13 +01:00
|
|
|
if (lv <= rv) {
|
2010-11-01 22:37:06 +01:00
|
|
|
NetEConst*res = new NetEConst(verinum(verinum::V1, 1));
|
|
|
|
|
ivl_assert(*this, res);
|
|
|
|
|
return res;
|
2002-04-24 04:47:02 +02:00
|
|
|
} else {
|
2010-11-01 22:37:06 +01:00
|
|
|
NetEConst*res = new NetEConst(verinum(verinum::V0, 1));
|
|
|
|
|
ivl_assert(*this, res);
|
|
|
|
|
return res;
|
2000-12-16 20:03:30 +01:00
|
|
|
}
|
1999-09-20 04:21:10 +02:00
|
|
|
}
|
|
|
|
|
|
2012-05-29 22:56:16 +02:00
|
|
|
NetEConst* NetEBComp::eval_gt_(const NetExpr*le, const NetExpr*re) const
|
2001-02-10 21:29:39 +01:00
|
|
|
{
|
2012-05-29 22:56:16 +02:00
|
|
|
if (le->expr_type() == IVL_VT_REAL || re->expr_type() == IVL_VT_REAL)
|
|
|
|
|
return eval_leeq_real_(re, le, false);
|
2003-04-15 07:06:56 +02:00
|
|
|
|
2012-05-29 22:56:16 +02:00
|
|
|
const NetEConst*l = dynamic_cast<const NetEConst*>(le);
|
2001-02-10 21:29:39 +01:00
|
|
|
if (l == 0) return 0;
|
|
|
|
|
|
|
|
|
|
verinum lv = l->value();
|
|
|
|
|
if (! lv.is_defined()) {
|
2010-11-01 22:37:06 +01:00
|
|
|
NetEConst*res = new NetEConst(verinum(verinum::Vx, 1));
|
|
|
|
|
ivl_assert(*this, res);
|
|
|
|
|
return res;
|
2001-02-10 21:29:39 +01:00
|
|
|
}
|
|
|
|
|
|
2012-05-29 22:56:16 +02:00
|
|
|
if (NetEConst*tmp = must_be_leeq_(re, lv, false)) {
|
2008-01-24 05:43:13 +01:00
|
|
|
return tmp;
|
2001-02-10 21:29:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Now go on to the normal test of the values. */
|
2012-05-29 22:56:16 +02:00
|
|
|
const NetEConst*r = dynamic_cast<const NetEConst*>(re);
|
2001-02-10 21:29:39 +01:00
|
|
|
if (r == 0) return 0;
|
2010-11-01 22:37:06 +01:00
|
|
|
|
2003-03-15 19:07:58 +01:00
|
|
|
verinum rv = r->value();
|
2001-02-10 21:29:39 +01:00
|
|
|
if (! rv.is_defined()) {
|
2010-11-01 22:37:06 +01:00
|
|
|
NetEConst*res = new NetEConst(verinum(verinum::Vx, 1));
|
|
|
|
|
ivl_assert(*this, res);
|
|
|
|
|
return res;
|
2001-02-10 21:29:39 +01:00
|
|
|
}
|
|
|
|
|
|
2008-01-24 05:43:13 +01:00
|
|
|
if (lv > rv) {
|
2010-11-01 22:37:06 +01:00
|
|
|
NetEConst*res = new NetEConst(verinum(verinum::V1, 1));
|
|
|
|
|
ivl_assert(*this, res);
|
|
|
|
|
return res;
|
2008-01-24 05:43:13 +01:00
|
|
|
} else {
|
2010-11-01 22:37:06 +01:00
|
|
|
NetEConst*res = new NetEConst(verinum(verinum::V0, 1));
|
|
|
|
|
ivl_assert(*this, res);
|
|
|
|
|
return res;
|
2001-02-10 21:29:39 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-05-29 22:56:16 +02:00
|
|
|
NetEConst* NetEBComp::eval_gteq_(const NetExpr*le, const NetExpr*re) const
|
2001-02-10 21:29:39 +01:00
|
|
|
{
|
2012-05-29 22:56:16 +02:00
|
|
|
if (le->expr_type() == IVL_VT_REAL || re->expr_type() == IVL_VT_REAL)
|
|
|
|
|
return eval_leeq_real_(re, le, true);
|
2003-04-15 07:06:56 +02:00
|
|
|
|
2013-06-03 01:54:31 +02:00
|
|
|
const NetEConst*l = dynamic_cast<const NetEConst*>(le);
|
2001-02-10 21:29:39 +01:00
|
|
|
if (l == 0) return 0;
|
|
|
|
|
|
|
|
|
|
verinum lv = l->value();
|
|
|
|
|
if (! lv.is_defined()) {
|
2010-11-01 22:37:06 +01:00
|
|
|
NetEConst*res = new NetEConst(verinum(verinum::Vx, 1));
|
|
|
|
|
ivl_assert(*this, res);
|
|
|
|
|
return res;
|
2001-02-10 21:29:39 +01:00
|
|
|
}
|
|
|
|
|
|
2012-05-29 22:56:16 +02:00
|
|
|
if (NetEConst*tmp = must_be_leeq_(re, lv, true)) {
|
2008-01-24 05:43:13 +01:00
|
|
|
return tmp;
|
2003-04-15 07:06:56 +02:00
|
|
|
}
|
|
|
|
|
|
2001-02-10 21:29:39 +01:00
|
|
|
/* Now go on to the normal test of the values. */
|
2012-05-29 22:56:16 +02:00
|
|
|
const NetEConst*r = dynamic_cast<const NetEConst*>(re);
|
2001-02-10 21:29:39 +01:00
|
|
|
if (r == 0) return 0;
|
2010-11-01 22:37:06 +01:00
|
|
|
|
2003-04-15 07:06:56 +02:00
|
|
|
verinum rv = r->value();
|
2001-02-10 21:29:39 +01:00
|
|
|
if (! rv.is_defined()) {
|
2010-11-01 22:37:06 +01:00
|
|
|
NetEConst*res = new NetEConst(verinum(verinum::Vx, 1));
|
|
|
|
|
ivl_assert(*this, res);
|
|
|
|
|
return res;
|
2001-02-10 21:29:39 +01:00
|
|
|
}
|
|
|
|
|
|
2008-01-24 05:43:13 +01:00
|
|
|
if (lv >= rv) {
|
2010-11-01 22:37:06 +01:00
|
|
|
NetEConst*res = new NetEConst(verinum(verinum::V1, 1));
|
|
|
|
|
ivl_assert(*this, res);
|
|
|
|
|
return res;
|
2006-03-18 23:52:27 +01:00
|
|
|
} else {
|
2010-11-01 22:37:06 +01:00
|
|
|
NetEConst*res = new NetEConst(verinum(verinum::V0, 1));
|
|
|
|
|
ivl_assert(*this, res);
|
|
|
|
|
return res;
|
2001-02-10 21:29:39 +01:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2008-08-14 07:22:59 +02:00
|
|
|
/*
|
|
|
|
|
* Evaluate <A>==<B> or <A>!=<B>. The equality operator checks all the
|
|
|
|
|
* bits and returns true(false) if there are any bits in the vector
|
|
|
|
|
* that are defined (0 or 1) and different. If all the defined bits
|
|
|
|
|
* are equal, but there are are x/z bits, then the situation is
|
|
|
|
|
* ambiguous so the result is x.
|
|
|
|
|
*/
|
2012-05-29 22:56:16 +02:00
|
|
|
NetEConst* NetEBComp::eval_eqeq_real_(bool ne_flag, const NetExpr*le, const NetExpr*re) const
|
2008-08-29 19:52:09 +02:00
|
|
|
{
|
2012-05-29 22:56:16 +02:00
|
|
|
double lval;
|
|
|
|
|
double rval;
|
2008-08-29 19:52:09 +02:00
|
|
|
|
2012-05-29 22:56:16 +02:00
|
|
|
bool flag = get_real_arguments(le, re, lval, rval);
|
2010-11-01 22:37:06 +01:00
|
|
|
if (! flag) return 0;
|
2008-08-29 19:52:09 +02:00
|
|
|
|
2016-09-14 08:44:44 +02:00
|
|
|
verinum result(((lval == rval) != ne_flag) ?
|
2010-11-01 22:37:06 +01:00
|
|
|
verinum::V1 : verinum::V0, 1);
|
|
|
|
|
NetEConst*res = new NetEConst(result);
|
|
|
|
|
ivl_assert(*this, res);
|
2008-08-29 19:52:09 +02:00
|
|
|
|
2010-11-01 22:37:06 +01:00
|
|
|
return res;
|
2008-08-29 19:52:09 +02:00
|
|
|
}
|
|
|
|
|
|
2012-05-29 22:56:16 +02:00
|
|
|
NetEConst* NetEBComp::eval_eqeq_(bool ne_flag, const NetExpr*le, const NetExpr*re) const
|
2000-09-29 06:42:56 +02:00
|
|
|
{
|
2012-05-29 22:56:16 +02:00
|
|
|
if (le->expr_type() == IVL_VT_REAL ||
|
|
|
|
|
re->expr_type() == IVL_VT_REAL)
|
|
|
|
|
return eval_eqeq_real_(ne_flag, le, re);
|
2008-08-29 19:52:09 +02:00
|
|
|
|
2012-05-29 22:56:16 +02:00
|
|
|
const NetEConst*lc = dynamic_cast<const NetEConst*>(le);
|
|
|
|
|
const NetEConst*rc = dynamic_cast<const NetEConst*>(re);
|
2010-11-01 22:37:06 +01:00
|
|
|
if (lc == 0 || rc == 0) return 0;
|
2000-09-29 06:42:56 +02:00
|
|
|
|
2010-11-01 22:37:06 +01:00
|
|
|
const verinum&lv = lc->value();
|
|
|
|
|
const verinum&rv = rc->value();
|
2000-09-29 06:42:56 +02:00
|
|
|
|
2006-03-18 23:52:27 +01:00
|
|
|
const verinum::V eq_res = ne_flag? verinum::V0 : verinum::V1;
|
|
|
|
|
const verinum::V ne_res = ne_flag? verinum::V1 : verinum::V0;
|
|
|
|
|
|
|
|
|
|
verinum::V res = eq_res;
|
2000-09-29 06:42:56 +02:00
|
|
|
|
2017-11-18 04:32:09 +01:00
|
|
|
// The two expressions should already be padded to the same size.
|
|
|
|
|
ivl_assert(*this, lv.len() == rv.len());
|
2017-11-17 22:07:18 +01:00
|
|
|
|
|
|
|
|
for (unsigned idx = 0 ; idx < lv.len() ; idx += 1) {
|
2000-09-29 06:42:56 +02:00
|
|
|
|
2008-08-14 07:22:59 +02:00
|
|
|
bool x_bit_present = false;
|
|
|
|
|
|
2000-09-29 06:42:56 +02:00
|
|
|
switch (lv.get(idx)) {
|
|
|
|
|
|
|
|
|
|
case verinum::Vx:
|
|
|
|
|
case verinum::Vz:
|
|
|
|
|
res = verinum::Vx;
|
2008-08-14 07:22:59 +02:00
|
|
|
x_bit_present = true;
|
2000-09-29 06:42:56 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch (rv.get(idx)) {
|
|
|
|
|
|
|
|
|
|
case verinum::Vx:
|
|
|
|
|
case verinum::Vz:
|
|
|
|
|
res = verinum::Vx;
|
2008-08-14 07:22:59 +02:00
|
|
|
x_bit_present = true;
|
2000-09-29 06:42:56 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2008-08-14 07:22:59 +02:00
|
|
|
if (x_bit_present)
|
|
|
|
|
continue;
|
2000-09-29 06:42:56 +02:00
|
|
|
|
2008-08-14 07:22:59 +02:00
|
|
|
if (rv.get(idx) != lv.get(idx)) {
|
2006-03-18 23:52:27 +01:00
|
|
|
res = ne_res;
|
2008-08-14 07:22:59 +02:00
|
|
|
break;
|
|
|
|
|
}
|
2000-09-29 06:42:56 +02:00
|
|
|
}
|
|
|
|
|
|
2010-11-01 22:37:06 +01:00
|
|
|
NetEConst*result = new NetEConst(verinum(res, 1));
|
|
|
|
|
ivl_assert(*this, result);
|
|
|
|
|
return result;
|
2000-09-29 06:42:56 +02:00
|
|
|
}
|
|
|
|
|
|
2012-05-29 22:56:16 +02:00
|
|
|
NetEConst* NetEBComp::eval_eqeqeq_(bool ne_flag, const NetExpr*le, const NetExpr*re) const
|
2001-01-04 17:49:50 +01:00
|
|
|
{
|
2012-05-29 22:56:16 +02:00
|
|
|
const NetEConst*lc = dynamic_cast<const NetEConst*>(le);
|
|
|
|
|
const NetEConst*rc = dynamic_cast<const NetEConst*>(re);
|
2010-11-01 22:37:06 +01:00
|
|
|
if (lc == 0 || rc == 0) return 0;
|
2001-01-04 17:49:50 +01:00
|
|
|
|
2010-11-01 22:37:06 +01:00
|
|
|
const verinum&lv = lc->value();
|
|
|
|
|
const verinum&rv = rc->value();
|
2001-01-04 17:49:50 +01:00
|
|
|
|
|
|
|
|
verinum::V res = verinum::V1;
|
|
|
|
|
|
2017-11-18 04:32:09 +01:00
|
|
|
// The two expressions should already be padded to the same size.
|
|
|
|
|
ivl_assert(*this, lv.len() == rv.len());
|
2001-01-04 17:49:50 +01:00
|
|
|
|
2017-11-17 22:07:18 +01:00
|
|
|
for (unsigned idx = 0 ; idx < lv.len() ; idx += 1)
|
2010-11-01 22:37:06 +01:00
|
|
|
if (lv.get(idx) != rv.get(idx)) {
|
2001-01-04 17:49:50 +01:00
|
|
|
res = verinum::V0;
|
2010-11-01 22:37:06 +01:00
|
|
|
break;
|
|
|
|
|
}
|
2001-01-04 17:49:50 +01:00
|
|
|
|
2010-11-01 22:37:06 +01:00
|
|
|
if (ne_flag) {
|
|
|
|
|
if (res == verinum::V0) res = verinum::V1;
|
|
|
|
|
else res = verinum::V0;
|
|
|
|
|
}
|
2001-01-04 17:49:50 +01:00
|
|
|
|
2010-11-01 22:37:06 +01:00
|
|
|
NetEConst*result = new NetEConst(verinum(res, 1));
|
|
|
|
|
ivl_assert(*this, result);
|
|
|
|
|
return result;
|
2001-01-04 17:49:50 +01:00
|
|
|
}
|
|
|
|
|
|
2017-11-18 04:32:09 +01:00
|
|
|
NetEConst* NetEBComp::eval_weqeq_(bool ne_flag, const NetExpr*le, const NetExpr*re) const
|
|
|
|
|
{
|
|
|
|
|
const NetEConst*lc = dynamic_cast<const NetEConst*>(le);
|
|
|
|
|
const NetEConst*rc = dynamic_cast<const NetEConst*>(re);
|
|
|
|
|
if (lc == 0 || rc == 0) return 0;
|
|
|
|
|
|
|
|
|
|
const verinum&lv = lc->value();
|
|
|
|
|
const verinum&rv = rc->value();
|
|
|
|
|
|
|
|
|
|
const verinum::V eq_res = ne_flag ? verinum::V0 : verinum::V1;
|
|
|
|
|
const verinum::V ne_res = ne_flag ? verinum::V1 : verinum::V0;
|
|
|
|
|
|
|
|
|
|
verinum::V res = eq_res;
|
|
|
|
|
|
|
|
|
|
// The two expressions should already be padded to the same size.
|
|
|
|
|
ivl_assert(*this, lv.len() == rv.len());
|
|
|
|
|
|
|
|
|
|
for (unsigned idx = 0 ; idx < lv.len() ; idx += 1) {
|
|
|
|
|
// An X or Z in the R-value matches any L-value.
|
|
|
|
|
switch (rv.get(idx)) {
|
|
|
|
|
case verinum::Vx:
|
|
|
|
|
case verinum::Vz:
|
|
|
|
|
continue;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// An X or Z in the L-value that is not matches by an R-value X/Z returns undefined.
|
|
|
|
|
switch (lv.get(idx)) {
|
|
|
|
|
case verinum::Vx:
|
|
|
|
|
case verinum::Vz:
|
|
|
|
|
res = verinum::Vx;
|
|
|
|
|
continue;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// A hard (0/1) mismatch gives a not-equal result.
|
|
|
|
|
if (rv.get(idx) != lv.get(idx)) {
|
|
|
|
|
res = ne_res;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NetEConst*result = new NetEConst(verinum(res, 1));
|
|
|
|
|
ivl_assert(*this, result);
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
|
2012-05-29 22:56:16 +02:00
|
|
|
NetEConst* NetEBComp::eval_arguments_(const NetExpr*l, const NetExpr*r) const
|
1999-09-20 04:21:10 +02:00
|
|
|
{
|
2010-11-01 22:37:06 +01:00
|
|
|
NetEConst*res = 0;
|
|
|
|
|
|
1999-09-20 04:21:10 +02:00
|
|
|
switch (op_) {
|
2001-01-04 17:49:50 +01:00
|
|
|
case 'E': // Case equality (===)
|
2012-05-29 22:56:16 +02:00
|
|
|
res = eval_eqeqeq_(false, l, r);
|
2010-11-01 22:37:06 +01:00
|
|
|
break;
|
2001-01-04 17:49:50 +01:00
|
|
|
|
|
|
|
|
case 'e': // Equality (==)
|
2012-05-29 22:56:16 +02:00
|
|
|
res = eval_eqeq_(false, l, r);
|
2010-11-01 22:37:06 +01:00
|
|
|
break;
|
1999-09-20 04:21:10 +02:00
|
|
|
|
2017-11-18 04:32:09 +01:00
|
|
|
case 'w': // Wild equality (==?)
|
|
|
|
|
res = eval_weqeq_(false, l, r);
|
|
|
|
|
break;
|
|
|
|
|
|
2001-02-10 21:29:39 +01:00
|
|
|
case 'G': // >=
|
2012-05-29 22:56:16 +02:00
|
|
|
res = eval_gteq_(l, r);
|
2010-11-01 22:37:06 +01:00
|
|
|
break;
|
2001-02-10 21:29:39 +01:00
|
|
|
|
2001-01-04 17:49:50 +01:00
|
|
|
case 'L': // <=
|
2012-05-29 22:56:16 +02:00
|
|
|
res = eval_leeq_(l, r);
|
2010-11-01 22:37:06 +01:00
|
|
|
break;
|
1999-09-20 04:21:10 +02:00
|
|
|
|
2003-01-30 17:23:07 +01:00
|
|
|
case 'N': // Case inequality (!==)
|
2012-05-29 22:56:16 +02:00
|
|
|
res = eval_eqeqeq_(true, l, r);
|
2010-11-01 22:37:06 +01:00
|
|
|
break;
|
2001-01-04 17:49:50 +01:00
|
|
|
|
|
|
|
|
case 'n': // not-equal (!=)
|
2012-05-29 22:56:16 +02:00
|
|
|
res = eval_eqeq_(true, l, r);
|
2010-11-01 22:37:06 +01:00
|
|
|
break;
|
2000-09-29 06:42:56 +02:00
|
|
|
|
2017-11-18 04:32:09 +01:00
|
|
|
case 'W': // Wild not-equal (!=?)
|
|
|
|
|
res = eval_weqeq_(true, l, r);
|
|
|
|
|
break;
|
|
|
|
|
|
2001-02-09 06:44:23 +01:00
|
|
|
case '<': // Less than
|
2012-05-29 22:56:16 +02:00
|
|
|
res = eval_less_(l, r);
|
2010-11-01 22:37:06 +01:00
|
|
|
break;
|
2001-02-09 06:44:23 +01:00
|
|
|
|
2008-01-29 21:19:59 +01:00
|
|
|
case '>': // Greater than
|
2012-05-29 22:56:16 +02:00
|
|
|
res = eval_gt_(l, r);
|
2010-11-01 22:37:06 +01:00
|
|
|
break;
|
2001-02-10 21:29:39 +01:00
|
|
|
|
1999-09-20 04:21:10 +02:00
|
|
|
}
|
2013-02-07 22:44:40 +01:00
|
|
|
eval_debug(this, res, l->expr_type() == IVL_VT_REAL ||
|
|
|
|
|
r->expr_type() == IVL_VT_REAL);
|
2010-11-01 22:37:06 +01:00
|
|
|
return res;
|
1999-09-20 04:21:10 +02:00
|
|
|
}
|
|
|
|
|
|
2013-02-03 10:32:49 +01:00
|
|
|
NetExpr* NetEBDiv::eval_tree_real_(const NetExpr*l, const NetExpr*r) const
|
2009-01-09 02:43:40 +01:00
|
|
|
{
|
2013-02-03 10:32:49 +01:00
|
|
|
double lval;
|
|
|
|
|
double rval;
|
2009-01-09 02:43:40 +01:00
|
|
|
|
2013-02-03 10:32:49 +01:00
|
|
|
bool flag = get_real_arguments(l, r, lval, rval);
|
2009-01-09 02:43:40 +01:00
|
|
|
if (! flag) return 0;
|
|
|
|
|
|
2013-02-03 10:32:49 +01:00
|
|
|
double res_val = 0.0;
|
2009-01-09 02:43:40 +01:00
|
|
|
switch (op_) {
|
|
|
|
|
case '/':
|
2013-02-03 10:32:49 +01:00
|
|
|
res_val = lval / rval;
|
2009-01-09 02:43:40 +01:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case '%':
|
2009-01-09 02:59:39 +01:00
|
|
|
// Since this could/may be called early we don't want to
|
|
|
|
|
// leak functionality.
|
2009-01-09 02:43:40 +01:00
|
|
|
if (!gn_icarus_misc_flag) return 0;
|
2013-02-03 10:32:49 +01:00
|
|
|
res_val = fmod(lval, rval);
|
2009-01-09 02:43:40 +01:00
|
|
|
break;
|
|
|
|
|
}
|
2013-02-03 10:32:49 +01:00
|
|
|
NetECReal*res = new NetECReal( verireal(res_val) );
|
2009-01-09 02:43:40 +01:00
|
|
|
ivl_assert(*this, res);
|
2013-02-07 22:44:40 +01:00
|
|
|
eval_debug(this, res, true);
|
2009-01-09 02:43:40 +01:00
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-03 10:32:49 +01:00
|
|
|
NetExpr* NetEBDiv::eval_arguments_(const NetExpr*l, const NetExpr*r) const
|
|
|
|
|
{
|
|
|
|
|
if (expr_type() == IVL_VT_REAL) return eval_tree_real_(l,r);
|
2009-01-09 02:43:40 +01:00
|
|
|
assert(expr_type() == IVL_VT_LOGIC);
|
2003-05-30 04:55:32 +02:00
|
|
|
|
2013-02-03 10:32:49 +01:00
|
|
|
const NetEConst*lc = dynamic_cast<const NetEConst*>(l);
|
|
|
|
|
const NetEConst*rc = dynamic_cast<const NetEConst*>(r);
|
2009-01-09 02:43:40 +01:00
|
|
|
if (lc == 0 || rc == 0) return 0;
|
2003-02-07 03:47:57 +01:00
|
|
|
|
2011-02-26 23:59:52 +01:00
|
|
|
verinum lval = lc->value();
|
|
|
|
|
verinum rval = rc->value();
|
2003-02-07 03:47:57 +01:00
|
|
|
|
2011-02-26 23:59:52 +01:00
|
|
|
unsigned wid = expr_width();
|
|
|
|
|
ivl_assert(*this, wid > 0);
|
|
|
|
|
ivl_assert(*this, lval.len() == wid);
|
|
|
|
|
ivl_assert(*this, rval.len() == wid);
|
|
|
|
|
|
|
|
|
|
verinum val;
|
2009-01-09 02:43:40 +01:00
|
|
|
switch (op_) {
|
|
|
|
|
case '/':
|
2014-02-25 21:39:21 +01:00
|
|
|
val = cast_to_width(lval / rval, wid);
|
2009-01-09 02:43:40 +01:00
|
|
|
break;
|
|
|
|
|
case '%':
|
2014-02-25 21:39:21 +01:00
|
|
|
val = cast_to_width(lval % rval, wid);
|
2009-01-09 02:43:40 +01:00
|
|
|
break;
|
2011-02-26 23:59:52 +01:00
|
|
|
default:
|
|
|
|
|
return 0;
|
2001-02-07 03:46:31 +01:00
|
|
|
}
|
2014-02-25 21:39:21 +01:00
|
|
|
|
2011-02-26 23:59:52 +01:00
|
|
|
NetExpr*tmp = new NetEConst(val);
|
2009-01-09 02:43:40 +01:00
|
|
|
ivl_assert(*this, tmp);
|
2013-02-07 22:44:40 +01:00
|
|
|
eval_debug(this, tmp, false);
|
2009-01-09 02:43:40 +01:00
|
|
|
return tmp;
|
2000-04-28 20:43:23 +02:00
|
|
|
}
|
|
|
|
|
|
2013-02-03 10:32:49 +01:00
|
|
|
NetEConst* NetEBLogic::eval_arguments_(const NetExpr*l, const NetExpr*r) const
|
|
|
|
|
{
|
2020-07-08 08:23:39 +02:00
|
|
|
// NetEBLogic arguments should have already been reduced so real is not possible.
|
|
|
|
|
ivl_assert(*this, (l->expr_type() != IVL_VT_REAL) && (r->expr_type() != IVL_VT_REAL));
|
2010-11-01 22:37:06 +01:00
|
|
|
assert(expr_type() == IVL_VT_LOGIC);
|
|
|
|
|
|
2013-02-03 10:32:49 +01:00
|
|
|
const NetEConst*lc = dynamic_cast<const NetEConst*>(l);
|
|
|
|
|
const NetEConst*rc = dynamic_cast<const NetEConst*>(r);
|
2008-03-08 03:51:50 +01:00
|
|
|
if (lc == 0 || rc == 0) return 0;
|
2001-01-04 05:28:42 +01:00
|
|
|
|
|
|
|
|
verinum::V lv = verinum::V0;
|
|
|
|
|
verinum::V rv = verinum::V0;
|
|
|
|
|
|
|
|
|
|
verinum v = lc->value();
|
|
|
|
|
for (unsigned idx = 0 ; idx < v.len() ; idx += 1)
|
2010-11-01 22:37:06 +01:00
|
|
|
if (v.get(idx) == verinum::V1) {
|
2001-01-04 05:28:42 +01:00
|
|
|
lv = verinum::V1;
|
2010-11-01 22:37:06 +01:00
|
|
|
break;
|
|
|
|
|
}
|
2001-01-04 05:28:42 +01:00
|
|
|
|
2010-11-01 22:37:06 +01:00
|
|
|
if (lv == verinum::V0 && ! v.is_defined()) lv = verinum::Vx;
|
2001-01-04 05:28:42 +01:00
|
|
|
|
|
|
|
|
v = rc->value();
|
|
|
|
|
for (unsigned idx = 0 ; idx < v.len() ; idx += 1)
|
2010-11-01 22:37:06 +01:00
|
|
|
if (v.get(idx) == verinum::V1) {
|
2001-01-04 05:28:42 +01:00
|
|
|
rv = verinum::V1;
|
2010-11-01 22:37:06 +01:00
|
|
|
break;
|
|
|
|
|
}
|
2001-01-04 05:28:42 +01:00
|
|
|
|
2010-11-01 22:37:06 +01:00
|
|
|
if (rv == verinum::V0 && ! v.is_defined()) rv = verinum::Vx;
|
2001-01-04 05:28:42 +01:00
|
|
|
|
|
|
|
|
verinum::V res;
|
|
|
|
|
switch (op_) {
|
2010-11-04 18:45:01 +01:00
|
|
|
case 'a': // Logical AND (&&)
|
|
|
|
|
if ((lv == verinum::V0) || (rv == verinum::V0))
|
|
|
|
|
res = verinum::V0;
|
|
|
|
|
else if ((lv == verinum::V1) && (rv == verinum::V1))
|
|
|
|
|
res = verinum::V1;
|
|
|
|
|
else
|
|
|
|
|
res = verinum::Vx;
|
|
|
|
|
break;
|
2001-01-04 05:28:42 +01:00
|
|
|
|
2010-11-04 18:45:01 +01:00
|
|
|
case 'o': // Logical OR (||)
|
|
|
|
|
if ((lv == verinum::V1) || (rv == verinum::V1))
|
|
|
|
|
res = verinum::V1;
|
|
|
|
|
else if ((lv == verinum::V0) && (rv == verinum::V0))
|
|
|
|
|
res = verinum::V0;
|
2020-07-08 08:23:39 +02:00
|
|
|
else
|
|
|
|
|
res = verinum::Vx;
|
|
|
|
|
break;
|
2001-01-04 05:28:42 +01:00
|
|
|
|
2020-07-08 08:23:39 +02:00
|
|
|
case 'q': // Logical implication (->)
|
|
|
|
|
if ((lv == verinum::V0) || (rv == verinum::V1))
|
|
|
|
|
res = verinum::V1;
|
|
|
|
|
else if ((lv == verinum::V1) && (rv == verinum::V0))
|
|
|
|
|
res = verinum::V0;
|
2010-11-04 18:45:01 +01:00
|
|
|
else
|
|
|
|
|
res = verinum::Vx;
|
2020-07-08 08:23:39 +02:00
|
|
|
break;
|
2001-01-04 05:28:42 +01:00
|
|
|
|
2020-07-08 08:23:39 +02:00
|
|
|
case 'Q': // Logical equivalence (<->)
|
|
|
|
|
if (((lv == verinum::V0) && (rv == verinum::V0)) ||
|
|
|
|
|
((lv == verinum::V1) && (rv == verinum::V1)))
|
|
|
|
|
res = verinum::V1;
|
|
|
|
|
else if (((lv == verinum::V0) && (rv == verinum::V1)) ||
|
|
|
|
|
((lv == verinum::V1) && (rv == verinum::V0)))
|
|
|
|
|
res = verinum::V0;
|
|
|
|
|
else
|
|
|
|
|
res = verinum::Vx;
|
2010-11-04 18:45:01 +01:00
|
|
|
break;
|
2001-01-04 05:28:42 +01:00
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2010-11-01 22:37:06 +01:00
|
|
|
NetEConst*tmp = new NetEConst(verinum(res, 1));
|
|
|
|
|
ivl_assert(*this, tmp);
|
2013-02-07 22:44:40 +01:00
|
|
|
eval_debug(this, tmp, false);
|
2010-11-01 22:37:06 +01:00
|
|
|
return tmp;
|
1999-09-23 02:21:54 +02:00
|
|
|
}
|
|
|
|
|
|
2013-02-03 10:32:49 +01:00
|
|
|
NetExpr* NetEBMinMax::eval_tree_real_(const NetExpr*l, const NetExpr*r) const
|
|
|
|
|
{
|
|
|
|
|
double lval;
|
|
|
|
|
double rval;
|
|
|
|
|
|
|
|
|
|
bool flag = get_real_arguments(l, r, lval, rval);
|
|
|
|
|
if (! flag) return 0;
|
|
|
|
|
|
|
|
|
|
double res_val;
|
|
|
|
|
switch (op()) {
|
|
|
|
|
case 'm':
|
|
|
|
|
res_val = lval < rval ? lval : rval;
|
|
|
|
|
break;
|
|
|
|
|
case 'M':
|
|
|
|
|
res_val = lval > rval ? lval : rval;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
ivl_assert(*this, 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NetECReal*res = new NetECReal( verireal(res_val) );
|
|
|
|
|
ivl_assert(*this, res);
|
2013-02-07 22:44:40 +01:00
|
|
|
eval_debug(this, res, true);
|
2013-02-03 10:32:49 +01:00
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NetExpr* NetEBMinMax::eval_arguments_(const NetExpr*l, const NetExpr*r) const
|
|
|
|
|
{
|
|
|
|
|
if (expr_type() == IVL_VT_REAL) return eval_tree_real_(l,r);
|
|
|
|
|
assert(expr_type() == IVL_VT_LOGIC);
|
|
|
|
|
|
|
|
|
|
const NetEConst*lc = dynamic_cast<const NetEConst*>(l);
|
|
|
|
|
const NetEConst*rc = dynamic_cast<const NetEConst*>(r);
|
|
|
|
|
if (lc == 0 || rc == 0) return 0;
|
|
|
|
|
|
|
|
|
|
verinum lval = lc->value();
|
|
|
|
|
verinum rval = rc->value();
|
|
|
|
|
|
|
|
|
|
unsigned wid = expr_width();
|
|
|
|
|
ivl_assert(*this, wid > 0);
|
|
|
|
|
ivl_assert(*this, lval.len() == wid);
|
|
|
|
|
ivl_assert(*this, rval.len() == wid);
|
|
|
|
|
|
|
|
|
|
verinum res_val;
|
|
|
|
|
if (lval.is_defined() && rval.is_defined()) {
|
|
|
|
|
switch (op()) {
|
|
|
|
|
case 'm':
|
|
|
|
|
res_val = lval < rval ? lval : rval;
|
|
|
|
|
break;
|
|
|
|
|
case 'M':
|
|
|
|
|
res_val = lval > rval ? lval : rval;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
ivl_assert(*this, 0);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
res_val = verinum(verinum::Vx, wid);
|
|
|
|
|
}
|
2014-02-15 12:39:05 +01:00
|
|
|
res_val.has_sign(has_sign());
|
2013-02-03 10:32:49 +01:00
|
|
|
NetEConst*res = new NetEConst(res_val);
|
|
|
|
|
ivl_assert(*this, res);
|
2013-02-07 22:44:40 +01:00
|
|
|
eval_debug(this, res, false);
|
2013-02-03 10:32:49 +01:00
|
|
|
return res;
|
|
|
|
|
}
|
2007-04-07 06:46:18 +02:00
|
|
|
|
2012-05-30 02:59:29 +02:00
|
|
|
NetExpr* NetEBMult::eval_tree_real_(const NetExpr*l, const NetExpr*r) const
|
2003-05-30 04:55:32 +02:00
|
|
|
{
|
2012-05-30 02:59:29 +02:00
|
|
|
double lval;
|
|
|
|
|
double rval;
|
2003-05-30 04:55:32 +02:00
|
|
|
|
2012-05-30 02:59:29 +02:00
|
|
|
bool flag = get_real_arguments(l, r, lval, rval);
|
2007-04-07 06:46:18 +02:00
|
|
|
if (! flag) return 0;
|
2003-05-30 04:55:32 +02:00
|
|
|
|
2012-05-30 02:59:29 +02:00
|
|
|
NetECReal*res = new NetECReal( verireal(lval * rval) );
|
2010-11-01 22:37:06 +01:00
|
|
|
ivl_assert(*this, res);
|
2013-02-07 22:44:40 +01:00
|
|
|
eval_debug(this, res, true);
|
2003-05-30 04:55:32 +02:00
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
2012-05-30 02:59:29 +02:00
|
|
|
NetExpr* NetEBMult::eval_arguments_(const NetExpr*l, const NetExpr*r) const
|
|
|
|
|
{
|
|
|
|
|
if (expr_type() == IVL_VT_REAL) return eval_tree_real_(l,r);
|
2005-07-11 18:56:50 +02:00
|
|
|
assert(expr_type() == IVL_VT_LOGIC);
|
2003-05-30 04:55:32 +02:00
|
|
|
|
2012-05-30 02:59:29 +02:00
|
|
|
const NetEConst*lc = dynamic_cast<const NetEConst*>(l);
|
|
|
|
|
const NetEConst*rc = dynamic_cast<const NetEConst*>(r);
|
2008-03-08 03:51:50 +01:00
|
|
|
if (lc == 0 || rc == 0) return 0;
|
2000-09-27 20:28:37 +02:00
|
|
|
|
|
|
|
|
verinum lval = lc->value();
|
|
|
|
|
verinum rval = rc->value();
|
|
|
|
|
|
2011-02-26 23:59:52 +01:00
|
|
|
unsigned wid = expr_width();
|
|
|
|
|
ivl_assert(*this, wid > 0);
|
|
|
|
|
ivl_assert(*this, lval.len() == wid);
|
|
|
|
|
ivl_assert(*this, rval.len() == wid);
|
|
|
|
|
|
2014-02-25 21:39:21 +01:00
|
|
|
verinum val = cast_to_width(lval * rval, wid);
|
2011-02-26 23:59:52 +01:00
|
|
|
NetEConst*tmp = new NetEConst(val);
|
2010-11-01 22:37:06 +01:00
|
|
|
ivl_assert(*this, tmp);
|
2013-02-07 22:44:40 +01:00
|
|
|
eval_debug(this, tmp, false);
|
2008-03-26 05:35:08 +01:00
|
|
|
return tmp;
|
2000-01-13 04:35:35 +01:00
|
|
|
}
|
|
|
|
|
|
2013-02-03 10:32:49 +01:00
|
|
|
NetExpr* NetEBPow::eval_tree_real_(const NetExpr*l, const NetExpr*r) const
|
2006-07-31 05:50:17 +02:00
|
|
|
{
|
2013-02-03 10:32:49 +01:00
|
|
|
double lval;
|
|
|
|
|
double rval;
|
2006-07-31 05:50:17 +02:00
|
|
|
|
2013-02-03 10:32:49 +01:00
|
|
|
bool flag = get_real_arguments(l, r, lval, rval);
|
2007-04-07 06:46:18 +02:00
|
|
|
if (! flag) return 0;
|
2006-07-31 05:50:17 +02:00
|
|
|
|
2013-02-03 10:32:49 +01:00
|
|
|
NetECReal*res = new NetECReal( verireal( pow(lval,rval) ) );
|
2010-11-01 22:37:06 +01:00
|
|
|
ivl_assert(*this, res);
|
2013-02-07 22:44:40 +01:00
|
|
|
eval_debug(this, res, true);
|
2006-07-31 05:50:17 +02:00
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-03 10:32:49 +01:00
|
|
|
NetExpr* NetEBPow::eval_arguments_(const NetExpr*l, const NetExpr*r) const
|
|
|
|
|
{
|
|
|
|
|
if (expr_type() == IVL_VT_REAL) return eval_tree_real_(l,r);
|
2006-07-31 05:50:17 +02:00
|
|
|
assert(expr_type() == IVL_VT_LOGIC);
|
|
|
|
|
|
2013-02-03 10:32:49 +01:00
|
|
|
const NetEConst*lc = dynamic_cast<const NetEConst*>(l);
|
|
|
|
|
const NetEConst*rc = dynamic_cast<const NetEConst*>(r);
|
2008-03-08 03:51:50 +01:00
|
|
|
if (lc == 0 || rc == 0) return 0;
|
2006-07-31 05:50:17 +02:00
|
|
|
|
|
|
|
|
verinum lval = lc->value();
|
|
|
|
|
verinum rval = rc->value();
|
|
|
|
|
|
2011-02-26 23:59:52 +01:00
|
|
|
unsigned wid = expr_width();
|
|
|
|
|
ivl_assert(*this, wid > 0);
|
|
|
|
|
ivl_assert(*this, lval.len() == wid);
|
|
|
|
|
|
2014-02-25 21:39:21 +01:00
|
|
|
verinum val = cast_to_width(pow(lval, rval), wid);
|
2011-02-26 23:59:52 +01:00
|
|
|
NetEConst*res = new NetEConst(val);
|
2010-11-01 22:37:06 +01:00
|
|
|
ivl_assert(*this, res);
|
2013-02-07 22:44:40 +01:00
|
|
|
eval_debug(this, res, false);
|
2009-12-07 05:06:13 +01:00
|
|
|
return res;
|
2006-07-31 05:50:17 +02:00
|
|
|
}
|
|
|
|
|
|
2012-05-29 22:56:16 +02:00
|
|
|
NetEConst* NetEBShift::eval_arguments_(const NetExpr*l, const NetExpr*r) const
|
|
|
|
|
{
|
|
|
|
|
const NetEConst*le = dynamic_cast<const NetEConst*>(l);
|
|
|
|
|
const NetEConst*re = dynamic_cast<const NetEConst*>(r);
|
2008-03-08 03:51:50 +01:00
|
|
|
if (le == 0 || re == 0) return 0;
|
1999-09-23 05:56:57 +02:00
|
|
|
|
|
|
|
|
NetEConst*res;
|
|
|
|
|
|
|
|
|
|
verinum lv = le->value();
|
2011-02-26 23:59:52 +01:00
|
|
|
verinum rv = re->value();
|
2001-01-01 22:49:33 +01:00
|
|
|
|
|
|
|
|
unsigned wid = expr_width();
|
2011-02-26 23:59:52 +01:00
|
|
|
ivl_assert(*this, wid > 0);
|
|
|
|
|
ivl_assert(*this, lv.len() == wid);
|
2001-01-01 22:49:33 +01:00
|
|
|
|
2011-03-12 21:26:03 +01:00
|
|
|
verinum val;
|
1999-09-23 05:56:57 +02:00
|
|
|
if (rv.is_defined()) {
|
2014-02-28 21:39:14 +01:00
|
|
|
unsigned shift = rv.as_unsigned();
|
1999-09-23 05:56:57 +02:00
|
|
|
|
2011-02-26 23:59:52 +01:00
|
|
|
switch (op_) {
|
|
|
|
|
case 'l':
|
2014-02-25 21:39:21 +01:00
|
|
|
val = cast_to_width(lv << shift, wid);
|
2011-02-26 23:59:52 +01:00
|
|
|
break;
|
|
|
|
|
case 'r':
|
|
|
|
|
lv.has_sign(false);
|
2018-10-06 21:13:31 +02:00
|
|
|
// fallthrough
|
2011-02-26 23:59:52 +01:00
|
|
|
case 'R':
|
2014-02-25 21:39:21 +01:00
|
|
|
val = cast_to_width(lv >> shift, wid);
|
2011-02-26 23:59:52 +01:00
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
return 0;
|
2001-01-01 22:49:33 +01:00
|
|
|
}
|
1999-09-23 05:56:57 +02:00
|
|
|
} else {
|
2011-03-12 21:26:03 +01:00
|
|
|
val = verinum(verinum::Vx, wid);
|
1999-09-23 05:56:57 +02:00
|
|
|
}
|
2011-03-12 21:26:03 +01:00
|
|
|
val.has_sign(has_sign());
|
|
|
|
|
res = new NetEConst(val);
|
2013-02-04 00:58:06 +01:00
|
|
|
ivl_assert(*this, res);
|
2013-02-07 22:44:40 +01:00
|
|
|
eval_debug(this, res, false);
|
1999-09-23 05:56:57 +02:00
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-26 23:59:52 +01:00
|
|
|
NetEConst* NetEConcat::eval_tree()
|
1999-09-20 04:21:10 +02:00
|
|
|
{
|
2002-05-06 04:30:27 +02:00
|
|
|
unsigned local_errors = 0;
|
2002-05-05 23:11:49 +02:00
|
|
|
|
|
|
|
|
unsigned gap = 0;
|
2012-06-25 00:33:40 +02:00
|
|
|
for (unsigned idx = 0 ; idx < parms_.size() ; idx += 1) {
|
1999-09-21 02:13:40 +02:00
|
|
|
|
|
|
|
|
// Parameter not here? This is an error, but presumably
|
|
|
|
|
// already caught and we are here just to catch more.
|
2008-03-08 03:51:50 +01:00
|
|
|
if (parms_[idx] == 0) continue;
|
2002-05-05 23:11:49 +02:00
|
|
|
|
1999-09-21 02:13:40 +02:00
|
|
|
// If this parameter is already a constant, all is well
|
|
|
|
|
// so go on.
|
2002-05-05 23:11:49 +02:00
|
|
|
if (dynamic_cast<NetEConst*>(parms_[idx])) {
|
|
|
|
|
gap += parms_[idx]->expr_width();
|
1999-09-20 04:21:10 +02:00
|
|
|
continue;
|
2002-05-05 23:11:49 +02:00
|
|
|
}
|
1999-09-20 04:21:10 +02:00
|
|
|
|
1999-09-21 02:13:40 +02:00
|
|
|
// Finally, try to evaluate the parameter expression
|
|
|
|
|
// that is here. If I succeed, reset the parameter to
|
|
|
|
|
// the evaluated value.
|
1999-09-20 04:21:10 +02:00
|
|
|
assert(parms_[idx]);
|
2011-02-26 23:59:52 +01:00
|
|
|
NetExpr*expr = parms_[idx]->eval_tree();
|
1999-09-20 04:21:10 +02:00
|
|
|
if (expr) {
|
2008-03-08 03:51:50 +01:00
|
|
|
expr->set_line(*parms_[idx]);
|
1999-09-20 04:21:10 +02:00
|
|
|
delete parms_[idx];
|
|
|
|
|
parms_[idx] = expr;
|
2002-05-06 04:30:27 +02:00
|
|
|
|
|
|
|
|
if (! expr->has_width()) {
|
2007-12-20 18:31:01 +01:00
|
|
|
cerr << get_fileline() << ": error: concatenation "
|
2002-05-06 04:30:27 +02:00
|
|
|
<< "operand has indefinite width: "
|
|
|
|
|
<< *parms_[idx] << endl;
|
|
|
|
|
local_errors += 1;
|
2002-11-09 02:40:19 +01:00
|
|
|
} else if (expr->expr_width() == 0) {
|
2007-12-20 18:31:01 +01:00
|
|
|
cerr << expr->get_fileline() << ": internal error: "
|
2002-11-09 02:40:19 +01:00
|
|
|
<< "Operand of concatenation has no width: "
|
|
|
|
|
<< *expr << endl;
|
|
|
|
|
local_errors += 1;
|
2002-05-06 04:30:27 +02:00
|
|
|
}
|
2002-11-09 02:40:19 +01:00
|
|
|
|
2002-05-05 23:11:49 +02:00
|
|
|
gap += expr->expr_width();
|
1999-09-20 04:21:10 +02:00
|
|
|
}
|
2002-05-06 04:30:27 +02:00
|
|
|
|
1999-09-20 04:21:10 +02:00
|
|
|
}
|
|
|
|
|
|
2008-03-08 03:51:50 +01:00
|
|
|
if (local_errors > 0) return 0;
|
2002-05-06 04:30:27 +02:00
|
|
|
|
2013-02-06 10:33:29 +01:00
|
|
|
return eval_arguments_(parms_, gap);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NetEConst* NetEConcat::eval_arguments_(const vector<NetExpr*>&vals,
|
|
|
|
|
unsigned gap) const
|
|
|
|
|
{
|
|
|
|
|
unsigned repeat_val = repeat();
|
|
|
|
|
|
2002-05-05 23:11:49 +02:00
|
|
|
// At this point, the "gap" is the width of a single repeat of
|
|
|
|
|
// the concatenation. The total width of the result is the gap
|
|
|
|
|
// times the repeat count.
|
|
|
|
|
verinum val (verinum::Vx, repeat_val * gap);
|
1999-09-20 04:21:10 +02:00
|
|
|
|
|
|
|
|
// build up the result from least significant to most.
|
|
|
|
|
|
|
|
|
|
unsigned cur = 0;
|
2002-04-27 07:03:46 +02:00
|
|
|
bool is_string_flag = true;
|
2013-02-06 10:33:29 +01:00
|
|
|
for (unsigned idx = vals.size() ; idx > 0 ; idx -= 1) {
|
|
|
|
|
const NetEConst*expr = dynamic_cast<NetEConst*>(vals[idx-1]);
|
1999-09-20 04:21:10 +02:00
|
|
|
if (expr == 0)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
verinum tmp = expr->value();
|
2002-04-27 07:03:46 +02:00
|
|
|
for (unsigned bit = 0; bit < tmp.len(); bit += 1, cur += 1)
|
2002-05-05 23:11:49 +02:00
|
|
|
for (unsigned rep = 0 ; rep < repeat_val ; rep += 1)
|
1999-09-20 04:21:10 +02:00
|
|
|
val.set(rep*gap+cur, tmp[bit]);
|
2002-04-27 07:03:46 +02:00
|
|
|
|
|
|
|
|
is_string_flag = is_string_flag && tmp.is_string();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* If all the values were strings, then re-stringify this
|
|
|
|
|
constant. This might be useful information in the code
|
|
|
|
|
generator or other optimizer steps. */
|
|
|
|
|
if (is_string_flag) {
|
|
|
|
|
val = verinum(val.as_string());
|
1999-09-20 04:21:10 +02:00
|
|
|
}
|
|
|
|
|
|
2008-10-14 05:50:56 +02:00
|
|
|
// Normally, concatenations are unsigned. However, the
|
|
|
|
|
// $signed() function works by marking the expression as
|
|
|
|
|
// signed, so we really have to check.
|
|
|
|
|
val.has_sign( this->has_sign() );
|
|
|
|
|
|
1999-09-20 04:21:10 +02:00
|
|
|
NetEConst*res = new NetEConst(val);
|
2013-02-06 10:33:29 +01:00
|
|
|
ivl_assert(*this, res);
|
2013-02-07 22:44:40 +01:00
|
|
|
eval_debug(this, res, false);
|
1999-09-20 04:21:10 +02:00
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
2011-02-26 23:59:52 +01:00
|
|
|
NetEConst* NetESelect::eval_tree()
|
2002-12-05 03:14:33 +01:00
|
|
|
{
|
2008-03-08 03:51:50 +01:00
|
|
|
eval_expr(expr_);
|
2002-12-05 03:14:33 +01:00
|
|
|
NetEConst*expr = dynamic_cast<NetEConst*>(expr_);
|
|
|
|
|
|
2006-11-04 07:16:27 +01:00
|
|
|
long bval = 0;
|
|
|
|
|
if (base_) {
|
2008-03-08 03:51:50 +01:00
|
|
|
eval_expr(base_);
|
2006-11-04 07:16:27 +01:00
|
|
|
NetEConst*base = dynamic_cast<NetEConst*>(base_);
|
2002-12-05 03:14:33 +01:00
|
|
|
|
2008-03-08 03:51:50 +01:00
|
|
|
if (base == 0) return 0;
|
2006-11-04 07:16:27 +01:00
|
|
|
|
|
|
|
|
bval = base->value().as_long();
|
2002-12-05 03:14:33 +01:00
|
|
|
}
|
|
|
|
|
|
2008-03-08 03:51:50 +01:00
|
|
|
if (expr == 0) return 0;
|
2002-12-05 03:14:33 +01:00
|
|
|
|
|
|
|
|
verinum eval = expr->value();
|
|
|
|
|
verinum oval (verinum::V0, expr_width(), true);
|
2006-11-04 07:16:27 +01:00
|
|
|
|
|
|
|
|
verinum::V pad_bit = verinum::Vx;
|
|
|
|
|
if (base_ == 0) {
|
|
|
|
|
|
2011-02-26 23:59:52 +01:00
|
|
|
/* If the base is NULL (different from 0) then this
|
|
|
|
|
select is here for zero or sign extension. So
|
|
|
|
|
calculate a proper pad bit. */
|
|
|
|
|
if (has_sign())
|
|
|
|
|
pad_bit = eval.get(expr->expr_width()-1);
|
|
|
|
|
else
|
2006-11-04 07:16:27 +01:00
|
|
|
pad_bit = verinum::V0;
|
|
|
|
|
}
|
2002-12-05 03:14:33 +01:00
|
|
|
|
2003-06-24 03:38:02 +02:00
|
|
|
for (unsigned long idx = 0 ; idx < expr_width() ; idx += 1) {
|
|
|
|
|
if ((bval >= 0) && ((unsigned long) bval < eval.len()))
|
2002-12-05 03:14:33 +01:00
|
|
|
oval.set(idx, eval.get(bval));
|
2004-10-04 03:10:51 +02:00
|
|
|
else
|
2006-11-04 07:16:27 +01:00
|
|
|
oval.set(idx, pad_bit);
|
2002-12-05 03:14:33 +01:00
|
|
|
|
|
|
|
|
bval += 1;
|
|
|
|
|
}
|
|
|
|
|
|
2008-01-23 05:16:43 +01:00
|
|
|
oval.has_sign(has_sign());
|
|
|
|
|
|
2002-12-05 03:14:33 +01:00
|
|
|
NetEConst*res = new NetEConst(oval);
|
2013-02-07 22:44:40 +01:00
|
|
|
eval_debug(this, res, false);
|
2002-12-05 03:14:33 +01:00
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2008-03-08 03:51:50 +01:00
|
|
|
static void print_ternary_cond(NetExpr*expr)
|
|
|
|
|
{
|
|
|
|
|
if (NetEConst*c = dynamic_cast<NetEConst*>(expr)) {
|
|
|
|
|
cerr << c->value() << endl;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
if (NetECReal*c = dynamic_cast<NetECReal*>(expr)) {
|
|
|
|
|
cerr << c->value() << endl;
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
assert(0);
|
|
|
|
|
}
|
|
|
|
|
|
2000-12-16 20:03:30 +01:00
|
|
|
/*
|
|
|
|
|
* A ternary expression evaluation is controlled by the condition
|
|
|
|
|
* expression. If the condition evaluates to true or false, then
|
|
|
|
|
* return the evaluated true or false expression. If the condition
|
|
|
|
|
* evaluates to x or z, then merge the constant bits of the true and
|
|
|
|
|
* false expressions.
|
|
|
|
|
*/
|
2011-02-26 23:59:52 +01:00
|
|
|
NetExpr* NetETernary::eval_tree()
|
2000-12-16 20:03:30 +01:00
|
|
|
{
|
2008-03-08 03:51:50 +01:00
|
|
|
eval_expr(cond_);
|
|
|
|
|
switch (const_logical(cond_)) {
|
|
|
|
|
case C_0:
|
2011-02-26 23:59:52 +01:00
|
|
|
eval_expr(false_val_);
|
2008-03-08 03:51:50 +01:00
|
|
|
if (debug_eval_tree) {
|
2008-09-04 18:41:51 +02:00
|
|
|
|
2008-03-08 03:51:50 +01:00
|
|
|
cerr << get_fileline() << ": debug: Evaluate ternary with "
|
|
|
|
|
<< "constant condition value: ";
|
|
|
|
|
print_ternary_cond(cond_);
|
|
|
|
|
cerr << get_fileline() << ": : Selecting false case: "
|
|
|
|
|
<< *false_val_ << endl;
|
2001-01-01 22:49:33 +01:00
|
|
|
}
|
2000-12-16 20:03:30 +01:00
|
|
|
|
2021-01-30 02:48:17 +01:00
|
|
|
// Elaborate the alternate expression to check for errors.
|
|
|
|
|
eval_expr(true_val_);
|
|
|
|
|
|
2008-03-08 03:51:50 +01:00
|
|
|
if (expr_type() == IVL_VT_REAL &&
|
|
|
|
|
false_val_->expr_type() != IVL_VT_REAL) {
|
|
|
|
|
verireal f;
|
|
|
|
|
if (get_real_arg_(false_val_, f)) {
|
|
|
|
|
NetECReal*rc = new NetECReal(f);
|
|
|
|
|
rc->set_line(*this);
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
2004-09-11 01:51:42 +02:00
|
|
|
}
|
|
|
|
|
|
2008-03-08 03:51:50 +01:00
|
|
|
return false_val_->dup_expr();
|
2001-11-19 02:54:14 +01:00
|
|
|
|
2008-03-08 03:51:50 +01:00
|
|
|
case C_1:
|
2011-02-26 23:59:52 +01:00
|
|
|
eval_expr(true_val_);
|
2004-09-11 01:51:42 +02:00
|
|
|
if (debug_eval_tree) {
|
2007-12-20 18:31:01 +01:00
|
|
|
cerr << get_fileline() << ": debug: Evaluate ternary with "
|
2008-03-08 03:51:50 +01:00
|
|
|
<< "constant condition value: ";
|
|
|
|
|
print_ternary_cond(cond_);
|
2007-12-20 18:31:01 +01:00
|
|
|
cerr << get_fileline() << ": : Selecting true case: "
|
2004-09-11 01:51:42 +02:00
|
|
|
<< *true_val_ << endl;
|
|
|
|
|
}
|
2001-11-19 02:54:14 +01:00
|
|
|
|
2021-01-30 02:48:17 +01:00
|
|
|
// Elaborate the alternate expression to check for errors.
|
|
|
|
|
eval_expr(false_val_);
|
|
|
|
|
|
2008-03-08 03:51:50 +01:00
|
|
|
if (expr_type() == IVL_VT_REAL &&
|
|
|
|
|
true_val_->expr_type() != IVL_VT_REAL) {
|
|
|
|
|
verireal t;
|
|
|
|
|
if (get_real_arg_(true_val_, t)) {
|
|
|
|
|
NetECReal*rc = new NetECReal(t);
|
|
|
|
|
rc->set_line(*this);
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
2004-09-11 01:51:42 +02:00
|
|
|
}
|
2008-03-08 03:51:50 +01:00
|
|
|
|
|
|
|
|
return true_val_->dup_expr();
|
|
|
|
|
|
|
|
|
|
case C_X:
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
return 0;
|
2004-09-11 01:51:42 +02:00
|
|
|
}
|
2001-11-19 02:54:14 +01:00
|
|
|
|
2000-12-16 20:03:30 +01:00
|
|
|
/* Here we have a more complex case. We need to evaluate both
|
|
|
|
|
expressions down to constants then compare the values to
|
|
|
|
|
build up a constant result. */
|
|
|
|
|
|
2011-02-26 23:59:52 +01:00
|
|
|
eval_expr(true_val_);
|
|
|
|
|
eval_expr(false_val_);
|
2008-03-08 03:51:50 +01:00
|
|
|
|
2012-05-30 02:59:29 +02:00
|
|
|
return blended_arguments_(true_val_, false_val_);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NetExpr*NetETernary::blended_arguments_(const NetExpr*te, const NetExpr*fe) const
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
const NetEConst*t = dynamic_cast<const NetEConst*>(te);
|
|
|
|
|
const NetEConst*f = dynamic_cast<const NetEConst*>(fe);
|
2008-03-08 03:51:50 +01:00
|
|
|
if (t == 0 || f == 0) {
|
|
|
|
|
verireal tv, fv;
|
2012-05-30 02:59:29 +02:00
|
|
|
if (!get_real_arg_(te, tv)) return 0;
|
2014-02-16 00:05:41 +01:00
|
|
|
if (!get_real_arg_(fe, fv)) return 0;
|
2000-12-16 20:03:30 +01:00
|
|
|
|
2008-03-08 03:51:50 +01:00
|
|
|
verireal val = verireal(0.0);
|
|
|
|
|
if (tv.as_double() == fv.as_double()) val = tv;
|
2000-12-16 20:03:30 +01:00
|
|
|
|
2008-03-08 03:51:50 +01:00
|
|
|
if (debug_eval_tree) {
|
|
|
|
|
cerr << get_fileline() << ": debug: Evaluate ternary with "
|
|
|
|
|
<< "constant condition value: ";
|
|
|
|
|
print_ternary_cond(cond_);
|
|
|
|
|
cerr << get_fileline() << ": : Blending real cases "
|
2009-01-06 04:44:52 +01:00
|
|
|
<< "true=" << tv.as_double()
|
|
|
|
|
<< ", false=" << fv.as_double()
|
|
|
|
|
<< ", to get " << val << endl;
|
2008-03-08 03:51:50 +01:00
|
|
|
}
|
2000-12-16 20:03:30 +01:00
|
|
|
|
2008-03-08 03:51:50 +01:00
|
|
|
NetECReal*rc = new NetECReal(val);
|
|
|
|
|
rc->set_line(*this);
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
2000-12-16 20:03:30 +01:00
|
|
|
|
2004-09-11 01:51:42 +02:00
|
|
|
unsigned tsize = t->expr_width();
|
|
|
|
|
unsigned fsize = f->expr_width();
|
|
|
|
|
/* Size of the result is the size of the widest operand. */
|
|
|
|
|
unsigned rsize = tsize > fsize? tsize : fsize;
|
2000-12-16 20:03:30 +01:00
|
|
|
|
2004-09-11 01:51:42 +02:00
|
|
|
verinum val (verinum::V0, rsize);
|
|
|
|
|
for (unsigned idx = 0 ; idx < rsize ; idx += 1) {
|
|
|
|
|
verinum::V tv = idx < tsize? t->value().get(idx) : verinum::V0;
|
2008-03-08 03:51:50 +01:00
|
|
|
verinum::V fv = idx < fsize? f->value().get(idx) : verinum::V0;
|
2000-12-16 20:03:30 +01:00
|
|
|
|
2008-03-08 03:51:50 +01:00
|
|
|
if (tv == fv) val.set(idx, tv);
|
|
|
|
|
else val.set(idx, verinum::Vx);
|
2000-12-16 20:03:30 +01:00
|
|
|
}
|
2014-03-06 20:35:25 +01:00
|
|
|
val.has_sign(has_sign());
|
2000-12-16 20:03:30 +01:00
|
|
|
|
2004-09-11 01:51:42 +02:00
|
|
|
if (debug_eval_tree) {
|
2007-12-20 18:31:01 +01:00
|
|
|
cerr << get_fileline() << ": debug: Evaluate ternary with "
|
2008-03-08 03:51:50 +01:00
|
|
|
<< "constant condition value: ";
|
|
|
|
|
print_ternary_cond(cond_);
|
2007-12-20 18:31:01 +01:00
|
|
|
cerr << get_fileline() << ": : Blending cases to get "
|
2004-09-11 01:51:42 +02:00
|
|
|
<< val << endl;
|
|
|
|
|
}
|
|
|
|
|
|
2000-12-16 20:03:30 +01:00
|
|
|
NetEConst*rc = new NetEConst(val);
|
|
|
|
|
rc->set_line(*this);
|
|
|
|
|
return rc;
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-04 00:58:06 +01:00
|
|
|
NetExpr* NetEUnary::eval_tree()
|
|
|
|
|
{
|
|
|
|
|
eval_expr(expr_);
|
2013-02-07 22:44:40 +01:00
|
|
|
return eval_arguments_(expr_);
|
2013-02-04 00:58:06 +01:00
|
|
|
}
|
|
|
|
|
|
2013-02-03 14:51:39 +01:00
|
|
|
NetExpr* NetEUnary::eval_tree_real_(const NetExpr*ex) const
|
2008-02-20 02:52:01 +01:00
|
|
|
{
|
2013-02-03 14:51:39 +01:00
|
|
|
const NetECReal*val= dynamic_cast<const NetECReal*> (ex);
|
2008-02-20 02:52:01 +01:00
|
|
|
if (val == 0) return 0;
|
|
|
|
|
|
2013-02-03 14:51:39 +01:00
|
|
|
double res_val = val->value().as_double();
|
2008-02-20 02:52:01 +01:00
|
|
|
switch (op_) {
|
|
|
|
|
case '+':
|
2010-11-04 18:45:01 +01:00
|
|
|
break;
|
2008-03-08 03:51:50 +01:00
|
|
|
|
2008-02-20 02:52:01 +01:00
|
|
|
case '-':
|
2013-02-03 14:51:39 +01:00
|
|
|
res_val = -res_val;
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case 'm':
|
|
|
|
|
if (res_val < 0.0) res_val = -res_val;
|
2010-11-04 18:45:01 +01:00
|
|
|
break;
|
2008-03-08 03:51:50 +01:00
|
|
|
|
2008-02-20 02:52:01 +01:00
|
|
|
default:
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2013-02-03 14:51:39 +01:00
|
|
|
NetECReal *res = new NetECReal( verireal(res_val) );
|
|
|
|
|
ivl_assert(*this, res);
|
2013-02-07 22:44:40 +01:00
|
|
|
eval_debug(this, res, true);
|
2010-11-04 18:45:01 +01:00
|
|
|
return res;
|
2008-02-20 02:52:01 +01:00
|
|
|
}
|
|
|
|
|
|
2013-02-03 14:51:39 +01:00
|
|
|
NetExpr* NetEUnary::eval_arguments_(const NetExpr*ex) const
|
|
|
|
|
{
|
|
|
|
|
if (expr_type() == IVL_VT_REAL) return eval_tree_real_(ex);
|
|
|
|
|
|
|
|
|
|
const NetEConst*rval = dynamic_cast<const NetEConst*>(ex);
|
2008-03-08 03:51:50 +01:00
|
|
|
if (rval == 0) return 0;
|
2001-01-02 05:21:13 +01:00
|
|
|
|
|
|
|
|
verinum val = rval->value();
|
2001-01-02 04:23:40 +01:00
|
|
|
|
2001-01-02 05:21:13 +01:00
|
|
|
switch (op_) {
|
|
|
|
|
|
2001-12-30 01:39:25 +01:00
|
|
|
case '+':
|
|
|
|
|
/* Unary + is a no-op. */
|
2010-11-04 18:45:01 +01:00
|
|
|
break;
|
2001-12-30 01:39:25 +01:00
|
|
|
|
2010-11-04 18:45:01 +01:00
|
|
|
case '-':
|
2014-02-25 21:39:21 +01:00
|
|
|
val = -val;
|
2010-11-04 18:45:01 +01:00
|
|
|
break;
|
2001-01-02 05:21:13 +01:00
|
|
|
|
2013-02-03 14:51:39 +01:00
|
|
|
case 'm':
|
|
|
|
|
if (!val.is_defined()) {
|
|
|
|
|
for (unsigned idx = 0 ; idx < val.len() ; idx += 1)
|
|
|
|
|
val.set(idx, verinum::Vx);
|
|
|
|
|
} else if (val.is_negative()) {
|
2014-02-25 21:39:21 +01:00
|
|
|
val = -val;
|
2013-02-03 14:51:39 +01:00
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
2010-11-04 18:45:01 +01:00
|
|
|
case '~':
|
2011-03-11 20:27:54 +01:00
|
|
|
/* Bitwise not is even simpler than logical
|
2010-11-04 18:45:01 +01:00
|
|
|
not. Just invert all the bits of the operand and
|
|
|
|
|
make the new value with the same dimensions. */
|
|
|
|
|
for (unsigned idx = 0 ; idx < val.len() ; idx += 1)
|
|
|
|
|
switch (val.get(idx)) {
|
|
|
|
|
case verinum::V0:
|
|
|
|
|
val.set(idx, verinum::V1);
|
|
|
|
|
break;
|
|
|
|
|
case verinum::V1:
|
|
|
|
|
val.set(idx, verinum::V0);
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
val.set(idx, verinum::Vx);
|
|
|
|
|
}
|
2001-01-02 05:21:13 +01:00
|
|
|
|
2010-11-04 18:45:01 +01:00
|
|
|
break;
|
2001-01-02 05:21:13 +01:00
|
|
|
|
2003-10-31 03:47:11 +01:00
|
|
|
case '!':
|
|
|
|
|
assert(0);
|
2001-01-02 05:21:13 +01:00
|
|
|
default:
|
|
|
|
|
return 0;
|
2001-01-02 04:23:40 +01:00
|
|
|
}
|
2010-11-04 18:45:01 +01:00
|
|
|
|
|
|
|
|
NetEConst *res = new NetEConst(val);
|
|
|
|
|
ivl_assert(*this, res);
|
2013-02-07 22:44:40 +01:00
|
|
|
eval_debug(this, res, false);
|
2010-11-04 18:45:01 +01:00
|
|
|
return res;
|
2001-01-02 05:21:13 +01:00
|
|
|
}
|
|
|
|
|
|
2000-07-07 06:53:53 +02:00
|
|
|
|
2013-02-03 14:51:39 +01:00
|
|
|
NetEConst* NetEUReduce::eval_tree_real_(const NetExpr*ex) const
|
2001-01-02 05:21:13 +01:00
|
|
|
{
|
2010-11-04 18:45:01 +01:00
|
|
|
ivl_assert(*this, op_ == '!');
|
|
|
|
|
|
2013-02-03 14:51:39 +01:00
|
|
|
const NetECReal*val= dynamic_cast<const NetECReal*> (ex);
|
2010-11-04 18:45:01 +01:00
|
|
|
if (val == 0) return 0;
|
2010-11-01 22:37:06 +01:00
|
|
|
|
2010-11-04 18:45:01 +01:00
|
|
|
verinum::V res = val->value().as_double() == 0.0 ? verinum::V1 :
|
|
|
|
|
verinum::V0;
|
|
|
|
|
|
|
|
|
|
NetEConst*tmp = new NetEConst(verinum(res, 1));
|
|
|
|
|
ivl_assert(*this, tmp);
|
2013-02-07 22:44:40 +01:00
|
|
|
eval_debug(this, tmp, true);
|
2010-11-04 18:45:01 +01:00
|
|
|
return tmp;
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-03 14:51:39 +01:00
|
|
|
NetEConst* NetEUReduce::eval_arguments_(const NetExpr*ex) const
|
|
|
|
|
{
|
|
|
|
|
if (expr_type() == IVL_VT_REAL) return eval_tree_real_(ex);
|
2010-11-04 18:45:01 +01:00
|
|
|
|
2013-02-03 14:51:39 +01:00
|
|
|
const NetEConst*rval = dynamic_cast<const NetEConst*>(ex);
|
2008-03-08 03:51:50 +01:00
|
|
|
if (rval == 0) return 0;
|
2000-07-07 06:53:53 +02:00
|
|
|
|
|
|
|
|
verinum val = rval->value();
|
2010-11-04 18:45:01 +01:00
|
|
|
|
2001-01-02 05:21:13 +01:00
|
|
|
verinum::V res;
|
2008-11-18 00:39:53 +01:00
|
|
|
bool invert = false;
|
2000-07-07 06:53:53 +02:00
|
|
|
|
|
|
|
|
switch (op_) {
|
|
|
|
|
|
|
|
|
|
case '!': {
|
|
|
|
|
/* Evaluate the unary logical not by first scanning
|
|
|
|
|
the operand value for V1 and Vx bits. If we find
|
|
|
|
|
any V1 bits we know that the value is TRUE, so
|
|
|
|
|
the result of ! is V0. If there are no V1 bits
|
|
|
|
|
but there are some Vx/Vz bits, the result is
|
|
|
|
|
unknown. Otherwise, the result is V1. */
|
2010-11-04 18:45:01 +01:00
|
|
|
bool v1 = false, vx = false;
|
|
|
|
|
for (unsigned idx = 0 ; idx < val.len() && !v1 ; idx += 1) {
|
2000-07-07 06:53:53 +02:00
|
|
|
switch (val.get(idx)) {
|
|
|
|
|
case verinum::V0:
|
|
|
|
|
break;
|
|
|
|
|
case verinum::V1:
|
2010-11-04 18:45:01 +01:00
|
|
|
v1 = true;
|
2000-07-07 06:53:53 +02:00
|
|
|
break;
|
|
|
|
|
default:
|
2010-11-04 18:45:01 +01:00
|
|
|
vx = true;
|
2000-07-07 06:53:53 +02:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
2001-01-02 05:21:13 +01:00
|
|
|
|
|
|
|
|
res = v1? verinum::V0 : (vx? verinum::Vx : verinum::V1);
|
2002-04-14 21:28:47 +02:00
|
|
|
break;
|
2000-07-07 06:53:53 +02:00
|
|
|
}
|
|
|
|
|
|
2008-11-18 00:39:53 +01:00
|
|
|
case 'A':
|
|
|
|
|
invert = true;
|
2018-10-06 21:13:31 +02:00
|
|
|
// fallthrough
|
2001-01-02 05:21:13 +01:00
|
|
|
case '&': {
|
|
|
|
|
res = verinum::V1;
|
2001-01-02 04:23:40 +01:00
|
|
|
for (unsigned idx = 0 ; idx < val.len() ; idx += 1)
|
2001-01-02 05:21:13 +01:00
|
|
|
res = res & val.get(idx);
|
|
|
|
|
break;
|
|
|
|
|
}
|
2001-01-02 04:23:40 +01:00
|
|
|
|
2008-11-18 00:39:53 +01:00
|
|
|
case 'N':
|
|
|
|
|
invert = true;
|
2018-10-06 21:13:31 +02:00
|
|
|
// fallthrough
|
2001-01-02 05:21:13 +01:00
|
|
|
case '|': {
|
|
|
|
|
res = verinum::V0;
|
|
|
|
|
for (unsigned idx = 0 ; idx < val.len() ; idx += 1)
|
|
|
|
|
res = res | val.get(idx);
|
|
|
|
|
break;
|
2001-01-02 04:23:40 +01:00
|
|
|
}
|
|
|
|
|
|
2008-11-18 00:39:53 +01:00
|
|
|
case 'X':
|
|
|
|
|
invert = true;
|
2018-10-06 21:13:31 +02:00
|
|
|
// fallthrough
|
2002-05-25 18:43:47 +02:00
|
|
|
case '^': {
|
|
|
|
|
/* Reduction XOR. */
|
|
|
|
|
unsigned ones = 0, unknown = 0;
|
|
|
|
|
for (unsigned idx = 0 ; idx < val.len() ; idx += 1)
|
|
|
|
|
switch (val.get(idx)) {
|
|
|
|
|
case verinum::V0:
|
|
|
|
|
break;
|
|
|
|
|
case verinum::V1:
|
|
|
|
|
ones += 1;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
unknown += 1;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2008-11-18 00:39:53 +01:00
|
|
|
if (unknown) res = verinum::Vx;
|
|
|
|
|
else if (ones%2) res = verinum::V1;
|
|
|
|
|
else res = verinum::V0;
|
|
|
|
|
break;
|
2002-05-25 18:43:47 +02:00
|
|
|
}
|
|
|
|
|
|
2000-07-07 06:53:53 +02:00
|
|
|
default:
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2001-01-02 04:23:40 +01:00
|
|
|
|
2008-11-18 00:39:53 +01:00
|
|
|
if (invert) res = ~res;
|
2010-11-04 18:45:01 +01:00
|
|
|
|
|
|
|
|
NetEConst*tmp = new NetEConst(verinum(res, 1));
|
|
|
|
|
ivl_assert(*this, tmp);
|
2013-02-07 22:44:40 +01:00
|
|
|
eval_debug(this, tmp, false);
|
2010-11-04 18:45:01 +01:00
|
|
|
return tmp;
|
2001-01-02 04:23:40 +01:00
|
|
|
}
|
2008-07-31 23:05:27 +02:00
|
|
|
|
2013-02-25 21:32:56 +01:00
|
|
|
NetExpr* NetECast::eval_arguments_(const NetExpr*ex) const
|
|
|
|
|
{
|
|
|
|
|
NetExpr*res = 0;
|
|
|
|
|
switch (op_) {
|
|
|
|
|
case 'r':
|
|
|
|
|
if (const NetEConst*val = dynamic_cast<const NetEConst*>(ex)) {
|
2013-03-06 19:24:11 +01:00
|
|
|
verireal res_val(val->value().as_double());
|
2013-02-25 21:32:56 +01:00
|
|
|
res = new NetECReal(res_val);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
case '2':
|
|
|
|
|
if (const NetEConst*val = dynamic_cast<const NetEConst*>(ex)) {
|
|
|
|
|
verinum res_val(val->value());
|
|
|
|
|
res_val.cast_to_int2();
|
2013-03-06 19:24:11 +01:00
|
|
|
if (expr_width() > 0)
|
|
|
|
|
res_val = cast_to_width(res_val, expr_width());
|
2013-02-25 21:32:56 +01:00
|
|
|
res = new NetEConst(res_val);
|
|
|
|
|
}
|
2018-10-06 21:13:31 +02:00
|
|
|
// fallthrough
|
2013-02-25 21:32:56 +01:00
|
|
|
case 'v':
|
|
|
|
|
if (const NetECReal*val = dynamic_cast<const NetECReal*>(ex)) {
|
2013-03-06 19:24:11 +01:00
|
|
|
verinum res_val(val->value().as_double(), false);
|
|
|
|
|
if (expr_width() > 0)
|
|
|
|
|
res_val = cast_to_width(res_val, expr_width());
|
2013-02-25 21:32:56 +01:00
|
|
|
res = new NetEConst(res_val);
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
ivl_assert(*this, 0);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
if (res == 0) return 0;
|
|
|
|
|
|
|
|
|
|
ivl_assert(*this, res);
|
|
|
|
|
eval_debug(this, res, op_ == 'r');
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-07 22:07:10 +01:00
|
|
|
NetEConst* NetESFunc::evaluate_clog2_(const NetExpr*arg_) const
|
2008-07-31 23:05:27 +02:00
|
|
|
{
|
2013-02-07 22:07:10 +01:00
|
|
|
const NetEConst*tmpi = dynamic_cast<const NetEConst*>(arg_);
|
|
|
|
|
const NetECReal*tmpr = dynamic_cast<const NetECReal*>(arg_);
|
2008-08-16 04:28:11 +02:00
|
|
|
|
2010-11-04 18:45:01 +01:00
|
|
|
if (tmpi == 0 && tmpr == 0) return 0;
|
|
|
|
|
|
|
|
|
|
verinum arg;
|
|
|
|
|
if (tmpi) {
|
|
|
|
|
arg = tmpi->value();
|
|
|
|
|
} else {
|
|
|
|
|
arg = verinum(tmpr->value().as_double(), true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NetEConst*rtn;
|
|
|
|
|
|
|
|
|
|
/* If we have an x in the verinum we return 'bx. */
|
|
|
|
|
if (!arg.is_defined()) {
|
|
|
|
|
verinum tmp (verinum::Vx, integer_width);
|
|
|
|
|
tmp.has_sign(true);
|
2008-08-16 04:28:11 +02:00
|
|
|
|
2010-11-04 18:45:01 +01:00
|
|
|
rtn = new NetEConst(tmp);
|
2013-02-07 22:07:10 +01:00
|
|
|
ivl_assert(*this, rtn);
|
2010-11-04 18:45:01 +01:00
|
|
|
} else {
|
2008-08-29 06:15:43 +02:00
|
|
|
bool is_neg = false;
|
2008-07-31 23:05:27 +02:00
|
|
|
uint64_t res = 0;
|
2010-11-04 18:45:01 +01:00
|
|
|
|
2008-08-29 06:15:43 +02:00
|
|
|
if (arg.is_negative()) {
|
|
|
|
|
is_neg = true;
|
|
|
|
|
// If the length is not defined, then work with
|
|
|
|
|
// the trimmed version of the number.
|
|
|
|
|
if (! arg.has_len())
|
|
|
|
|
arg = trim_vnum(arg);
|
|
|
|
|
}
|
2008-07-31 23:05:27 +02:00
|
|
|
arg.has_sign(false); // $unsigned()
|
2008-08-29 06:15:43 +02:00
|
|
|
|
2008-07-31 23:05:27 +02:00
|
|
|
if (!arg.is_zero()) {
|
|
|
|
|
arg = arg - verinum((uint64_t)1, 1);
|
|
|
|
|
while (!arg.is_zero()) {
|
|
|
|
|
res += 1;
|
|
|
|
|
arg = arg >> 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
2008-08-29 06:15:43 +02:00
|
|
|
|
|
|
|
|
if (is_neg && res < integer_width)
|
|
|
|
|
res = integer_width;
|
|
|
|
|
|
2008-10-02 05:35:26 +02:00
|
|
|
verinum tmp (res, integer_width);
|
2009-10-14 01:38:53 +02:00
|
|
|
tmp.has_sign(true);
|
2010-11-04 18:45:01 +01:00
|
|
|
|
|
|
|
|
rtn = new NetEConst(tmp);
|
2013-02-07 22:07:10 +01:00
|
|
|
ivl_assert(*this, rtn);
|
2008-07-31 23:05:27 +02:00
|
|
|
}
|
|
|
|
|
|
2013-02-07 22:07:10 +01:00
|
|
|
eval_debug(this, rtn, false);
|
2010-11-04 18:45:01 +01:00
|
|
|
return rtn;
|
2008-07-31 23:05:27 +02:00
|
|
|
}
|
|
|
|
|
|
2013-10-11 19:50:45 +02:00
|
|
|
NetEConst* NetESFunc::evaluate_rtoi_(const NetExpr*arg_) const
|
|
|
|
|
{
|
|
|
|
|
const NetEConst*tmpi = dynamic_cast<const NetEConst*>(arg_);
|
|
|
|
|
const NetECReal*tmpr = dynamic_cast<const NetECReal*>(arg_);
|
|
|
|
|
|
|
|
|
|
if (tmpi == 0 && tmpr == 0) return 0;
|
|
|
|
|
|
|
|
|
|
/* If the argument is already a bit based value just extend/trim it
|
|
|
|
|
* to the integer width and translate all undefined bits to zero. */
|
|
|
|
|
if (tmpi) {
|
|
|
|
|
verinum arg = verinum(tmpi->value(), integer_width);
|
|
|
|
|
arg.cast_to_int2();
|
|
|
|
|
return new NetEConst(arg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Get the value of the real argument as a bit based value and then
|
|
|
|
|
* extend/trim it to the integer width. */
|
|
|
|
|
double arg = tmpr->value().as_double();
|
|
|
|
|
if (arg >= 0.0) arg = floor(arg);
|
|
|
|
|
else arg = ceil(arg);
|
|
|
|
|
return new NetEConst(verinum(verinum(arg, false), integer_width));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NetECReal* NetESFunc::evaluate_itor_(const NetExpr*arg_) const
|
|
|
|
|
{
|
|
|
|
|
const NetEConst*tmpi = dynamic_cast<const NetEConst*>(arg_);
|
|
|
|
|
const NetECReal*tmpr = dynamic_cast<const NetECReal*>(arg_);
|
|
|
|
|
|
|
|
|
|
if (tmpi == 0 && tmpr == 0) return 0;
|
|
|
|
|
|
|
|
|
|
/* If the argument is already a real value round it, but NaN and
|
|
|
|
|
* +/- infinity need to be translated to 0.0. */
|
|
|
|
|
if (tmpr) {
|
|
|
|
|
double arg = tmpr->value().as_double();
|
|
|
|
|
/* Convert a NaN or +/- infinity to 0.0 since these convert
|
|
|
|
|
* to 'bz which is then translated to 0.0. */
|
|
|
|
|
if (arg != arg || (arg && (arg == 0.5*arg))) {
|
|
|
|
|
return new NetECReal(verireal(0.0));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (arg >= 0.0) arg = floor(arg + 0.5);
|
|
|
|
|
else arg = ceil(arg - 0.5);
|
|
|
|
|
|
|
|
|
|
return new NetECReal(verireal(arg));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Convert the bit based value to a real value. */
|
|
|
|
|
double arg = tmpi->value().as_double();
|
|
|
|
|
return new NetECReal(verireal(arg));
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-07 22:07:10 +01:00
|
|
|
NetECReal* NetESFunc::evaluate_math_one_arg_(ID id, const NetExpr*arg_) const
|
2008-08-30 06:11:44 +02:00
|
|
|
{
|
2013-02-07 22:07:10 +01:00
|
|
|
const NetEConst*tmpi = dynamic_cast<const NetEConst*>(arg_);
|
|
|
|
|
const NetECReal*tmpr = dynamic_cast<const NetECReal*>(arg_);
|
2010-11-05 19:32:30 +01:00
|
|
|
|
|
|
|
|
NetECReal*res = 0;
|
|
|
|
|
|
2008-08-30 06:11:44 +02:00
|
|
|
if (tmpi || tmpr) {
|
|
|
|
|
double arg;
|
|
|
|
|
if (tmpi) {
|
|
|
|
|
arg = tmpi->value().as_double();
|
|
|
|
|
} else {
|
|
|
|
|
arg = tmpr->value().as_double();
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-07 22:07:10 +01:00
|
|
|
switch (id) {
|
|
|
|
|
case LN:
|
2010-11-05 19:32:30 +01:00
|
|
|
res = new NetECReal(verireal(log(arg)));
|
2013-02-07 22:07:10 +01:00
|
|
|
break;
|
|
|
|
|
case LOG10:
|
2010-11-05 19:32:30 +01:00
|
|
|
res = new NetECReal(verireal(log10(arg)));
|
2013-02-07 22:07:10 +01:00
|
|
|
break;
|
|
|
|
|
case EXP:
|
2010-11-05 19:32:30 +01:00
|
|
|
res = new NetECReal(verireal(exp(arg)));
|
2013-02-07 22:07:10 +01:00
|
|
|
break;
|
|
|
|
|
case SQRT:
|
2010-11-05 19:32:30 +01:00
|
|
|
res = new NetECReal(verireal(sqrt(arg)));
|
2013-02-07 22:07:10 +01:00
|
|
|
break;
|
|
|
|
|
case FLOOR:
|
2010-11-05 19:32:30 +01:00
|
|
|
res = new NetECReal(verireal(floor(arg)));
|
2013-02-07 22:07:10 +01:00
|
|
|
break;
|
|
|
|
|
case CEIL:
|
2010-11-05 19:32:30 +01:00
|
|
|
res = new NetECReal(verireal(ceil(arg)));
|
2013-02-07 22:07:10 +01:00
|
|
|
break;
|
|
|
|
|
case SIN:
|
2010-11-05 19:32:30 +01:00
|
|
|
res = new NetECReal(verireal(sin(arg)));
|
2013-02-07 22:07:10 +01:00
|
|
|
break;
|
|
|
|
|
case COS:
|
2010-11-05 19:32:30 +01:00
|
|
|
res = new NetECReal(verireal(cos(arg)));
|
2013-02-07 22:07:10 +01:00
|
|
|
break;
|
|
|
|
|
case TAN:
|
2010-11-05 19:32:30 +01:00
|
|
|
res = new NetECReal(verireal(tan(arg)));
|
2013-02-07 22:07:10 +01:00
|
|
|
break;
|
|
|
|
|
case ASIN:
|
2010-11-05 19:32:30 +01:00
|
|
|
res = new NetECReal(verireal(asin(arg)));
|
2013-02-07 22:07:10 +01:00
|
|
|
break;
|
|
|
|
|
case ACOS:
|
2010-11-05 19:32:30 +01:00
|
|
|
res = new NetECReal(verireal(acos(arg)));
|
2013-02-07 22:07:10 +01:00
|
|
|
break;
|
|
|
|
|
case ATAN:
|
2010-11-05 19:32:30 +01:00
|
|
|
res = new NetECReal(verireal(atan(arg)));
|
2013-02-07 22:07:10 +01:00
|
|
|
break;
|
|
|
|
|
case SINH:
|
2010-11-05 19:32:30 +01:00
|
|
|
res = new NetECReal(verireal(sinh(arg)));
|
2013-02-07 22:07:10 +01:00
|
|
|
break;
|
|
|
|
|
case COSH:
|
2010-11-05 19:32:30 +01:00
|
|
|
res = new NetECReal(verireal(cosh(arg)));
|
2013-02-07 22:07:10 +01:00
|
|
|
break;
|
|
|
|
|
case TANH:
|
2010-11-05 19:32:30 +01:00
|
|
|
res = new NetECReal(verireal(tanh(arg)));
|
2013-02-07 22:07:10 +01:00
|
|
|
break;
|
|
|
|
|
case ASINH:
|
2010-11-05 19:32:30 +01:00
|
|
|
res = new NetECReal(verireal(asinh(arg)));
|
2013-02-07 22:07:10 +01:00
|
|
|
break;
|
|
|
|
|
case ACOSH:
|
2010-11-05 19:32:30 +01:00
|
|
|
res = new NetECReal(verireal(acosh(arg)));
|
2013-02-07 22:07:10 +01:00
|
|
|
break;
|
|
|
|
|
case ATANH:
|
2010-11-05 19:32:30 +01:00
|
|
|
res = new NetECReal(verireal(atanh(arg)));
|
2013-02-07 22:07:10 +01:00
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
ivl_assert(*this, 0);
|
|
|
|
|
break;
|
2008-08-30 06:11:44 +02:00
|
|
|
}
|
2013-02-07 22:07:10 +01:00
|
|
|
ivl_assert(*this, res);
|
2008-08-30 06:11:44 +02:00
|
|
|
}
|
|
|
|
|
|
2013-02-07 22:07:10 +01:00
|
|
|
eval_debug(this, res, true);
|
2010-11-05 19:32:30 +01:00
|
|
|
return res;
|
2008-08-30 06:11:44 +02:00
|
|
|
}
|
|
|
|
|
|
2013-02-07 22:07:10 +01:00
|
|
|
NetECReal* NetESFunc::evaluate_math_two_arg_(ID id, const NetExpr*arg0_,
|
|
|
|
|
const NetExpr*arg1_) const
|
2008-08-30 06:11:44 +02:00
|
|
|
{
|
2013-02-07 22:07:10 +01:00
|
|
|
const NetEConst*tmpi0 = dynamic_cast<const NetEConst*>(arg0_);
|
|
|
|
|
const NetECReal*tmpr0 = dynamic_cast<const NetECReal*>(arg0_);
|
|
|
|
|
const NetEConst*tmpi1 = dynamic_cast<const NetEConst*>(arg1_);
|
|
|
|
|
const NetECReal*tmpr1 = dynamic_cast<const NetECReal*>(arg1_);
|
2010-11-05 19:32:30 +01:00
|
|
|
|
|
|
|
|
NetECReal*res = 0;
|
|
|
|
|
|
2008-08-30 06:11:44 +02:00
|
|
|
if ((tmpi0 || tmpr0) && (tmpi1 || tmpr1)) {
|
|
|
|
|
double arg0, arg1;
|
|
|
|
|
if (tmpi0) {
|
|
|
|
|
arg0 = tmpi0->value().as_double();
|
|
|
|
|
} else {
|
|
|
|
|
arg0 = tmpr0->value().as_double();
|
|
|
|
|
}
|
|
|
|
|
if (tmpi1) {
|
|
|
|
|
arg1 = tmpi1->value().as_double();
|
|
|
|
|
} else {
|
|
|
|
|
arg1 = tmpr1->value().as_double();
|
|
|
|
|
}
|
|
|
|
|
|
2013-02-07 22:07:10 +01:00
|
|
|
switch (id) {
|
|
|
|
|
case POW:
|
2010-11-05 19:32:30 +01:00
|
|
|
res = new NetECReal(verireal(pow(arg0, arg1)));
|
2013-02-07 22:07:10 +01:00
|
|
|
break;
|
|
|
|
|
case ATAN2:
|
2010-11-05 19:32:30 +01:00
|
|
|
res = new NetECReal(verireal(atan2(arg0, arg1)));
|
2013-02-07 22:07:10 +01:00
|
|
|
break;
|
|
|
|
|
case HYPOT:
|
2010-11-05 19:32:30 +01:00
|
|
|
res = new NetECReal(verireal(hypot(arg0, arg1)));
|
2013-02-07 22:07:10 +01:00
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
ivl_assert(*this, 0);
|
|
|
|
|
break;
|
2008-08-30 06:11:44 +02:00
|
|
|
}
|
2013-02-07 22:07:10 +01:00
|
|
|
ivl_assert(*this, res);
|
2008-08-30 06:11:44 +02:00
|
|
|
}
|
|
|
|
|
|
2013-02-07 22:07:10 +01:00
|
|
|
eval_debug(this, res, true);
|
2010-11-05 19:32:30 +01:00
|
|
|
return res;
|
2008-08-30 06:11:44 +02:00
|
|
|
}
|
|
|
|
|
|
2013-02-07 22:07:10 +01:00
|
|
|
NetExpr* NetESFunc::evaluate_abs_(const NetExpr*arg_) const
|
2008-08-30 06:11:44 +02:00
|
|
|
{
|
2010-11-05 19:32:30 +01:00
|
|
|
NetExpr*res = 0;
|
|
|
|
|
|
2013-02-07 22:07:10 +01:00
|
|
|
const NetEConst*tmpi = dynamic_cast<const NetEConst*>(arg_);
|
|
|
|
|
const NetECReal*tmpr = dynamic_cast<const NetECReal*>(arg_);
|
2013-02-26 23:39:04 +01:00
|
|
|
if (tmpi || tmpr) {
|
|
|
|
|
double arg;
|
|
|
|
|
if (tmpi) {
|
|
|
|
|
arg = tmpi->value().as_double();
|
|
|
|
|
} else {
|
|
|
|
|
arg = tmpr->value().as_double();
|
|
|
|
|
}
|
2010-11-05 19:32:30 +01:00
|
|
|
res = new NetECReal(verireal(fabs(arg)));
|
2013-02-07 22:07:10 +01:00
|
|
|
ivl_assert(*this, res);
|
2008-08-30 06:11:44 +02:00
|
|
|
}
|
|
|
|
|
|
2013-02-26 23:39:04 +01:00
|
|
|
eval_debug(this, res, true);
|
2010-11-05 19:32:30 +01:00
|
|
|
return res;
|
2008-08-30 06:11:44 +02:00
|
|
|
}
|
|
|
|
|
|
2013-02-07 22:07:10 +01:00
|
|
|
NetExpr* NetESFunc::evaluate_min_max_(ID id, const NetExpr*arg0_,
|
|
|
|
|
const NetExpr*arg1_) const
|
2008-08-30 06:11:44 +02:00
|
|
|
{
|
2013-02-07 22:07:10 +01:00
|
|
|
const NetEConst*tmpi0 = dynamic_cast<const NetEConst*>(arg0_);
|
|
|
|
|
const NetECReal*tmpr0 = dynamic_cast<const NetECReal*>(arg0_);
|
|
|
|
|
const NetEConst*tmpi1 = dynamic_cast<const NetEConst*>(arg1_);
|
|
|
|
|
const NetECReal*tmpr1 = dynamic_cast<const NetECReal*>(arg1_);
|
2010-11-05 19:32:30 +01:00
|
|
|
|
|
|
|
|
NetExpr*res = 0;
|
|
|
|
|
|
2013-02-26 23:39:04 +01:00
|
|
|
if ((tmpi0 || tmpr0) && (tmpi1 || tmpr1)) {
|
2008-08-30 06:11:44 +02:00
|
|
|
double arg0, arg1;
|
|
|
|
|
if (tmpi0) {
|
|
|
|
|
arg0 = tmpi0->value().as_double();
|
|
|
|
|
} else {
|
|
|
|
|
arg0 = tmpr0->value().as_double();
|
|
|
|
|
}
|
|
|
|
|
if (tmpi1) {
|
|
|
|
|
arg1 = tmpi1->value().as_double();
|
|
|
|
|
} else {
|
|
|
|
|
arg1 = tmpr1->value().as_double();
|
|
|
|
|
}
|
2013-02-07 22:07:10 +01:00
|
|
|
switch (id) {
|
|
|
|
|
case MIN:
|
2010-11-05 19:32:30 +01:00
|
|
|
res = new NetECReal(verireal(arg0 < arg1 ? arg0 : arg1));
|
2013-02-07 22:07:10 +01:00
|
|
|
break;
|
|
|
|
|
case MAX:
|
2010-11-05 19:32:30 +01:00
|
|
|
res = new NetECReal(verireal(arg0 < arg1 ? arg1 : arg0));
|
2013-02-07 22:07:10 +01:00
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
ivl_assert(*this, 0);
|
|
|
|
|
break;
|
2008-08-30 06:11:44 +02:00
|
|
|
}
|
2013-02-07 22:07:10 +01:00
|
|
|
ivl_assert(*this, res);
|
2008-08-30 06:11:44 +02:00
|
|
|
}
|
|
|
|
|
|
2013-02-26 23:39:04 +01:00
|
|
|
eval_debug(this, res, true);
|
2010-11-05 19:32:30 +01:00
|
|
|
return res;
|
2008-08-30 06:11:44 +02:00
|
|
|
}
|
|
|
|
|
|
2018-09-04 00:58:05 +02:00
|
|
|
static void no_string_arg(const NetESFunc*info, unsigned arg_num)
|
2018-09-03 17:29:07 +02:00
|
|
|
{
|
|
|
|
|
cerr << info->get_fileline() << ": error: constant function "
|
2018-09-04 00:58:05 +02:00
|
|
|
<< info->name() << "() does not support a string argument ("
|
|
|
|
|
<< arg_num+1 << ")." << endl;
|
2018-09-03 17:29:07 +02:00
|
|
|
}
|
|
|
|
|
|
2018-09-04 00:58:05 +02:00
|
|
|
NetEConst* NetESFunc::evaluate_countbits_() const
|
2013-12-19 03:52:00 +01:00
|
|
|
{
|
2018-09-04 00:58:05 +02:00
|
|
|
const NetEConst*tmpi = dynamic_cast<const NetEConst*>(parms_[0]);
|
2018-09-03 17:29:07 +02:00
|
|
|
|
|
|
|
|
NetEConst*res = 0;
|
|
|
|
|
|
|
|
|
|
if (tmpi) {
|
|
|
|
|
verinum value = tmpi->value();
|
|
|
|
|
|
|
|
|
|
if (value.is_string()) {
|
2018-09-04 00:58:05 +02:00
|
|
|
no_string_arg(this, 0);
|
2018-09-03 17:29:07 +02:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-04 00:58:05 +02:00
|
|
|
/* Find which values need to be counted. */
|
|
|
|
|
bool count_0 = false;
|
|
|
|
|
bool count_1 = false;
|
|
|
|
|
bool count_z = false;
|
|
|
|
|
bool count_x = false;
|
|
|
|
|
for (unsigned arg=1; arg < parms_.size(); ++arg) {
|
|
|
|
|
const NetEConst*argi = dynamic_cast<const NetEConst*>(parms_[arg]);
|
|
|
|
|
if (! argi) return 0;
|
|
|
|
|
verinum check_for = argi->value();
|
|
|
|
|
if (check_for.is_string()) {
|
|
|
|
|
no_string_arg(this, arg);
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
switch (check_for[0]) {
|
|
|
|
|
case verinum::V0:
|
|
|
|
|
count_0 = true;
|
|
|
|
|
break;
|
|
|
|
|
case verinum::V1:
|
|
|
|
|
count_1 = true;
|
|
|
|
|
break;
|
|
|
|
|
case verinum::Vz:
|
|
|
|
|
count_z = true;
|
|
|
|
|
break;
|
|
|
|
|
case verinum::Vx:
|
|
|
|
|
count_x = true;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Search each bit of the vector looking for the values to
|
|
|
|
|
* be counted. */
|
|
|
|
|
int count = 0;
|
|
|
|
|
for (unsigned bit=0; bit < value.len(); ++bit) {
|
|
|
|
|
switch (value[bit]) {
|
|
|
|
|
case verinum::V0:
|
|
|
|
|
if (count_0) ++count;
|
|
|
|
|
break;
|
|
|
|
|
case verinum::V1:
|
|
|
|
|
if (count_1) ++count;
|
|
|
|
|
break;
|
|
|
|
|
case verinum::Vz:
|
|
|
|
|
if (count_z) ++count;
|
|
|
|
|
break;
|
|
|
|
|
case verinum::Vx:
|
|
|
|
|
if (count_x) ++count;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
verinum tmp (count, integer_width);
|
|
|
|
|
tmp.has_sign(true);
|
|
|
|
|
res = new NetEConst(tmp);
|
|
|
|
|
ivl_assert(*this, res);
|
2018-09-03 17:29:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return res;
|
2013-12-19 03:52:00 +01:00
|
|
|
}
|
|
|
|
|
|
2018-09-03 17:29:07 +02:00
|
|
|
NetEConst* NetESFunc::evaluate_countones_(const NetExpr* arg) const
|
2013-12-19 03:52:00 +01:00
|
|
|
{
|
2018-09-03 17:29:07 +02:00
|
|
|
const NetEConst*tmpi = dynamic_cast<const NetEConst*>(arg);
|
|
|
|
|
|
|
|
|
|
NetEConst*res = 0;
|
|
|
|
|
|
|
|
|
|
if (tmpi) {
|
|
|
|
|
verinum value = tmpi->value();
|
|
|
|
|
int count = 0;
|
|
|
|
|
|
|
|
|
|
if (value.is_string()) {
|
2018-09-04 00:58:05 +02:00
|
|
|
no_string_arg(this, 0);
|
2018-09-03 17:29:07 +02:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (unsigned bit=0; bit < value.len(); ++bit) {
|
2018-09-04 00:58:05 +02:00
|
|
|
if (value[bit] == verinum::V1) ++count;
|
2018-09-03 17:29:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
verinum tmp (count, integer_width);
|
|
|
|
|
tmp.has_sign(true);
|
|
|
|
|
res = new NetEConst(tmp);
|
|
|
|
|
ivl_assert(*this, res);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return res;
|
2013-12-19 03:52:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Get the total number of dimensions for the given expression. */
|
|
|
|
|
NetEConst* NetESFunc::evaluate_dimensions_(const NetExpr*arg) const
|
|
|
|
|
{
|
|
|
|
|
const NetESignal*esig = dynamic_cast<const NetESignal*>(arg);
|
|
|
|
|
long res = 0;
|
|
|
|
|
if (esig != 0) {
|
|
|
|
|
const NetNet *sig = esig->sig();
|
|
|
|
|
res = sig->packed_dimensions() + sig->unpacked_dimensions();
|
|
|
|
|
/* Icarus does not think a string has a packed size so to
|
|
|
|
|
* make these routines work correct add one if this is a
|
|
|
|
|
* string data type. */
|
|
|
|
|
if (sig->data_type() == IVL_VT_STRING) {
|
|
|
|
|
assert(sig->packed_dimensions() == 0);
|
|
|
|
|
res += 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
/* Return the result as an integer sized constant. */
|
|
|
|
|
return new NetEConst(verinum(verinum(res), integer_width));
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-03 17:29:07 +02:00
|
|
|
NetEConst* NetESFunc::evaluate_isunknown_(const NetExpr* arg) const
|
2013-12-19 03:52:00 +01:00
|
|
|
{
|
2018-09-03 17:29:07 +02:00
|
|
|
const NetEConst*tmpi = dynamic_cast<const NetEConst*>(arg);
|
|
|
|
|
|
|
|
|
|
NetEConst*res = 0;
|
|
|
|
|
|
|
|
|
|
if (tmpi) {
|
|
|
|
|
verinum value = tmpi->value();
|
|
|
|
|
unsigned is_unknown = 1;
|
|
|
|
|
|
|
|
|
|
if (value.is_string()) {
|
2018-09-04 00:58:05 +02:00
|
|
|
no_string_arg(this, 0);
|
2018-09-03 17:29:07 +02:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (value.is_defined()) is_unknown = 0;
|
|
|
|
|
|
|
|
|
|
verinum tmp (is_unknown, 1U);
|
|
|
|
|
tmp.has_sign(false);
|
|
|
|
|
res = new NetEConst(tmp);
|
|
|
|
|
ivl_assert(*this, res);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return res;
|
2013-12-19 03:52:00 +01:00
|
|
|
}
|
|
|
|
|
|
2021-01-02 23:04:06 +01:00
|
|
|
static bool is_onehot(const verinum&value, bool zero_is_okay)
|
2013-12-19 03:52:00 +01:00
|
|
|
{
|
2018-09-03 17:29:07 +02:00
|
|
|
bool found_a_one = false;
|
|
|
|
|
|
|
|
|
|
for (unsigned bit=0; bit < value.len(); ++bit) {
|
|
|
|
|
if (value[bit] == verinum::V1) {
|
|
|
|
|
if (found_a_one) return false;
|
|
|
|
|
found_a_one = true;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* If no one bit was found return true if zero is okay. */
|
|
|
|
|
if (zero_is_okay) found_a_one = true;
|
|
|
|
|
return found_a_one;
|
2013-12-19 03:52:00 +01:00
|
|
|
}
|
|
|
|
|
|
2018-09-03 17:29:07 +02:00
|
|
|
NetEConst* NetESFunc::evaluate_onehot_(const NetExpr* arg) const
|
2013-12-19 03:52:00 +01:00
|
|
|
{
|
2018-09-03 17:29:07 +02:00
|
|
|
const NetEConst*tmpi = dynamic_cast<const NetEConst*>(arg);
|
|
|
|
|
|
|
|
|
|
NetEConst*res = 0;
|
|
|
|
|
|
|
|
|
|
if (tmpi) {
|
|
|
|
|
verinum value = tmpi->value();
|
|
|
|
|
|
|
|
|
|
if (value.is_string()) {
|
2018-09-04 00:58:05 +02:00
|
|
|
no_string_arg(this, 0);
|
2018-09-03 17:29:07 +02:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
verinum tmp (is_onehot(value, false), 1U);
|
|
|
|
|
tmp.has_sign(false);
|
|
|
|
|
res = new NetEConst(tmp);
|
|
|
|
|
ivl_assert(*this, res);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return res;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NetEConst* NetESFunc::evaluate_onehot0_(const NetExpr* arg) const
|
|
|
|
|
{
|
|
|
|
|
const NetEConst*tmpi = dynamic_cast<const NetEConst*>(arg);
|
|
|
|
|
|
|
|
|
|
NetEConst*res = 0;
|
|
|
|
|
|
|
|
|
|
if (tmpi) {
|
|
|
|
|
verinum value = tmpi->value();
|
|
|
|
|
|
|
|
|
|
if (value.is_string()) {
|
2018-09-04 00:58:05 +02:00
|
|
|
no_string_arg(this, 0);
|
2018-09-03 17:29:07 +02:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
verinum tmp (is_onehot(value, true), 1U);
|
|
|
|
|
tmp.has_sign(false);
|
|
|
|
|
res = new NetEConst(tmp);
|
|
|
|
|
ivl_assert(*this, res);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return res;
|
2013-12-19 03:52:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Get the number of unpacked dimensions for the given expression. */
|
|
|
|
|
NetEConst* NetESFunc::evaluate_unpacked_dimensions_(const NetExpr*arg) const
|
|
|
|
|
{
|
|
|
|
|
const NetESignal*esig = dynamic_cast<const NetESignal*>(arg);
|
|
|
|
|
long res = 0;
|
|
|
|
|
if (esig != 0) {
|
|
|
|
|
const NetNet *sig = esig->sig();
|
|
|
|
|
res = sig->unpacked_dimensions();
|
|
|
|
|
}
|
|
|
|
|
/* Return the result as an integer sized constant. */
|
|
|
|
|
return new NetEConst(verinum(verinum(res), integer_width));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* This code assumes that the dimension value will fit in a long.
|
|
|
|
|
* Return true if no constant dimension value is available. */
|
|
|
|
|
static bool check_dimension(const NetExpr*dim_expr, long &dim)
|
|
|
|
|
{
|
|
|
|
|
const NetEConst*dimi = dynamic_cast<const NetEConst*>(dim_expr);
|
|
|
|
|
const NetECReal*dimr = dynamic_cast<const NetECReal*>(dim_expr);
|
|
|
|
|
if (dimi == 0 && dimr == 0) return true;
|
|
|
|
|
|
|
|
|
|
if (dimi) dim = dimi->value().as_long();
|
|
|
|
|
if (dimr) dim = dimr->value().as_long();
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Get the left and right values for the argument at the given dimension
|
2013-12-19 18:19:18 +01:00
|
|
|
* if it exists. Return true if no values are available. Set defer to true
|
|
|
|
|
* if this should be handled in the run time. */
|
2013-12-19 03:52:00 +01:00
|
|
|
static bool get_array_info(const NetExpr*arg, long dim,
|
|
|
|
|
long &left, long &right, bool&defer)
|
|
|
|
|
{
|
2015-06-22 17:50:41 +02:00
|
|
|
if (const NetEConstParam*param = dynamic_cast<const NetEConstParam*>(arg)) {
|
|
|
|
|
assert(dim == 1);
|
|
|
|
|
left = param->expr_width() - 1;
|
|
|
|
|
right = 0;
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2013-12-19 03:52:00 +01:00
|
|
|
/* The argument must be a signal that has enough dimensions. */
|
|
|
|
|
const NetESignal*esig = dynamic_cast<const NetESignal*>(arg);
|
|
|
|
|
if (esig == 0) return true;
|
|
|
|
|
const NetNet *sig = esig->sig();
|
|
|
|
|
/* A string or dynamic array must be handled by the run time. */
|
|
|
|
|
switch (sig->data_type()) {
|
|
|
|
|
case IVL_VT_DARRAY:
|
2014-08-10 05:43:53 +02:00
|
|
|
case IVL_VT_QUEUE:
|
2013-12-19 03:52:00 +01:00
|
|
|
case IVL_VT_STRING:
|
|
|
|
|
defer = true;
|
|
|
|
|
return true;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
long pdims = sig->packed_dimensions();
|
|
|
|
|
long updims = sig->unpacked_dimensions();
|
|
|
|
|
if (dim > (pdims + updims)) return true;
|
|
|
|
|
/* Get the appropriate unpacked or packed dimension information. */
|
|
|
|
|
if (dim > updims) {
|
|
|
|
|
const vector<netrange_t>&dim_vals = sig->packed_dims();
|
|
|
|
|
const netrange_t&range = dim_vals[dim-updims-1];
|
|
|
|
|
left = range.get_msb();
|
|
|
|
|
right = range.get_lsb();
|
|
|
|
|
} else {
|
|
|
|
|
const vector<netrange_t>&dim_vals = sig->unpacked_dims();
|
|
|
|
|
const netrange_t&range = dim_vals[dim-1];
|
|
|
|
|
left = range.get_msb();
|
|
|
|
|
right = range.get_lsb();
|
|
|
|
|
}
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Calculate the array property functions. */
|
|
|
|
|
NetEConst* NetESFunc::evaluate_array_funcs_(ID id,
|
|
|
|
|
const NetExpr*arg0,
|
|
|
|
|
const NetExpr*arg1) const
|
|
|
|
|
{
|
|
|
|
|
long dim = 0;
|
|
|
|
|
/* Check to see if the dimension argument is constant. */
|
|
|
|
|
if (check_dimension(arg1, dim)) return 0;
|
|
|
|
|
/* If dimension is less than 1 return undefined. */
|
|
|
|
|
if (dim < 1) {
|
|
|
|
|
return new NetEConst(verinum(verinum::Vx, integer_width));
|
|
|
|
|
}
|
|
|
|
|
/* Get the left/right information for this dimension if it exists. */
|
|
|
|
|
long left = 0;
|
|
|
|
|
long right = 0;
|
2013-12-19 18:19:18 +01:00
|
|
|
bool defer = false;
|
2013-12-19 03:52:00 +01:00
|
|
|
if (get_array_info(arg0, dim, left, right, defer)) {
|
|
|
|
|
/* If this is a string or dynamic array defer this function
|
|
|
|
|
* call since the left/right information is dynamic and is
|
|
|
|
|
* not available yet. */
|
|
|
|
|
if (defer) return 0;
|
|
|
|
|
return new NetEConst(verinum(verinum::Vx, integer_width));
|
|
|
|
|
}
|
|
|
|
|
/* Calculate the appropriate array function result. */
|
|
|
|
|
long res;
|
|
|
|
|
switch (id) {
|
|
|
|
|
case HIGH:
|
|
|
|
|
res = (right > left) ? right : left;
|
|
|
|
|
break;
|
|
|
|
|
case INCR:
|
|
|
|
|
res = (right > left) ? -1 : 1;
|
|
|
|
|
break;
|
|
|
|
|
case LEFT:
|
|
|
|
|
res = left;
|
|
|
|
|
break;
|
|
|
|
|
case LOW:
|
|
|
|
|
res = (right > left) ? left : right;
|
|
|
|
|
break;
|
|
|
|
|
case RIGHT:
|
|
|
|
|
res = right;
|
|
|
|
|
break;
|
|
|
|
|
case SIZE:
|
|
|
|
|
res = (right > left) ? right - left : left - right;
|
|
|
|
|
res += 1;
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
res = 0;
|
|
|
|
|
assert(0);
|
|
|
|
|
}
|
|
|
|
|
/* Return the result as an integer sized constant. */
|
|
|
|
|
return new NetEConst(verinum(verinum(res), integer_width));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Make a constant one value that can be used by the one argument
|
|
|
|
|
* array properties calls. */
|
|
|
|
|
const NetEConst* NetESFunc::const_one_ = new NetEConst(verinum(1U, 32U));
|
|
|
|
|
|
2013-02-07 22:07:10 +01:00
|
|
|
NetExpr* NetESFunc::evaluate_one_arg_(ID id, const NetExpr*arg) const
|
2008-07-31 23:05:27 +02:00
|
|
|
{
|
2013-02-07 22:07:10 +01:00
|
|
|
switch (id) {
|
|
|
|
|
case ABS:
|
|
|
|
|
return evaluate_abs_(arg);
|
|
|
|
|
case CLOG2:
|
|
|
|
|
return evaluate_clog2_(arg);
|
2013-12-19 03:52:00 +01:00
|
|
|
case CTONES:
|
|
|
|
|
return evaluate_countones_(arg);
|
|
|
|
|
case DIMS:
|
|
|
|
|
return evaluate_dimensions_(arg);
|
|
|
|
|
/* The array functions are handled together. */
|
|
|
|
|
case HIGH:
|
|
|
|
|
case INCR:
|
|
|
|
|
case LEFT:
|
|
|
|
|
case LOW:
|
|
|
|
|
case RIGHT:
|
|
|
|
|
case SIZE:
|
|
|
|
|
return evaluate_array_funcs_(id, arg, const_one_);
|
|
|
|
|
case ISUNKN:
|
|
|
|
|
return evaluate_isunknown_(arg);
|
2013-10-11 19:50:45 +02:00
|
|
|
case ITOR:
|
|
|
|
|
return evaluate_itor_(arg);
|
2013-12-19 03:52:00 +01:00
|
|
|
case ONEHT:
|
|
|
|
|
return evaluate_onehot_(arg);
|
|
|
|
|
case ONEHT0:
|
|
|
|
|
return evaluate_onehot0_(arg);
|
2013-10-11 19:50:45 +02:00
|
|
|
case RTOI:
|
|
|
|
|
return evaluate_rtoi_(arg);
|
2013-12-19 03:52:00 +01:00
|
|
|
case UPDIMS:
|
|
|
|
|
return evaluate_unpacked_dimensions_(arg);
|
2013-02-07 22:07:10 +01:00
|
|
|
default:
|
|
|
|
|
return evaluate_math_one_arg_(id, arg);
|
2008-08-30 06:11:44 +02:00
|
|
|
}
|
2013-02-07 22:07:10 +01:00
|
|
|
}
|
2008-08-30 06:11:44 +02:00
|
|
|
|
2013-02-07 22:07:10 +01:00
|
|
|
NetExpr* NetESFunc::evaluate_two_arg_(ID id, const NetExpr*arg0,
|
2013-12-19 03:52:00 +01:00
|
|
|
const NetExpr*arg1) const
|
2013-02-07 22:07:10 +01:00
|
|
|
{
|
|
|
|
|
switch (id) {
|
2013-12-19 03:52:00 +01:00
|
|
|
case CTBITS:
|
2018-09-04 00:58:05 +02:00
|
|
|
return evaluate_countbits_();
|
2013-12-19 03:52:00 +01:00
|
|
|
/* The array functions are handled together. */
|
|
|
|
|
case HIGH:
|
|
|
|
|
case INCR:
|
|
|
|
|
case LEFT:
|
|
|
|
|
case LOW:
|
|
|
|
|
case RIGHT:
|
|
|
|
|
case SIZE:
|
|
|
|
|
return evaluate_array_funcs_(id, arg0, arg1);
|
2013-02-07 22:07:10 +01:00
|
|
|
case MAX:
|
2013-12-19 03:52:00 +01:00
|
|
|
case MIN:
|
2013-02-07 22:07:10 +01:00
|
|
|
return evaluate_min_max_(id, arg0, arg1);
|
|
|
|
|
default:
|
|
|
|
|
return evaluate_math_two_arg_(id, arg0, arg1);
|
2008-07-31 23:05:27 +02:00
|
|
|
}
|
2013-02-07 22:07:10 +01:00
|
|
|
}
|
2008-07-31 23:05:27 +02:00
|
|
|
|
2013-02-07 22:07:10 +01:00
|
|
|
NetESFunc::ID NetESFunc::built_in_id_() const
|
|
|
|
|
{
|
|
|
|
|
static map<string,ID> built_in_func;
|
2013-10-11 19:50:45 +02:00
|
|
|
static bool funcs_need_init = true;
|
|
|
|
|
|
|
|
|
|
/* These functions are always available. */
|
|
|
|
|
if (funcs_need_init) {
|
|
|
|
|
built_in_func["$itor"] = ITOR;
|
|
|
|
|
built_in_func["$rtoi"] = RTOI;
|
|
|
|
|
}
|
2013-02-07 22:07:10 +01:00
|
|
|
|
2013-10-11 19:50:45 +02:00
|
|
|
/* These are available in 1364-2005 and later or if the Icarus misc
|
|
|
|
|
* flag was given. */
|
|
|
|
|
if (funcs_need_init && ((generation_flag >= GN_VER2005) ||
|
|
|
|
|
gn_icarus_misc_flag)) {
|
|
|
|
|
built_in_func["$acos" ] = ACOS;
|
|
|
|
|
built_in_func["$acosh"] = ACOSH;
|
|
|
|
|
built_in_func["$asin" ] = ASIN;
|
|
|
|
|
built_in_func["$asinh"] = ASINH;
|
|
|
|
|
built_in_func["$atan" ] = ATAN;
|
|
|
|
|
built_in_func["$atanh"] = ATANH;
|
|
|
|
|
built_in_func["$atan2"] = ATAN2;
|
|
|
|
|
built_in_func["$ceil" ] = CEIL;
|
2013-02-07 22:07:10 +01:00
|
|
|
built_in_func["$clog2"] = CLOG2;
|
2013-10-11 19:50:45 +02:00
|
|
|
built_in_func["$cos" ] = COS;
|
|
|
|
|
built_in_func["$cosh" ] = COSH;
|
2013-02-07 22:07:10 +01:00
|
|
|
built_in_func["$exp" ] = EXP;
|
|
|
|
|
built_in_func["$floor"] = FLOOR;
|
2013-10-11 19:50:45 +02:00
|
|
|
built_in_func["$hypot"] = HYPOT;
|
|
|
|
|
built_in_func["$ln" ] = LN;
|
|
|
|
|
built_in_func["$log10"] = LOG10;
|
|
|
|
|
built_in_func["$pow" ] = POW;
|
2013-02-07 22:07:10 +01:00
|
|
|
built_in_func["$sin" ] = SIN;
|
|
|
|
|
built_in_func["$sinh" ] = SINH;
|
2013-10-11 19:50:45 +02:00
|
|
|
built_in_func["$sqrt" ] = SQRT;
|
|
|
|
|
built_in_func["$tan" ] = TAN;
|
2013-02-07 22:07:10 +01:00
|
|
|
built_in_func["$tanh" ] = TANH;
|
|
|
|
|
}
|
|
|
|
|
|
2013-12-19 03:52:00 +01:00
|
|
|
/* These are available in 1800-2005 and later. */
|
|
|
|
|
if (funcs_need_init && (generation_flag >= GN_VER2005_SV)) {
|
|
|
|
|
built_in_func["$dimensions" ] = DIMS;
|
|
|
|
|
built_in_func["$high" ] = HIGH;
|
|
|
|
|
built_in_func["$increment" ] = INCR;
|
|
|
|
|
built_in_func["$isunknown" ] = ISUNKN;
|
|
|
|
|
built_in_func["$left" ] = LEFT;
|
|
|
|
|
built_in_func["$low" ] = LOW;
|
|
|
|
|
built_in_func["$onehot" ] = ONEHT;
|
|
|
|
|
built_in_func["$onehot0" ] = ONEHT0;
|
|
|
|
|
built_in_func["$right" ] = RIGHT;
|
|
|
|
|
built_in_func["$size" ] = SIZE;
|
|
|
|
|
built_in_func["$unpacked_dimensions" ] = UPDIMS;
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-03 17:29:07 +02:00
|
|
|
/* This is available in 1800-2009 and later. */
|
2013-12-19 03:52:00 +01:00
|
|
|
if (funcs_need_init && (generation_flag >= GN_VER2009)) {
|
|
|
|
|
built_in_func["$countones" ] = CTONES;
|
|
|
|
|
}
|
|
|
|
|
|
2018-09-03 17:29:07 +02:00
|
|
|
/* This is available in 1800-2012 and later. */
|
2013-12-19 03:52:00 +01:00
|
|
|
if (funcs_need_init && (generation_flag >= GN_VER2012)) {
|
|
|
|
|
built_in_func["$countbits" ] = CTBITS;
|
|
|
|
|
}
|
|
|
|
|
|
2013-10-11 19:50:45 +02:00
|
|
|
/* These are available in Verilog-A as Icarus extensions or if the
|
|
|
|
|
* Icarus misc flag was given. */
|
|
|
|
|
if (funcs_need_init && (gn_verilog_ams_flag || gn_icarus_misc_flag)) {
|
|
|
|
|
built_in_func["$abs"] = ABS;
|
|
|
|
|
built_in_func["$max"] = MAX;
|
|
|
|
|
built_in_func["$min"] = MIN;
|
|
|
|
|
}
|
2013-02-07 22:07:10 +01:00
|
|
|
|
2013-10-11 19:50:45 +02:00
|
|
|
/* The function table has been initialized at this point. */
|
|
|
|
|
funcs_need_init = false;
|
2013-02-07 22:07:10 +01:00
|
|
|
|
2013-10-11 19:50:45 +02:00
|
|
|
/* Look for the given function and if it is not available return
|
|
|
|
|
* NOT_BUILT_IN otherwise return the ID for the function. */
|
|
|
|
|
map<string,ID>::iterator idx = built_in_func.find(name_);
|
2013-02-07 22:07:10 +01:00
|
|
|
|
2013-10-11 19:50:45 +02:00
|
|
|
if (idx == built_in_func.end()) return NOT_BUILT_IN;
|
|
|
|
|
|
|
|
|
|
return idx->second;
|
2013-02-07 22:07:10 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NetExpr* NetESFunc::eval_tree()
|
|
|
|
|
{
|
2019-10-19 17:12:17 +02:00
|
|
|
/* We don't support evaluating overridden functions. */
|
|
|
|
|
if (is_overridden_)
|
|
|
|
|
return 0;
|
|
|
|
|
|
2018-09-03 17:29:07 +02:00
|
|
|
/* Get the ID for this system function if it can be used as a
|
2013-10-11 19:50:45 +02:00
|
|
|
* constant function. */
|
2013-02-07 22:07:10 +01:00
|
|
|
ID id = built_in_id_();
|
2013-10-11 19:50:45 +02:00
|
|
|
if (id == NOT_BUILT_IN) return 0;
|
2013-02-07 22:07:10 +01:00
|
|
|
|
2013-10-11 19:50:45 +02:00
|
|
|
switch (parms_.size()) {
|
2013-02-07 22:07:10 +01:00
|
|
|
case 1:
|
2013-10-11 19:50:45 +02:00
|
|
|
if (! takes_nargs_(id, 1)) {
|
2018-09-03 17:29:07 +02:00
|
|
|
cerr << get_fileline() << ": error: constant function "
|
|
|
|
|
<< name_ << "() does not support a single argument."
|
|
|
|
|
<< endl;
|
2008-08-30 06:11:44 +02:00
|
|
|
return 0;
|
|
|
|
|
}
|
2013-02-07 22:07:10 +01:00
|
|
|
eval_expr(parms_[0]);
|
|
|
|
|
return evaluate_one_arg_(id, parms_[0]);
|
2013-10-11 19:50:45 +02:00
|
|
|
|
2013-02-07 22:07:10 +01:00
|
|
|
case 2:
|
2013-10-11 19:50:45 +02:00
|
|
|
if (! takes_nargs_(id, 2)) {
|
2018-09-03 17:29:07 +02:00
|
|
|
cerr << get_fileline() << ": error: constant function "
|
|
|
|
|
<< name_ << "() does not support two arguments."
|
|
|
|
|
<< endl;
|
2008-08-30 06:11:44 +02:00
|
|
|
return 0;
|
|
|
|
|
}
|
2013-02-07 22:07:10 +01:00
|
|
|
eval_expr(parms_[0]);
|
|
|
|
|
eval_expr(parms_[1]);
|
|
|
|
|
return evaluate_two_arg_(id, parms_[0], parms_[1]);
|
2013-10-11 19:50:45 +02:00
|
|
|
|
2013-02-07 22:07:10 +01:00
|
|
|
default:
|
2013-10-11 19:50:45 +02:00
|
|
|
/* Check to see if the function was called correctly. */
|
|
|
|
|
if (! takes_nargs_(id, parms_.size())) {
|
2018-09-03 17:29:07 +02:00
|
|
|
cerr << get_fileline() << ": error: constant function "
|
|
|
|
|
<< name_ << "() does not support " << parms_.size()
|
2013-10-11 19:50:45 +02:00
|
|
|
<< " arguments." << endl;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
2018-09-04 00:58:05 +02:00
|
|
|
if (id == CTBITS) {
|
|
|
|
|
for (unsigned bit = 0; bit < parms_.size(); ++bit) {
|
|
|
|
|
eval_expr(parms_[bit]);
|
|
|
|
|
}
|
|
|
|
|
return evaluate_countbits_();
|
|
|
|
|
} else {
|
|
|
|
|
cerr << get_fileline() << ": sorry: constant functions with "
|
|
|
|
|
<< parms_.size() << " arguments are not supported: "
|
|
|
|
|
<< name_ << "()." << endl;
|
|
|
|
|
}
|
2013-02-07 22:07:10 +01:00
|
|
|
return 0;
|
2008-08-30 06:11:44 +02:00
|
|
|
}
|
2008-07-31 23:05:27 +02:00
|
|
|
}
|
2009-02-28 03:58:36 +01:00
|
|
|
|
2011-02-26 23:59:52 +01:00
|
|
|
NetExpr* NetEUFunc::eval_tree()
|
2009-02-28 03:58:36 +01:00
|
|
|
{
|
2011-04-05 21:43:54 +02:00
|
|
|
// If we know the function cannot be evaluated as a constant,
|
|
|
|
|
// give up now.
|
2013-03-09 13:24:50 +01:00
|
|
|
if (!func()->is_const_func() || (func()->calls_sys_task() && !need_const_))
|
2011-04-05 21:43:54 +02:00
|
|
|
return 0;
|
|
|
|
|
|
2013-03-08 00:33:52 +01:00
|
|
|
// If we neither want nor need to evaluate the function at
|
|
|
|
|
// compile time, give up now.
|
|
|
|
|
if (!opt_const_func && !need_const_)
|
|
|
|
|
return 0;
|
|
|
|
|
|
2011-04-05 21:43:54 +02:00
|
|
|
// Variables inside static functions can be accessed from outside
|
|
|
|
|
// the function, so we can't be sure they are constant unless the
|
2013-03-08 00:33:52 +01:00
|
|
|
// function was called in a constant context or the user has told
|
|
|
|
|
// us this is safe.
|
|
|
|
|
if (!func()->is_auto() && !need_const_ && (opt_const_func < 2))
|
2011-04-05 21:43:54 +02:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
// Run through the input parameters to check they are constants.
|
|
|
|
|
for (unsigned idx = 0; idx < parm_count(); idx += 1) {
|
|
|
|
|
if (dynamic_cast<const NetEConst*> (parm(idx)))
|
|
|
|
|
continue;
|
|
|
|
|
if (dynamic_cast<const NetECReal*> (parm(idx)))
|
|
|
|
|
continue;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2013-03-08 00:33:52 +01:00
|
|
|
NetFuncDef*def = func_->func_def();
|
|
|
|
|
ivl_assert(*this, def);
|
2012-05-29 19:02:10 +02:00
|
|
|
|
2013-03-08 00:33:52 +01:00
|
|
|
vector<NetExpr*>args(parms_.size());
|
|
|
|
|
for (unsigned idx = 0 ; idx < parms_.size() ; idx += 1)
|
|
|
|
|
args[idx] = parms_[idx]->dup_expr();
|
2012-06-05 10:13:06 +02:00
|
|
|
|
2013-03-08 00:33:52 +01:00
|
|
|
NetExpr*res = def->evaluate_function(*this, args);
|
|
|
|
|
return res;
|
2009-02-28 03:58:36 +01:00
|
|
|
}
|