1999-09-04 21:11:45 +02:00
|
|
|
/*
|
2017-11-05 10:35:02 +01:00
|
|
|
* Copyright (c) 1999-2017 Stephen Williams (steve@icarus.com)
|
1999-09-04 21:11:45 +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-04 21:11:45 +02:00
|
|
|
*/
|
|
|
|
|
|
2001-07-25 05:10:48 +02:00
|
|
|
# include "config.h"
|
|
|
|
|
|
|
|
|
|
# include <iostream>
|
|
|
|
|
|
1999-09-04 21:11:45 +02:00
|
|
|
# include "PDelays.h"
|
|
|
|
|
# include "PExpr.h"
|
|
|
|
|
# include "verinum.h"
|
2008-03-08 03:51:50 +01:00
|
|
|
# include "netmisc.h"
|
1999-09-04 21:11:45 +02:00
|
|
|
|
|
|
|
|
PDelays::PDelays()
|
|
|
|
|
{
|
2001-12-29 21:19:31 +01:00
|
|
|
delete_flag_ = true;
|
1999-09-04 21:11:45 +02:00
|
|
|
for (unsigned idx = 0 ; idx < 3 ; idx += 1)
|
|
|
|
|
delay_[idx] = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
PDelays::~PDelays()
|
|
|
|
|
{
|
2001-12-29 21:19:31 +01:00
|
|
|
if (delete_flag_) {
|
|
|
|
|
for (unsigned idx = 0 ; idx < 3 ; idx += 1)
|
|
|
|
|
delete delay_[idx];
|
|
|
|
|
}
|
1999-09-04 21:11:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void PDelays::set_delay(PExpr*del)
|
|
|
|
|
{
|
|
|
|
|
assert(del);
|
|
|
|
|
assert(delay_[0] == 0);
|
|
|
|
|
delay_[0] = del;
|
2001-12-29 21:19:31 +01:00
|
|
|
delete_flag_ = true;
|
1999-09-04 21:11:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2010-10-26 04:36:44 +02:00
|
|
|
void PDelays::set_delays(const list<PExpr*>*del, bool df)
|
1999-09-04 21:11:45 +02:00
|
|
|
{
|
|
|
|
|
assert(del);
|
2010-10-26 04:36:44 +02:00
|
|
|
assert(del->size() <= 3);
|
|
|
|
|
|
|
|
|
|
list<PExpr*>::const_iterator cur = del->begin();
|
|
|
|
|
for (unsigned idx = 0 ; cur != del->end() ; idx += 1, ++cur)
|
|
|
|
|
delay_[idx] = *cur;
|
2001-12-29 21:19:31 +01:00
|
|
|
|
|
|
|
|
delete_flag_ = df;
|
1999-09-04 21:11:45 +02:00
|
|
|
}
|
|
|
|
|
|
2010-07-13 19:01:32 +02:00
|
|
|
unsigned PDelays::delay_count() const
|
|
|
|
|
{
|
|
|
|
|
unsigned dly_cnt = 0;
|
|
|
|
|
for (unsigned idx = 0 ; idx < 3 ; idx += 1)
|
|
|
|
|
if (delay_[idx]) dly_cnt += 1;
|
|
|
|
|
|
|
|
|
|
return dly_cnt;
|
|
|
|
|
}
|
|
|
|
|
|
2009-06-05 22:36:20 +02:00
|
|
|
static NetExpr*calculate_val(Design*des, NetScope*scope, PExpr*expr)
|
1999-09-04 21:11:45 +02:00
|
|
|
{
|
2011-02-26 23:59:52 +01:00
|
|
|
NetExpr*dex = elab_and_eval(des, scope, expr, -1);
|
2001-01-15 00:04:55 +01:00
|
|
|
|
2017-11-05 10:35:02 +01:00
|
|
|
check_for_inconsistent_delays(scope);
|
2009-04-14 03:06:17 +02:00
|
|
|
|
2003-02-08 20:49:21 +01:00
|
|
|
/* If the delay expression is a real constant or vector
|
|
|
|
|
constant, then evaluate it, scale it to the local time
|
|
|
|
|
units, and return an adjusted value. */
|
2001-01-15 00:04:55 +01:00
|
|
|
|
2003-02-08 20:49:21 +01:00
|
|
|
if (NetECReal*tmp = dynamic_cast<NetECReal*>(dex)) {
|
2010-06-19 01:03:17 +02:00
|
|
|
uint64_t delay = get_scaled_time_from_real(des, scope, tmp);
|
2003-02-08 20:49:21 +01:00
|
|
|
|
|
|
|
|
delete tmp;
|
2010-06-19 01:03:17 +02:00
|
|
|
NetEConst*tmp2 = new NetEConst(verinum(delay, 64));
|
2006-01-02 06:33:19 +01:00
|
|
|
tmp2->set_line(*expr);
|
|
|
|
|
return tmp2;
|
2003-02-08 20:49:21 +01:00
|
|
|
}
|
2001-01-20 03:15:50 +01:00
|
|
|
|
2003-02-08 20:49:21 +01:00
|
|
|
|
|
|
|
|
if (NetEConst*tmp = dynamic_cast<NetEConst*>(dex)) {
|
|
|
|
|
verinum fn = tmp->value();
|
2009-02-26 06:30:05 +01:00
|
|
|
uint64_t delay = des->scale_to_precision(fn.as_ulong64(), scope);
|
2003-02-08 20:49:21 +01:00
|
|
|
|
|
|
|
|
delete tmp;
|
2010-06-19 01:03:17 +02:00
|
|
|
NetEConst*tmp2 = new NetEConst(verinum(delay, 64));
|
2006-01-02 06:33:19 +01:00
|
|
|
tmp2->set_line(*expr);
|
|
|
|
|
return tmp2;
|
2001-01-15 00:04:55 +01:00
|
|
|
}
|
|
|
|
|
|
2006-01-02 06:33:19 +01:00
|
|
|
/* Oops, cannot evaluate down to a constant. */
|
|
|
|
|
return dex;
|
2001-01-15 00:04:55 +01:00
|
|
|
}
|
|
|
|
|
|
2008-08-11 03:22:34 +02:00
|
|
|
static NetExpr* make_delay_nets(Design*des, NetScope*scope, NetExpr*expr)
|
2006-01-03 06:22:14 +01:00
|
|
|
{
|
2011-05-23 23:08:36 +02:00
|
|
|
if (expr == 0)
|
|
|
|
|
return 0;
|
|
|
|
|
|
2006-01-03 06:22:14 +01:00
|
|
|
if (dynamic_cast<NetESignal*> (expr))
|
|
|
|
|
return expr;
|
|
|
|
|
|
|
|
|
|
if (dynamic_cast<NetEConst*> (expr))
|
|
|
|
|
return expr;
|
|
|
|
|
|
2008-12-22 22:48:34 +01:00
|
|
|
NetNet*sig = expr->synthesize(des, scope, expr);
|
2006-07-08 23:48:46 +02:00
|
|
|
if (sig == 0) {
|
2007-12-20 18:31:01 +01:00
|
|
|
cerr << expr->get_fileline() << ": error: Expression " << *expr
|
2010-06-19 01:03:17 +02:00
|
|
|
<< " is not suitable as a delay expression." << endl;
|
|
|
|
|
des->errors += 1;
|
2006-07-08 23:48:46 +02:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-03 06:22:14 +01:00
|
|
|
expr = new NetESignal(sig);
|
|
|
|
|
return expr;
|
|
|
|
|
}
|
|
|
|
|
|
2009-04-03 20:40:03 +02:00
|
|
|
static NetExpr* calc_decay_time(NetExpr *rise, NetExpr *fall)
|
|
|
|
|
{
|
|
|
|
|
NetEConst *c_rise = dynamic_cast<NetEConst*>(rise);
|
|
|
|
|
NetEConst *c_fall = dynamic_cast<NetEConst*>(fall);
|
|
|
|
|
if (c_rise && c_fall) {
|
|
|
|
|
if (c_rise->value() < c_fall->value()) return rise;
|
|
|
|
|
else return fall;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2001-11-22 07:20:59 +01:00
|
|
|
void PDelays::eval_delays(Design*des, NetScope*scope,
|
2006-01-02 06:33:19 +01:00
|
|
|
NetExpr*&rise_time,
|
|
|
|
|
NetExpr*&fall_time,
|
2006-01-03 06:22:14 +01:00
|
|
|
NetExpr*&decay_time,
|
|
|
|
|
bool as_nets_flag) const
|
2001-01-15 00:04:55 +01:00
|
|
|
{
|
|
|
|
|
assert(scope);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (delay_[0]) {
|
|
|
|
|
rise_time = calculate_val(des, scope, delay_[0]);
|
2006-01-03 06:22:14 +01:00
|
|
|
if (as_nets_flag)
|
2008-08-11 03:22:34 +02:00
|
|
|
rise_time = make_delay_nets(des, scope, rise_time);
|
1999-09-04 21:11:45 +02:00
|
|
|
|
|
|
|
|
if (delay_[1]) {
|
2001-01-15 00:04:55 +01:00
|
|
|
fall_time = calculate_val(des, scope, delay_[1]);
|
2006-01-03 06:22:14 +01:00
|
|
|
if (as_nets_flag)
|
2008-08-11 03:22:34 +02:00
|
|
|
fall_time = make_delay_nets(des, scope, fall_time);
|
1999-09-04 21:11:45 +02:00
|
|
|
|
|
|
|
|
if (delay_[2]) {
|
2001-01-15 00:04:55 +01:00
|
|
|
decay_time = calculate_val(des, scope, delay_[2]);
|
2009-04-03 20:40:03 +02:00
|
|
|
if (as_nets_flag)
|
|
|
|
|
decay_time = make_delay_nets(des, scope,
|
|
|
|
|
decay_time);
|
2001-01-15 00:04:55 +01:00
|
|
|
|
1999-09-04 21:11:45 +02:00
|
|
|
} else {
|
2009-04-03 20:40:03 +02:00
|
|
|
// If this is zero then we need to do the min()
|
|
|
|
|
// at run time.
|
|
|
|
|
decay_time = calc_decay_time(rise_time, fall_time);
|
1999-09-04 21:11:45 +02:00
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
assert(delay_[2] == 0);
|
|
|
|
|
fall_time = rise_time;
|
|
|
|
|
decay_time = rise_time;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
rise_time = 0;
|
|
|
|
|
fall_time = 0;
|
|
|
|
|
decay_time = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|