2000-07-07 06:53:53 +02:00
|
|
|
/*
|
2011-02-26 23:59:52 +01:00
|
|
|
* Copyright (c) 2000-2011 Stephen Williams (steve@icarus.com)
|
2000-07-07 06:53:53 +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.
|
2000-07-07 06:53:53 +02:00
|
|
|
*/
|
|
|
|
|
|
2001-07-25 05:10:48 +02:00
|
|
|
# include "config.h"
|
|
|
|
|
|
2000-07-07 06:53:53 +02:00
|
|
|
# include "netlist.h"
|
2010-05-31 22:12:06 +02:00
|
|
|
# include <cassert>
|
2000-07-07 06:53:53 +02:00
|
|
|
|
2002-07-29 01:58:44 +02:00
|
|
|
NetBlock::NetBlock(Type t, NetScope*ss)
|
|
|
|
|
: type_(t), subscope_(ss), last_(0)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NetBlock::~NetBlock()
|
|
|
|
|
{
|
|
|
|
|
while (last_ != 0) {
|
|
|
|
|
if (last_->next_ == last_) {
|
|
|
|
|
delete last_;
|
|
|
|
|
last_ = 0;
|
|
|
|
|
} else {
|
|
|
|
|
NetProc*cur = last_->next_;
|
|
|
|
|
last_->next_ = cur->next_;
|
|
|
|
|
cur->next_ = cur;
|
|
|
|
|
delete cur;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void NetBlock::append(NetProc*cur)
|
|
|
|
|
{
|
|
|
|
|
if (last_ == 0) {
|
|
|
|
|
last_ = cur;
|
|
|
|
|
cur->next_ = cur;
|
|
|
|
|
} else {
|
|
|
|
|
cur->next_ = last_->next_;
|
|
|
|
|
last_->next_ = cur;
|
|
|
|
|
last_ = cur;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const NetProc* NetBlock::proc_first() const
|
|
|
|
|
{
|
|
|
|
|
if (last_ == 0)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
return last_->next_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const NetProc* NetBlock::proc_next(const NetProc*cur) const
|
|
|
|
|
{
|
|
|
|
|
if (cur == last_)
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
return cur->next_;
|
|
|
|
|
}
|
|
|
|
|
|
2002-04-21 06:59:07 +02:00
|
|
|
NetCase::NetCase(NetCase::TYPE c, NetExpr*ex, unsigned cnt)
|
|
|
|
|
: type_(c), expr_(ex), nitems_(cnt)
|
|
|
|
|
{
|
|
|
|
|
assert(expr_);
|
|
|
|
|
items_ = new Item[nitems_];
|
|
|
|
|
for (unsigned idx = 0 ; idx < nitems_ ; idx += 1) {
|
|
|
|
|
items_[idx].statement = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NetCase::~NetCase()
|
|
|
|
|
{
|
|
|
|
|
delete expr_;
|
|
|
|
|
for (unsigned idx = 0 ; idx < nitems_ ; idx += 1) {
|
|
|
|
|
delete items_[idx].guard;
|
|
|
|
|
if (items_[idx].statement) delete items_[idx].statement;
|
|
|
|
|
}
|
|
|
|
|
delete[]items_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NetCase::TYPE NetCase::type() const
|
|
|
|
|
{
|
|
|
|
|
return type_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void NetCase::set_case(unsigned idx, NetExpr*e, NetProc*p)
|
|
|
|
|
{
|
|
|
|
|
assert(idx < nitems_);
|
|
|
|
|
items_[idx].guard = e;
|
|
|
|
|
items_[idx].statement = p;
|
|
|
|
|
}
|
|
|
|
|
|
2000-07-27 07:13:44 +02:00
|
|
|
NetDisable::NetDisable(NetScope*tgt)
|
|
|
|
|
: target_(tgt)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NetDisable::~NetDisable()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const NetScope* NetDisable::target() const
|
|
|
|
|
{
|
|
|
|
|
return target_;
|
|
|
|
|
}
|
|
|
|
|
|
2000-07-07 06:53:53 +02:00
|
|
|
NetForever::NetForever(NetProc*p)
|
|
|
|
|
: statement_(p)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NetForever::~NetForever()
|
|
|
|
|
{
|
|
|
|
|
delete statement_;
|
|
|
|
|
}
|
|
|
|
|
|
2014-05-02 05:37:33 +02:00
|
|
|
NetForLoop::NetForLoop(NetNet*ind, NetExpr*iexpr, NetExpr*cond, NetProc*sub, NetProc*step)
|
|
|
|
|
: index_(ind), init_expr_(iexpr), condition_(cond), statement_(sub), step_statement_(step)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void NetForLoop::wrap_up()
|
|
|
|
|
{
|
|
|
|
|
NetBlock*top = new NetBlock(NetBlock::SEQU, 0);
|
|
|
|
|
top->set_line(*this);
|
|
|
|
|
|
|
|
|
|
NetAssign_*lv = new NetAssign_(index_);
|
|
|
|
|
NetAssign*set_stmt = new NetAssign(lv, init_expr_);
|
|
|
|
|
set_stmt->set_line(*init_expr_);
|
|
|
|
|
top->append(set_stmt);
|
|
|
|
|
|
|
|
|
|
NetBlock*internal_block = new NetBlock(NetBlock::SEQU, 0);
|
|
|
|
|
internal_block->set_line(*this);
|
|
|
|
|
|
|
|
|
|
internal_block->append(statement_);
|
|
|
|
|
internal_block->append(step_statement_);
|
|
|
|
|
|
|
|
|
|
NetWhile*wloop = new NetWhile(condition_, internal_block);
|
|
|
|
|
wloop->set_line(*this);
|
|
|
|
|
|
|
|
|
|
top->append(wloop);
|
|
|
|
|
|
|
|
|
|
as_block_ = top;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NetForLoop::~NetForLoop()
|
|
|
|
|
{
|
|
|
|
|
delete init_expr_;
|
|
|
|
|
delete condition_;
|
|
|
|
|
delete statement_;
|
|
|
|
|
delete step_statement_;
|
|
|
|
|
}
|
|
|
|
|
|
2006-08-08 07:11:37 +02:00
|
|
|
NetPDelay::NetPDelay(uint64_t d, NetProc*st)
|
2000-07-07 06:53:53 +02:00
|
|
|
: delay_(d), expr_(0), statement_(st)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NetPDelay::NetPDelay(NetExpr*d, NetProc*st)
|
|
|
|
|
: delay_(0), expr_(d), statement_(st)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NetPDelay::~NetPDelay()
|
|
|
|
|
{
|
2010-04-14 06:29:15 +02:00
|
|
|
delete expr_;
|
2000-07-07 06:53:53 +02:00
|
|
|
}
|
|
|
|
|
|
2006-08-08 07:11:37 +02:00
|
|
|
uint64_t NetPDelay::delay() const
|
2000-07-07 06:53:53 +02:00
|
|
|
{
|
|
|
|
|
assert(expr_ == 0);
|
|
|
|
|
return delay_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const NetExpr* NetPDelay::expr() const
|
|
|
|
|
{
|
|
|
|
|
return expr_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NetRepeat::NetRepeat(NetExpr*e, NetProc*p)
|
|
|
|
|
: expr_(e), statement_(p)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NetRepeat::~NetRepeat()
|
|
|
|
|
{
|
|
|
|
|
delete expr_;
|
|
|
|
|
delete statement_;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const NetExpr* NetRepeat::expr() const
|
|
|
|
|
{
|
|
|
|
|
return expr_;
|
|
|
|
|
}
|