298 lines
6.4 KiB
C++
298 lines
6.4 KiB
C++
/*
|
|
* Copyright (c) 1999-2019 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
# include "config.h"
|
|
# include "PWire.h"
|
|
# include "PExpr.h"
|
|
# include <cassert>
|
|
|
|
PWire::PWire(perm_string n,
|
|
NetNet::Type t,
|
|
NetNet::PortType pt,
|
|
ivl_variable_type_t dt)
|
|
: name_(n), type_(t), port_type_(pt), data_type_(dt),
|
|
signed_(false), isint_(false),
|
|
port_set_(false), net_set_(false), is_scalar_(false),
|
|
error_cnt_(0), set_data_type_(0),
|
|
discipline_(0)
|
|
{
|
|
if (t == NetNet::INTEGER) {
|
|
type_ = NetNet::REG;
|
|
signed_ = true;
|
|
isint_ = true;
|
|
}
|
|
}
|
|
|
|
NetNet::Type PWire::get_wire_type() const
|
|
{
|
|
return type_;
|
|
}
|
|
|
|
perm_string PWire::basename() const
|
|
{
|
|
return name_;
|
|
}
|
|
|
|
bool PWire::set_wire_type(NetNet::Type t)
|
|
{
|
|
assert(t != NetNet::IMPLICIT);
|
|
|
|
switch (type_) {
|
|
case NetNet::IMPLICIT:
|
|
type_ = t;
|
|
return true;
|
|
case NetNet::IMPLICIT_REG:
|
|
if (t == NetNet::REG) {
|
|
type_ = t;
|
|
return true;
|
|
}
|
|
if (t == NetNet::INTEGER) {
|
|
type_ = NetNet::REG;
|
|
isint_ = true;
|
|
return true;
|
|
}
|
|
if (t == NetNet::IMPLICIT_REG) return true;
|
|
return false;
|
|
case NetNet::REG:
|
|
if (t == NetNet::INTEGER) {
|
|
isint_ = true;
|
|
return true;
|
|
}
|
|
if (t == NetNet::REG) return true;
|
|
return false;
|
|
default:
|
|
if (type_ != t)
|
|
return false;
|
|
else
|
|
return true;
|
|
}
|
|
}
|
|
|
|
NetNet::PortType PWire::get_port_type() const
|
|
{
|
|
return port_type_;
|
|
}
|
|
|
|
bool PWire::set_port_type(NetNet::PortType pt)
|
|
{
|
|
assert(pt != NetNet::NOT_A_PORT);
|
|
assert(pt != NetNet::PIMPLICIT);
|
|
|
|
switch (port_type_) {
|
|
case NetNet::PIMPLICIT:
|
|
port_type_ = pt;
|
|
return true;
|
|
|
|
case NetNet::NOT_A_PORT:
|
|
return false;
|
|
|
|
default:
|
|
if (port_type_ != pt)
|
|
return false;
|
|
else
|
|
return true;
|
|
}
|
|
}
|
|
|
|
bool PWire::set_data_type(ivl_variable_type_t dt)
|
|
{
|
|
if (data_type_ != IVL_VT_NO_TYPE) {
|
|
if (data_type_ != dt)
|
|
return false;
|
|
else
|
|
return true;
|
|
}
|
|
|
|
assert(data_type_ == IVL_VT_NO_TYPE);
|
|
data_type_ = dt;
|
|
|
|
return true;
|
|
}
|
|
|
|
ivl_variable_type_t PWire::get_data_type() const
|
|
{
|
|
return data_type_;
|
|
}
|
|
|
|
void PWire::set_signed(bool flag)
|
|
{
|
|
signed_ = flag;
|
|
}
|
|
|
|
bool PWire::get_signed() const
|
|
{
|
|
return signed_;
|
|
}
|
|
|
|
bool PWire::get_isint() const
|
|
{
|
|
if (isint_)
|
|
return true;
|
|
|
|
if (vector_type_t*tmp = dynamic_cast<vector_type_t*>(set_data_type_)) {
|
|
return tmp->integer_flag;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
bool PWire::get_scalar() const
|
|
{
|
|
return is_scalar_;
|
|
}
|
|
|
|
void PWire::set_range_scalar(PWSRType type)
|
|
{
|
|
is_scalar_ = true;
|
|
switch (type) {
|
|
case SR_PORT:
|
|
if (port_set_) {
|
|
cerr << get_fileline() << ": error: Port ``" << name_
|
|
<< "'' has already been declared a port." << endl;
|
|
error_cnt_ += 1;
|
|
} else {
|
|
port_set_ = true;
|
|
}
|
|
return;
|
|
|
|
case SR_NET:
|
|
if (net_set_) {
|
|
cerr << get_fileline() << ": error: Net ``" << name_
|
|
<< "'' has already been declared." << endl;
|
|
error_cnt_ += 1;
|
|
} else {
|
|
net_set_ = true;
|
|
}
|
|
return;
|
|
|
|
case SR_BOTH:
|
|
if (port_set_ || net_set_) {
|
|
if (port_set_) {
|
|
cerr << get_fileline() << ": error: Port ``" << name_
|
|
<< "'' has already been declared a port." << endl;
|
|
error_cnt_ += 1;
|
|
}
|
|
if (net_set_) {
|
|
cerr << get_fileline() << ": error: Net ``" << name_
|
|
<< "'' has already been declared." << endl;
|
|
error_cnt_ += 1;
|
|
}
|
|
} else {
|
|
port_set_ = true;
|
|
net_set_ = true;
|
|
}
|
|
return;
|
|
}
|
|
}
|
|
|
|
void PWire::set_range(const list<pform_range_t>&rlist, PWSRType type)
|
|
{
|
|
switch (type) {
|
|
case SR_PORT:
|
|
if (port_set_) {
|
|
cerr << get_fileline() << ": error: Port ``" << name_
|
|
<< "'' has already been declared a port." << endl;
|
|
error_cnt_ += 1;
|
|
} else {
|
|
port_ = rlist;
|
|
port_set_ = true;
|
|
is_scalar_ = false;
|
|
}
|
|
return;
|
|
|
|
case SR_NET:
|
|
if (net_set_) {
|
|
cerr << get_fileline() << ": error: Net ``" << name_
|
|
<< "'' has already been declared." << endl;
|
|
error_cnt_ += 1;
|
|
} else {
|
|
net_ = rlist;
|
|
net_set_ = true;
|
|
is_scalar_ = false;
|
|
}
|
|
return;
|
|
|
|
case SR_BOTH:
|
|
if (port_set_ || net_set_) {
|
|
if (port_set_) {
|
|
cerr << get_fileline() << ": error: Port ``" << name_
|
|
<< "'' has already been declared a port." << endl;
|
|
error_cnt_ += 1;
|
|
}
|
|
if (net_set_) {
|
|
cerr << get_fileline() << ": error: Net ``" << name_
|
|
<< "'' has already been declared." << endl;
|
|
error_cnt_ += 1;
|
|
}
|
|
} else {
|
|
port_ = rlist;
|
|
port_set_ = true;
|
|
net_ = rlist;
|
|
net_set_ = true;
|
|
is_scalar_ = false;
|
|
}
|
|
return;
|
|
}
|
|
}
|
|
|
|
void PWire::set_unpacked_idx(const list<pform_range_t>&ranges)
|
|
{
|
|
if (! unpacked_.empty()) {
|
|
cerr << get_fileline() << ": error: Array ``" << name_
|
|
<< "'' has already been declared." << endl;
|
|
error_cnt_ += 1;
|
|
} else {
|
|
unpacked_ = ranges;
|
|
}
|
|
}
|
|
|
|
void PWire::set_data_type(data_type_t*type)
|
|
{
|
|
assert(set_data_type_ == 0);
|
|
set_data_type_ = type;
|
|
|
|
if (vector_type_t*tmp = dynamic_cast<vector_type_t*>(type)) {
|
|
if (tmp->integer_flag)
|
|
isint_ = true;
|
|
}
|
|
}
|
|
|
|
void PWire::set_discipline(ivl_discipline_t d)
|
|
{
|
|
assert(discipline_ == 0);
|
|
discipline_ = d;
|
|
}
|
|
|
|
ivl_discipline_t PWire::get_discipline(void) const
|
|
{
|
|
return discipline_;
|
|
}
|
|
|
|
PNamedItem::SymbolType PWire::symbol_type() const
|
|
{
|
|
switch (type_) {
|
|
case NetNet::IMPLICIT_REG:
|
|
case NetNet::INTEGER:
|
|
case NetNet::REG:
|
|
return VAR;
|
|
default:
|
|
return NET;
|
|
}
|
|
}
|