2000-12-06 07:31:09 +01:00
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2000 Stephen Williams (steve@icarus.com.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
|
2003-06-21 03:21:42 +02:00
|
|
|
#ident "$Id: elab_anet.cc,v 1.8 2003/06/21 01:21:43 steve Exp $"
|
2000-12-06 07:31:09 +01:00
|
|
|
#endif
|
|
|
|
|
|
2001-07-25 05:10:48 +02:00
|
|
|
# include "config.h"
|
|
|
|
|
|
2000-12-06 07:31:09 +01:00
|
|
|
/*
|
|
|
|
|
* The elaborate_anet methods elaborate expressions that are intended
|
|
|
|
|
* to be the left side of procedural continuous assignments.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
# include "PExpr.h"
|
|
|
|
|
# include "netlist.h"
|
|
|
|
|
# include <iostream>
|
|
|
|
|
|
|
|
|
|
NetNet* PExpr::elaborate_anet(Design*des, NetScope*scope) const
|
|
|
|
|
{
|
|
|
|
|
cerr << get_line() << ": error: Invalid expression on left side "
|
2003-01-27 06:09:17 +01:00
|
|
|
<< "of procedural continuous assignment." << endl;
|
2000-12-06 07:31:09 +01:00
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
NetNet* PEConcat::elaborate_anet(Design*des, NetScope*scope) const
|
|
|
|
|
{
|
|
|
|
|
if (repeat_) {
|
|
|
|
|
cerr << get_line() << ": error: Repeat concatenations make "
|
|
|
|
|
"no sense in l-value expressions. I refuse." << endl;
|
|
|
|
|
des->errors += 1;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
svector<NetNet*>nets (parms_.count());
|
|
|
|
|
unsigned pins = 0;
|
|
|
|
|
unsigned errors = 0;
|
|
|
|
|
|
|
|
|
|
for (unsigned idx = 0 ; idx < nets.count() ; idx += 1) {
|
|
|
|
|
|
|
|
|
|
if (parms_[idx] == 0) {
|
|
|
|
|
cerr << get_line() << ": error: Empty expressions "
|
|
|
|
|
<< "not allowed in concatenations." << endl;
|
|
|
|
|
errors += 1;
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
nets[idx] = parms_[idx]->elaborate_anet(des, scope);
|
|
|
|
|
if (nets[idx] == 0)
|
|
|
|
|
errors += 1;
|
|
|
|
|
else
|
|
|
|
|
pins += nets[idx]->pin_count();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* If any of the sub expressions failed to elaborate, then
|
|
|
|
|
delete all those that did and abort myself. */
|
|
|
|
|
if (errors) {
|
|
|
|
|
for (unsigned idx = 0 ; idx < nets.count() ; idx += 1) {
|
|
|
|
|
if (nets[idx]) delete nets[idx];
|
|
|
|
|
}
|
|
|
|
|
des->errors += 1;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Make the temporary signal that connects to all the
|
|
|
|
|
operands, and connect it up. Scan the operands of the
|
|
|
|
|
concat operator from least significant to most significant,
|
|
|
|
|
which is opposite from how they are given in the list.
|
|
|
|
|
|
|
|
|
|
Allow for a repeat count other then 1 by repeating the
|
|
|
|
|
connect loop as many times as necessary. */
|
|
|
|
|
|
2003-03-06 01:28:41 +01:00
|
|
|
NetNet*osig = new NetNet(scope, scope->local_symbol(),
|
2000-12-06 07:31:09 +01:00
|
|
|
NetNet::IMPLICIT_REG, pins);
|
|
|
|
|
|
|
|
|
|
pins = 0;
|
|
|
|
|
for (unsigned idx = nets.count() ; idx > 0 ; idx -= 1) {
|
|
|
|
|
NetNet*cur = nets[idx-1];
|
|
|
|
|
for (unsigned pin = 0; pin < cur->pin_count(); pin += 1) {
|
|
|
|
|
connect(osig->pin(pins), cur->pin(pin));
|
|
|
|
|
pins += 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
osig->local_flag(true);
|
|
|
|
|
return osig;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NetNet* PEIdent::elaborate_anet(Design*des, NetScope*scope) const
|
|
|
|
|
{
|
2001-12-03 05:47:14 +01:00
|
|
|
NetNet*sig = des->find_signal(scope, path_);
|
2000-12-06 07:31:09 +01:00
|
|
|
|
|
|
|
|
if (sig == 0) {
|
2003-06-21 03:21:42 +02:00
|
|
|
if (des->find_memory(scope, path_)) {
|
2000-12-06 07:31:09 +01:00
|
|
|
cerr << get_line() << ": error: memories not allowed "
|
|
|
|
|
<< "on left side of procedural continuous "
|
2003-01-27 06:09:17 +01:00
|
|
|
<< "assignment." << endl;
|
2000-12-06 07:31:09 +01:00
|
|
|
des->errors += 1;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
2001-12-03 05:47:14 +01:00
|
|
|
cerr << get_line() << ": error: reg ``" << path_ << "'' "
|
2000-12-06 07:31:09 +01:00
|
|
|
<< "is undefined in this scope." << endl;
|
|
|
|
|
des->errors += 1;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch (sig->type()) {
|
|
|
|
|
case NetNet::REG:
|
|
|
|
|
case NetNet::IMPLICIT_REG:
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default:
|
2001-12-03 05:47:14 +01:00
|
|
|
cerr << get_line() << ": error: " << path_ << " is not "
|
2000-12-06 07:31:09 +01:00
|
|
|
<< "a reg in this context." << endl;
|
|
|
|
|
des->errors += 1;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
assert(sig);
|
|
|
|
|
|
|
|
|
|
if (msb_ || lsb_) {
|
|
|
|
|
|
|
|
|
|
cerr << get_line() << ": error: bit/part selects not allowed "
|
2003-01-27 06:09:17 +01:00
|
|
|
<< "on left side of procedural continuous assignment."
|
2000-12-06 07:31:09 +01:00
|
|
|
<< endl;
|
|
|
|
|
des->errors += 1;
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return sig;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* $Log: elab_anet.cc,v $
|
2003-06-21 03:21:42 +02:00
|
|
|
* Revision 1.8 2003/06/21 01:21:43 steve
|
|
|
|
|
* Harmless fixup of warnings.
|
|
|
|
|
*
|
2003-03-06 01:28:41 +01:00
|
|
|
* Revision 1.7 2003/03/06 00:28:41 steve
|
|
|
|
|
* All NetObj objects have lex_string base names.
|
|
|
|
|
*
|
2003-01-27 06:09:17 +01:00
|
|
|
* Revision 1.6 2003/01/27 05:09:17 steve
|
|
|
|
|
* Spelling fixes.
|
|
|
|
|
*
|
2002-08-12 03:34:58 +02:00
|
|
|
* Revision 1.5 2002/08/12 01:34:58 steve
|
|
|
|
|
* conditional ident string using autoconfig.
|
|
|
|
|
*
|
2001-12-03 05:47:14 +01:00
|
|
|
* Revision 1.4 2001/12/03 04:47:14 steve
|
|
|
|
|
* Parser and pform use hierarchical names as hname_t
|
|
|
|
|
* objects instead of encoded strings.
|
|
|
|
|
*
|
2001-07-25 05:10:48 +02:00
|
|
|
* Revision 1.3 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-06 03:29:35 +01:00
|
|
|
* Revision 1.2 2001/01/06 02:29:36 steve
|
|
|
|
|
* Support arrays of integers.
|
|
|
|
|
*
|
2000-12-06 07:31:09 +01:00
|
|
|
* Revision 1.1 2000/12/06 06:31:09 steve
|
|
|
|
|
* Check lvalue of procedural continuous assign (PR#29)
|
|
|
|
|
*
|
|
|
|
|
*/
|
|
|
|
|
|