1999-09-04 21:11:45 +02:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 1999 Stephen Williams (steve@icarus.com)
|
|
|
|
|
*
|
|
|
|
|
* This source code is free software; you can redistribute it
|
|
|
|
|
* and/or modify it in source code form under the terms of the GNU
|
|
|
|
|
* General Public License as published by the Free Software
|
|
|
|
|
* Foundation; either version 2 of the License, or (at your option)
|
|
|
|
|
* any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
|
|
|
|
*/
|
2002-08-12 03:34:58 +02:00
|
|
|
#ifdef HAVE_CVS_IDENT
|
2006-07-08 23:48:46 +02:00
|
|
|
#ident "$Id: PDelays.cc,v 1.15 2006/07/08 21:48:46 steve Exp $"
|
1999-09-04 21:11:45 +02:00
|
|
|
#endif
|
|
|
|
|
|
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"
|
|
|
|
|
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-12-29 21:19:31 +01:00
|
|
|
void PDelays::set_delays(const svector<PExpr*>*del, bool df)
|
1999-09-04 21:11:45 +02:00
|
|
|
{
|
|
|
|
|
assert(del);
|
|
|
|
|
assert(del->count() <= 3);
|
|
|
|
|
for (unsigned idx = 0 ; idx < del->count() ; idx += 1)
|
|
|
|
|
delay_[idx] = (*del)[idx];
|
2001-12-29 21:19:31 +01:00
|
|
|
|
|
|
|
|
delete_flag_ = df;
|
1999-09-04 21:11:45 +02:00
|
|
|
}
|
|
|
|
|
|
2006-01-02 06:33:19 +01:00
|
|
|
static NetExpr*calculate_val(Design*des, NetScope*scope, const PExpr*expr)
|
1999-09-04 21:11:45 +02:00
|
|
|
{
|
|
|
|
|
|
2006-06-02 06:48:49 +02:00
|
|
|
NetExpr*dex = expr->elaborate_expr(des, scope, -1, false);
|
2003-02-08 20:49:21 +01:00
|
|
|
if (NetExpr*tmp = dex->eval_tree()) {
|
|
|
|
|
delete dex;
|
|
|
|
|
dex = tmp;
|
|
|
|
|
}
|
2001-01-15 00:04:55 +01: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)) {
|
|
|
|
|
verireal fn = tmp->value();
|
|
|
|
|
|
|
|
|
|
int shift = scope->time_unit() - des->get_precision();
|
|
|
|
|
long delay = fn.as_long(shift);
|
|
|
|
|
if (delay < 0)
|
|
|
|
|
delay = 0;
|
|
|
|
|
|
|
|
|
|
delete tmp;
|
2006-01-02 06:33:19 +01:00
|
|
|
NetEConst*tmp2 = new NetEConst(verinum(delay));
|
|
|
|
|
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();
|
|
|
|
|
|
|
|
|
|
unsigned long delay =
|
|
|
|
|
des->scale_to_precision(fn.as_ulong(), scope);
|
|
|
|
|
|
|
|
|
|
delete tmp;
|
2006-01-02 06:33:19 +01:00
|
|
|
NetEConst*tmp2 = new NetEConst(verinum(delay));
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
2006-01-03 06:22:14 +01:00
|
|
|
static NetExpr* make_delay_nets(Design*des, NetExpr*expr)
|
|
|
|
|
{
|
|
|
|
|
if (dynamic_cast<NetESignal*> (expr))
|
|
|
|
|
return expr;
|
|
|
|
|
|
|
|
|
|
if (dynamic_cast<NetEConst*> (expr))
|
|
|
|
|
return expr;
|
|
|
|
|
|
|
|
|
|
NetNet*sig = expr->synthesize(des);
|
2006-07-08 23:48:46 +02:00
|
|
|
if (sig == 0) {
|
|
|
|
|
cerr << expr->get_line() << ": error: Expression " << *expr
|
|
|
|
|
<< " is not suitable for delay expression." << endl;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2006-01-03 06:22:14 +01:00
|
|
|
expr = new NetESignal(sig);
|
|
|
|
|
return expr;
|
|
|
|
|
}
|
|
|
|
|
|
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)
|
|
|
|
|
rise_time = make_delay_nets(des, 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)
|
|
|
|
|
fall_time = make_delay_nets(des, 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]);
|
2006-01-03 06:22:14 +01:00
|
|
|
if (as_nets_flag)
|
|
|
|
|
decay_time = make_delay_nets(des, decay_time);
|
2001-01-15 00:04:55 +01:00
|
|
|
|
1999-09-04 21:11:45 +02:00
|
|
|
} else {
|
|
|
|
|
if (rise_time < fall_time)
|
|
|
|
|
decay_time = rise_time;
|
|
|
|
|
else
|
|
|
|
|
decay_time = fall_time;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
assert(delay_[2] == 0);
|
|
|
|
|
fall_time = rise_time;
|
|
|
|
|
decay_time = rise_time;
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
rise_time = 0;
|
|
|
|
|
fall_time = 0;
|
|
|
|
|
decay_time = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* $Log: PDelays.cc,v $
|
2006-07-08 23:48:46 +02:00
|
|
|
* Revision 1.15 2006/07/08 21:48:46 steve
|
|
|
|
|
* Handle real valued literals in net contexts.
|
|
|
|
|
*
|
2006-06-02 06:48:49 +02:00
|
|
|
* Revision 1.14 2006/06/02 04:48:49 steve
|
|
|
|
|
* Make elaborate_expr methods aware of the width that the context
|
|
|
|
|
* requires of it. In the process, fix sizing of the width of unary
|
|
|
|
|
* minus is context determined sizes.
|
|
|
|
|
*
|
2006-01-03 06:22:14 +01:00
|
|
|
* Revision 1.13 2006/01/03 05:22:14 steve
|
|
|
|
|
* Handle complex net node delays.
|
|
|
|
|
*
|
2006-01-02 06:33:19 +01:00
|
|
|
* Revision 1.12 2006/01/02 05:33:19 steve
|
|
|
|
|
* Node delays can be more general expressions in structural contexts.
|
|
|
|
|
*
|
2003-06-21 03:21:42 +02:00
|
|
|
* Revision 1.11 2003/06/21 01:21:42 steve
|
|
|
|
|
* Harmless fixup of warnings.
|
|
|
|
|
*
|
2003-02-08 20:49:21 +01:00
|
|
|
* Revision 1.10 2003/02/08 19:49:21 steve
|
|
|
|
|
* Calculate delay statement delays using elaborated
|
|
|
|
|
* expressions instead of pre-elaborated expression
|
|
|
|
|
* trees.
|
|
|
|
|
*
|
|
|
|
|
* Remove the eval_pexpr methods from PExpr.
|
|
|
|
|
*
|
2002-08-12 03:34:58 +02:00
|
|
|
* Revision 1.9 2002/08/12 01:34:58 steve
|
|
|
|
|
* conditional ident string using autoconfig.
|
|
|
|
|
*
|
2001-12-29 21:19:31 +01:00
|
|
|
* Revision 1.8 2001/12/29 20:19:31 steve
|
|
|
|
|
* Do not delete delay expressions of UDP instances.
|
|
|
|
|
*
|
2001-11-22 07:20:59 +01:00
|
|
|
* Revision 1.7 2001/11/22 06:20:59 steve
|
|
|
|
|
* Use NetScope instead of string for scope path.
|
|
|
|
|
*
|
2001-11-07 05:01:59 +01:00
|
|
|
* Revision 1.6 2001/11/07 04:01:59 steve
|
|
|
|
|
* eval_const uses scope instead of a string path.
|
|
|
|
|
*
|
2001-07-25 05:10:48 +02:00
|
|
|
* Revision 1.5 2001/07/25 03:10:48 steve
|
|
|
|
|
* Create a config.h.in file to hold all the config
|
|
|
|
|
* junk, and support gcc 3.0. (Stephan Boettcher)
|
|
|
|
|
*
|
2001-01-20 03:15:50 +01:00
|
|
|
* Revision 1.4 2001/01/20 02:15:50 steve
|
|
|
|
|
* apologize for not supporting non-constant delays.
|
|
|
|
|
*
|
2001-01-15 00:04:55 +01:00
|
|
|
* Revision 1.3 2001/01/14 23:04:55 steve
|
|
|
|
|
* Generalize the evaluation of floating point delays, and
|
|
|
|
|
* get it working with delay assignment statements.
|
|
|
|
|
*
|
|
|
|
|
* Allow parameters to be referenced by hierarchical name.
|
|
|
|
|
*
|
2000-02-23 03:56:53 +01:00
|
|
|
* Revision 1.2 2000/02/23 02:56:53 steve
|
|
|
|
|
* Macintosh compilers do not support ident.
|
|
|
|
|
*
|
1999-09-04 21:11:45 +02:00
|
|
|
* Revision 1.1 1999/09/04 19:11:46 steve
|
|
|
|
|
* Add support for delayed non-blocking assignments.
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|