588 lines
12 KiB
C++
588 lines
12 KiB
C++
/*
|
|
* Copyright (c) 1998-2016 Stephen Williams <steve@icarus.com>
|
|
* Copyright CERN 2013 / 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 <iostream>
|
|
|
|
# include "compiler.h"
|
|
# include "PExpr.h"
|
|
# include "PWire.h"
|
|
# include "Module.h"
|
|
# include "netmisc.h"
|
|
# include "util.h"
|
|
# include <typeinfo>
|
|
|
|
PExpr::PExpr()
|
|
{
|
|
expr_type_ = IVL_VT_NO_TYPE;
|
|
expr_width_ = 0;
|
|
min_width_ = 0;
|
|
signed_flag_ = false;
|
|
}
|
|
|
|
PExpr::~PExpr()
|
|
{
|
|
}
|
|
|
|
void PExpr::declare_implicit_nets(LexicalScope*, NetNet::Type)
|
|
{
|
|
}
|
|
|
|
bool PExpr::has_aa_term(Design*, NetScope*) const
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool PExpr::is_the_same(const PExpr*that) const
|
|
{
|
|
return typeid(this) == typeid(that);
|
|
}
|
|
|
|
NetNet* PExpr::elaborate_lnet(Design*, NetScope*) const
|
|
{
|
|
cerr << get_fileline() << ": error: "
|
|
<< "expression not valid in assign l-value: "
|
|
<< *this << endl;
|
|
return 0;
|
|
}
|
|
|
|
NetNet* PExpr::elaborate_bi_net(Design*, NetScope*) const
|
|
{
|
|
cerr << get_fileline() << ": error: "
|
|
<< "expression not valid as argument to inout port: "
|
|
<< *this << endl;
|
|
return 0;
|
|
}
|
|
|
|
bool PExpr::is_collapsible_net(Design*, NetScope*) const
|
|
{
|
|
return false;
|
|
}
|
|
|
|
|
|
const char* PExpr::width_mode_name(width_mode_t mode)
|
|
{
|
|
switch (mode) {
|
|
case PExpr::SIZED:
|
|
return "sized";
|
|
case PExpr::UNSIZED:
|
|
return "unsized";
|
|
case PExpr::EXPAND:
|
|
return "expand";
|
|
case PExpr::LOSSLESS:
|
|
return "lossless";
|
|
case PExpr::UPSIZE:
|
|
return "upsize";
|
|
default:
|
|
return "??";
|
|
}
|
|
}
|
|
|
|
PEAssignPattern::PEAssignPattern()
|
|
{
|
|
}
|
|
|
|
PEAssignPattern::PEAssignPattern(const list<PExpr*>&p)
|
|
: parms_(p.size())
|
|
{
|
|
size_t idx = 0;
|
|
for (list<PExpr*>::const_iterator cur = p.begin()
|
|
; cur != p.end() ; ++cur) {
|
|
parms_[idx] = *cur;
|
|
idx += 1;
|
|
}
|
|
}
|
|
|
|
PEAssignPattern::~PEAssignPattern()
|
|
{
|
|
}
|
|
|
|
PEBinary::PEBinary(char op, PExpr*l, PExpr*r)
|
|
: op_(op), left_(l), right_(r)
|
|
{
|
|
}
|
|
|
|
PEBinary::~PEBinary()
|
|
{
|
|
}
|
|
|
|
void PEBinary::declare_implicit_nets(LexicalScope*scope, NetNet::Type type)
|
|
{
|
|
if (left_) left_->declare_implicit_nets(scope, type);
|
|
if (right_) right_->declare_implicit_nets(scope, type);
|
|
}
|
|
|
|
bool PEBinary::has_aa_term(Design*des, NetScope*scope) const
|
|
{
|
|
assert(left_ && right_);
|
|
return left_->has_aa_term(des, scope) || right_->has_aa_term(des, scope);
|
|
}
|
|
|
|
PECastSize::PECastSize(PExpr*si, PExpr*b)
|
|
: size_(si), base_(b)
|
|
{
|
|
}
|
|
|
|
PECastSize::~PECastSize()
|
|
{
|
|
}
|
|
|
|
PECastType::PECastType(data_type_t*t, PExpr*b)
|
|
: target_(t), base_(b)
|
|
{
|
|
}
|
|
|
|
PECastType::~PECastType()
|
|
{
|
|
}
|
|
|
|
PEBComp::PEBComp(char op, PExpr*l, PExpr*r)
|
|
: PEBinary(op, l, r)
|
|
{
|
|
l_width_ = 0;
|
|
r_width_ = 0;
|
|
}
|
|
|
|
PEBComp::~PEBComp()
|
|
{
|
|
}
|
|
|
|
PEBLogic::PEBLogic(char op, PExpr*l, PExpr*r)
|
|
: PEBinary(op, l, r)
|
|
{
|
|
assert(op == 'a' || op == 'o');
|
|
}
|
|
|
|
PEBLogic::~PEBLogic()
|
|
{
|
|
}
|
|
|
|
PEBLeftWidth::PEBLeftWidth(char op, PExpr*l, PExpr*r)
|
|
: PEBinary(op, l, r)
|
|
{
|
|
}
|
|
|
|
PEBLeftWidth::~PEBLeftWidth()
|
|
{
|
|
}
|
|
|
|
PEBPower::PEBPower(char op, PExpr*l, PExpr*r)
|
|
: PEBLeftWidth(op, l, r)
|
|
{
|
|
}
|
|
|
|
PEBPower::~PEBPower()
|
|
{
|
|
}
|
|
|
|
PEBShift::PEBShift(char op, PExpr*l, PExpr*r)
|
|
: PEBLeftWidth(op, l, r)
|
|
{
|
|
}
|
|
|
|
PEBShift::~PEBShift()
|
|
{
|
|
}
|
|
|
|
PECallFunction::PECallFunction(const pform_name_t&n, const vector<PExpr *> &parms)
|
|
: package_(0), path_(n), parms_(parms)
|
|
{
|
|
}
|
|
|
|
PECallFunction::PECallFunction(PPackage*pkg, const pform_name_t&n, const vector<PExpr *> &parms)
|
|
: package_(pkg), path_(n), parms_(parms)
|
|
{
|
|
}
|
|
|
|
static pform_name_t pn_from_ps(perm_string n)
|
|
{
|
|
name_component_t tmp_name (n);
|
|
pform_name_t tmp;
|
|
tmp.push_back(tmp_name);
|
|
return tmp;
|
|
}
|
|
|
|
PECallFunction::PECallFunction(PPackage*pkg, perm_string n, const list<PExpr *> &parms)
|
|
: package_(pkg), path_(pn_from_ps(n)), parms_(parms.size())
|
|
{
|
|
int tmp_idx = 0;
|
|
assert(parms_.size() == parms.size());
|
|
for (list<PExpr*>::const_iterator idx = parms.begin()
|
|
; idx != parms.end() ; ++idx)
|
|
parms_[tmp_idx++] = *idx;
|
|
}
|
|
|
|
PECallFunction::PECallFunction(perm_string n, const vector<PExpr*>&parms)
|
|
: package_(0), path_(pn_from_ps(n)), parms_(parms)
|
|
{
|
|
}
|
|
|
|
PECallFunction::PECallFunction(perm_string n)
|
|
: package_(0), path_(pn_from_ps(n))
|
|
{
|
|
}
|
|
|
|
// NOTE: Anachronism. Try to work all use of svector out.
|
|
PECallFunction::PECallFunction(const pform_name_t&n, const list<PExpr *> &parms)
|
|
: package_(0), path_(n), parms_(parms.size())
|
|
{
|
|
int tmp_idx = 0;
|
|
assert(parms_.size() == parms.size());
|
|
for (list<PExpr*>::const_iterator idx = parms.begin()
|
|
; idx != parms.end() ; ++idx)
|
|
parms_[tmp_idx++] = *idx;
|
|
}
|
|
|
|
PECallFunction::PECallFunction(perm_string n, const list<PExpr*>&parms)
|
|
: package_(0), path_(pn_from_ps(n)), parms_(parms.size())
|
|
{
|
|
int tmp_idx = 0;
|
|
assert(parms_.size() == parms.size());
|
|
for (list<PExpr*>::const_iterator idx = parms.begin()
|
|
; idx != parms.end() ; ++idx)
|
|
parms_[tmp_idx++] = *idx;
|
|
}
|
|
|
|
PECallFunction::~PECallFunction()
|
|
{
|
|
}
|
|
|
|
void PECallFunction::declare_implicit_nets(LexicalScope*scope, NetNet::Type type)
|
|
{
|
|
for (unsigned idx = 0 ; idx < parms_.size() ; idx += 1) {
|
|
parms_[idx]->declare_implicit_nets(scope, type);
|
|
}
|
|
}
|
|
|
|
bool PECallFunction::has_aa_term(Design*des, NetScope*scope) const
|
|
{
|
|
bool flag = false;
|
|
for (unsigned idx = 0 ; idx < parms_.size() ; idx += 1) {
|
|
flag = parms_[idx]->has_aa_term(des, scope) || flag;
|
|
}
|
|
return flag;
|
|
}
|
|
|
|
PEConcat::PEConcat(const list<PExpr*>&p, PExpr*r)
|
|
: parms_(p.size()), width_modes_(SIZED, p.size()), repeat_(r)
|
|
{
|
|
int tmp_idx = 0;
|
|
assert(parms_.size() == p.size());
|
|
for (list<PExpr*>::const_iterator idx = p.begin()
|
|
; idx != p.end() ; ++idx)
|
|
parms_[tmp_idx++] = *idx;
|
|
|
|
tested_scope_ = 0;
|
|
repeat_count_ = 1;
|
|
}
|
|
|
|
PEConcat::~PEConcat()
|
|
{
|
|
delete repeat_;
|
|
}
|
|
|
|
void PEConcat::declare_implicit_nets(LexicalScope*scope, NetNet::Type type)
|
|
{
|
|
for (unsigned idx = 0 ; idx < parms_.size() ; idx += 1) {
|
|
parms_[idx]->declare_implicit_nets(scope, type);
|
|
}
|
|
}
|
|
|
|
bool PEConcat::has_aa_term(Design*des, NetScope*scope) const
|
|
{
|
|
bool flag = false;
|
|
for (unsigned idx = 0 ; idx < parms_.size() ; idx += 1) {
|
|
flag = parms_[idx]->has_aa_term(des, scope) || flag;
|
|
}
|
|
if (repeat_)
|
|
flag = repeat_->has_aa_term(des, scope) || flag;
|
|
|
|
return flag;
|
|
}
|
|
|
|
PEEvent::PEEvent(PEEvent::edge_t t, PExpr*e)
|
|
: type_(t), expr_(e)
|
|
{
|
|
}
|
|
|
|
PEEvent::~PEEvent()
|
|
{
|
|
}
|
|
|
|
PEEvent::edge_t PEEvent::type() const
|
|
{
|
|
return type_;
|
|
}
|
|
|
|
bool PEEvent::has_aa_term(Design*des, NetScope*scope) const
|
|
{
|
|
assert(expr_);
|
|
return expr_->has_aa_term(des, scope);
|
|
}
|
|
|
|
PExpr* PEEvent::expr() const
|
|
{
|
|
return expr_;
|
|
}
|
|
|
|
PENull::PENull(void)
|
|
{
|
|
}
|
|
|
|
PENull::~PENull()
|
|
{
|
|
}
|
|
|
|
PEFNumber::PEFNumber(verireal*v)
|
|
: value_(v)
|
|
{
|
|
}
|
|
|
|
PEFNumber::~PEFNumber()
|
|
{
|
|
delete value_;
|
|
}
|
|
|
|
const verireal& PEFNumber::value() const
|
|
{
|
|
return *value_;
|
|
}
|
|
|
|
PEIdent::PEIdent(const pform_name_t&that)
|
|
: package_(0), path_(that), no_implicit_sig_(false)
|
|
{
|
|
}
|
|
|
|
PEIdent::PEIdent(perm_string s, bool no_implicit_sig)
|
|
: package_(0), no_implicit_sig_(no_implicit_sig)
|
|
{
|
|
path_.push_back(name_component_t(s));
|
|
}
|
|
|
|
PEIdent::PEIdent(PPackage*pkg, const pform_name_t&that)
|
|
: package_(pkg), path_(that), no_implicit_sig_(true)
|
|
{
|
|
}
|
|
|
|
PEIdent::~PEIdent()
|
|
{
|
|
}
|
|
|
|
void PEIdent::declare_implicit_nets(LexicalScope*scope, NetNet::Type type)
|
|
{
|
|
/* We create an implicit wire if:
|
|
- this is a simple identifier
|
|
- an identifier of that name has not already been declared in
|
|
any enclosing scope.
|
|
- this is not an implicit named port connection */
|
|
if (no_implicit_sig_)
|
|
return;
|
|
if ((path_.size() == 1) && (path_.front().index.size() == 0)) {
|
|
perm_string name = path_.front().name;
|
|
LexicalScope*ss = scope;
|
|
while (ss) {
|
|
if (ss->wires.find(name) != ss->wires.end())
|
|
return;
|
|
if (ss->localparams.find(name) != ss->localparams.end())
|
|
return;
|
|
if (ss->parameters.find(name) != ss->parameters.end())
|
|
return;
|
|
if (ss->genvars.find(name) != ss->genvars.end())
|
|
return;
|
|
if (ss->events.find(name) != ss->events.end())
|
|
return;
|
|
/* Strictly speaking, we should also check for name clashes
|
|
with tasks, functions, named blocks, module instances,
|
|
and generate blocks. However, this information is not
|
|
readily available. As these names would not be legal in
|
|
this context, we can declare implicit nets here and rely
|
|
on later checks for name clashes to report the error. */
|
|
|
|
ss = ss->parent_scope();
|
|
}
|
|
PWire*net = new PWire(name, type, NetNet::NOT_A_PORT, IVL_VT_LOGIC);
|
|
net->set_file(get_file());
|
|
net->set_lineno(get_lineno());
|
|
net->set_range_scalar(SR_NET);
|
|
scope->wires[name] = net;
|
|
if (warn_implicit) {
|
|
cerr << get_fileline() << ": warning: implicit "
|
|
"definition of wire '" << name << "'." << endl;
|
|
}
|
|
}
|
|
}
|
|
|
|
bool PEIdent::has_aa_term(Design*des, NetScope*scope) const
|
|
{
|
|
NetNet* net = 0;
|
|
const NetExpr*par = 0;
|
|
NetEvent* eve = 0;
|
|
|
|
const NetExpr*ex1, *ex2;
|
|
|
|
scope = symbol_search(this, des, scope, path_, net, par, eve, ex1, ex2);
|
|
|
|
if (scope)
|
|
return scope->is_auto();
|
|
else
|
|
return false;
|
|
}
|
|
|
|
PENewArray::PENewArray(PExpr*size_expr, PExpr*init_expr)
|
|
: size_(size_expr), init_(init_expr)
|
|
{
|
|
}
|
|
|
|
PENewArray::~PENewArray()
|
|
{
|
|
delete size_;
|
|
}
|
|
|
|
PENewClass::PENewClass(void)
|
|
{
|
|
}
|
|
|
|
PENewClass::PENewClass(const list<PExpr*>&p)
|
|
: parms_(p.size())
|
|
{
|
|
size_t tmp_idx = 0;
|
|
for (list<PExpr*>::const_iterator cur = p.begin()
|
|
; cur != p.end() ; ++ cur) {
|
|
parms_[tmp_idx++] = *cur;
|
|
}
|
|
}
|
|
|
|
PENewClass::~PENewClass()
|
|
{
|
|
}
|
|
|
|
PENewCopy::PENewCopy(PExpr*src)
|
|
: src_(src)
|
|
{
|
|
}
|
|
|
|
PENewCopy::~PENewCopy()
|
|
{
|
|
}
|
|
|
|
PENumber::PENumber(verinum*vp)
|
|
: value_(vp)
|
|
{
|
|
assert(vp);
|
|
}
|
|
|
|
PENumber::~PENumber()
|
|
{
|
|
delete value_;
|
|
}
|
|
|
|
const verinum& PENumber::value() const
|
|
{
|
|
return *value_;
|
|
}
|
|
|
|
bool PENumber::is_the_same(const PExpr*that) const
|
|
{
|
|
const PENumber*obj = dynamic_cast<const PENumber*>(that);
|
|
if (obj == 0)
|
|
return false;
|
|
|
|
return *value_ == *obj->value_;
|
|
}
|
|
|
|
PEString::PEString(char*s)
|
|
: text_(s)
|
|
{
|
|
}
|
|
|
|
PEString::~PEString()
|
|
{
|
|
delete[]text_;
|
|
}
|
|
|
|
string PEString::value() const
|
|
{
|
|
return text_;
|
|
}
|
|
|
|
PETernary::PETernary(PExpr*e, PExpr*t, PExpr*f)
|
|
: expr_(e), tru_(t), fal_(f)
|
|
{
|
|
}
|
|
|
|
PETernary::~PETernary()
|
|
{
|
|
}
|
|
|
|
void PETernary::declare_implicit_nets(LexicalScope*scope, NetNet::Type type)
|
|
{
|
|
assert(expr_ && tru_ && fal_);
|
|
expr_->declare_implicit_nets(scope, type);
|
|
tru_->declare_implicit_nets(scope, type);
|
|
fal_->declare_implicit_nets(scope, type);
|
|
}
|
|
|
|
bool PETernary::has_aa_term(Design*des, NetScope*scope) const
|
|
{
|
|
assert(expr_ && tru_ && fal_);
|
|
return expr_->has_aa_term(des, scope)
|
|
|| tru_->has_aa_term(des, scope)
|
|
|| fal_->has_aa_term(des, scope);
|
|
}
|
|
|
|
PETypename::PETypename(data_type_t*dt)
|
|
: data_type_(dt)
|
|
{
|
|
}
|
|
|
|
PETypename::~PETypename()
|
|
{
|
|
}
|
|
|
|
PEUnary::PEUnary(char op, PExpr*ex)
|
|
: op_(op), expr_(ex)
|
|
{
|
|
}
|
|
|
|
PEUnary::~PEUnary()
|
|
{
|
|
}
|
|
|
|
void PEUnary::declare_implicit_nets(LexicalScope*scope, NetNet::Type type)
|
|
{
|
|
assert(expr_);
|
|
expr_->declare_implicit_nets(scope, type);
|
|
}
|
|
|
|
bool PEUnary::has_aa_term(Design*des, NetScope*scope) const
|
|
{
|
|
assert(expr_);
|
|
return expr_->has_aa_term(des, scope);
|
|
}
|
|
|
|
PEVoid::PEVoid()
|
|
{
|
|
}
|
|
|
|
PEVoid::~PEVoid()
|
|
{
|
|
}
|