2013-01-05 04:13:26 -06:00
|
|
|
/*
|
|
|
|
* yosys -- Yosys Open SYnthesis Suite
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 Clifford Wolf <clifford@clifford.at>
|
2015-07-02 04:14:30 -05:00
|
|
|
*
|
2013-01-05 04:13:26 -06:00
|
|
|
* Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
2015-07-02 04:14:30 -05:00
|
|
|
*
|
2013-01-05 04:13:26 -06:00
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
|
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
|
|
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2014-07-31 06:19:47 -05:00
|
|
|
#include "kernel/yosys.h"
|
2014-09-06 08:47:46 -05:00
|
|
|
#include "kernel/macc.h"
|
2015-02-07 04:40:19 -06:00
|
|
|
#include "kernel/celltypes.h"
|
2013-06-19 02:30:37 -05:00
|
|
|
#include "frontends/verilog/verilog_frontend.h"
|
2013-11-10 16:25:04 -06:00
|
|
|
#include "backends/ilang/ilang_backend.h"
|
|
|
|
|
|
|
|
#include <string.h>
|
2013-01-05 04:13:26 -06:00
|
|
|
#include <algorithm>
|
|
|
|
|
2014-07-31 06:19:47 -05:00
|
|
|
YOSYS_NAMESPACE_BEGIN
|
2013-01-05 04:13:26 -06:00
|
|
|
|
2014-12-11 14:46:36 -06:00
|
|
|
RTLIL::IdString::destruct_guard_t RTLIL::IdString::destruct_guard;
|
2014-08-02 08:11:35 -05:00
|
|
|
std::vector<int> RTLIL::IdString::global_refcount_storage_;
|
2014-08-02 08:44:10 -05:00
|
|
|
std::vector<char*> RTLIL::IdString::global_id_storage_;
|
2014-12-26 14:59:41 -06:00
|
|
|
dict<char*, int, hash_cstr_ops> RTLIL::IdString::global_id_index_;
|
2014-08-02 08:11:35 -05:00
|
|
|
std::vector<int> RTLIL::IdString::global_free_idx_list_;
|
|
|
|
|
2013-12-04 07:14:05 -06:00
|
|
|
RTLIL::Const::Const()
|
2013-01-05 04:13:26 -06:00
|
|
|
{
|
2013-12-04 07:14:05 -06:00
|
|
|
flags = RTLIL::CONST_FLAG_NONE;
|
|
|
|
}
|
|
|
|
|
|
|
|
RTLIL::Const::Const(std::string str)
|
|
|
|
{
|
|
|
|
flags = RTLIL::CONST_FLAG_STRING;
|
|
|
|
for (int i = str.size()-1; i >= 0; i--) {
|
2013-01-05 04:13:26 -06:00
|
|
|
unsigned char ch = str[i];
|
|
|
|
for (int j = 0; j < 8; j++) {
|
|
|
|
bits.push_back((ch & 1) != 0 ? RTLIL::S1 : RTLIL::S0);
|
|
|
|
ch = ch >> 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
RTLIL::Const::Const(int val, int width)
|
|
|
|
{
|
2013-12-04 07:14:05 -06:00
|
|
|
flags = RTLIL::CONST_FLAG_NONE;
|
2013-01-05 04:13:26 -06:00
|
|
|
for (int i = 0; i < width; i++) {
|
|
|
|
bits.push_back((val & 1) != 0 ? RTLIL::S1 : RTLIL::S0);
|
|
|
|
val = val >> 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
RTLIL::Const::Const(RTLIL::State bit, int width)
|
|
|
|
{
|
2013-12-04 07:14:05 -06:00
|
|
|
flags = RTLIL::CONST_FLAG_NONE;
|
2013-01-05 04:13:26 -06:00
|
|
|
for (int i = 0; i < width; i++)
|
|
|
|
bits.push_back(bit);
|
|
|
|
}
|
|
|
|
|
2014-09-19 08:50:55 -05:00
|
|
|
RTLIL::Const::Const(const std::vector<bool> &bits)
|
|
|
|
{
|
|
|
|
flags = RTLIL::CONST_FLAG_NONE;
|
|
|
|
for (auto b : bits)
|
|
|
|
this->bits.push_back(b ? RTLIL::S1 : RTLIL::S0);
|
|
|
|
}
|
|
|
|
|
2013-01-05 04:13:26 -06:00
|
|
|
bool RTLIL::Const::operator <(const RTLIL::Const &other) const
|
|
|
|
{
|
|
|
|
if (bits.size() != other.bits.size())
|
|
|
|
return bits.size() < other.bits.size();
|
|
|
|
for (size_t i = 0; i < bits.size(); i++)
|
|
|
|
if (bits[i] != other.bits[i])
|
|
|
|
return bits[i] < other.bits[i];
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool RTLIL::Const::operator ==(const RTLIL::Const &other) const
|
|
|
|
{
|
|
|
|
return bits == other.bits;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool RTLIL::Const::operator !=(const RTLIL::Const &other) const
|
|
|
|
{
|
|
|
|
return bits != other.bits;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool RTLIL::Const::as_bool() const
|
|
|
|
{
|
|
|
|
for (size_t i = 0; i < bits.size(); i++)
|
|
|
|
if (bits[i] == RTLIL::S1)
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-08-24 08:14:00 -05:00
|
|
|
int RTLIL::Const::as_int(bool is_signed) const
|
2013-01-05 04:13:26 -06:00
|
|
|
{
|
2014-08-24 08:14:00 -05:00
|
|
|
int32_t ret = 0;
|
2013-01-05 04:13:26 -06:00
|
|
|
for (size_t i = 0; i < bits.size() && i < 32; i++)
|
|
|
|
if (bits[i] == RTLIL::S1)
|
|
|
|
ret |= 1 << i;
|
2014-08-24 08:14:00 -05:00
|
|
|
if (is_signed && bits.back() == RTLIL::S1)
|
|
|
|
for (size_t i = bits.size(); i < 32; i++)
|
|
|
|
ret |= 1 << i;
|
2013-01-05 04:13:26 -06:00
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string RTLIL::Const::as_string() const
|
|
|
|
{
|
|
|
|
std::string ret;
|
|
|
|
for (size_t i = bits.size(); i > 0; i--)
|
|
|
|
switch (bits[i-1]) {
|
|
|
|
case S0: ret += "0"; break;
|
|
|
|
case S1: ret += "1"; break;
|
|
|
|
case Sx: ret += "x"; break;
|
|
|
|
case Sz: ret += "z"; break;
|
|
|
|
case Sa: ret += "-"; break;
|
|
|
|
case Sm: ret += "m"; break;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2015-01-31 05:08:20 -06:00
|
|
|
RTLIL::Const RTLIL::Const::from_string(std::string str)
|
|
|
|
{
|
|
|
|
Const c;
|
|
|
|
for (auto it = str.rbegin(); it != str.rend(); it++)
|
|
|
|
switch (*it) {
|
|
|
|
case '0': c.bits.push_back(State::S0); break;
|
|
|
|
case '1': c.bits.push_back(State::S1); break;
|
|
|
|
case 'x': c.bits.push_back(State::Sx); break;
|
|
|
|
case 'z': c.bits.push_back(State::Sz); break;
|
|
|
|
case 'm': c.bits.push_back(State::Sm); break;
|
|
|
|
default: c.bits.push_back(State::Sa);
|
|
|
|
}
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
2013-12-04 07:14:05 -06:00
|
|
|
std::string RTLIL::Const::decode_string() const
|
|
|
|
{
|
|
|
|
std::string string;
|
2015-06-11 06:39:49 -05:00
|
|
|
std::vector<char> string_chars;
|
2013-12-04 07:14:05 -06:00
|
|
|
for (int i = 0; i < int (bits.size()); i += 8) {
|
|
|
|
char ch = 0;
|
|
|
|
for (int j = 0; j < 8 && i + j < int (bits.size()); j++)
|
|
|
|
if (bits[i + j] == RTLIL::State::S1)
|
|
|
|
ch |= 1 << j;
|
|
|
|
if (ch != 0)
|
|
|
|
string_chars.push_back(ch);
|
|
|
|
}
|
|
|
|
for (int i = int (string_chars.size()) - 1; i >= 0; i--)
|
|
|
|
string += string_chars[i];
|
|
|
|
return string;
|
|
|
|
}
|
|
|
|
|
2015-04-24 15:04:05 -05:00
|
|
|
void RTLIL::AttrObject::set_bool_attribute(RTLIL::IdString id)
|
|
|
|
{
|
|
|
|
attributes[id] = RTLIL::Const(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool RTLIL::AttrObject::get_bool_attribute(RTLIL::IdString id) const
|
|
|
|
{
|
|
|
|
if (attributes.count(id) == 0)
|
|
|
|
return false;
|
|
|
|
return attributes.at(id).as_bool();
|
|
|
|
}
|
|
|
|
|
|
|
|
void RTLIL::AttrObject::set_strpool_attribute(RTLIL::IdString id, const pool<string> &data)
|
|
|
|
{
|
|
|
|
string attrval;
|
|
|
|
for (auto &s : data) {
|
|
|
|
if (!attrval.empty())
|
|
|
|
attrval += "|";
|
|
|
|
attrval += s;
|
|
|
|
}
|
|
|
|
attributes[id] = RTLIL::Const(attrval);
|
|
|
|
}
|
|
|
|
|
|
|
|
void RTLIL::AttrObject::add_strpool_attribute(RTLIL::IdString id, const pool<string> &data)
|
|
|
|
{
|
|
|
|
pool<string> union_data = get_strpool_attribute(id);
|
|
|
|
union_data.insert(data.begin(), data.end());
|
|
|
|
if (!union_data.empty())
|
|
|
|
set_strpool_attribute(id, union_data);
|
|
|
|
}
|
|
|
|
|
|
|
|
pool<string> RTLIL::AttrObject::get_strpool_attribute(RTLIL::IdString id) const
|
|
|
|
{
|
|
|
|
pool<string> data;
|
|
|
|
if (attributes.count(id) != 0)
|
|
|
|
for (auto s : split_tokens(attributes.at(id).decode_string(), "|"))
|
|
|
|
data.insert(s);
|
|
|
|
return data;
|
|
|
|
}
|
|
|
|
|
2013-06-02 10:53:30 -05:00
|
|
|
bool RTLIL::Selection::selected_module(RTLIL::IdString mod_name) const
|
2013-01-05 04:13:26 -06:00
|
|
|
{
|
|
|
|
if (full_selection)
|
|
|
|
return true;
|
|
|
|
if (selected_modules.count(mod_name) > 0)
|
|
|
|
return true;
|
|
|
|
if (selected_members.count(mod_name) > 0)
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-06-02 10:53:30 -05:00
|
|
|
bool RTLIL::Selection::selected_whole_module(RTLIL::IdString mod_name) const
|
2013-01-05 04:13:26 -06:00
|
|
|
{
|
|
|
|
if (full_selection)
|
|
|
|
return true;
|
|
|
|
if (selected_modules.count(mod_name) > 0)
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-06-02 10:53:30 -05:00
|
|
|
bool RTLIL::Selection::selected_member(RTLIL::IdString mod_name, RTLIL::IdString memb_name) const
|
2013-01-05 04:13:26 -06:00
|
|
|
{
|
|
|
|
if (full_selection)
|
|
|
|
return true;
|
|
|
|
if (selected_modules.count(mod_name) > 0)
|
|
|
|
return true;
|
|
|
|
if (selected_members.count(mod_name) > 0)
|
2013-06-02 10:53:30 -05:00
|
|
|
if (selected_members.at(mod_name).count(memb_name) > 0)
|
2013-01-05 04:13:26 -06:00
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void RTLIL::Selection::optimize(RTLIL::Design *design)
|
|
|
|
{
|
|
|
|
if (full_selection) {
|
|
|
|
selected_modules.clear();
|
|
|
|
selected_members.clear();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<RTLIL::IdString> del_list, add_list;
|
|
|
|
|
|
|
|
del_list.clear();
|
|
|
|
for (auto mod_name : selected_modules) {
|
2014-07-27 03:18:00 -05:00
|
|
|
if (design->modules_.count(mod_name) == 0)
|
2013-01-05 04:13:26 -06:00
|
|
|
del_list.push_back(mod_name);
|
|
|
|
selected_members.erase(mod_name);
|
|
|
|
}
|
|
|
|
for (auto mod_name : del_list)
|
|
|
|
selected_modules.erase(mod_name);
|
|
|
|
|
|
|
|
del_list.clear();
|
|
|
|
for (auto &it : selected_members)
|
2014-07-27 03:18:00 -05:00
|
|
|
if (design->modules_.count(it.first) == 0)
|
2013-01-05 04:13:26 -06:00
|
|
|
del_list.push_back(it.first);
|
|
|
|
for (auto mod_name : del_list)
|
|
|
|
selected_members.erase(mod_name);
|
|
|
|
|
|
|
|
for (auto &it : selected_members) {
|
|
|
|
del_list.clear();
|
|
|
|
for (auto memb_name : it.second)
|
2014-07-27 03:18:00 -05:00
|
|
|
if (design->modules_[it.first]->count_id(memb_name) == 0)
|
2013-01-05 04:13:26 -06:00
|
|
|
del_list.push_back(memb_name);
|
|
|
|
for (auto memb_name : del_list)
|
|
|
|
it.second.erase(memb_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
del_list.clear();
|
|
|
|
add_list.clear();
|
|
|
|
for (auto &it : selected_members)
|
|
|
|
if (it.second.size() == 0)
|
|
|
|
del_list.push_back(it.first);
|
2014-07-27 03:18:00 -05:00
|
|
|
else if (it.second.size() == design->modules_[it.first]->wires_.size() + design->modules_[it.first]->memories.size() +
|
|
|
|
design->modules_[it.first]->cells_.size() + design->modules_[it.first]->processes.size())
|
2013-01-05 04:13:26 -06:00
|
|
|
add_list.push_back(it.first);
|
|
|
|
for (auto mod_name : del_list)
|
|
|
|
selected_members.erase(mod_name);
|
|
|
|
for (auto mod_name : add_list) {
|
|
|
|
selected_members.erase(mod_name);
|
|
|
|
selected_modules.insert(mod_name);
|
|
|
|
}
|
|
|
|
|
2014-07-27 03:18:00 -05:00
|
|
|
if (selected_modules.size() == design->modules_.size()) {
|
2013-01-05 04:13:26 -06:00
|
|
|
full_selection = true;
|
|
|
|
selected_modules.clear();
|
|
|
|
selected_members.clear();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-29 09:06:27 -05:00
|
|
|
RTLIL::Design::Design()
|
|
|
|
{
|
2014-12-28 17:12:36 -06:00
|
|
|
static unsigned int hashidx_count = 123456789;
|
|
|
|
hashidx_count = mkhash_xorshift(hashidx_count);
|
|
|
|
hashidx_ = hashidx_count;
|
2014-12-28 10:51:16 -06:00
|
|
|
|
2014-07-29 09:06:27 -05:00
|
|
|
refcount_modules_ = 0;
|
2014-09-02 15:49:24 -05:00
|
|
|
selection_stack.push_back(RTLIL::Selection());
|
2014-07-29 09:06:27 -05:00
|
|
|
}
|
|
|
|
|
2013-01-05 04:13:26 -06:00
|
|
|
RTLIL::Design::~Design()
|
|
|
|
{
|
2014-12-26 14:35:22 -06:00
|
|
|
for (auto it = modules_.begin(); it != modules_.end(); ++it)
|
2013-01-05 04:13:26 -06:00
|
|
|
delete it->second;
|
|
|
|
}
|
|
|
|
|
2014-07-27 14:12:09 -05:00
|
|
|
RTLIL::ObjRange<RTLIL::Module*> RTLIL::Design::modules()
|
|
|
|
{
|
|
|
|
return RTLIL::ObjRange<RTLIL::Module*>(&modules_, &refcount_modules_);
|
|
|
|
}
|
|
|
|
|
|
|
|
RTLIL::Module *RTLIL::Design::module(RTLIL::IdString name)
|
|
|
|
{
|
|
|
|
return modules_.count(name) ? modules_.at(name) : NULL;
|
|
|
|
}
|
|
|
|
|
2015-06-17 02:38:56 -05:00
|
|
|
RTLIL::Module *RTLIL::Design::top_module()
|
|
|
|
{
|
|
|
|
RTLIL::Module *module = nullptr;
|
|
|
|
int module_count = 0;
|
|
|
|
|
|
|
|
for (auto mod : selected_modules()) {
|
|
|
|
if (mod->get_bool_attribute("\\top"))
|
|
|
|
return mod;
|
|
|
|
module_count++;
|
|
|
|
module = mod;
|
|
|
|
}
|
|
|
|
|
|
|
|
return module_count == 1 ? module : nullptr;
|
|
|
|
}
|
|
|
|
|
2014-07-27 14:12:09 -05:00
|
|
|
void RTLIL::Design::add(RTLIL::Module *module)
|
|
|
|
{
|
2014-07-28 04:08:55 -05:00
|
|
|
log_assert(modules_.count(module->name) == 0);
|
|
|
|
log_assert(refcount_modules_ == 0);
|
2014-07-27 14:12:09 -05:00
|
|
|
modules_[module->name] = module;
|
2014-07-31 07:11:39 -05:00
|
|
|
module->design = this;
|
2014-07-31 07:34:12 -05:00
|
|
|
|
|
|
|
for (auto mon : monitors)
|
|
|
|
mon->notify_module_add(module);
|
2014-12-29 06:33:33 -06:00
|
|
|
|
|
|
|
if (yosys_xtrace) {
|
|
|
|
log("#X# New Module: %s\n", log_id(module));
|
|
|
|
log_backtrace("-X- ", yosys_xtrace-1);
|
|
|
|
}
|
2014-07-27 14:12:09 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
RTLIL::Module *RTLIL::Design::addModule(RTLIL::IdString name)
|
|
|
|
{
|
2014-07-28 04:08:55 -05:00
|
|
|
log_assert(modules_.count(name) == 0);
|
|
|
|
log_assert(refcount_modules_ == 0);
|
2014-07-31 07:34:12 -05:00
|
|
|
|
|
|
|
RTLIL::Module *module = new RTLIL::Module;
|
|
|
|
modules_[name] = module;
|
|
|
|
module->design = this;
|
|
|
|
module->name = name;
|
|
|
|
|
|
|
|
for (auto mon : monitors)
|
|
|
|
mon->notify_module_add(module);
|
|
|
|
|
2014-12-29 06:33:33 -06:00
|
|
|
if (yosys_xtrace) {
|
|
|
|
log("#X# New Module: %s\n", log_id(module));
|
|
|
|
log_backtrace("-X- ", yosys_xtrace-1);
|
|
|
|
}
|
|
|
|
|
2014-07-31 07:34:12 -05:00
|
|
|
return module;
|
2014-07-27 14:12:09 -05:00
|
|
|
}
|
|
|
|
|
2014-08-30 12:37:12 -05:00
|
|
|
void RTLIL::Design::scratchpad_unset(std::string varname)
|
|
|
|
{
|
|
|
|
scratchpad.erase(varname);
|
|
|
|
}
|
|
|
|
|
|
|
|
void RTLIL::Design::scratchpad_set_int(std::string varname, int value)
|
|
|
|
{
|
|
|
|
scratchpad[varname] = stringf("%d", value);
|
|
|
|
}
|
|
|
|
|
|
|
|
void RTLIL::Design::scratchpad_set_bool(std::string varname, bool value)
|
|
|
|
{
|
|
|
|
scratchpad[varname] = value ? "true" : "false";
|
|
|
|
}
|
|
|
|
|
|
|
|
void RTLIL::Design::scratchpad_set_string(std::string varname, std::string value)
|
|
|
|
{
|
|
|
|
scratchpad[varname] = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
int RTLIL::Design::scratchpad_get_int(std::string varname, int default_value) const
|
|
|
|
{
|
|
|
|
if (scratchpad.count(varname) == 0)
|
|
|
|
return default_value;
|
|
|
|
|
|
|
|
std::string str = scratchpad.at(varname);
|
|
|
|
|
|
|
|
if (str == "0" || str == "false")
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (str == "1" || str == "true")
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
char *endptr = nullptr;
|
|
|
|
long int parsed_value = strtol(str.c_str(), &endptr, 10);
|
|
|
|
return *endptr ? default_value : parsed_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool RTLIL::Design::scratchpad_get_bool(std::string varname, bool default_value) const
|
|
|
|
{
|
|
|
|
if (scratchpad.count(varname) == 0)
|
|
|
|
return default_value;
|
|
|
|
|
|
|
|
std::string str = scratchpad.at(varname);
|
|
|
|
|
|
|
|
if (str == "0" || str == "false")
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (str == "1" || str == "true")
|
|
|
|
return true;
|
|
|
|
|
|
|
|
return default_value;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string RTLIL::Design::scratchpad_get_string(std::string varname, std::string default_value) const
|
|
|
|
{
|
|
|
|
if (scratchpad.count(varname) == 0)
|
|
|
|
return default_value;
|
|
|
|
return scratchpad.at(varname);
|
|
|
|
}
|
|
|
|
|
2014-07-27 14:12:09 -05:00
|
|
|
void RTLIL::Design::remove(RTLIL::Module *module)
|
|
|
|
{
|
2014-07-31 07:34:12 -05:00
|
|
|
for (auto mon : monitors)
|
|
|
|
mon->notify_module_del(module);
|
|
|
|
|
2014-12-29 06:33:33 -06:00
|
|
|
if (yosys_xtrace) {
|
|
|
|
log("#X# Remove Module: %s\n", log_id(module));
|
|
|
|
log_backtrace("-X- ", yosys_xtrace-1);
|
|
|
|
}
|
|
|
|
|
2014-07-28 04:08:55 -05:00
|
|
|
log_assert(modules_.at(module->name) == module);
|
2014-07-27 14:12:09 -05:00
|
|
|
modules_.erase(module->name);
|
|
|
|
delete module;
|
|
|
|
}
|
|
|
|
|
2015-06-29 18:37:59 -05:00
|
|
|
void RTLIL::Design::rename(RTLIL::Module *module, RTLIL::IdString new_name)
|
|
|
|
{
|
|
|
|
modules_.erase(module->name);
|
|
|
|
module->name = new_name;
|
|
|
|
add(module);
|
|
|
|
}
|
|
|
|
|
2015-01-23 17:13:27 -06:00
|
|
|
void RTLIL::Design::sort()
|
|
|
|
{
|
|
|
|
scratchpad.sort();
|
|
|
|
modules_.sort(sort_by_id_str());
|
|
|
|
for (auto &it : modules_)
|
|
|
|
it.second->sort();
|
|
|
|
}
|
|
|
|
|
2013-01-05 04:13:26 -06:00
|
|
|
void RTLIL::Design::check()
|
|
|
|
{
|
|
|
|
#ifndef NDEBUG
|
2014-07-27 03:18:00 -05:00
|
|
|
for (auto &it : modules_) {
|
2014-07-31 07:11:39 -05:00
|
|
|
log_assert(this == it.second->design);
|
2014-07-28 04:08:55 -05:00
|
|
|
log_assert(it.first == it.second->name);
|
2014-08-02 11:58:40 -05:00
|
|
|
log_assert(!it.first.empty());
|
2013-01-05 04:13:26 -06:00
|
|
|
it.second->check();
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void RTLIL::Design::optimize()
|
|
|
|
{
|
2014-07-27 03:18:00 -05:00
|
|
|
for (auto &it : modules_)
|
2013-01-05 04:13:26 -06:00
|
|
|
it.second->optimize();
|
|
|
|
for (auto &it : selection_stack)
|
|
|
|
it.optimize(this);
|
|
|
|
for (auto &it : selection_vars)
|
|
|
|
it.second.optimize(this);
|
|
|
|
}
|
|
|
|
|
2013-06-02 10:53:30 -05:00
|
|
|
bool RTLIL::Design::selected_module(RTLIL::IdString mod_name) const
|
2013-01-05 04:13:26 -06:00
|
|
|
{
|
|
|
|
if (!selected_active_module.empty() && mod_name != selected_active_module)
|
|
|
|
return false;
|
|
|
|
if (selection_stack.size() == 0)
|
|
|
|
return true;
|
|
|
|
return selection_stack.back().selected_module(mod_name);
|
|
|
|
}
|
|
|
|
|
2013-06-02 10:53:30 -05:00
|
|
|
bool RTLIL::Design::selected_whole_module(RTLIL::IdString mod_name) const
|
2013-01-05 04:13:26 -06:00
|
|
|
{
|
|
|
|
if (!selected_active_module.empty() && mod_name != selected_active_module)
|
|
|
|
return false;
|
|
|
|
if (selection_stack.size() == 0)
|
|
|
|
return true;
|
|
|
|
return selection_stack.back().selected_whole_module(mod_name);
|
|
|
|
}
|
|
|
|
|
2013-06-02 10:53:30 -05:00
|
|
|
bool RTLIL::Design::selected_member(RTLIL::IdString mod_name, RTLIL::IdString memb_name) const
|
2013-01-05 04:13:26 -06:00
|
|
|
{
|
|
|
|
if (!selected_active_module.empty() && mod_name != selected_active_module)
|
|
|
|
return false;
|
|
|
|
if (selection_stack.size() == 0)
|
|
|
|
return true;
|
|
|
|
return selection_stack.back().selected_member(mod_name, memb_name);
|
|
|
|
}
|
|
|
|
|
2014-07-27 04:03:56 -05:00
|
|
|
bool RTLIL::Design::selected_module(RTLIL::Module *mod) const
|
|
|
|
{
|
|
|
|
return selected_module(mod->name);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool RTLIL::Design::selected_whole_module(RTLIL::Module *mod) const
|
|
|
|
{
|
|
|
|
return selected_whole_module(mod->name);
|
|
|
|
}
|
|
|
|
|
2014-07-31 07:11:39 -05:00
|
|
|
std::vector<RTLIL::Module*> RTLIL::Design::selected_modules() const
|
|
|
|
{
|
|
|
|
std::vector<RTLIL::Module*> result;
|
|
|
|
result.reserve(modules_.size());
|
|
|
|
for (auto &it : modules_)
|
2015-02-03 16:11:57 -06:00
|
|
|
if (selected_module(it.first) && !it.second->get_bool_attribute("\\blackbox"))
|
2014-07-31 07:11:39 -05:00
|
|
|
result.push_back(it.second);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<RTLIL::Module*> RTLIL::Design::selected_whole_modules() const
|
|
|
|
{
|
|
|
|
std::vector<RTLIL::Module*> result;
|
|
|
|
result.reserve(modules_.size());
|
|
|
|
for (auto &it : modules_)
|
2015-02-03 16:11:57 -06:00
|
|
|
if (selected_whole_module(it.first) && !it.second->get_bool_attribute("\\blackbox"))
|
2014-07-31 07:11:39 -05:00
|
|
|
result.push_back(it.second);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<RTLIL::Module*> RTLIL::Design::selected_whole_modules_warn() const
|
|
|
|
{
|
|
|
|
std::vector<RTLIL::Module*> result;
|
|
|
|
result.reserve(modules_.size());
|
|
|
|
for (auto &it : modules_)
|
2015-02-03 16:11:57 -06:00
|
|
|
if (it.second->get_bool_attribute("\\blackbox"))
|
|
|
|
continue;
|
|
|
|
else if (selected_whole_module(it.first))
|
2014-07-31 07:11:39 -05:00
|
|
|
result.push_back(it.second);
|
|
|
|
else if (selected_module(it.first))
|
2014-11-09 03:44:23 -06:00
|
|
|
log_warning("Ignoring partially selected module %s.\n", log_id(it.first));
|
2014-07-31 07:11:39 -05:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2014-07-27 03:13:22 -05:00
|
|
|
RTLIL::Module::Module()
|
|
|
|
{
|
2014-12-28 17:12:36 -06:00
|
|
|
static unsigned int hashidx_count = 123456789;
|
|
|
|
hashidx_count = mkhash_xorshift(hashidx_count);
|
|
|
|
hashidx_ = hashidx_count;
|
2014-12-28 10:51:16 -06:00
|
|
|
|
2014-07-31 07:34:12 -05:00
|
|
|
design = nullptr;
|
2014-07-27 03:13:22 -05:00
|
|
|
refcount_wires_ = 0;
|
|
|
|
refcount_cells_ = 0;
|
|
|
|
}
|
|
|
|
|
2013-01-05 04:13:26 -06:00
|
|
|
RTLIL::Module::~Module()
|
|
|
|
{
|
2014-12-26 14:35:22 -06:00
|
|
|
for (auto it = wires_.begin(); it != wires_.end(); ++it)
|
2013-01-05 04:13:26 -06:00
|
|
|
delete it->second;
|
2014-12-26 14:35:22 -06:00
|
|
|
for (auto it = memories.begin(); it != memories.end(); ++it)
|
2013-01-05 04:13:26 -06:00
|
|
|
delete it->second;
|
2014-12-26 14:35:22 -06:00
|
|
|
for (auto it = cells_.begin(); it != cells_.end(); ++it)
|
2013-01-05 04:13:26 -06:00
|
|
|
delete it->second;
|
2014-12-26 14:35:22 -06:00
|
|
|
for (auto it = processes.begin(); it != processes.end(); ++it)
|
2013-01-05 04:13:26 -06:00
|
|
|
delete it->second;
|
|
|
|
}
|
|
|
|
|
2014-12-26 03:53:21 -06:00
|
|
|
RTLIL::IdString RTLIL::Module::derive(RTLIL::Design*, dict<RTLIL::IdString, RTLIL::Const>)
|
2013-01-05 04:13:26 -06:00
|
|
|
{
|
2013-03-26 13:27:49 -05:00
|
|
|
log_error("Module `%s' is used with parameters but is not parametric!\n", id2cstr(name));
|
2013-01-05 04:13:26 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
size_t RTLIL::Module::count_id(RTLIL::IdString id)
|
|
|
|
{
|
2014-07-26 18:51:45 -05:00
|
|
|
return wires_.count(id) + memories.count(id) + cells_.count(id) + processes.count(id);
|
2013-01-05 04:13:26 -06:00
|
|
|
}
|
|
|
|
|
2013-11-10 16:25:04 -06:00
|
|
|
#ifndef NDEBUG
|
|
|
|
namespace {
|
|
|
|
struct InternalCellChecker
|
|
|
|
{
|
|
|
|
RTLIL::Module *module;
|
|
|
|
RTLIL::Cell *cell;
|
2014-12-26 14:59:41 -06:00
|
|
|
pool<RTLIL::IdString> expected_params, expected_ports;
|
2013-11-10 16:25:04 -06:00
|
|
|
|
|
|
|
InternalCellChecker(RTLIL::Module *module, RTLIL::Cell *cell) : module(module), cell(cell) { }
|
|
|
|
|
|
|
|
void error(int linenr)
|
|
|
|
{
|
2014-08-23 06:54:21 -05:00
|
|
|
std::stringstream buf;
|
|
|
|
ILANG_BACKEND::dump_cell(buf, " ", cell);
|
2013-11-10 16:25:04 -06:00
|
|
|
|
2014-07-21 05:02:55 -05:00
|
|
|
log_error("Found error in internal cell %s%s%s (%s) at %s:%d:\n%s",
|
|
|
|
module ? module->name.c_str() : "", module ? "." : "",
|
2014-08-23 06:54:21 -05:00
|
|
|
cell->name.c_str(), cell->type.c_str(), __FILE__, linenr, buf.str().c_str());
|
2013-11-10 16:25:04 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
int param(const char *name)
|
|
|
|
{
|
|
|
|
if (cell->parameters.count(name) == 0)
|
|
|
|
error(__LINE__);
|
|
|
|
expected_params.insert(name);
|
|
|
|
return cell->parameters.at(name).as_int();
|
|
|
|
}
|
|
|
|
|
2014-02-07 10:39:35 -06:00
|
|
|
int param_bool(const char *name)
|
|
|
|
{
|
|
|
|
int v = param(name);
|
2014-02-08 12:13:49 -06:00
|
|
|
if (cell->parameters.at(name).bits.size() > 32)
|
|
|
|
error(__LINE__);
|
2014-02-07 10:39:35 -06:00
|
|
|
if (v != 0 && v != 1)
|
|
|
|
error(__LINE__);
|
|
|
|
return v;
|
|
|
|
}
|
|
|
|
|
2014-02-08 12:13:49 -06:00
|
|
|
void param_bits(const char *name, int width)
|
|
|
|
{
|
|
|
|
param(name);
|
|
|
|
if (int(cell->parameters.at(name).bits.size()) != width)
|
|
|
|
error(__LINE__);
|
|
|
|
}
|
|
|
|
|
2013-11-10 16:25:04 -06:00
|
|
|
void port(const char *name, int width)
|
|
|
|
{
|
2014-07-31 09:38:54 -05:00
|
|
|
if (!cell->hasPort(name))
|
2013-11-10 16:25:04 -06:00
|
|
|
error(__LINE__);
|
2014-07-31 09:38:54 -05:00
|
|
|
if (cell->getPort(name).size() != width)
|
2013-11-10 16:25:04 -06:00
|
|
|
error(__LINE__);
|
|
|
|
expected_ports.insert(name);
|
|
|
|
}
|
|
|
|
|
2013-12-31 07:54:06 -06:00
|
|
|
void check_expected(bool check_matched_sign = true)
|
2013-11-10 16:25:04 -06:00
|
|
|
{
|
|
|
|
for (auto ¶ : cell->parameters)
|
|
|
|
if (expected_params.count(para.first) == 0)
|
|
|
|
error(__LINE__);
|
2014-07-26 07:32:50 -05:00
|
|
|
for (auto &conn : cell->connections())
|
2013-11-10 16:25:04 -06:00
|
|
|
if (expected_ports.count(conn.first) == 0)
|
|
|
|
error(__LINE__);
|
2013-12-31 07:54:06 -06:00
|
|
|
|
|
|
|
if (expected_params.count("\\A_SIGNED") != 0 && expected_params.count("\\B_SIGNED") && check_matched_sign) {
|
|
|
|
bool a_is_signed = param("\\A_SIGNED") != 0;
|
|
|
|
bool b_is_signed = param("\\B_SIGNED") != 0;
|
|
|
|
if (a_is_signed != b_is_signed)
|
|
|
|
error(__LINE__);
|
|
|
|
}
|
2013-11-10 16:25:04 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
void check_gate(const char *ports)
|
|
|
|
{
|
|
|
|
if (cell->parameters.size() != 0)
|
|
|
|
error(__LINE__);
|
|
|
|
|
|
|
|
for (const char *p = ports; *p; p++) {
|
|
|
|
char portname[3] = { '\\', *p, 0 };
|
2014-07-31 09:38:54 -05:00
|
|
|
if (!cell->hasPort(portname))
|
2013-11-10 16:25:04 -06:00
|
|
|
error(__LINE__);
|
2014-07-31 09:38:54 -05:00
|
|
|
if (cell->getPort(portname).size() != 1)
|
2013-11-10 16:25:04 -06:00
|
|
|
error(__LINE__);
|
|
|
|
}
|
|
|
|
|
2014-07-26 07:32:50 -05:00
|
|
|
for (auto &conn : cell->connections()) {
|
2014-08-02 12:08:02 -05:00
|
|
|
if (conn.first.size() != 2 || conn.first[0] != '\\')
|
2013-11-10 16:25:04 -06:00
|
|
|
error(__LINE__);
|
2014-08-02 12:08:02 -05:00
|
|
|
if (strchr(ports, conn.first[1]) == NULL)
|
2013-11-10 16:25:04 -06:00
|
|
|
error(__LINE__);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void check()
|
|
|
|
{
|
2014-08-02 11:58:40 -05:00
|
|
|
if (cell->type.substr(0, 1) != "$" || cell->type.substr(0, 3) == "$__" || cell->type.substr(0, 8) == "$paramod" ||
|
2014-07-27 14:12:09 -05:00
|
|
|
cell->type.substr(0, 9) == "$verific$" || cell->type.substr(0, 7) == "$array:" || cell->type.substr(0, 8) == "$extern:")
|
2014-07-21 05:02:55 -05:00
|
|
|
return;
|
|
|
|
|
2014-09-03 19:07:52 -05:00
|
|
|
if (cell->type.in("$not", "$pos", "$neg")) {
|
2014-02-07 10:39:35 -06:00
|
|
|
param_bool("\\A_SIGNED");
|
2013-11-10 16:25:04 -06:00
|
|
|
port("\\A", param("\\A_WIDTH"));
|
|
|
|
port("\\Y", param("\\Y_WIDTH"));
|
|
|
|
check_expected();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-08-14 08:46:51 -05:00
|
|
|
if (cell->type.in("$and", "$or", "$xor", "$xnor")) {
|
2014-02-07 10:39:35 -06:00
|
|
|
param_bool("\\A_SIGNED");
|
|
|
|
param_bool("\\B_SIGNED");
|
2013-11-10 16:25:04 -06:00
|
|
|
port("\\A", param("\\A_WIDTH"));
|
|
|
|
port("\\B", param("\\B_WIDTH"));
|
|
|
|
port("\\Y", param("\\Y_WIDTH"));
|
|
|
|
check_expected();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-08-14 08:46:51 -05:00
|
|
|
if (cell->type.in("$reduce_and", "$reduce_or", "$reduce_xor", "$reduce_xnor", "$reduce_bool")) {
|
2014-02-07 10:39:35 -06:00
|
|
|
param_bool("\\A_SIGNED");
|
2013-11-10 16:25:04 -06:00
|
|
|
port("\\A", param("\\A_WIDTH"));
|
|
|
|
port("\\Y", param("\\Y_WIDTH"));
|
|
|
|
check_expected();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-08-14 08:46:51 -05:00
|
|
|
if (cell->type.in("$shl", "$shr", "$sshl", "$sshr", "$shift", "$shiftx")) {
|
2014-02-07 10:39:35 -06:00
|
|
|
param_bool("\\A_SIGNED");
|
|
|
|
param_bool("\\B_SIGNED");
|
2013-11-10 16:25:04 -06:00
|
|
|
port("\\A", param("\\A_WIDTH"));
|
|
|
|
port("\\B", param("\\B_WIDTH"));
|
|
|
|
port("\\Y", param("\\Y_WIDTH"));
|
2013-12-31 07:54:06 -06:00
|
|
|
check_expected(false);
|
2013-11-10 16:25:04 -06:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-08-14 08:46:51 -05:00
|
|
|
if (cell->type.in("$lt", "$le", "$eq", "$ne", "$eqx", "$nex", "$ge", "$gt")) {
|
2014-02-07 10:39:35 -06:00
|
|
|
param_bool("\\A_SIGNED");
|
|
|
|
param_bool("\\B_SIGNED");
|
2013-11-10 16:25:04 -06:00
|
|
|
port("\\A", param("\\A_WIDTH"));
|
|
|
|
port("\\B", param("\\B_WIDTH"));
|
|
|
|
port("\\Y", param("\\Y_WIDTH"));
|
|
|
|
check_expected();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-08-14 08:46:51 -05:00
|
|
|
if (cell->type.in("$add", "$sub", "$mul", "$div", "$mod", "$pow")) {
|
2014-02-07 10:39:35 -06:00
|
|
|
param_bool("\\A_SIGNED");
|
|
|
|
param_bool("\\B_SIGNED");
|
2013-11-10 16:25:04 -06:00
|
|
|
port("\\A", param("\\A_WIDTH"));
|
|
|
|
port("\\B", param("\\B_WIDTH"));
|
|
|
|
port("\\Y", param("\\Y_WIDTH"));
|
2013-12-31 07:54:06 -06:00
|
|
|
check_expected(cell->type != "$pow");
|
2013-11-10 16:25:04 -06:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-09-08 05:15:39 -05:00
|
|
|
if (cell->type == "$fa") {
|
|
|
|
port("\\A", param("\\WIDTH"));
|
|
|
|
port("\\B", param("\\WIDTH"));
|
|
|
|
port("\\C", param("\\WIDTH"));
|
|
|
|
port("\\X", param("\\WIDTH"));
|
|
|
|
port("\\Y", param("\\WIDTH"));
|
|
|
|
check_expected();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-09-08 06:28:23 -05:00
|
|
|
if (cell->type == "$lcu") {
|
|
|
|
port("\\P", param("\\WIDTH"));
|
|
|
|
port("\\G", param("\\WIDTH"));
|
|
|
|
port("\\CI", 1);
|
|
|
|
port("\\CO", param("\\WIDTH"));
|
|
|
|
check_expected();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-08-30 11:59:05 -05:00
|
|
|
if (cell->type == "$alu") {
|
|
|
|
param_bool("\\A_SIGNED");
|
|
|
|
param_bool("\\B_SIGNED");
|
|
|
|
port("\\A", param("\\A_WIDTH"));
|
|
|
|
port("\\B", param("\\B_WIDTH"));
|
|
|
|
port("\\CI", 1);
|
|
|
|
port("\\BI", 1);
|
|
|
|
port("\\X", param("\\Y_WIDTH"));
|
|
|
|
port("\\Y", param("\\Y_WIDTH"));
|
|
|
|
port("\\CO", param("\\Y_WIDTH"));
|
|
|
|
check_expected();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-09-06 08:47:46 -05:00
|
|
|
if (cell->type == "$macc") {
|
|
|
|
param("\\CONFIG");
|
|
|
|
param("\\CONFIG_WIDTH");
|
|
|
|
port("\\A", param("\\A_WIDTH"));
|
|
|
|
port("\\B", param("\\B_WIDTH"));
|
|
|
|
port("\\Y", param("\\Y_WIDTH"));
|
|
|
|
check_expected();
|
|
|
|
Macc().from_cell(cell);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-11-10 16:25:04 -06:00
|
|
|
if (cell->type == "$logic_not") {
|
2014-02-07 10:39:35 -06:00
|
|
|
param_bool("\\A_SIGNED");
|
2013-11-10 16:25:04 -06:00
|
|
|
port("\\A", param("\\A_WIDTH"));
|
|
|
|
port("\\Y", param("\\Y_WIDTH"));
|
|
|
|
check_expected();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cell->type == "$logic_and" || cell->type == "$logic_or") {
|
2014-02-07 10:39:35 -06:00
|
|
|
param_bool("\\A_SIGNED");
|
|
|
|
param_bool("\\B_SIGNED");
|
2013-11-10 16:25:04 -06:00
|
|
|
port("\\A", param("\\A_WIDTH"));
|
|
|
|
port("\\B", param("\\B_WIDTH"));
|
|
|
|
port("\\Y", param("\\Y_WIDTH"));
|
2013-12-31 07:54:06 -06:00
|
|
|
check_expected(false);
|
2013-11-10 16:25:04 -06:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-02-07 10:44:57 -06:00
|
|
|
if (cell->type == "$slice") {
|
|
|
|
param("\\OFFSET");
|
|
|
|
port("\\A", param("\\A_WIDTH"));
|
|
|
|
port("\\Y", param("\\Y_WIDTH"));
|
|
|
|
if (param("\\OFFSET") + param("\\Y_WIDTH") > param("\\A_WIDTH"))
|
|
|
|
error(__LINE__);
|
|
|
|
check_expected();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cell->type == "$concat") {
|
|
|
|
port("\\A", param("\\A_WIDTH"));
|
|
|
|
port("\\B", param("\\B_WIDTH"));
|
|
|
|
port("\\Y", param("\\A_WIDTH") + param("\\B_WIDTH"));
|
|
|
|
check_expected();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-11-10 16:25:04 -06:00
|
|
|
if (cell->type == "$mux") {
|
|
|
|
port("\\A", param("\\WIDTH"));
|
|
|
|
port("\\B", param("\\WIDTH"));
|
|
|
|
port("\\S", 1);
|
|
|
|
port("\\Y", param("\\WIDTH"));
|
|
|
|
check_expected();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-08-14 04:39:46 -05:00
|
|
|
if (cell->type == "$pmux") {
|
2013-11-10 16:25:04 -06:00
|
|
|
port("\\A", param("\\WIDTH"));
|
|
|
|
port("\\B", param("\\WIDTH") * param("\\S_WIDTH"));
|
|
|
|
port("\\S", param("\\S_WIDTH"));
|
|
|
|
port("\\Y", param("\\WIDTH"));
|
|
|
|
check_expected();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cell->type == "$lut") {
|
|
|
|
param("\\LUT");
|
2014-08-15 07:18:40 -05:00
|
|
|
port("\\A", param("\\WIDTH"));
|
|
|
|
port("\\Y", 1);
|
2013-11-10 16:25:04 -06:00
|
|
|
check_expected();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cell->type == "$sr") {
|
2014-02-07 10:39:35 -06:00
|
|
|
param_bool("\\SET_POLARITY");
|
|
|
|
param_bool("\\CLR_POLARITY");
|
2013-11-10 16:25:04 -06:00
|
|
|
port("\\SET", param("\\WIDTH"));
|
|
|
|
port("\\CLR", param("\\WIDTH"));
|
|
|
|
port("\\Q", param("\\WIDTH"));
|
|
|
|
check_expected();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cell->type == "$dff") {
|
2014-02-07 10:39:35 -06:00
|
|
|
param_bool("\\CLK_POLARITY");
|
2013-11-10 16:25:04 -06:00
|
|
|
port("\\CLK", 1);
|
|
|
|
port("\\D", param("\\WIDTH"));
|
|
|
|
port("\\Q", param("\\WIDTH"));
|
|
|
|
check_expected();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-12-08 03:50:19 -06:00
|
|
|
if (cell->type == "$dffe") {
|
|
|
|
param_bool("\\CLK_POLARITY");
|
|
|
|
param_bool("\\EN_POLARITY");
|
|
|
|
port("\\CLK", 1);
|
|
|
|
port("\\EN", 1);
|
|
|
|
port("\\D", param("\\WIDTH"));
|
|
|
|
port("\\Q", param("\\WIDTH"));
|
|
|
|
check_expected();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-11-10 16:25:04 -06:00
|
|
|
if (cell->type == "$dffsr") {
|
2014-02-07 10:39:35 -06:00
|
|
|
param_bool("\\CLK_POLARITY");
|
|
|
|
param_bool("\\SET_POLARITY");
|
|
|
|
param_bool("\\CLR_POLARITY");
|
2013-11-10 16:25:04 -06:00
|
|
|
port("\\CLK", 1);
|
|
|
|
port("\\SET", param("\\WIDTH"));
|
|
|
|
port("\\CLR", param("\\WIDTH"));
|
|
|
|
port("\\D", param("\\WIDTH"));
|
|
|
|
port("\\Q", param("\\WIDTH"));
|
|
|
|
check_expected();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cell->type == "$adff") {
|
2014-02-07 10:39:35 -06:00
|
|
|
param_bool("\\CLK_POLARITY");
|
|
|
|
param_bool("\\ARST_POLARITY");
|
2014-02-08 12:13:49 -06:00
|
|
|
param_bits("\\ARST_VALUE", param("\\WIDTH"));
|
2013-11-10 16:25:04 -06:00
|
|
|
port("\\CLK", 1);
|
|
|
|
port("\\ARST", 1);
|
|
|
|
port("\\D", param("\\WIDTH"));
|
|
|
|
port("\\Q", param("\\WIDTH"));
|
|
|
|
check_expected();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cell->type == "$dlatch") {
|
2014-02-07 10:39:35 -06:00
|
|
|
param_bool("\\EN_POLARITY");
|
2013-11-10 16:25:04 -06:00
|
|
|
port("\\EN", 1);
|
|
|
|
port("\\D", param("\\WIDTH"));
|
|
|
|
port("\\Q", param("\\WIDTH"));
|
|
|
|
check_expected();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-03-31 07:14:40 -05:00
|
|
|
if (cell->type == "$dlatchsr") {
|
|
|
|
param_bool("\\EN_POLARITY");
|
|
|
|
param_bool("\\SET_POLARITY");
|
|
|
|
param_bool("\\CLR_POLARITY");
|
|
|
|
port("\\EN", 1);
|
|
|
|
port("\\SET", param("\\WIDTH"));
|
|
|
|
port("\\CLR", param("\\WIDTH"));
|
|
|
|
port("\\D", param("\\WIDTH"));
|
|
|
|
port("\\Q", param("\\WIDTH"));
|
|
|
|
check_expected();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-11-10 16:25:04 -06:00
|
|
|
if (cell->type == "$fsm") {
|
|
|
|
param("\\NAME");
|
2014-02-07 10:39:35 -06:00
|
|
|
param_bool("\\CLK_POLARITY");
|
|
|
|
param_bool("\\ARST_POLARITY");
|
2013-11-10 16:25:04 -06:00
|
|
|
param("\\STATE_BITS");
|
|
|
|
param("\\STATE_NUM");
|
|
|
|
param("\\STATE_NUM_LOG2");
|
|
|
|
param("\\STATE_RST");
|
2014-02-08 12:13:49 -06:00
|
|
|
param_bits("\\STATE_TABLE", param("\\STATE_BITS") * param("\\STATE_NUM"));
|
2013-11-10 16:25:04 -06:00
|
|
|
param("\\TRANS_NUM");
|
2014-02-08 12:13:49 -06:00
|
|
|
param_bits("\\TRANS_TABLE", param("\\TRANS_NUM") * (2*param("\\STATE_NUM_LOG2") + param("\\CTRL_IN_WIDTH") + param("\\CTRL_OUT_WIDTH")));
|
2013-11-10 16:25:04 -06:00
|
|
|
port("\\CLK", 1);
|
|
|
|
port("\\ARST", 1);
|
|
|
|
port("\\CTRL_IN", param("\\CTRL_IN_WIDTH"));
|
|
|
|
port("\\CTRL_OUT", param("\\CTRL_OUT_WIDTH"));
|
|
|
|
check_expected();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cell->type == "$memrd") {
|
|
|
|
param("\\MEMID");
|
2014-02-07 10:39:35 -06:00
|
|
|
param_bool("\\CLK_ENABLE");
|
|
|
|
param_bool("\\CLK_POLARITY");
|
|
|
|
param_bool("\\TRANSPARENT");
|
2013-11-10 16:25:04 -06:00
|
|
|
port("\\CLK", 1);
|
2015-09-25 05:23:11 -05:00
|
|
|
port("\\EN", 1);
|
2013-11-10 16:25:04 -06:00
|
|
|
port("\\ADDR", param("\\ABITS"));
|
|
|
|
port("\\DATA", param("\\WIDTH"));
|
|
|
|
check_expected();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (cell->type == "$memwr") {
|
|
|
|
param("\\MEMID");
|
2014-02-07 10:39:35 -06:00
|
|
|
param_bool("\\CLK_ENABLE");
|
|
|
|
param_bool("\\CLK_POLARITY");
|
2014-01-02 17:22:17 -06:00
|
|
|
param("\\PRIORITY");
|
2013-11-10 16:25:04 -06:00
|
|
|
port("\\CLK", 1);
|
2014-07-16 04:38:02 -05:00
|
|
|
port("\\EN", param("\\WIDTH"));
|
2013-11-10 16:25:04 -06:00
|
|
|
port("\\ADDR", param("\\ABITS"));
|
|
|
|
port("\\DATA", param("\\WIDTH"));
|
|
|
|
check_expected();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-02-14 03:23:03 -06:00
|
|
|
if (cell->type == "$meminit") {
|
|
|
|
param("\\MEMID");
|
|
|
|
param("\\PRIORITY");
|
|
|
|
port("\\ADDR", param("\\ABITS"));
|
2015-07-31 03:40:09 -05:00
|
|
|
port("\\DATA", param("\\WIDTH") * param("\\WORDS"));
|
2015-02-14 03:23:03 -06:00
|
|
|
check_expected();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2013-11-10 16:25:04 -06:00
|
|
|
if (cell->type == "$mem") {
|
|
|
|
param("\\MEMID");
|
|
|
|
param("\\SIZE");
|
|
|
|
param("\\OFFSET");
|
2015-02-14 05:55:03 -06:00
|
|
|
param("\\INIT");
|
2015-04-05 11:04:19 -05:00
|
|
|
param_bits("\\RD_CLK_ENABLE", std::max(1, param("\\RD_PORTS")));
|
|
|
|
param_bits("\\RD_CLK_POLARITY", std::max(1, param("\\RD_PORTS")));
|
|
|
|
param_bits("\\RD_TRANSPARENT", std::max(1, param("\\RD_PORTS")));
|
|
|
|
param_bits("\\WR_CLK_ENABLE", std::max(1, param("\\WR_PORTS")));
|
|
|
|
param_bits("\\WR_CLK_POLARITY", std::max(1, param("\\WR_PORTS")));
|
2013-11-10 16:25:04 -06:00
|
|
|
port("\\RD_CLK", param("\\RD_PORTS"));
|
2015-09-25 05:23:11 -05:00
|
|
|
port("\\RD_EN", param("\\RD_PORTS"));
|
2013-11-10 16:25:04 -06:00
|
|
|
port("\\RD_ADDR", param("\\RD_PORTS") * param("\\ABITS"));
|
|
|
|
port("\\RD_DATA", param("\\RD_PORTS") * param("\\WIDTH"));
|
|
|
|
port("\\WR_CLK", param("\\WR_PORTS"));
|
2014-07-16 04:38:02 -05:00
|
|
|
port("\\WR_EN", param("\\WR_PORTS") * param("\\WIDTH"));
|
2013-11-10 16:25:04 -06:00
|
|
|
port("\\WR_ADDR", param("\\WR_PORTS") * param("\\ABITS"));
|
|
|
|
port("\\WR_DATA", param("\\WR_PORTS") * param("\\WIDTH"));
|
|
|
|
check_expected();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-08-16 05:54:52 -05:00
|
|
|
if (cell->type == "$tribuf") {
|
|
|
|
port("\\A", param("\\WIDTH"));
|
|
|
|
port("\\Y", param("\\WIDTH"));
|
|
|
|
port("\\EN", 1);
|
|
|
|
check_expected();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-01-19 07:03:40 -06:00
|
|
|
if (cell->type == "$assert") {
|
|
|
|
port("\\A", 1);
|
|
|
|
port("\\EN", 1);
|
|
|
|
check_expected();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-02-26 11:04:10 -06:00
|
|
|
if (cell->type == "$assume") {
|
|
|
|
port("\\A", 1);
|
|
|
|
port("\\EN", 1);
|
|
|
|
check_expected();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-01-19 04:55:05 -06:00
|
|
|
if (cell->type == "$equiv") {
|
|
|
|
port("\\A", 1);
|
|
|
|
port("\\B", 1);
|
|
|
|
port("\\Y", 1);
|
|
|
|
check_expected();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-10-03 03:12:28 -05:00
|
|
|
if (cell->type == "$_BUF_") { check_gate("AY"); return; }
|
2014-08-16 11:18:30 -05:00
|
|
|
if (cell->type == "$_NOT_") { check_gate("AY"); return; }
|
|
|
|
if (cell->type == "$_AND_") { check_gate("ABY"); return; }
|
|
|
|
if (cell->type == "$_NAND_") { check_gate("ABY"); return; }
|
|
|
|
if (cell->type == "$_OR_") { check_gate("ABY"); return; }
|
|
|
|
if (cell->type == "$_NOR_") { check_gate("ABY"); return; }
|
|
|
|
if (cell->type == "$_XOR_") { check_gate("ABY"); return; }
|
|
|
|
if (cell->type == "$_XNOR_") { check_gate("ABY"); return; }
|
|
|
|
if (cell->type == "$_MUX_") { check_gate("ABSY"); return; }
|
|
|
|
if (cell->type == "$_AOI3_") { check_gate("ABCY"); return; }
|
|
|
|
if (cell->type == "$_OAI3_") { check_gate("ABCY"); return; }
|
|
|
|
if (cell->type == "$_AOI4_") { check_gate("ABCDY"); return; }
|
|
|
|
if (cell->type == "$_OAI4_") { check_gate("ABCDY"); return; }
|
2013-11-10 16:25:04 -06:00
|
|
|
|
2015-08-16 05:54:52 -05:00
|
|
|
if (cell->type == "$_TBUF_") { check_gate("AYE"); return; }
|
|
|
|
|
2015-04-05 02:45:14 -05:00
|
|
|
if (cell->type == "$_MUX4_") { check_gate("ABCDSTY"); return; }
|
|
|
|
if (cell->type == "$_MUX8_") { check_gate("ABCDEFGHSTUY"); return; }
|
|
|
|
if (cell->type == "$_MUX16_") { check_gate("ABCDEFGHIJKLMNOPSTUVY"); return; }
|
|
|
|
|
2013-11-10 16:25:04 -06:00
|
|
|
if (cell->type == "$_SR_NN_") { check_gate("SRQ"); return; }
|
|
|
|
if (cell->type == "$_SR_NP_") { check_gate("SRQ"); return; }
|
|
|
|
if (cell->type == "$_SR_PN_") { check_gate("SRQ"); return; }
|
|
|
|
if (cell->type == "$_SR_PP_") { check_gate("SRQ"); return; }
|
|
|
|
|
|
|
|
if (cell->type == "$_DFF_N_") { check_gate("DQC"); return; }
|
|
|
|
if (cell->type == "$_DFF_P_") { check_gate("DQC"); return; }
|
|
|
|
|
2014-12-08 03:43:38 -06:00
|
|
|
if (cell->type == "$_DFFE_NN_") { check_gate("DQCE"); return; }
|
|
|
|
if (cell->type == "$_DFFE_NP_") { check_gate("DQCE"); return; }
|
|
|
|
if (cell->type == "$_DFFE_PN_") { check_gate("DQCE"); return; }
|
|
|
|
if (cell->type == "$_DFFE_PP_") { check_gate("DQCE"); return; }
|
|
|
|
|
2013-11-10 16:25:04 -06:00
|
|
|
if (cell->type == "$_DFF_NN0_") { check_gate("DQCR"); return; }
|
|
|
|
if (cell->type == "$_DFF_NN1_") { check_gate("DQCR"); return; }
|
|
|
|
if (cell->type == "$_DFF_NP0_") { check_gate("DQCR"); return; }
|
|
|
|
if (cell->type == "$_DFF_NP1_") { check_gate("DQCR"); return; }
|
|
|
|
if (cell->type == "$_DFF_PN0_") { check_gate("DQCR"); return; }
|
|
|
|
if (cell->type == "$_DFF_PN1_") { check_gate("DQCR"); return; }
|
|
|
|
if (cell->type == "$_DFF_PP0_") { check_gate("DQCR"); return; }
|
|
|
|
if (cell->type == "$_DFF_PP1_") { check_gate("DQCR"); return; }
|
|
|
|
|
|
|
|
if (cell->type == "$_DFFSR_NNN_") { check_gate("CSRDQ"); return; }
|
|
|
|
if (cell->type == "$_DFFSR_NNP_") { check_gate("CSRDQ"); return; }
|
|
|
|
if (cell->type == "$_DFFSR_NPN_") { check_gate("CSRDQ"); return; }
|
|
|
|
if (cell->type == "$_DFFSR_NPP_") { check_gate("CSRDQ"); return; }
|
|
|
|
if (cell->type == "$_DFFSR_PNN_") { check_gate("CSRDQ"); return; }
|
|
|
|
if (cell->type == "$_DFFSR_PNP_") { check_gate("CSRDQ"); return; }
|
|
|
|
if (cell->type == "$_DFFSR_PPN_") { check_gate("CSRDQ"); return; }
|
|
|
|
if (cell->type == "$_DFFSR_PPP_") { check_gate("CSRDQ"); return; }
|
|
|
|
|
|
|
|
if (cell->type == "$_DLATCH_N_") { check_gate("EDQ"); return; }
|
|
|
|
if (cell->type == "$_DLATCH_P_") { check_gate("EDQ"); return; }
|
|
|
|
|
2014-03-31 07:14:40 -05:00
|
|
|
if (cell->type == "$_DLATCHSR_NNN_") { check_gate("ESRDQ"); return; }
|
|
|
|
if (cell->type == "$_DLATCHSR_NNP_") { check_gate("ESRDQ"); return; }
|
|
|
|
if (cell->type == "$_DLATCHSR_NPN_") { check_gate("ESRDQ"); return; }
|
|
|
|
if (cell->type == "$_DLATCHSR_NPP_") { check_gate("ESRDQ"); return; }
|
|
|
|
if (cell->type == "$_DLATCHSR_PNN_") { check_gate("ESRDQ"); return; }
|
|
|
|
if (cell->type == "$_DLATCHSR_PNP_") { check_gate("ESRDQ"); return; }
|
|
|
|
if (cell->type == "$_DLATCHSR_PPN_") { check_gate("ESRDQ"); return; }
|
|
|
|
if (cell->type == "$_DLATCHSR_PPP_") { check_gate("ESRDQ"); return; }
|
|
|
|
|
2013-11-10 16:25:04 -06:00
|
|
|
error(__LINE__);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2015-01-23 17:13:27 -06:00
|
|
|
void RTLIL::Module::sort()
|
|
|
|
{
|
|
|
|
wires_.sort(sort_by_id_str());
|
|
|
|
cells_.sort(sort_by_id_str());
|
|
|
|
avail_parameters.sort(sort_by_id_str());
|
|
|
|
memories.sort(sort_by_id_str());
|
|
|
|
processes.sort(sort_by_id_str());
|
|
|
|
for (auto &it : cells_)
|
|
|
|
it.second->sort();
|
|
|
|
for (auto &it : wires_)
|
|
|
|
it.second->attributes.sort(sort_by_id_str());
|
|
|
|
for (auto &it : memories)
|
|
|
|
it.second->attributes.sort(sort_by_id_str());
|
|
|
|
}
|
|
|
|
|
2013-01-05 04:13:26 -06:00
|
|
|
void RTLIL::Module::check()
|
|
|
|
{
|
|
|
|
#ifndef NDEBUG
|
2014-08-02 13:54:30 -05:00
|
|
|
std::vector<bool> ports_declared;
|
2014-07-26 18:49:51 -05:00
|
|
|
for (auto &it : wires_) {
|
2014-07-31 07:11:39 -05:00
|
|
|
log_assert(this == it.second->module);
|
2014-07-28 04:08:55 -05:00
|
|
|
log_assert(it.first == it.second->name);
|
2014-08-02 11:58:40 -05:00
|
|
|
log_assert(!it.first.empty());
|
2014-07-28 04:08:55 -05:00
|
|
|
log_assert(it.second->width >= 0);
|
|
|
|
log_assert(it.second->port_id >= 0);
|
2014-08-02 13:54:30 -05:00
|
|
|
for (auto &it2 : it.second->attributes)
|
2014-08-02 11:58:40 -05:00
|
|
|
log_assert(!it2.first.empty());
|
2014-08-02 13:54:30 -05:00
|
|
|
if (it.second->port_id) {
|
2014-10-10 09:59:44 -05:00
|
|
|
log_assert(GetSize(ports) >= it.second->port_id);
|
2014-08-14 09:13:42 -05:00
|
|
|
log_assert(ports.at(it.second->port_id-1) == it.first);
|
2014-08-02 13:54:30 -05:00
|
|
|
log_assert(it.second->port_input || it.second->port_output);
|
2014-10-10 09:59:44 -05:00
|
|
|
if (GetSize(ports_declared) < it.second->port_id)
|
2014-08-02 13:54:30 -05:00
|
|
|
ports_declared.resize(it.second->port_id);
|
|
|
|
log_assert(ports_declared[it.second->port_id-1] == false);
|
|
|
|
ports_declared[it.second->port_id-1] = true;
|
|
|
|
} else
|
|
|
|
log_assert(!it.second->port_input && !it.second->port_output);
|
2013-01-05 04:13:26 -06:00
|
|
|
}
|
2014-08-02 13:54:30 -05:00
|
|
|
for (auto port_declared : ports_declared)
|
|
|
|
log_assert(port_declared == true);
|
2014-10-10 09:59:44 -05:00
|
|
|
log_assert(GetSize(ports) == GetSize(ports_declared));
|
2013-01-05 04:13:26 -06:00
|
|
|
|
|
|
|
for (auto &it : memories) {
|
2014-07-28 04:08:55 -05:00
|
|
|
log_assert(it.first == it.second->name);
|
2014-08-02 11:58:40 -05:00
|
|
|
log_assert(!it.first.empty());
|
2014-07-28 04:08:55 -05:00
|
|
|
log_assert(it.second->width >= 0);
|
|
|
|
log_assert(it.second->size >= 0);
|
2014-08-02 13:54:30 -05:00
|
|
|
for (auto &it2 : it.second->attributes)
|
2014-08-02 11:58:40 -05:00
|
|
|
log_assert(!it2.first.empty());
|
2013-01-05 04:13:26 -06:00
|
|
|
}
|
|
|
|
|
2014-07-26 18:51:45 -05:00
|
|
|
for (auto &it : cells_) {
|
2014-07-31 07:11:39 -05:00
|
|
|
log_assert(this == it.second->module);
|
2014-07-28 04:08:55 -05:00
|
|
|
log_assert(it.first == it.second->name);
|
2014-08-02 11:58:40 -05:00
|
|
|
log_assert(!it.first.empty());
|
|
|
|
log_assert(!it.second->type.empty());
|
2014-07-26 07:32:50 -05:00
|
|
|
for (auto &it2 : it.second->connections()) {
|
2014-08-02 11:58:40 -05:00
|
|
|
log_assert(!it2.first.empty());
|
2013-01-05 04:13:26 -06:00
|
|
|
it2.second.check();
|
|
|
|
}
|
2014-08-02 13:54:30 -05:00
|
|
|
for (auto &it2 : it.second->attributes)
|
2014-08-02 11:58:40 -05:00
|
|
|
log_assert(!it2.first.empty());
|
2014-08-02 13:54:30 -05:00
|
|
|
for (auto &it2 : it.second->parameters)
|
2014-08-02 11:58:40 -05:00
|
|
|
log_assert(!it2.first.empty());
|
2014-07-21 05:02:55 -05:00
|
|
|
InternalCellChecker checker(this, it.second);
|
|
|
|
checker.check();
|
2013-01-05 04:13:26 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
for (auto &it : processes) {
|
2014-07-28 04:08:55 -05:00
|
|
|
log_assert(it.first == it.second->name);
|
2014-08-02 11:58:40 -05:00
|
|
|
log_assert(!it.first.empty());
|
2013-01-05 04:13:26 -06:00
|
|
|
// FIXME: More checks here..
|
|
|
|
}
|
|
|
|
|
2014-07-26 04:58:03 -05:00
|
|
|
for (auto &it : connections_) {
|
2014-07-28 04:08:55 -05:00
|
|
|
log_assert(it.first.size() == it.second.size());
|
2015-02-07 17:01:51 -06:00
|
|
|
log_assert(!it.first.has_const());
|
2013-01-05 04:13:26 -06:00
|
|
|
it.first.check();
|
|
|
|
it.second.check();
|
|
|
|
}
|
|
|
|
|
2014-08-02 13:54:30 -05:00
|
|
|
for (auto &it : attributes)
|
2014-08-02 11:58:40 -05:00
|
|
|
log_assert(!it.first.empty());
|
2013-01-05 04:13:26 -06:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void RTLIL::Module::optimize()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2013-07-27 07:27:51 -05:00
|
|
|
void RTLIL::Module::cloneInto(RTLIL::Module *new_mod) const
|
|
|
|
{
|
2014-07-27 03:13:22 -05:00
|
|
|
log_assert(new_mod->refcount_wires_ == 0);
|
|
|
|
log_assert(new_mod->refcount_cells_ == 0);
|
|
|
|
|
2015-06-08 07:49:34 -05:00
|
|
|
new_mod->avail_parameters = avail_parameters;
|
|
|
|
|
2015-01-21 17:59:58 -06:00
|
|
|
for (auto &conn : connections_)
|
|
|
|
new_mod->connect(conn);
|
|
|
|
|
|
|
|
for (auto &attr : attributes)
|
|
|
|
new_mod->attributes[attr.first] = attr.second;
|
2013-07-27 07:27:51 -05:00
|
|
|
|
2014-07-26 18:49:51 -05:00
|
|
|
for (auto &it : wires_)
|
2014-07-26 14:16:05 -05:00
|
|
|
new_mod->addWire(it.first, it.second);
|
2013-07-27 07:27:51 -05:00
|
|
|
|
|
|
|
for (auto &it : memories)
|
|
|
|
new_mod->memories[it.first] = new RTLIL::Memory(*it.second);
|
|
|
|
|
2014-07-26 18:51:45 -05:00
|
|
|
for (auto &it : cells_)
|
2014-07-25 17:38:44 -05:00
|
|
|
new_mod->addCell(it.first, it.second);
|
2013-07-27 07:27:51 -05:00
|
|
|
|
|
|
|
for (auto &it : processes)
|
|
|
|
new_mod->processes[it.first] = it.second->clone();
|
|
|
|
|
|
|
|
struct RewriteSigSpecWorker
|
|
|
|
{
|
|
|
|
RTLIL::Module *mod;
|
|
|
|
void operator()(RTLIL::SigSpec &sig)
|
|
|
|
{
|
2014-07-22 16:50:21 -05:00
|
|
|
std::vector<RTLIL::SigChunk> chunks = sig.chunks();
|
|
|
|
for (auto &c : chunks)
|
2013-07-27 07:27:51 -05:00
|
|
|
if (c.wire != NULL)
|
2014-07-26 18:49:51 -05:00
|
|
|
c.wire = mod->wires_.at(c.wire->name);
|
2014-07-22 16:50:21 -05:00
|
|
|
sig = chunks;
|
2013-07-27 07:27:51 -05:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
RewriteSigSpecWorker rewriteSigSpecWorker;
|
|
|
|
rewriteSigSpecWorker.mod = new_mod;
|
|
|
|
new_mod->rewrite_sigspecs(rewriteSigSpecWorker);
|
2014-08-14 09:13:42 -05:00
|
|
|
new_mod->fixup_ports();
|
2013-07-27 07:27:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
RTLIL::Module *RTLIL::Module::clone() const
|
|
|
|
{
|
|
|
|
RTLIL::Module *new_mod = new RTLIL::Module;
|
2014-07-27 14:12:09 -05:00
|
|
|
new_mod->name = name;
|
2013-07-27 07:27:51 -05:00
|
|
|
cloneInto(new_mod);
|
|
|
|
return new_mod;
|
|
|
|
}
|
|
|
|
|
2014-07-31 07:11:39 -05:00
|
|
|
bool RTLIL::Module::has_memories() const
|
|
|
|
{
|
|
|
|
return !memories.empty();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool RTLIL::Module::has_processes() const
|
|
|
|
{
|
|
|
|
return !processes.empty();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool RTLIL::Module::has_memories_warn() const
|
|
|
|
{
|
|
|
|
if (!memories.empty())
|
2014-11-09 03:44:23 -06:00
|
|
|
log_warning("Ignoring module %s because it contains memories (run 'memory' command first).\n", log_id(this));
|
2014-07-31 07:11:39 -05:00
|
|
|
return !memories.empty();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool RTLIL::Module::has_processes_warn() const
|
|
|
|
{
|
|
|
|
if (!processes.empty())
|
2014-11-09 03:44:23 -06:00
|
|
|
log_warning("Ignoring module %s because it contains processes (run 'proc' command first).\n", log_id(this));
|
2014-07-31 07:11:39 -05:00
|
|
|
return !processes.empty();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<RTLIL::Wire*> RTLIL::Module::selected_wires() const
|
|
|
|
{
|
|
|
|
std::vector<RTLIL::Wire*> result;
|
|
|
|
result.reserve(wires_.size());
|
|
|
|
for (auto &it : wires_)
|
|
|
|
if (design->selected(this, it.second))
|
|
|
|
result.push_back(it.second);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<RTLIL::Cell*> RTLIL::Module::selected_cells() const
|
|
|
|
{
|
|
|
|
std::vector<RTLIL::Cell*> result;
|
|
|
|
result.reserve(wires_.size());
|
|
|
|
for (auto &it : cells_)
|
|
|
|
if (design->selected(this, it.second))
|
|
|
|
result.push_back(it.second);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2013-06-18 10:11:13 -05:00
|
|
|
void RTLIL::Module::add(RTLIL::Wire *wire)
|
|
|
|
{
|
2014-07-27 03:13:22 -05:00
|
|
|
log_assert(!wire->name.empty());
|
|
|
|
log_assert(count_id(wire->name) == 0);
|
|
|
|
log_assert(refcount_wires_ == 0);
|
2014-07-26 18:49:51 -05:00
|
|
|
wires_[wire->name] = wire;
|
2014-07-31 07:11:39 -05:00
|
|
|
wire->module = this;
|
2013-01-05 04:13:26 -06:00
|
|
|
}
|
|
|
|
|
2013-06-18 10:11:13 -05:00
|
|
|
void RTLIL::Module::add(RTLIL::Cell *cell)
|
|
|
|
{
|
2014-07-27 03:13:22 -05:00
|
|
|
log_assert(!cell->name.empty());
|
|
|
|
log_assert(count_id(cell->name) == 0);
|
|
|
|
log_assert(refcount_cells_ == 0);
|
2014-07-26 18:51:45 -05:00
|
|
|
cells_[cell->name] = cell;
|
2014-07-31 07:11:39 -05:00
|
|
|
cell->module = this;
|
2013-01-05 04:13:26 -06:00
|
|
|
}
|
|
|
|
|
2014-07-26 13:12:50 -05:00
|
|
|
namespace {
|
|
|
|
struct DeleteWireWorker
|
|
|
|
{
|
|
|
|
RTLIL::Module *module;
|
2014-12-28 10:51:16 -06:00
|
|
|
const pool<RTLIL::Wire*> *wires_p;
|
2014-07-26 13:12:50 -05:00
|
|
|
|
|
|
|
void operator()(RTLIL::SigSpec &sig) {
|
|
|
|
std::vector<RTLIL::SigChunk> chunks = sig;
|
|
|
|
for (auto &c : chunks)
|
|
|
|
if (c.wire != NULL && wires_p->count(c.wire)) {
|
|
|
|
c.wire = module->addWire(NEW_ID, c.width);
|
|
|
|
c.offset = 0;
|
|
|
|
}
|
|
|
|
sig = chunks;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2014-12-28 10:51:16 -06:00
|
|
|
void RTLIL::Module::remove(const pool<RTLIL::Wire*> &wires)
|
2014-07-26 13:12:50 -05:00
|
|
|
{
|
2014-07-27 03:13:22 -05:00
|
|
|
log_assert(refcount_wires_ == 0);
|
|
|
|
|
2014-07-26 13:12:50 -05:00
|
|
|
DeleteWireWorker delete_wire_worker;
|
|
|
|
delete_wire_worker.module = this;
|
|
|
|
delete_wire_worker.wires_p = &wires;
|
|
|
|
rewrite_sigspecs(delete_wire_worker);
|
|
|
|
|
|
|
|
for (auto &it : wires) {
|
2014-07-27 03:13:22 -05:00
|
|
|
log_assert(wires_.count(it->name) != 0);
|
|
|
|
wires_.erase(it->name);
|
2014-07-26 13:12:50 -05:00
|
|
|
delete it;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-21 05:02:55 -05:00
|
|
|
void RTLIL::Module::remove(RTLIL::Cell *cell)
|
|
|
|
{
|
2014-09-14 10:04:39 -05:00
|
|
|
while (!cell->connections_.empty())
|
|
|
|
cell->unsetPort(cell->connections_.begin()->first);
|
|
|
|
|
2014-07-27 03:13:22 -05:00
|
|
|
log_assert(cells_.count(cell->name) != 0);
|
|
|
|
log_assert(refcount_cells_ == 0);
|
2014-07-26 18:51:45 -05:00
|
|
|
cells_.erase(cell->name);
|
2014-07-21 05:02:55 -05:00
|
|
|
delete cell;
|
|
|
|
}
|
|
|
|
|
2014-07-25 08:05:18 -05:00
|
|
|
void RTLIL::Module::rename(RTLIL::Wire *wire, RTLIL::IdString new_name)
|
|
|
|
{
|
2014-07-28 04:08:55 -05:00
|
|
|
log_assert(wires_[wire->name] == wire);
|
2014-07-27 03:13:22 -05:00
|
|
|
log_assert(refcount_wires_ == 0);
|
2014-07-26 18:49:51 -05:00
|
|
|
wires_.erase(wire->name);
|
2014-07-25 08:05:18 -05:00
|
|
|
wire->name = new_name;
|
|
|
|
add(wire);
|
|
|
|
}
|
|
|
|
|
|
|
|
void RTLIL::Module::rename(RTLIL::Cell *cell, RTLIL::IdString new_name)
|
|
|
|
{
|
2014-07-28 04:08:55 -05:00
|
|
|
log_assert(cells_[cell->name] == cell);
|
2014-07-27 03:13:22 -05:00
|
|
|
log_assert(refcount_wires_ == 0);
|
2014-07-26 18:51:45 -05:00
|
|
|
cells_.erase(cell->name);
|
2014-07-25 08:05:18 -05:00
|
|
|
cell->name = new_name;
|
|
|
|
add(cell);
|
|
|
|
}
|
|
|
|
|
|
|
|
void RTLIL::Module::rename(RTLIL::IdString old_name, RTLIL::IdString new_name)
|
|
|
|
{
|
2014-07-28 04:08:55 -05:00
|
|
|
log_assert(count_id(old_name) != 0);
|
2014-07-26 18:49:51 -05:00
|
|
|
if (wires_.count(old_name))
|
|
|
|
rename(wires_.at(old_name), new_name);
|
2014-07-26 18:51:45 -05:00
|
|
|
else if (cells_.count(old_name))
|
|
|
|
rename(cells_.at(old_name), new_name);
|
2014-07-25 08:05:18 -05:00
|
|
|
else
|
|
|
|
log_abort();
|
|
|
|
}
|
|
|
|
|
2014-08-05 07:47:03 -05:00
|
|
|
void RTLIL::Module::swap_names(RTLIL::Wire *w1, RTLIL::Wire *w2)
|
|
|
|
{
|
|
|
|
log_assert(wires_[w1->name] == w1);
|
|
|
|
log_assert(wires_[w2->name] == w2);
|
|
|
|
log_assert(refcount_wires_ == 0);
|
|
|
|
|
|
|
|
wires_.erase(w1->name);
|
|
|
|
wires_.erase(w2->name);
|
|
|
|
|
|
|
|
std::swap(w1->name, w2->name);
|
|
|
|
|
|
|
|
wires_[w1->name] = w1;
|
|
|
|
wires_[w2->name] = w2;
|
|
|
|
}
|
|
|
|
|
|
|
|
void RTLIL::Module::swap_names(RTLIL::Cell *c1, RTLIL::Cell *c2)
|
|
|
|
{
|
|
|
|
log_assert(cells_[c1->name] == c1);
|
|
|
|
log_assert(cells_[c2->name] == c2);
|
|
|
|
log_assert(refcount_cells_ == 0);
|
|
|
|
|
|
|
|
cells_.erase(c1->name);
|
|
|
|
cells_.erase(c2->name);
|
|
|
|
|
|
|
|
std::swap(c1->name, c2->name);
|
|
|
|
|
|
|
|
cells_[c1->name] = c1;
|
|
|
|
cells_[c2->name] = c2;
|
|
|
|
}
|
|
|
|
|
2014-08-16 16:50:36 -05:00
|
|
|
RTLIL::IdString RTLIL::Module::uniquify(RTLIL::IdString name)
|
|
|
|
{
|
|
|
|
int index = 0;
|
|
|
|
return uniquify(name, index);
|
|
|
|
}
|
|
|
|
|
|
|
|
RTLIL::IdString RTLIL::Module::uniquify(RTLIL::IdString name, int &index)
|
|
|
|
{
|
|
|
|
if (index == 0) {
|
|
|
|
if (count_id(name) == 0)
|
|
|
|
return name;
|
|
|
|
index++;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (1) {
|
|
|
|
RTLIL::IdString new_name = stringf("%s_%d", name.c_str(), index);
|
|
|
|
if (count_id(new_name) == 0)
|
|
|
|
return new_name;
|
|
|
|
index++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-06-18 10:11:13 -05:00
|
|
|
static bool fixup_ports_compare(const RTLIL::Wire *a, const RTLIL::Wire *b)
|
|
|
|
{
|
|
|
|
if (a->port_id && !b->port_id)
|
|
|
|
return true;
|
|
|
|
if (!a->port_id && b->port_id)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
if (a->port_id == b->port_id)
|
|
|
|
return a->name < b->name;
|
|
|
|
return a->port_id < b->port_id;
|
|
|
|
}
|
|
|
|
|
2014-07-26 07:31:47 -05:00
|
|
|
void RTLIL::Module::connect(const RTLIL::SigSig &conn)
|
|
|
|
{
|
2014-07-31 07:34:12 -05:00
|
|
|
for (auto mon : monitors)
|
|
|
|
mon->notify_connect(this, conn);
|
|
|
|
|
|
|
|
if (design)
|
|
|
|
for (auto mon : design->monitors)
|
|
|
|
mon->notify_connect(this, conn);
|
|
|
|
|
2014-12-29 06:33:33 -06:00
|
|
|
if (yosys_xtrace) {
|
|
|
|
log("#X# Connect (SigSig) in %s: %s = %s (%d bits)\n", log_id(this), log_signal(conn.first), log_signal(conn.second), GetSize(conn.first));
|
|
|
|
log_backtrace("-X- ", yosys_xtrace-1);
|
|
|
|
}
|
|
|
|
|
2014-07-26 07:31:47 -05:00
|
|
|
connections_.push_back(conn);
|
|
|
|
}
|
|
|
|
|
2014-07-26 04:58:03 -05:00
|
|
|
void RTLIL::Module::connect(const RTLIL::SigSpec &lhs, const RTLIL::SigSpec &rhs)
|
|
|
|
{
|
2014-07-31 07:34:12 -05:00
|
|
|
connect(RTLIL::SigSig(lhs, rhs));
|
|
|
|
}
|
|
|
|
|
|
|
|
void RTLIL::Module::new_connections(const std::vector<RTLIL::SigSig> &new_conn)
|
|
|
|
{
|
|
|
|
for (auto mon : monitors)
|
2014-08-01 09:53:15 -05:00
|
|
|
mon->notify_connect(this, new_conn);
|
2014-07-31 07:34:12 -05:00
|
|
|
|
|
|
|
if (design)
|
|
|
|
for (auto mon : design->monitors)
|
2014-08-01 09:53:15 -05:00
|
|
|
mon->notify_connect(this, new_conn);
|
2014-07-31 07:34:12 -05:00
|
|
|
|
2014-12-29 06:33:33 -06:00
|
|
|
if (yosys_xtrace) {
|
|
|
|
log("#X# New connections vector in %s:\n", log_id(this));
|
|
|
|
for (auto &conn: new_conn)
|
|
|
|
log("#X# %s = %s (%d bits)\n", log_signal(conn.first), log_signal(conn.second), GetSize(conn.first));
|
|
|
|
log_backtrace("-X- ", yosys_xtrace-1);
|
|
|
|
}
|
|
|
|
|
2014-07-31 07:34:12 -05:00
|
|
|
connections_ = new_conn;
|
2014-07-26 04:58:03 -05:00
|
|
|
}
|
|
|
|
|
2014-07-26 08:57:27 -05:00
|
|
|
const std::vector<RTLIL::SigSig> &RTLIL::Module::connections() const
|
2014-07-26 07:38:33 -05:00
|
|
|
{
|
|
|
|
return connections_;
|
|
|
|
}
|
|
|
|
|
2013-06-18 10:11:13 -05:00
|
|
|
void RTLIL::Module::fixup_ports()
|
|
|
|
{
|
|
|
|
std::vector<RTLIL::Wire*> all_ports;
|
|
|
|
|
2014-07-26 18:49:51 -05:00
|
|
|
for (auto &w : wires_)
|
2013-06-18 10:11:13 -05:00
|
|
|
if (w.second->port_input || w.second->port_output)
|
|
|
|
all_ports.push_back(w.second);
|
|
|
|
else
|
|
|
|
w.second->port_id = 0;
|
|
|
|
|
|
|
|
std::sort(all_ports.begin(), all_ports.end(), fixup_ports_compare);
|
2014-08-14 09:13:42 -05:00
|
|
|
|
|
|
|
ports.clear();
|
|
|
|
for (size_t i = 0; i < all_ports.size(); i++) {
|
|
|
|
ports.push_back(all_ports[i]->name);
|
2013-06-18 10:11:13 -05:00
|
|
|
all_ports[i]->port_id = i+1;
|
2014-08-14 09:13:42 -05:00
|
|
|
}
|
2013-06-18 10:11:13 -05:00
|
|
|
}
|
|
|
|
|
2014-07-21 05:02:55 -05:00
|
|
|
RTLIL::Wire *RTLIL::Module::addWire(RTLIL::IdString name, int width)
|
|
|
|
{
|
|
|
|
RTLIL::Wire *wire = new RTLIL::Wire;
|
|
|
|
wire->name = name;
|
|
|
|
wire->width = width;
|
|
|
|
add(wire);
|
|
|
|
return wire;
|
|
|
|
}
|
|
|
|
|
2014-07-26 14:16:05 -05:00
|
|
|
RTLIL::Wire *RTLIL::Module::addWire(RTLIL::IdString name, const RTLIL::Wire *other)
|
|
|
|
{
|
|
|
|
RTLIL::Wire *wire = addWire(name);
|
|
|
|
wire->width = other->width;
|
|
|
|
wire->start_offset = other->start_offset;
|
|
|
|
wire->port_id = other->port_id;
|
|
|
|
wire->port_input = other->port_input;
|
|
|
|
wire->port_output = other->port_output;
|
2014-07-28 05:12:13 -05:00
|
|
|
wire->upto = other->upto;
|
2014-07-26 14:16:05 -05:00
|
|
|
wire->attributes = other->attributes;
|
|
|
|
return wire;
|
|
|
|
}
|
|
|
|
|
2014-07-21 05:02:55 -05:00
|
|
|
RTLIL::Cell *RTLIL::Module::addCell(RTLIL::IdString name, RTLIL::IdString type)
|
|
|
|
{
|
|
|
|
RTLIL::Cell *cell = new RTLIL::Cell;
|
|
|
|
cell->name = name;
|
|
|
|
cell->type = type;
|
|
|
|
add(cell);
|
|
|
|
return cell;
|
|
|
|
}
|
2014-03-09 21:02:27 -05:00
|
|
|
|
2014-07-25 17:38:44 -05:00
|
|
|
RTLIL::Cell *RTLIL::Module::addCell(RTLIL::IdString name, const RTLIL::Cell *other)
|
|
|
|
{
|
|
|
|
RTLIL::Cell *cell = addCell(name, other->type);
|
2014-07-26 08:57:57 -05:00
|
|
|
cell->connections_ = other->connections_;
|
2014-07-25 17:38:44 -05:00
|
|
|
cell->parameters = other->parameters;
|
|
|
|
cell->attributes = other->attributes;
|
|
|
|
return cell;
|
|
|
|
}
|
|
|
|
|
2014-07-18 03:27:06 -05:00
|
|
|
#define DEF_METHOD(_func, _y_size, _type) \
|
|
|
|
RTLIL::Cell* RTLIL::Module::add ## _func(RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_y, bool is_signed) { \
|
2014-07-31 07:34:12 -05:00
|
|
|
RTLIL::Cell *cell = addCell(name, _type); \
|
2014-03-09 21:02:27 -05:00
|
|
|
cell->parameters["\\A_SIGNED"] = is_signed; \
|
2014-08-19 06:44:56 -05:00
|
|
|
cell->parameters["\\A_WIDTH"] = sig_a.size(); \
|
|
|
|
cell->parameters["\\Y_WIDTH"] = sig_y.size(); \
|
|
|
|
cell->setPort("\\A", sig_a); \
|
|
|
|
cell->setPort("\\Y", sig_y); \
|
2014-03-09 21:02:27 -05:00
|
|
|
return cell; \
|
2014-07-18 03:27:06 -05:00
|
|
|
} \
|
|
|
|
RTLIL::SigSpec RTLIL::Module::_func(RTLIL::IdString name, RTLIL::SigSpec sig_a, bool is_signed) { \
|
2014-07-21 05:35:06 -05:00
|
|
|
RTLIL::SigSpec sig_y = addWire(NEW_ID, _y_size); \
|
2014-07-18 03:27:06 -05:00
|
|
|
add ## _func(name, sig_a, sig_y, is_signed); \
|
|
|
|
return sig_y; \
|
2014-03-09 21:02:27 -05:00
|
|
|
}
|
2014-07-22 13:15:14 -05:00
|
|
|
DEF_METHOD(Not, sig_a.size(), "$not")
|
|
|
|
DEF_METHOD(Pos, sig_a.size(), "$pos")
|
|
|
|
DEF_METHOD(Neg, sig_a.size(), "$neg")
|
2014-07-18 03:27:06 -05:00
|
|
|
DEF_METHOD(ReduceAnd, 1, "$reduce_and")
|
|
|
|
DEF_METHOD(ReduceOr, 1, "$reduce_or")
|
|
|
|
DEF_METHOD(ReduceXor, 1, "$reduce_xor")
|
|
|
|
DEF_METHOD(ReduceXnor, 1, "$reduce_xnor")
|
|
|
|
DEF_METHOD(ReduceBool, 1, "$reduce_bool")
|
|
|
|
DEF_METHOD(LogicNot, 1, "$logic_not")
|
2014-03-09 21:02:27 -05:00
|
|
|
#undef DEF_METHOD
|
|
|
|
|
2014-07-18 03:27:06 -05:00
|
|
|
#define DEF_METHOD(_func, _y_size, _type) \
|
|
|
|
RTLIL::Cell* RTLIL::Module::add ## _func(RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, RTLIL::SigSpec sig_y, bool is_signed) { \
|
2014-07-31 07:34:12 -05:00
|
|
|
RTLIL::Cell *cell = addCell(name, _type); \
|
2014-03-09 21:02:27 -05:00
|
|
|
cell->parameters["\\A_SIGNED"] = is_signed; \
|
|
|
|
cell->parameters["\\B_SIGNED"] = is_signed; \
|
2014-08-19 06:44:56 -05:00
|
|
|
cell->parameters["\\A_WIDTH"] = sig_a.size(); \
|
|
|
|
cell->parameters["\\B_WIDTH"] = sig_b.size(); \
|
|
|
|
cell->parameters["\\Y_WIDTH"] = sig_y.size(); \
|
|
|
|
cell->setPort("\\A", sig_a); \
|
|
|
|
cell->setPort("\\B", sig_b); \
|
|
|
|
cell->setPort("\\Y", sig_y); \
|
2014-03-09 21:02:27 -05:00
|
|
|
return cell; \
|
2014-07-18 03:27:06 -05:00
|
|
|
} \
|
|
|
|
RTLIL::SigSpec RTLIL::Module::_func(RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, bool is_signed) { \
|
2014-07-21 05:35:06 -05:00
|
|
|
RTLIL::SigSpec sig_y = addWire(NEW_ID, _y_size); \
|
2014-07-18 03:27:06 -05:00
|
|
|
add ## _func(name, sig_a, sig_b, sig_y, is_signed); \
|
|
|
|
return sig_y; \
|
2014-03-09 21:02:27 -05:00
|
|
|
}
|
2014-07-22 13:15:14 -05:00
|
|
|
DEF_METHOD(And, std::max(sig_a.size(), sig_b.size()), "$and")
|
|
|
|
DEF_METHOD(Or, std::max(sig_a.size(), sig_b.size()), "$or")
|
|
|
|
DEF_METHOD(Xor, std::max(sig_a.size(), sig_b.size()), "$xor")
|
|
|
|
DEF_METHOD(Xnor, std::max(sig_a.size(), sig_b.size()), "$xnor")
|
|
|
|
DEF_METHOD(Shl, sig_a.size(), "$shl")
|
|
|
|
DEF_METHOD(Shr, sig_a.size(), "$shr")
|
|
|
|
DEF_METHOD(Sshl, sig_a.size(), "$sshl")
|
|
|
|
DEF_METHOD(Sshr, sig_a.size(), "$sshr")
|
2014-07-29 07:42:33 -05:00
|
|
|
DEF_METHOD(Shift, sig_a.size(), "$shift")
|
|
|
|
DEF_METHOD(Shiftx, sig_a.size(), "$shiftx")
|
2014-07-18 03:27:06 -05:00
|
|
|
DEF_METHOD(Lt, 1, "$lt")
|
|
|
|
DEF_METHOD(Le, 1, "$le")
|
|
|
|
DEF_METHOD(Eq, 1, "$eq")
|
|
|
|
DEF_METHOD(Ne, 1, "$ne")
|
|
|
|
DEF_METHOD(Eqx, 1, "$eqx")
|
|
|
|
DEF_METHOD(Nex, 1, "$nex")
|
|
|
|
DEF_METHOD(Ge, 1, "$ge")
|
|
|
|
DEF_METHOD(Gt, 1, "$gt")
|
2014-07-22 13:15:14 -05:00
|
|
|
DEF_METHOD(Add, std::max(sig_a.size(), sig_b.size()), "$add")
|
|
|
|
DEF_METHOD(Sub, std::max(sig_a.size(), sig_b.size()), "$sub")
|
|
|
|
DEF_METHOD(Mul, std::max(sig_a.size(), sig_b.size()), "$mul")
|
|
|
|
DEF_METHOD(Div, std::max(sig_a.size(), sig_b.size()), "$div")
|
|
|
|
DEF_METHOD(Mod, std::max(sig_a.size(), sig_b.size()), "$mod")
|
2014-07-18 03:27:06 -05:00
|
|
|
DEF_METHOD(LogicAnd, 1, "$logic_and")
|
|
|
|
DEF_METHOD(LogicOr, 1, "$logic_or")
|
2014-03-09 21:02:27 -05:00
|
|
|
#undef DEF_METHOD
|
|
|
|
|
|
|
|
#define DEF_METHOD(_func, _type, _pmux) \
|
2014-07-18 03:27:06 -05:00
|
|
|
RTLIL::Cell* RTLIL::Module::add ## _func(RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, RTLIL::SigSpec sig_s, RTLIL::SigSpec sig_y) { \
|
2014-08-19 06:44:56 -05:00
|
|
|
RTLIL::Cell *cell = addCell(name, _type); \
|
2014-07-22 13:15:14 -05:00
|
|
|
cell->parameters["\\WIDTH"] = sig_a.size(); \
|
|
|
|
if (_pmux) cell->parameters["\\S_WIDTH"] = sig_s.size(); \
|
2014-08-19 06:44:56 -05:00
|
|
|
cell->setPort("\\A", sig_a); \
|
|
|
|
cell->setPort("\\B", sig_b); \
|
|
|
|
cell->setPort("\\S", sig_s); \
|
|
|
|
cell->setPort("\\Y", sig_y); \
|
|
|
|
return cell; \
|
2014-07-18 03:27:06 -05:00
|
|
|
} \
|
|
|
|
RTLIL::SigSpec RTLIL::Module::_func(RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, RTLIL::SigSpec sig_s) { \
|
2014-07-22 13:15:14 -05:00
|
|
|
RTLIL::SigSpec sig_y = addWire(NEW_ID, sig_a.size()); \
|
2014-08-19 06:44:56 -05:00
|
|
|
add ## _func(name, sig_a, sig_b, sig_s, sig_y); \
|
|
|
|
return sig_y; \
|
2014-03-09 21:02:27 -05:00
|
|
|
}
|
2014-07-18 03:27:06 -05:00
|
|
|
DEF_METHOD(Mux, "$mux", 0)
|
|
|
|
DEF_METHOD(Pmux, "$pmux", 1)
|
2014-03-09 21:02:27 -05:00
|
|
|
#undef DEF_METHOD
|
|
|
|
|
2014-03-14 05:45:44 -05:00
|
|
|
#define DEF_METHOD_2(_func, _type, _P1, _P2) \
|
2014-08-19 06:44:56 -05:00
|
|
|
RTLIL::Cell* RTLIL::Module::add ## _func(RTLIL::IdString name, RTLIL::SigBit sig1, RTLIL::SigBit sig2) { \
|
|
|
|
RTLIL::Cell *cell = addCell(name, _type); \
|
|
|
|
cell->setPort("\\" #_P1, sig1); \
|
|
|
|
cell->setPort("\\" #_P2, sig2); \
|
|
|
|
return cell; \
|
2014-07-18 03:27:06 -05:00
|
|
|
} \
|
2014-08-19 06:44:56 -05:00
|
|
|
RTLIL::SigBit RTLIL::Module::_func(RTLIL::IdString name, RTLIL::SigBit sig1) { \
|
|
|
|
RTLIL::SigBit sig2 = addWire(NEW_ID); \
|
|
|
|
add ## _func(name, sig1, sig2); \
|
|
|
|
return sig2; \
|
2014-03-14 05:45:44 -05:00
|
|
|
}
|
|
|
|
#define DEF_METHOD_3(_func, _type, _P1, _P2, _P3) \
|
2014-08-19 06:44:56 -05:00
|
|
|
RTLIL::Cell* RTLIL::Module::add ## _func(RTLIL::IdString name, RTLIL::SigBit sig1, RTLIL::SigBit sig2, RTLIL::SigBit sig3) { \
|
|
|
|
RTLIL::Cell *cell = addCell(name, _type); \
|
|
|
|
cell->setPort("\\" #_P1, sig1); \
|
|
|
|
cell->setPort("\\" #_P2, sig2); \
|
|
|
|
cell->setPort("\\" #_P3, sig3); \
|
|
|
|
return cell; \
|
2014-07-18 03:27:06 -05:00
|
|
|
} \
|
2014-08-19 06:44:56 -05:00
|
|
|
RTLIL::SigBit RTLIL::Module::_func(RTLIL::IdString name, RTLIL::SigBit sig1, RTLIL::SigBit sig2) { \
|
|
|
|
RTLIL::SigBit sig3 = addWire(NEW_ID); \
|
|
|
|
add ## _func(name, sig1, sig2, sig3); \
|
|
|
|
return sig3; \
|
2014-03-14 05:45:44 -05:00
|
|
|
}
|
|
|
|
#define DEF_METHOD_4(_func, _type, _P1, _P2, _P3, _P4) \
|
2014-08-19 06:44:56 -05:00
|
|
|
RTLIL::Cell* RTLIL::Module::add ## _func(RTLIL::IdString name, RTLIL::SigBit sig1, RTLIL::SigBit sig2, RTLIL::SigBit sig3, RTLIL::SigBit sig4) { \
|
|
|
|
RTLIL::Cell *cell = addCell(name, _type); \
|
|
|
|
cell->setPort("\\" #_P1, sig1); \
|
|
|
|
cell->setPort("\\" #_P2, sig2); \
|
|
|
|
cell->setPort("\\" #_P3, sig3); \
|
|
|
|
cell->setPort("\\" #_P4, sig4); \
|
|
|
|
return cell; \
|
|
|
|
} \
|
|
|
|
RTLIL::SigBit RTLIL::Module::_func(RTLIL::IdString name, RTLIL::SigBit sig1, RTLIL::SigBit sig2, RTLIL::SigBit sig3) { \
|
|
|
|
RTLIL::SigBit sig4 = addWire(NEW_ID); \
|
|
|
|
add ## _func(name, sig1, sig2, sig3, sig4); \
|
|
|
|
return sig4; \
|
|
|
|
}
|
|
|
|
#define DEF_METHOD_5(_func, _type, _P1, _P2, _P3, _P4, _P5) \
|
|
|
|
RTLIL::Cell* RTLIL::Module::add ## _func(RTLIL::IdString name, RTLIL::SigBit sig1, RTLIL::SigBit sig2, RTLIL::SigBit sig3, RTLIL::SigBit sig4, RTLIL::SigBit sig5) { \
|
|
|
|
RTLIL::Cell *cell = addCell(name, _type); \
|
|
|
|
cell->setPort("\\" #_P1, sig1); \
|
|
|
|
cell->setPort("\\" #_P2, sig2); \
|
|
|
|
cell->setPort("\\" #_P3, sig3); \
|
|
|
|
cell->setPort("\\" #_P4, sig4); \
|
|
|
|
cell->setPort("\\" #_P5, sig5); \
|
|
|
|
return cell; \
|
2014-07-18 03:27:06 -05:00
|
|
|
} \
|
2014-08-19 06:44:56 -05:00
|
|
|
RTLIL::SigBit RTLIL::Module::_func(RTLIL::IdString name, RTLIL::SigBit sig1, RTLIL::SigBit sig2, RTLIL::SigBit sig3, RTLIL::SigBit sig4) { \
|
|
|
|
RTLIL::SigBit sig5 = addWire(NEW_ID); \
|
|
|
|
add ## _func(name, sig1, sig2, sig3, sig4, sig5); \
|
|
|
|
return sig5; \
|
2014-03-14 05:45:44 -05:00
|
|
|
}
|
2014-08-19 06:44:56 -05:00
|
|
|
DEF_METHOD_2(NotGate, "$_NOT_", A, Y)
|
|
|
|
DEF_METHOD_3(AndGate, "$_AND_", A, B, Y)
|
|
|
|
DEF_METHOD_3(NandGate, "$_NAND_", A, B, Y)
|
|
|
|
DEF_METHOD_3(OrGate, "$_OR_", A, B, Y)
|
|
|
|
DEF_METHOD_3(NorGate, "$_NOR_", A, B, Y)
|
|
|
|
DEF_METHOD_3(XorGate, "$_XOR_", A, B, Y)
|
|
|
|
DEF_METHOD_3(XnorGate, "$_XNOR_", A, B, Y)
|
|
|
|
DEF_METHOD_4(MuxGate, "$_MUX_", A, B, S, Y)
|
|
|
|
DEF_METHOD_4(Aoi3Gate, "$_AOI3_", A, B, C, Y)
|
|
|
|
DEF_METHOD_4(Oai3Gate, "$_OAI3_", A, B, C, Y)
|
|
|
|
DEF_METHOD_5(Aoi4Gate, "$_AOI4_", A, B, C, D, Y)
|
|
|
|
DEF_METHOD_5(Oai4Gate, "$_OAI4_", A, B, C, D, Y)
|
2014-03-14 05:45:44 -05:00
|
|
|
#undef DEF_METHOD_2
|
|
|
|
#undef DEF_METHOD_3
|
|
|
|
#undef DEF_METHOD_4
|
2014-08-19 06:44:56 -05:00
|
|
|
#undef DEF_METHOD_5
|
2014-03-14 05:45:44 -05:00
|
|
|
|
2014-03-09 21:02:27 -05:00
|
|
|
RTLIL::Cell* RTLIL::Module::addPow(RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, RTLIL::SigSpec sig_y, bool a_signed, bool b_signed)
|
|
|
|
{
|
2014-07-31 07:34:12 -05:00
|
|
|
RTLIL::Cell *cell = addCell(name, "$pow");
|
2014-03-09 21:02:27 -05:00
|
|
|
cell->parameters["\\A_SIGNED"] = a_signed;
|
|
|
|
cell->parameters["\\B_SIGNED"] = b_signed;
|
2014-07-22 13:15:14 -05:00
|
|
|
cell->parameters["\\A_WIDTH"] = sig_a.size();
|
|
|
|
cell->parameters["\\B_WIDTH"] = sig_b.size();
|
|
|
|
cell->parameters["\\Y_WIDTH"] = sig_y.size();
|
2014-07-31 09:38:54 -05:00
|
|
|
cell->setPort("\\A", sig_a);
|
|
|
|
cell->setPort("\\B", sig_b);
|
|
|
|
cell->setPort("\\Y", sig_y);
|
2014-03-09 21:02:27 -05:00
|
|
|
return cell;
|
|
|
|
}
|
|
|
|
|
|
|
|
RTLIL::Cell* RTLIL::Module::addSlice(RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_y, RTLIL::Const offset)
|
|
|
|
{
|
2014-07-31 07:34:12 -05:00
|
|
|
RTLIL::Cell *cell = addCell(name, "$slice");
|
2014-07-22 13:15:14 -05:00
|
|
|
cell->parameters["\\A_WIDTH"] = sig_a.size();
|
|
|
|
cell->parameters["\\Y_WIDTH"] = sig_y.size();
|
2014-03-09 21:02:27 -05:00
|
|
|
cell->parameters["\\OFFSET"] = offset;
|
2014-07-31 09:38:54 -05:00
|
|
|
cell->setPort("\\A", sig_a);
|
|
|
|
cell->setPort("\\Y", sig_y);
|
2014-03-09 21:02:27 -05:00
|
|
|
return cell;
|
|
|
|
}
|
|
|
|
|
|
|
|
RTLIL::Cell* RTLIL::Module::addConcat(RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, RTLIL::SigSpec sig_y)
|
|
|
|
{
|
2014-07-31 07:34:12 -05:00
|
|
|
RTLIL::Cell *cell = addCell(name, "$concat");
|
2014-07-22 13:15:14 -05:00
|
|
|
cell->parameters["\\A_WIDTH"] = sig_a.size();
|
|
|
|
cell->parameters["\\B_WIDTH"] = sig_b.size();
|
2014-07-31 09:38:54 -05:00
|
|
|
cell->setPort("\\A", sig_a);
|
|
|
|
cell->setPort("\\B", sig_b);
|
|
|
|
cell->setPort("\\Y", sig_y);
|
2014-03-09 21:02:27 -05:00
|
|
|
return cell;
|
|
|
|
}
|
|
|
|
|
2015-09-18 14:55:12 -05:00
|
|
|
RTLIL::Cell* RTLIL::Module::addLut(RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_y, RTLIL::Const lut)
|
2014-03-09 21:02:27 -05:00
|
|
|
{
|
2014-07-31 07:34:12 -05:00
|
|
|
RTLIL::Cell *cell = addCell(name, "$lut");
|
2014-03-09 21:02:27 -05:00
|
|
|
cell->parameters["\\LUT"] = lut;
|
2015-09-18 14:55:12 -05:00
|
|
|
cell->parameters["\\WIDTH"] = sig_a.size();
|
|
|
|
cell->setPort("\\A", sig_a);
|
|
|
|
cell->setPort("\\Y", sig_y);
|
2014-03-09 21:02:27 -05:00
|
|
|
return cell;
|
|
|
|
}
|
|
|
|
|
2015-08-16 05:54:52 -05:00
|
|
|
RTLIL::Cell* RTLIL::Module::addTribuf(RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_en, RTLIL::SigSpec sig_y)
|
|
|
|
{
|
|
|
|
RTLIL::Cell *cell = addCell(name, "$tribuf");
|
|
|
|
cell->parameters["\\WIDTH"] = sig_a.size();
|
|
|
|
cell->setPort("\\A", sig_a);
|
|
|
|
cell->setPort("\\EN", sig_en);
|
|
|
|
cell->setPort("\\Y", sig_y);
|
|
|
|
return cell;
|
|
|
|
}
|
|
|
|
|
2014-03-09 21:02:27 -05:00
|
|
|
RTLIL::Cell* RTLIL::Module::addAssert(RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_en)
|
|
|
|
{
|
2014-07-31 07:34:12 -05:00
|
|
|
RTLIL::Cell *cell = addCell(name, "$assert");
|
2014-07-31 09:38:54 -05:00
|
|
|
cell->setPort("\\A", sig_a);
|
|
|
|
cell->setPort("\\EN", sig_en);
|
2014-03-09 21:02:27 -05:00
|
|
|
return cell;
|
|
|
|
}
|
|
|
|
|
2015-01-19 06:59:08 -06:00
|
|
|
RTLIL::Cell* RTLIL::Module::addEquiv(RTLIL::IdString name, RTLIL::SigSpec sig_a, RTLIL::SigSpec sig_b, RTLIL::SigSpec sig_y)
|
|
|
|
{
|
|
|
|
RTLIL::Cell *cell = addCell(name, "$equiv");
|
|
|
|
cell->setPort("\\A", sig_a);
|
|
|
|
cell->setPort("\\B", sig_b);
|
|
|
|
cell->setPort("\\Y", sig_y);
|
|
|
|
return cell;
|
|
|
|
}
|
|
|
|
|
2014-03-09 21:02:27 -05:00
|
|
|
RTLIL::Cell* RTLIL::Module::addSr(RTLIL::IdString name, RTLIL::SigSpec sig_set, RTLIL::SigSpec sig_clr, RTLIL::SigSpec sig_q, bool set_polarity, bool clr_polarity)
|
|
|
|
{
|
2014-07-31 07:34:12 -05:00
|
|
|
RTLIL::Cell *cell = addCell(name, "$sr");
|
2014-03-09 21:02:27 -05:00
|
|
|
cell->parameters["\\SET_POLARITY"] = set_polarity;
|
|
|
|
cell->parameters["\\CLR_POLARITY"] = clr_polarity;
|
2014-07-22 13:15:14 -05:00
|
|
|
cell->parameters["\\WIDTH"] = sig_q.size();
|
2014-07-31 09:38:54 -05:00
|
|
|
cell->setPort("\\SET", sig_set);
|
|
|
|
cell->setPort("\\CLR", sig_clr);
|
|
|
|
cell->setPort("\\Q", sig_q);
|
2014-03-09 21:02:27 -05:00
|
|
|
return cell;
|
|
|
|
}
|
|
|
|
|
2014-12-08 07:59:38 -06:00
|
|
|
RTLIL::Cell* RTLIL::Module::addDff(RTLIL::IdString name, RTLIL::SigSpec sig_clk, RTLIL::SigSpec sig_d, RTLIL::SigSpec sig_q, bool clk_polarity)
|
2014-03-09 21:02:27 -05:00
|
|
|
{
|
2014-07-31 07:34:12 -05:00
|
|
|
RTLIL::Cell *cell = addCell(name, "$dff");
|
2014-03-09 21:02:27 -05:00
|
|
|
cell->parameters["\\CLK_POLARITY"] = clk_polarity;
|
2014-07-22 13:15:14 -05:00
|
|
|
cell->parameters["\\WIDTH"] = sig_q.size();
|
2014-07-31 09:38:54 -05:00
|
|
|
cell->setPort("\\CLK", sig_clk);
|
|
|
|
cell->setPort("\\D", sig_d);
|
|
|
|
cell->setPort("\\Q", sig_q);
|
2014-03-09 21:02:27 -05:00
|
|
|
return cell;
|
|
|
|
}
|
|
|
|
|
2014-12-08 07:59:38 -06:00
|
|
|
RTLIL::Cell* RTLIL::Module::addDffe(RTLIL::IdString name, RTLIL::SigSpec sig_clk, RTLIL::SigSpec sig_en, RTLIL::SigSpec sig_d, RTLIL::SigSpec sig_q, bool clk_polarity, bool en_polarity)
|
|
|
|
{
|
|
|
|
RTLIL::Cell *cell = addCell(name, "$dffe");
|
|
|
|
cell->parameters["\\CLK_POLARITY"] = clk_polarity;
|
|
|
|
cell->parameters["\\EN_POLARITY"] = en_polarity;
|
|
|
|
cell->parameters["\\WIDTH"] = sig_q.size();
|
|
|
|
cell->setPort("\\CLK", sig_clk);
|
|
|
|
cell->setPort("\\EN", sig_en);
|
|
|
|
cell->setPort("\\D", sig_d);
|
|
|
|
cell->setPort("\\Q", sig_q);
|
|
|
|
return cell;
|
|
|
|
}
|
|
|
|
|
2014-03-09 21:02:27 -05:00
|
|
|
RTLIL::Cell* RTLIL::Module::addDffsr(RTLIL::IdString name, RTLIL::SigSpec sig_clk, RTLIL::SigSpec sig_set, RTLIL::SigSpec sig_clr,
|
|
|
|
RTLIL::SigSpec sig_d, RTLIL::SigSpec sig_q, bool clk_polarity, bool set_polarity, bool clr_polarity)
|
|
|
|
{
|
2014-07-31 07:34:12 -05:00
|
|
|
RTLIL::Cell *cell = addCell(name, "$dffsr");
|
2014-03-09 21:02:27 -05:00
|
|
|
cell->parameters["\\CLK_POLARITY"] = clk_polarity;
|
|
|
|
cell->parameters["\\SET_POLARITY"] = set_polarity;
|
|
|
|
cell->parameters["\\CLR_POLARITY"] = clr_polarity;
|
2014-07-22 13:15:14 -05:00
|
|
|
cell->parameters["\\WIDTH"] = sig_q.size();
|
2014-07-31 09:38:54 -05:00
|
|
|
cell->setPort("\\CLK", sig_clk);
|
|
|
|
cell->setPort("\\SET", sig_set);
|
|
|
|
cell->setPort("\\CLR", sig_clr);
|
|
|
|
cell->setPort("\\D", sig_d);
|
|
|
|
cell->setPort("\\Q", sig_q);
|
2014-03-09 21:02:27 -05:00
|
|
|
return cell;
|
|
|
|
}
|
|
|
|
|
|
|
|
RTLIL::Cell* RTLIL::Module::addAdff(RTLIL::IdString name, RTLIL::SigSpec sig_clk, RTLIL::SigSpec sig_arst, RTLIL::SigSpec sig_d, RTLIL::SigSpec sig_q,
|
|
|
|
RTLIL::Const arst_value, bool clk_polarity, bool arst_polarity)
|
|
|
|
{
|
2014-07-31 07:34:12 -05:00
|
|
|
RTLIL::Cell *cell = addCell(name, "$adff");
|
2014-03-09 21:02:27 -05:00
|
|
|
cell->parameters["\\CLK_POLARITY"] = clk_polarity;
|
|
|
|
cell->parameters["\\ARST_POLARITY"] = arst_polarity;
|
|
|
|
cell->parameters["\\ARST_VALUE"] = arst_value;
|
2014-07-22 13:15:14 -05:00
|
|
|
cell->parameters["\\WIDTH"] = sig_q.size();
|
2014-07-31 09:38:54 -05:00
|
|
|
cell->setPort("\\CLK", sig_clk);
|
|
|
|
cell->setPort("\\ARST", sig_arst);
|
|
|
|
cell->setPort("\\D", sig_d);
|
|
|
|
cell->setPort("\\Q", sig_q);
|
2014-03-09 21:02:27 -05:00
|
|
|
return cell;
|
|
|
|
}
|
|
|
|
|
2014-03-15 08:35:29 -05:00
|
|
|
RTLIL::Cell* RTLIL::Module::addDlatch(RTLIL::IdString name, RTLIL::SigSpec sig_en, RTLIL::SigSpec sig_d, RTLIL::SigSpec sig_q, bool en_polarity)
|
2014-03-09 21:02:27 -05:00
|
|
|
{
|
2014-07-31 07:34:12 -05:00
|
|
|
RTLIL::Cell *cell = addCell(name, "$dlatch");
|
2014-03-09 21:02:27 -05:00
|
|
|
cell->parameters["\\EN_POLARITY"] = en_polarity;
|
2014-07-22 13:15:14 -05:00
|
|
|
cell->parameters["\\WIDTH"] = sig_q.size();
|
2014-07-31 09:38:54 -05:00
|
|
|
cell->setPort("\\EN", sig_en);
|
|
|
|
cell->setPort("\\D", sig_d);
|
|
|
|
cell->setPort("\\Q", sig_q);
|
2014-03-09 21:02:27 -05:00
|
|
|
return cell;
|
|
|
|
}
|
|
|
|
|
2014-03-31 07:14:40 -05:00
|
|
|
RTLIL::Cell* RTLIL::Module::addDlatchsr(RTLIL::IdString name, RTLIL::SigSpec sig_en, RTLIL::SigSpec sig_set, RTLIL::SigSpec sig_clr,
|
|
|
|
RTLIL::SigSpec sig_d, RTLIL::SigSpec sig_q, bool en_polarity, bool set_polarity, bool clr_polarity)
|
|
|
|
{
|
2014-07-31 07:34:12 -05:00
|
|
|
RTLIL::Cell *cell = addCell(name, "$dlatchsr");
|
2014-03-31 07:14:40 -05:00
|
|
|
cell->parameters["\\EN_POLARITY"] = en_polarity;
|
|
|
|
cell->parameters["\\SET_POLARITY"] = set_polarity;
|
|
|
|
cell->parameters["\\CLR_POLARITY"] = clr_polarity;
|
2014-07-22 13:15:14 -05:00
|
|
|
cell->parameters["\\WIDTH"] = sig_q.size();
|
2014-07-31 09:38:54 -05:00
|
|
|
cell->setPort("\\EN", sig_en);
|
|
|
|
cell->setPort("\\SET", sig_set);
|
|
|
|
cell->setPort("\\CLR", sig_clr);
|
|
|
|
cell->setPort("\\D", sig_d);
|
|
|
|
cell->setPort("\\Q", sig_q);
|
2014-03-31 07:14:40 -05:00
|
|
|
return cell;
|
|
|
|
}
|
|
|
|
|
2014-03-15 08:35:29 -05:00
|
|
|
RTLIL::Cell* RTLIL::Module::addDffGate(RTLIL::IdString name, RTLIL::SigSpec sig_clk, RTLIL::SigSpec sig_d, RTLIL::SigSpec sig_q, bool clk_polarity)
|
|
|
|
{
|
2014-07-31 07:34:12 -05:00
|
|
|
RTLIL::Cell *cell = addCell(name, stringf("$_DFF_%c_", clk_polarity ? 'P' : 'N'));
|
2014-07-31 09:38:54 -05:00
|
|
|
cell->setPort("\\C", sig_clk);
|
|
|
|
cell->setPort("\\D", sig_d);
|
|
|
|
cell->setPort("\\Q", sig_q);
|
2014-03-15 08:35:29 -05:00
|
|
|
return cell;
|
|
|
|
}
|
|
|
|
|
2014-12-08 07:59:38 -06:00
|
|
|
RTLIL::Cell* RTLIL::Module::addDffeGate(RTLIL::IdString name, RTLIL::SigSpec sig_clk, RTLIL::SigSpec sig_en, RTLIL::SigSpec sig_d, RTLIL::SigSpec sig_q, bool clk_polarity, bool en_polarity)
|
|
|
|
{
|
|
|
|
RTLIL::Cell *cell = addCell(name, stringf("$_DFFE_%c%c_", clk_polarity ? 'P' : 'N', en_polarity ? 'P' : 'N'));
|
|
|
|
cell->setPort("\\C", sig_clk);
|
|
|
|
cell->setPort("\\E", sig_en);
|
|
|
|
cell->setPort("\\D", sig_d);
|
|
|
|
cell->setPort("\\Q", sig_q);
|
|
|
|
return cell;
|
|
|
|
}
|
|
|
|
|
2014-03-15 08:35:29 -05:00
|
|
|
RTLIL::Cell* RTLIL::Module::addDffsrGate(RTLIL::IdString name, RTLIL::SigSpec sig_clk, RTLIL::SigSpec sig_set, RTLIL::SigSpec sig_clr,
|
|
|
|
RTLIL::SigSpec sig_d, RTLIL::SigSpec sig_q, bool clk_polarity, bool set_polarity, bool clr_polarity)
|
|
|
|
{
|
2014-07-31 07:34:12 -05:00
|
|
|
RTLIL::Cell *cell = addCell(name, stringf("$_DFFSR_%c%c%c_", clk_polarity ? 'P' : 'N', set_polarity ? 'P' : 'N', clr_polarity ? 'P' : 'N'));
|
2014-07-31 09:38:54 -05:00
|
|
|
cell->setPort("\\C", sig_clk);
|
|
|
|
cell->setPort("\\S", sig_set);
|
|
|
|
cell->setPort("\\R", sig_clr);
|
|
|
|
cell->setPort("\\D", sig_d);
|
|
|
|
cell->setPort("\\Q", sig_q);
|
2014-03-15 08:35:29 -05:00
|
|
|
return cell;
|
|
|
|
}
|
|
|
|
|
|
|
|
RTLIL::Cell* RTLIL::Module::addAdffGate(RTLIL::IdString name, RTLIL::SigSpec sig_clk, RTLIL::SigSpec sig_arst, RTLIL::SigSpec sig_d, RTLIL::SigSpec sig_q,
|
|
|
|
bool arst_value, bool clk_polarity, bool arst_polarity)
|
|
|
|
{
|
2014-07-31 07:34:12 -05:00
|
|
|
RTLIL::Cell *cell = addCell(name, stringf("$_DFF_%c%c%c_", clk_polarity ? 'P' : 'N', arst_polarity ? 'P' : 'N', arst_value ? '1' : '0'));
|
2014-07-31 09:38:54 -05:00
|
|
|
cell->setPort("\\C", sig_clk);
|
|
|
|
cell->setPort("\\R", sig_arst);
|
|
|
|
cell->setPort("\\D", sig_d);
|
|
|
|
cell->setPort("\\Q", sig_q);
|
2014-03-15 08:35:29 -05:00
|
|
|
return cell;
|
|
|
|
}
|
|
|
|
|
|
|
|
RTLIL::Cell* RTLIL::Module::addDlatchGate(RTLIL::IdString name, RTLIL::SigSpec sig_en, RTLIL::SigSpec sig_d, RTLIL::SigSpec sig_q, bool en_polarity)
|
|
|
|
{
|
2014-07-31 07:34:12 -05:00
|
|
|
RTLIL::Cell *cell = addCell(name, stringf("$_DLATCH_%c_", en_polarity ? 'P' : 'N'));
|
2014-07-31 09:38:54 -05:00
|
|
|
cell->setPort("\\E", sig_en);
|
|
|
|
cell->setPort("\\D", sig_d);
|
|
|
|
cell->setPort("\\Q", sig_q);
|
2014-03-15 08:35:29 -05:00
|
|
|
return cell;
|
|
|
|
}
|
|
|
|
|
2014-03-31 07:14:40 -05:00
|
|
|
RTLIL::Cell* RTLIL::Module::addDlatchsrGate(RTLIL::IdString name, RTLIL::SigSpec sig_en, RTLIL::SigSpec sig_set, RTLIL::SigSpec sig_clr,
|
|
|
|
RTLIL::SigSpec sig_d, RTLIL::SigSpec sig_q, bool en_polarity, bool set_polarity, bool clr_polarity)
|
|
|
|
{
|
2014-07-31 07:34:12 -05:00
|
|
|
RTLIL::Cell *cell = addCell(name, stringf("$_DLATCHSR_%c%c%c_", en_polarity ? 'P' : 'N', set_polarity ? 'P' : 'N', clr_polarity ? 'P' : 'N'));
|
2014-07-31 09:38:54 -05:00
|
|
|
cell->setPort("\\E", sig_en);
|
|
|
|
cell->setPort("\\S", sig_set);
|
|
|
|
cell->setPort("\\R", sig_clr);
|
|
|
|
cell->setPort("\\D", sig_d);
|
|
|
|
cell->setPort("\\Q", sig_q);
|
2014-03-31 07:14:40 -05:00
|
|
|
return cell;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2013-01-05 04:13:26 -06:00
|
|
|
RTLIL::Wire::Wire()
|
|
|
|
{
|
2014-12-28 17:12:36 -06:00
|
|
|
static unsigned int hashidx_count = 123456789;
|
|
|
|
hashidx_count = mkhash_xorshift(hashidx_count);
|
|
|
|
hashidx_ = hashidx_count;
|
2014-12-28 10:51:16 -06:00
|
|
|
|
2014-07-31 07:34:12 -05:00
|
|
|
module = nullptr;
|
2013-01-05 04:13:26 -06:00
|
|
|
width = 1;
|
|
|
|
start_offset = 0;
|
|
|
|
port_id = 0;
|
|
|
|
port_input = false;
|
|
|
|
port_output = false;
|
2014-07-28 05:12:13 -05:00
|
|
|
upto = false;
|
2013-01-05 04:13:26 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
RTLIL::Memory::Memory()
|
|
|
|
{
|
2014-12-28 17:12:36 -06:00
|
|
|
static unsigned int hashidx_count = 123456789;
|
|
|
|
hashidx_count = mkhash_xorshift(hashidx_count);
|
|
|
|
hashidx_ = hashidx_count;
|
2014-12-28 10:51:16 -06:00
|
|
|
|
2013-01-05 04:13:26 -06:00
|
|
|
width = 1;
|
|
|
|
size = 0;
|
|
|
|
}
|
|
|
|
|
2014-08-22 09:09:13 -05:00
|
|
|
RTLIL::Cell::Cell() : module(nullptr)
|
|
|
|
{
|
2014-12-28 17:12:36 -06:00
|
|
|
static unsigned int hashidx_count = 123456789;
|
|
|
|
hashidx_count = mkhash_xorshift(hashidx_count);
|
|
|
|
hashidx_ = hashidx_count;
|
2014-12-28 14:27:51 -06:00
|
|
|
|
|
|
|
// log("#memtrace# %p\n", this);
|
|
|
|
memhasher();
|
2014-08-22 09:09:13 -05:00
|
|
|
}
|
|
|
|
|
2014-07-31 09:38:54 -05:00
|
|
|
bool RTLIL::Cell::hasPort(RTLIL::IdString portname) const
|
2014-07-26 09:11:28 -05:00
|
|
|
{
|
|
|
|
return connections_.count(portname) != 0;
|
|
|
|
}
|
|
|
|
|
2014-07-31 09:38:54 -05:00
|
|
|
void RTLIL::Cell::unsetPort(RTLIL::IdString portname)
|
2014-07-26 05:22:58 -05:00
|
|
|
{
|
2014-08-01 09:53:15 -05:00
|
|
|
RTLIL::SigSpec signal;
|
|
|
|
auto conn_it = connections_.find(portname);
|
2014-07-31 07:34:12 -05:00
|
|
|
|
2014-08-01 09:53:15 -05:00
|
|
|
if (conn_it != connections_.end())
|
|
|
|
{
|
|
|
|
for (auto mon : module->monitors)
|
|
|
|
mon->notify_connect(this, conn_it->first, conn_it->second, signal);
|
2014-07-31 07:34:12 -05:00
|
|
|
|
2014-08-01 09:53:15 -05:00
|
|
|
if (module->design)
|
|
|
|
for (auto mon : module->design->monitors)
|
|
|
|
mon->notify_connect(this, conn_it->first, conn_it->second, signal);
|
2014-07-31 07:34:12 -05:00
|
|
|
|
2014-12-29 06:33:33 -06:00
|
|
|
if (yosys_xtrace) {
|
|
|
|
log("#X# Unconnect %s.%s.%s\n", log_id(this->module), log_id(this), log_id(portname));
|
|
|
|
log_backtrace("-X- ", yosys_xtrace-1);
|
|
|
|
}
|
|
|
|
|
2014-08-01 09:53:15 -05:00
|
|
|
connections_.erase(conn_it);
|
|
|
|
}
|
2014-07-26 05:22:58 -05:00
|
|
|
}
|
|
|
|
|
2014-07-31 09:38:54 -05:00
|
|
|
void RTLIL::Cell::setPort(RTLIL::IdString portname, RTLIL::SigSpec signal)
|
2014-07-26 05:22:58 -05:00
|
|
|
{
|
2014-08-01 09:53:15 -05:00
|
|
|
auto conn_it = connections_.find(portname);
|
|
|
|
|
|
|
|
if (conn_it == connections_.end()) {
|
|
|
|
connections_[portname] = RTLIL::SigSpec();
|
|
|
|
conn_it = connections_.find(portname);
|
|
|
|
log_assert(conn_it != connections_.end());
|
2015-01-17 05:04:40 -06:00
|
|
|
} else
|
|
|
|
if (conn_it->second == signal)
|
|
|
|
return;
|
2014-07-31 07:34:12 -05:00
|
|
|
|
|
|
|
for (auto mon : module->monitors)
|
2014-08-01 09:53:15 -05:00
|
|
|
mon->notify_connect(this, conn_it->first, conn_it->second, signal);
|
2014-07-31 07:34:12 -05:00
|
|
|
|
|
|
|
if (module->design)
|
|
|
|
for (auto mon : module->design->monitors)
|
2014-08-01 09:53:15 -05:00
|
|
|
mon->notify_connect(this, conn_it->first, conn_it->second, signal);
|
2014-07-31 07:34:12 -05:00
|
|
|
|
2014-12-29 06:33:33 -06:00
|
|
|
if (yosys_xtrace) {
|
|
|
|
log("#X# Connect %s.%s.%s = %s (%d)\n", log_id(this->module), log_id(this), log_id(portname), log_signal(signal), GetSize(signal));
|
|
|
|
log_backtrace("-X- ", yosys_xtrace-1);
|
|
|
|
}
|
|
|
|
|
2014-08-01 09:53:15 -05:00
|
|
|
conn_it->second = signal;
|
2014-07-26 05:22:58 -05:00
|
|
|
}
|
|
|
|
|
2014-07-31 09:38:54 -05:00
|
|
|
const RTLIL::SigSpec &RTLIL::Cell::getPort(RTLIL::IdString portname) const
|
2014-07-26 05:22:58 -05:00
|
|
|
{
|
|
|
|
return connections_.at(portname);
|
|
|
|
}
|
|
|
|
|
2014-12-26 03:53:21 -06:00
|
|
|
const dict<RTLIL::IdString, RTLIL::SigSpec> &RTLIL::Cell::connections() const
|
2014-07-26 05:22:58 -05:00
|
|
|
{
|
|
|
|
return connections_;
|
|
|
|
}
|
|
|
|
|
2015-02-07 04:40:19 -06:00
|
|
|
bool RTLIL::Cell::known() const
|
|
|
|
{
|
|
|
|
if (yosys_celltypes.cell_known(type))
|
|
|
|
return true;
|
|
|
|
if (module && module->design && module->design->module(type))
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool RTLIL::Cell::input(RTLIL::IdString portname) const
|
|
|
|
{
|
|
|
|
if (yosys_celltypes.cell_known(type))
|
|
|
|
return yosys_celltypes.cell_input(type, portname);
|
|
|
|
if (module && module->design) {
|
|
|
|
RTLIL::Module *m = module->design->module(type);
|
|
|
|
RTLIL::Wire *w = m ? m->wire(portname) : nullptr;
|
|
|
|
return w && w->port_input;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool RTLIL::Cell::output(RTLIL::IdString portname) const
|
|
|
|
{
|
|
|
|
if (yosys_celltypes.cell_known(type))
|
|
|
|
return yosys_celltypes.cell_output(type, portname);
|
|
|
|
if (module && module->design) {
|
|
|
|
RTLIL::Module *m = module->design->module(type);
|
|
|
|
RTLIL::Wire *w = m ? m->wire(portname) : nullptr;
|
|
|
|
return w && w->port_output;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-07-31 09:38:54 -05:00
|
|
|
bool RTLIL::Cell::hasParam(RTLIL::IdString paramname) const
|
|
|
|
{
|
2014-10-18 08:20:38 -05:00
|
|
|
return parameters.count(paramname) != 0;
|
2014-07-31 09:38:54 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void RTLIL::Cell::unsetParam(RTLIL::IdString paramname)
|
|
|
|
{
|
|
|
|
parameters.erase(paramname);
|
|
|
|
}
|
|
|
|
|
|
|
|
void RTLIL::Cell::setParam(RTLIL::IdString paramname, RTLIL::Const value)
|
|
|
|
{
|
|
|
|
parameters[paramname] = value;
|
|
|
|
}
|
|
|
|
|
|
|
|
const RTLIL::Const &RTLIL::Cell::getParam(RTLIL::IdString paramname) const
|
|
|
|
{
|
|
|
|
return parameters.at(paramname);
|
|
|
|
}
|
|
|
|
|
2015-01-23 17:13:27 -06:00
|
|
|
void RTLIL::Cell::sort()
|
|
|
|
{
|
|
|
|
connections_.sort(sort_by_id_str());
|
|
|
|
parameters.sort(sort_by_id_str());
|
|
|
|
attributes.sort(sort_by_id_str());
|
|
|
|
}
|
|
|
|
|
2014-07-21 05:02:55 -05:00
|
|
|
void RTLIL::Cell::check()
|
|
|
|
{
|
2014-07-23 14:38:18 -05:00
|
|
|
#ifndef NDEBUG
|
2014-07-21 05:02:55 -05:00
|
|
|
InternalCellChecker checker(NULL, this);
|
|
|
|
checker.check();
|
2014-07-23 14:38:18 -05:00
|
|
|
#endif
|
2014-07-21 05:02:55 -05:00
|
|
|
}
|
|
|
|
|
2014-07-26 05:22:58 -05:00
|
|
|
void RTLIL::Cell::fixup_parameters(bool set_a_signed, bool set_b_signed)
|
|
|
|
{
|
2014-08-02 11:58:40 -05:00
|
|
|
if (type.substr(0, 1) != "$" || type.substr(0, 2) == "$_" || type.substr(0, 8) == "$paramod" ||
|
2014-07-27 14:12:09 -05:00
|
|
|
type.substr(0, 9) == "$verific$" || type.substr(0, 7) == "$array:" || type.substr(0, 8) == "$extern:")
|
2014-07-26 05:22:58 -05:00
|
|
|
return;
|
|
|
|
|
2014-08-31 10:06:36 -05:00
|
|
|
if (type == "$mux" || type == "$pmux") {
|
2014-10-10 09:59:44 -05:00
|
|
|
parameters["\\WIDTH"] = GetSize(connections_["\\Y"]);
|
2014-08-14 04:39:46 -05:00
|
|
|
if (type == "$pmux")
|
2014-10-10 09:59:44 -05:00
|
|
|
parameters["\\S_WIDTH"] = GetSize(connections_["\\S"]);
|
2014-07-26 05:22:58 -05:00
|
|
|
check();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-08-31 10:06:36 -05:00
|
|
|
if (type == "$lut") {
|
2014-10-10 09:59:44 -05:00
|
|
|
parameters["\\WIDTH"] = GetSize(connections_["\\A"]);
|
2014-08-31 10:06:36 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-09-08 05:15:39 -05:00
|
|
|
if (type == "$fa") {
|
2014-10-10 09:59:44 -05:00
|
|
|
parameters["\\WIDTH"] = GetSize(connections_["\\Y"]);
|
2014-09-08 05:15:39 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-09-08 06:28:23 -05:00
|
|
|
if (type == "$lcu") {
|
2014-10-10 09:59:44 -05:00
|
|
|
parameters["\\WIDTH"] = GetSize(connections_["\\CO"]);
|
2014-09-08 06:28:23 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-09-06 08:47:46 -05:00
|
|
|
bool signedness_ab = !type.in("$slice", "$concat", "$macc");
|
2014-07-26 05:22:58 -05:00
|
|
|
|
|
|
|
if (connections_.count("\\A")) {
|
|
|
|
if (signedness_ab) {
|
|
|
|
if (set_a_signed)
|
|
|
|
parameters["\\A_SIGNED"] = true;
|
|
|
|
else if (parameters.count("\\A_SIGNED") == 0)
|
|
|
|
parameters["\\A_SIGNED"] = false;
|
|
|
|
}
|
2014-10-10 09:59:44 -05:00
|
|
|
parameters["\\A_WIDTH"] = GetSize(connections_["\\A"]);
|
2014-07-26 05:22:58 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if (connections_.count("\\B")) {
|
|
|
|
if (signedness_ab) {
|
|
|
|
if (set_b_signed)
|
|
|
|
parameters["\\B_SIGNED"] = true;
|
|
|
|
else if (parameters.count("\\B_SIGNED") == 0)
|
|
|
|
parameters["\\B_SIGNED"] = false;
|
|
|
|
}
|
2014-10-10 09:59:44 -05:00
|
|
|
parameters["\\B_WIDTH"] = GetSize(connections_["\\B"]);
|
2014-07-26 05:22:58 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if (connections_.count("\\Y"))
|
2014-10-10 09:59:44 -05:00
|
|
|
parameters["\\Y_WIDTH"] = GetSize(connections_["\\Y"]);
|
2014-07-26 05:22:58 -05:00
|
|
|
|
|
|
|
check();
|
|
|
|
}
|
|
|
|
|
2013-01-05 04:13:26 -06:00
|
|
|
RTLIL::SigChunk::SigChunk()
|
|
|
|
{
|
|
|
|
wire = NULL;
|
|
|
|
width = 0;
|
|
|
|
offset = 0;
|
|
|
|
}
|
|
|
|
|
2014-07-23 01:59:54 -05:00
|
|
|
RTLIL::SigChunk::SigChunk(const RTLIL::Const &value)
|
2013-01-05 04:13:26 -06:00
|
|
|
{
|
|
|
|
wire = NULL;
|
2014-09-01 04:36:02 -05:00
|
|
|
data = value.bits;
|
2014-10-10 09:59:44 -05:00
|
|
|
width = GetSize(data);
|
2013-01-05 04:13:26 -06:00
|
|
|
offset = 0;
|
|
|
|
}
|
|
|
|
|
2014-07-23 02:00:16 -05:00
|
|
|
RTLIL::SigChunk::SigChunk(RTLIL::Wire *wire)
|
|
|
|
{
|
2014-07-27 04:03:56 -05:00
|
|
|
log_assert(wire != nullptr);
|
2014-07-23 02:00:16 -05:00
|
|
|
this->wire = wire;
|
|
|
|
this->width = wire->width;
|
|
|
|
this->offset = 0;
|
|
|
|
}
|
|
|
|
|
2014-07-23 02:48:26 -05:00
|
|
|
RTLIL::SigChunk::SigChunk(RTLIL::Wire *wire, int offset, int width)
|
2014-07-23 02:00:16 -05:00
|
|
|
{
|
2014-07-27 04:03:56 -05:00
|
|
|
log_assert(wire != nullptr);
|
2014-07-23 02:48:26 -05:00
|
|
|
this->wire = wire;
|
|
|
|
this->width = width;
|
|
|
|
this->offset = offset;
|
2014-07-23 02:00:16 -05:00
|
|
|
}
|
|
|
|
|
2013-01-05 04:13:26 -06:00
|
|
|
RTLIL::SigChunk::SigChunk(const std::string &str)
|
|
|
|
{
|
|
|
|
wire = NULL;
|
2014-09-01 04:36:02 -05:00
|
|
|
data = RTLIL::Const(str).bits;
|
2014-10-10 09:59:44 -05:00
|
|
|
width = GetSize(data);
|
2013-01-05 04:13:26 -06:00
|
|
|
offset = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
RTLIL::SigChunk::SigChunk(int val, int width)
|
|
|
|
{
|
|
|
|
wire = NULL;
|
2014-09-01 04:36:02 -05:00
|
|
|
data = RTLIL::Const(val, width).bits;
|
2014-10-10 09:59:44 -05:00
|
|
|
this->width = GetSize(data);
|
2013-01-05 04:13:26 -06:00
|
|
|
offset = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
RTLIL::SigChunk::SigChunk(RTLIL::State bit, int width)
|
|
|
|
{
|
|
|
|
wire = NULL;
|
2014-09-01 04:36:02 -05:00
|
|
|
data = RTLIL::Const(bit, width).bits;
|
2014-10-10 09:59:44 -05:00
|
|
|
this->width = GetSize(data);
|
2013-01-05 04:13:26 -06:00
|
|
|
offset = 0;
|
|
|
|
}
|
|
|
|
|
2013-11-21 21:07:13 -06:00
|
|
|
RTLIL::SigChunk::SigChunk(RTLIL::SigBit bit)
|
|
|
|
{
|
|
|
|
wire = bit.wire;
|
2014-08-01 08:25:42 -05:00
|
|
|
offset = 0;
|
2013-11-21 21:07:13 -06:00
|
|
|
if (wire == NULL)
|
2014-09-01 04:36:02 -05:00
|
|
|
data = RTLIL::Const(bit.data).bits;
|
2014-08-01 08:25:42 -05:00
|
|
|
else
|
|
|
|
offset = bit.offset;
|
2013-11-21 21:07:13 -06:00
|
|
|
width = 1;
|
|
|
|
}
|
|
|
|
|
2013-01-05 04:13:26 -06:00
|
|
|
RTLIL::SigChunk RTLIL::SigChunk::extract(int offset, int length) const
|
|
|
|
{
|
|
|
|
RTLIL::SigChunk ret;
|
|
|
|
if (wire) {
|
|
|
|
ret.wire = wire;
|
|
|
|
ret.offset = this->offset + offset;
|
|
|
|
ret.width = length;
|
|
|
|
} else {
|
|
|
|
for (int i = 0; i < length; i++)
|
2014-09-01 04:36:02 -05:00
|
|
|
ret.data.push_back(data[offset+i]);
|
2013-01-05 04:13:26 -06:00
|
|
|
ret.width = length;
|
|
|
|
}
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool RTLIL::SigChunk::operator <(const RTLIL::SigChunk &other) const
|
|
|
|
{
|
|
|
|
if (wire && other.wire)
|
|
|
|
if (wire->name != other.wire->name)
|
|
|
|
return wire->name < other.wire->name;
|
2014-07-22 14:40:52 -05:00
|
|
|
|
2013-01-05 04:13:26 -06:00
|
|
|
if (wire != other.wire)
|
|
|
|
return wire < other.wire;
|
|
|
|
|
|
|
|
if (offset != other.offset)
|
|
|
|
return offset < other.offset;
|
|
|
|
|
|
|
|
if (width != other.width)
|
|
|
|
return width < other.width;
|
|
|
|
|
2014-09-01 04:36:02 -05:00
|
|
|
return data < other.data;
|
2013-01-05 04:13:26 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
bool RTLIL::SigChunk::operator ==(const RTLIL::SigChunk &other) const
|
|
|
|
{
|
2014-09-01 04:36:02 -05:00
|
|
|
return wire == other.wire && width == other.width && offset == other.offset && data == other.data;
|
2013-01-05 04:13:26 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
bool RTLIL::SigChunk::operator !=(const RTLIL::SigChunk &other) const
|
|
|
|
{
|
|
|
|
if (*this == other)
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
RTLIL::SigSpec::SigSpec()
|
|
|
|
{
|
2014-07-22 13:12:15 -05:00
|
|
|
width_ = 0;
|
2014-07-23 16:58:03 -05:00
|
|
|
hash_ = 0;
|
2013-01-05 04:13:26 -06:00
|
|
|
}
|
|
|
|
|
2014-07-26 06:59:30 -05:00
|
|
|
RTLIL::SigSpec::SigSpec(const RTLIL::SigSpec &other)
|
|
|
|
{
|
|
|
|
*this = other;
|
|
|
|
}
|
|
|
|
|
2014-07-28 03:52:58 -05:00
|
|
|
RTLIL::SigSpec::SigSpec(std::initializer_list<RTLIL::SigSpec> parts)
|
|
|
|
{
|
|
|
|
cover("kernel.rtlil.sigspec.init.list");
|
|
|
|
|
|
|
|
width_ = 0;
|
|
|
|
hash_ = 0;
|
|
|
|
|
|
|
|
std::vector<RTLIL::SigSpec> parts_vec(parts.begin(), parts.end());
|
|
|
|
for (auto it = parts_vec.rbegin(); it != parts_vec.rend(); it++)
|
|
|
|
append(*it);
|
|
|
|
}
|
|
|
|
|
2014-07-26 06:59:30 -05:00
|
|
|
const RTLIL::SigSpec &RTLIL::SigSpec::operator=(const RTLIL::SigSpec &other)
|
|
|
|
{
|
|
|
|
cover("kernel.rtlil.sigspec.assign");
|
|
|
|
|
|
|
|
width_ = other.width_;
|
|
|
|
hash_ = other.hash_;
|
|
|
|
chunks_ = other.chunks_;
|
|
|
|
bits_.clear();
|
|
|
|
|
|
|
|
if (!other.bits_.empty())
|
|
|
|
{
|
|
|
|
RTLIL::SigChunk *last = NULL;
|
|
|
|
int last_end_offset = 0;
|
|
|
|
|
|
|
|
for (auto &bit : other.bits_) {
|
|
|
|
if (last && bit.wire == last->wire) {
|
|
|
|
if (bit.wire == NULL) {
|
2014-09-01 04:36:02 -05:00
|
|
|
last->data.push_back(bit.data);
|
2014-07-26 06:59:30 -05:00
|
|
|
last->width++;
|
|
|
|
continue;
|
|
|
|
} else if (last_end_offset == bit.offset) {
|
|
|
|
last_end_offset++;
|
|
|
|
last->width++;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
chunks_.push_back(bit);
|
|
|
|
last = &chunks_.back();
|
|
|
|
last_end_offset = bit.offset + 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
check();
|
|
|
|
}
|
|
|
|
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
|
2014-07-23 01:59:54 -05:00
|
|
|
RTLIL::SigSpec::SigSpec(const RTLIL::Const &value)
|
2013-01-05 04:13:26 -06:00
|
|
|
{
|
2014-07-28 03:52:30 -05:00
|
|
|
cover("kernel.rtlil.sigspec.init.const");
|
|
|
|
|
2014-07-23 01:59:54 -05:00
|
|
|
chunks_.push_back(RTLIL::SigChunk(value));
|
2014-07-22 13:12:15 -05:00
|
|
|
width_ = chunks_.back().width;
|
2014-07-23 16:58:03 -05:00
|
|
|
hash_ = 0;
|
2013-01-05 04:13:26 -06:00
|
|
|
check();
|
|
|
|
}
|
|
|
|
|
|
|
|
RTLIL::SigSpec::SigSpec(const RTLIL::SigChunk &chunk)
|
|
|
|
{
|
2014-07-28 03:52:30 -05:00
|
|
|
cover("kernel.rtlil.sigspec.init.chunk");
|
|
|
|
|
2014-07-22 13:12:15 -05:00
|
|
|
chunks_.push_back(chunk);
|
|
|
|
width_ = chunks_.back().width;
|
2014-07-23 16:58:03 -05:00
|
|
|
hash_ = 0;
|
2013-01-05 04:13:26 -06:00
|
|
|
check();
|
|
|
|
}
|
|
|
|
|
2014-07-23 02:00:16 -05:00
|
|
|
RTLIL::SigSpec::SigSpec(RTLIL::Wire *wire)
|
|
|
|
{
|
2014-07-28 03:52:30 -05:00
|
|
|
cover("kernel.rtlil.sigspec.init.wire");
|
|
|
|
|
2014-07-23 02:00:16 -05:00
|
|
|
chunks_.push_back(RTLIL::SigChunk(wire));
|
|
|
|
width_ = chunks_.back().width;
|
2014-07-23 16:58:03 -05:00
|
|
|
hash_ = 0;
|
2014-07-23 02:00:16 -05:00
|
|
|
check();
|
|
|
|
}
|
|
|
|
|
2014-07-23 02:48:26 -05:00
|
|
|
RTLIL::SigSpec::SigSpec(RTLIL::Wire *wire, int offset, int width)
|
2014-07-23 02:00:16 -05:00
|
|
|
{
|
2014-07-28 03:52:30 -05:00
|
|
|
cover("kernel.rtlil.sigspec.init.wire_part");
|
|
|
|
|
2014-07-23 02:48:26 -05:00
|
|
|
chunks_.push_back(RTLIL::SigChunk(wire, offset, width));
|
|
|
|
width_ = chunks_.back().width;
|
2014-07-23 16:58:03 -05:00
|
|
|
hash_ = 0;
|
2014-07-23 02:48:26 -05:00
|
|
|
check();
|
2014-07-23 02:00:16 -05:00
|
|
|
}
|
|
|
|
|
2013-01-05 04:13:26 -06:00
|
|
|
RTLIL::SigSpec::SigSpec(const std::string &str)
|
|
|
|
{
|
2014-07-28 03:52:30 -05:00
|
|
|
cover("kernel.rtlil.sigspec.init.str");
|
|
|
|
|
2014-07-22 13:12:15 -05:00
|
|
|
chunks_.push_back(RTLIL::SigChunk(str));
|
|
|
|
width_ = chunks_.back().width;
|
2014-07-23 16:58:03 -05:00
|
|
|
hash_ = 0;
|
2013-01-05 04:13:26 -06:00
|
|
|
check();
|
|
|
|
}
|
|
|
|
|
|
|
|
RTLIL::SigSpec::SigSpec(int val, int width)
|
|
|
|
{
|
2014-07-28 03:52:30 -05:00
|
|
|
cover("kernel.rtlil.sigspec.init.int");
|
|
|
|
|
2014-07-22 13:12:15 -05:00
|
|
|
chunks_.push_back(RTLIL::SigChunk(val, width));
|
|
|
|
width_ = width;
|
2014-07-23 16:58:03 -05:00
|
|
|
hash_ = 0;
|
2013-01-05 04:13:26 -06:00
|
|
|
check();
|
|
|
|
}
|
|
|
|
|
|
|
|
RTLIL::SigSpec::SigSpec(RTLIL::State bit, int width)
|
|
|
|
{
|
2014-07-28 03:52:30 -05:00
|
|
|
cover("kernel.rtlil.sigspec.init.state");
|
|
|
|
|
2014-07-22 13:12:15 -05:00
|
|
|
chunks_.push_back(RTLIL::SigChunk(bit, width));
|
|
|
|
width_ = width;
|
2014-07-23 16:58:03 -05:00
|
|
|
hash_ = 0;
|
2013-11-21 21:07:13 -06:00
|
|
|
check();
|
|
|
|
}
|
|
|
|
|
|
|
|
RTLIL::SigSpec::SigSpec(RTLIL::SigBit bit, int width)
|
|
|
|
{
|
2014-07-28 03:52:30 -05:00
|
|
|
cover("kernel.rtlil.sigspec.init.bit");
|
|
|
|
|
2013-11-21 21:07:13 -06:00
|
|
|
if (bit.wire == NULL)
|
2014-07-22 13:12:15 -05:00
|
|
|
chunks_.push_back(RTLIL::SigChunk(bit.data, width));
|
2013-11-21 21:07:13 -06:00
|
|
|
else
|
|
|
|
for (int i = 0; i < width; i++)
|
2014-07-22 13:12:15 -05:00
|
|
|
chunks_.push_back(bit);
|
|
|
|
width_ = width;
|
2014-07-23 16:58:03 -05:00
|
|
|
hash_ = 0;
|
2013-11-21 21:07:13 -06:00
|
|
|
check();
|
|
|
|
}
|
|
|
|
|
2014-07-22 16:50:21 -05:00
|
|
|
RTLIL::SigSpec::SigSpec(std::vector<RTLIL::SigChunk> chunks)
|
|
|
|
{
|
2014-07-28 03:52:30 -05:00
|
|
|
cover("kernel.rtlil.sigspec.init.stdvec_chunks");
|
|
|
|
|
2014-07-22 16:50:21 -05:00
|
|
|
width_ = 0;
|
2014-07-23 16:58:03 -05:00
|
|
|
hash_ = 0;
|
2014-07-22 16:50:21 -05:00
|
|
|
for (auto &c : chunks)
|
|
|
|
append(c);
|
|
|
|
check();
|
|
|
|
}
|
|
|
|
|
2013-11-21 21:07:13 -06:00
|
|
|
RTLIL::SigSpec::SigSpec(std::vector<RTLIL::SigBit> bits)
|
|
|
|
{
|
2014-07-28 03:52:30 -05:00
|
|
|
cover("kernel.rtlil.sigspec.init.stdvec_bits");
|
|
|
|
|
2014-07-22 13:12:15 -05:00
|
|
|
width_ = 0;
|
2014-07-23 16:58:03 -05:00
|
|
|
hash_ = 0;
|
2013-11-21 21:07:13 -06:00
|
|
|
for (auto &bit : bits)
|
2014-07-20 04:00:09 -05:00
|
|
|
append_bit(bit);
|
|
|
|
check();
|
|
|
|
}
|
|
|
|
|
2014-12-26 14:59:41 -06:00
|
|
|
RTLIL::SigSpec::SigSpec(pool<RTLIL::SigBit> bits)
|
2014-12-26 03:53:21 -06:00
|
|
|
{
|
2014-12-26 14:59:41 -06:00
|
|
|
cover("kernel.rtlil.sigspec.init.pool_bits");
|
2014-12-26 03:53:21 -06:00
|
|
|
|
|
|
|
width_ = 0;
|
|
|
|
hash_ = 0;
|
|
|
|
for (auto &bit : bits)
|
|
|
|
append_bit(bit);
|
|
|
|
check();
|
|
|
|
}
|
|
|
|
|
2014-07-20 04:00:09 -05:00
|
|
|
RTLIL::SigSpec::SigSpec(std::set<RTLIL::SigBit> bits)
|
|
|
|
{
|
2014-07-28 03:52:30 -05:00
|
|
|
cover("kernel.rtlil.sigspec.init.stdset_bits");
|
|
|
|
|
2014-07-22 13:12:15 -05:00
|
|
|
width_ = 0;
|
2014-07-23 16:58:03 -05:00
|
|
|
hash_ = 0;
|
2014-07-20 04:00:09 -05:00
|
|
|
for (auto &bit : bits)
|
|
|
|
append_bit(bit);
|
2013-01-05 04:13:26 -06:00
|
|
|
check();
|
|
|
|
}
|
|
|
|
|
2014-12-08 08:08:02 -06:00
|
|
|
RTLIL::SigSpec::SigSpec(bool bit)
|
|
|
|
{
|
|
|
|
cover("kernel.rtlil.sigspec.init.bool");
|
|
|
|
|
|
|
|
width_ = 0;
|
|
|
|
hash_ = 0;
|
|
|
|
append_bit(bit);
|
|
|
|
check();
|
|
|
|
}
|
|
|
|
|
2014-07-22 14:33:52 -05:00
|
|
|
void RTLIL::SigSpec::pack() const
|
|
|
|
{
|
|
|
|
RTLIL::SigSpec *that = (RTLIL::SigSpec*)this;
|
|
|
|
|
|
|
|
if (that->bits_.empty())
|
|
|
|
return;
|
|
|
|
|
2014-07-24 08:05:41 -05:00
|
|
|
cover("kernel.rtlil.sigspec.convert.pack");
|
2014-07-22 14:33:52 -05:00
|
|
|
log_assert(that->chunks_.empty());
|
|
|
|
|
|
|
|
std::vector<RTLIL::SigBit> old_bits;
|
|
|
|
old_bits.swap(that->bits_);
|
|
|
|
|
2014-07-26 06:59:30 -05:00
|
|
|
RTLIL::SigChunk *last = NULL;
|
|
|
|
int last_end_offset = 0;
|
|
|
|
|
|
|
|
for (auto &bit : old_bits) {
|
|
|
|
if (last && bit.wire == last->wire) {
|
|
|
|
if (bit.wire == NULL) {
|
2014-09-01 04:36:02 -05:00
|
|
|
last->data.push_back(bit.data);
|
2014-07-26 06:59:30 -05:00
|
|
|
last->width++;
|
|
|
|
continue;
|
|
|
|
} else if (last_end_offset == bit.offset) {
|
|
|
|
last_end_offset++;
|
|
|
|
last->width++;
|
|
|
|
continue;
|
|
|
|
}
|
2014-07-24 08:05:41 -05:00
|
|
|
}
|
2014-07-26 06:59:30 -05:00
|
|
|
that->chunks_.push_back(bit);
|
|
|
|
last = &that->chunks_.back();
|
|
|
|
last_end_offset = bit.offset + 1;
|
|
|
|
}
|
2014-07-24 08:05:41 -05:00
|
|
|
|
|
|
|
check();
|
2014-07-22 14:33:52 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
void RTLIL::SigSpec::unpack() const
|
|
|
|
{
|
|
|
|
RTLIL::SigSpec *that = (RTLIL::SigSpec*)this;
|
|
|
|
|
|
|
|
if (that->chunks_.empty())
|
|
|
|
return;
|
|
|
|
|
2014-07-24 08:05:41 -05:00
|
|
|
cover("kernel.rtlil.sigspec.convert.unpack");
|
2014-07-22 14:33:52 -05:00
|
|
|
log_assert(that->bits_.empty());
|
|
|
|
|
|
|
|
that->bits_.reserve(that->width_);
|
|
|
|
for (auto &c : that->chunks_)
|
|
|
|
for (int i = 0; i < c.width; i++)
|
|
|
|
that->bits_.push_back(RTLIL::SigBit(c, i));
|
|
|
|
|
|
|
|
that->chunks_.clear();
|
2014-07-23 16:58:03 -05:00
|
|
|
that->hash_ = 0;
|
2014-07-22 14:33:52 -05:00
|
|
|
}
|
|
|
|
|
2014-12-26 14:35:22 -06:00
|
|
|
void RTLIL::SigSpec::updhash() const
|
2014-07-22 14:33:52 -05:00
|
|
|
{
|
2014-07-23 16:58:03 -05:00
|
|
|
RTLIL::SigSpec *that = (RTLIL::SigSpec*)this;
|
|
|
|
|
|
|
|
if (that->hash_ != 0)
|
|
|
|
return;
|
|
|
|
|
2014-07-23 20:50:28 -05:00
|
|
|
cover("kernel.rtlil.sigspec.hash");
|
2014-07-23 16:58:03 -05:00
|
|
|
that->pack();
|
|
|
|
|
2014-12-30 11:51:24 -06:00
|
|
|
that->hash_ = mkhash_init;
|
2014-07-23 16:58:03 -05:00
|
|
|
for (auto &c : that->chunks_)
|
|
|
|
if (c.wire == NULL) {
|
2014-09-01 04:36:02 -05:00
|
|
|
for (auto &v : c.data)
|
2014-12-27 05:02:57 -06:00
|
|
|
that->hash_ = mkhash(that->hash_, v);
|
2014-07-23 16:58:03 -05:00
|
|
|
} else {
|
2014-12-27 05:02:57 -06:00
|
|
|
that->hash_ = mkhash(that->hash_, c.wire->name.index_);
|
|
|
|
that->hash_ = mkhash(that->hash_, c.offset);
|
|
|
|
that->hash_ = mkhash(that->hash_, c.width);
|
2014-07-23 16:58:03 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
if (that->hash_ == 0)
|
|
|
|
that->hash_ = 1;
|
2014-07-22 14:33:52 -05:00
|
|
|
}
|
|
|
|
|
2013-03-29 05:19:21 -05:00
|
|
|
void RTLIL::SigSpec::sort()
|
|
|
|
{
|
2014-07-22 15:26:30 -05:00
|
|
|
unpack();
|
2014-07-23 20:50:28 -05:00
|
|
|
cover("kernel.rtlil.sigspec.sort");
|
2014-07-22 15:26:30 -05:00
|
|
|
std::sort(bits_.begin(), bits_.end());
|
2013-03-29 05:19:21 -05:00
|
|
|
}
|
|
|
|
|
2013-01-05 04:13:26 -06:00
|
|
|
void RTLIL::SigSpec::sort_and_unify()
|
|
|
|
{
|
2014-07-23 20:50:28 -05:00
|
|
|
cover("kernel.rtlil.sigspec.sort_and_unify");
|
2014-07-22 15:26:30 -05:00
|
|
|
*this = this->to_sigbit_set();
|
2013-01-05 04:13:26 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
void RTLIL::SigSpec::replace(const RTLIL::SigSpec &pattern, const RTLIL::SigSpec &with)
|
|
|
|
{
|
|
|
|
replace(pattern, with, this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void RTLIL::SigSpec::replace(const RTLIL::SigSpec &pattern, const RTLIL::SigSpec &with, RTLIL::SigSpec *other) const
|
|
|
|
{
|
2014-08-14 15:32:18 -05:00
|
|
|
log_assert(pattern.width_ == with.width_);
|
2014-07-23 20:50:28 -05:00
|
|
|
|
2014-07-22 15:26:30 -05:00
|
|
|
pattern.unpack();
|
|
|
|
with.unpack();
|
2014-07-22 14:33:52 -05:00
|
|
|
|
2014-12-26 03:53:21 -06:00
|
|
|
dict<RTLIL::SigBit, RTLIL::SigBit> rules;
|
2014-07-22 14:33:52 -05:00
|
|
|
|
2014-10-10 09:59:44 -05:00
|
|
|
for (int i = 0; i < GetSize(pattern.bits_); i++)
|
2014-07-22 15:26:30 -05:00
|
|
|
if (pattern.bits_[i].wire != NULL)
|
2014-08-14 15:32:18 -05:00
|
|
|
rules[pattern.bits_[i]] = with.bits_[i];
|
|
|
|
|
|
|
|
replace(rules, other);
|
|
|
|
}
|
|
|
|
|
2014-12-26 03:53:21 -06:00
|
|
|
void RTLIL::SigSpec::replace(const dict<RTLIL::SigBit, RTLIL::SigBit> &rules)
|
|
|
|
{
|
|
|
|
replace(rules, this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void RTLIL::SigSpec::replace(const dict<RTLIL::SigBit, RTLIL::SigBit> &rules, RTLIL::SigSpec *other) const
|
|
|
|
{
|
|
|
|
cover("kernel.rtlil.sigspec.replace_dict");
|
|
|
|
|
|
|
|
log_assert(other != NULL);
|
|
|
|
log_assert(width_ == other->width_);
|
|
|
|
|
|
|
|
unpack();
|
|
|
|
other->unpack();
|
|
|
|
|
|
|
|
for (int i = 0; i < GetSize(bits_); i++) {
|
|
|
|
auto it = rules.find(bits_[i]);
|
|
|
|
if (it != rules.end())
|
|
|
|
other->bits_[i] = it->second;
|
|
|
|
}
|
|
|
|
|
|
|
|
other->check();
|
|
|
|
}
|
|
|
|
|
2014-08-14 15:32:18 -05:00
|
|
|
void RTLIL::SigSpec::replace(const std::map<RTLIL::SigBit, RTLIL::SigBit> &rules)
|
|
|
|
{
|
|
|
|
replace(rules, this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void RTLIL::SigSpec::replace(const std::map<RTLIL::SigBit, RTLIL::SigBit> &rules, RTLIL::SigSpec *other) const
|
|
|
|
{
|
2014-12-26 03:53:21 -06:00
|
|
|
cover("kernel.rtlil.sigspec.replace_map");
|
2014-08-14 15:32:18 -05:00
|
|
|
|
|
|
|
log_assert(other != NULL);
|
|
|
|
log_assert(width_ == other->width_);
|
|
|
|
|
|
|
|
unpack();
|
|
|
|
other->unpack();
|
2014-07-22 15:26:30 -05:00
|
|
|
|
2014-10-10 09:59:44 -05:00
|
|
|
for (int i = 0; i < GetSize(bits_); i++) {
|
2014-08-14 15:32:18 -05:00
|
|
|
auto it = rules.find(bits_[i]);
|
|
|
|
if (it != rules.end())
|
|
|
|
other->bits_[i] = it->second;
|
|
|
|
}
|
2014-07-22 15:26:30 -05:00
|
|
|
|
|
|
|
other->check();
|
2013-01-05 04:13:26 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
void RTLIL::SigSpec::remove(const RTLIL::SigSpec &pattern)
|
|
|
|
{
|
|
|
|
remove2(pattern, NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
void RTLIL::SigSpec::remove(const RTLIL::SigSpec &pattern, RTLIL::SigSpec *other) const
|
|
|
|
{
|
|
|
|
RTLIL::SigSpec tmp = *this;
|
|
|
|
tmp.remove2(pattern, other);
|
|
|
|
}
|
|
|
|
|
|
|
|
void RTLIL::SigSpec::remove2(const RTLIL::SigSpec &pattern, RTLIL::SigSpec *other)
|
2014-08-14 15:32:18 -05:00
|
|
|
{
|
2014-12-27 05:02:57 -06:00
|
|
|
pool<RTLIL::SigBit> pattern_bits = pattern.to_sigbit_pool();
|
2014-08-14 15:32:18 -05:00
|
|
|
remove2(pattern_bits, other);
|
|
|
|
}
|
|
|
|
|
2014-12-26 14:59:41 -06:00
|
|
|
void RTLIL::SigSpec::remove(const pool<RTLIL::SigBit> &pattern)
|
2014-08-14 15:32:18 -05:00
|
|
|
{
|
|
|
|
remove2(pattern, NULL);
|
|
|
|
}
|
|
|
|
|
2014-12-26 14:59:41 -06:00
|
|
|
void RTLIL::SigSpec::remove(const pool<RTLIL::SigBit> &pattern, RTLIL::SigSpec *other) const
|
2014-08-14 15:32:18 -05:00
|
|
|
{
|
|
|
|
RTLIL::SigSpec tmp = *this;
|
|
|
|
tmp.remove2(pattern, other);
|
|
|
|
}
|
|
|
|
|
2014-12-26 14:59:41 -06:00
|
|
|
void RTLIL::SigSpec::remove2(const pool<RTLIL::SigBit> &pattern, RTLIL::SigSpec *other)
|
2013-01-05 04:13:26 -06:00
|
|
|
{
|
2014-07-23 20:50:28 -05:00
|
|
|
if (other)
|
|
|
|
cover("kernel.rtlil.sigspec.remove_other");
|
|
|
|
else
|
|
|
|
cover("kernel.rtlil.sigspec.remove");
|
|
|
|
|
2014-07-22 15:26:30 -05:00
|
|
|
unpack();
|
2014-07-22 14:33:52 -05:00
|
|
|
|
2014-07-22 15:26:30 -05:00
|
|
|
if (other != NULL) {
|
2014-07-28 04:08:55 -05:00
|
|
|
log_assert(width_ == other->width_);
|
2014-07-22 15:26:30 -05:00
|
|
|
other->unpack();
|
|
|
|
}
|
2014-07-22 14:33:52 -05:00
|
|
|
|
2014-07-22 15:26:30 -05:00
|
|
|
std::vector<RTLIL::SigBit> new_bits, new_other_bits;
|
|
|
|
|
2014-10-10 09:59:44 -05:00
|
|
|
new_bits.resize(GetSize(bits_));
|
2014-08-16 19:16:56 -05:00
|
|
|
if (other != NULL)
|
2014-10-10 09:59:44 -05:00
|
|
|
new_other_bits.resize(GetSize(bits_));
|
2014-08-16 19:16:56 -05:00
|
|
|
|
|
|
|
int k = 0;
|
2014-10-10 09:59:44 -05:00
|
|
|
for (int i = 0; i < GetSize(bits_); i++) {
|
2014-08-14 15:32:18 -05:00
|
|
|
if (bits_[i].wire != NULL && pattern.count(bits_[i]))
|
2014-07-22 15:26:30 -05:00
|
|
|
continue;
|
|
|
|
if (other != NULL)
|
2014-08-16 19:16:56 -05:00
|
|
|
new_other_bits[k] = other->bits_[i];
|
|
|
|
new_bits[k++] = bits_[i];
|
2013-01-05 04:13:26 -06:00
|
|
|
}
|
2014-07-22 15:26:30 -05:00
|
|
|
|
2014-08-16 19:16:56 -05:00
|
|
|
new_bits.resize(k);
|
|
|
|
if (other != NULL)
|
|
|
|
new_other_bits.resize(k);
|
|
|
|
|
2014-07-22 15:26:30 -05:00
|
|
|
bits_.swap(new_bits);
|
2014-10-10 09:59:44 -05:00
|
|
|
width_ = GetSize(bits_);
|
2014-07-22 15:26:30 -05:00
|
|
|
|
|
|
|
if (other != NULL) {
|
|
|
|
other->bits_.swap(new_other_bits);
|
2014-10-10 09:59:44 -05:00
|
|
|
other->width_ = GetSize(other->bits_);
|
2014-07-22 15:26:30 -05:00
|
|
|
}
|
|
|
|
|
2013-01-05 04:13:26 -06:00
|
|
|
check();
|
|
|
|
}
|
|
|
|
|
2014-08-14 15:32:18 -05:00
|
|
|
RTLIL::SigSpec RTLIL::SigSpec::extract(const RTLIL::SigSpec &pattern, const RTLIL::SigSpec *other) const
|
|
|
|
{
|
2014-12-27 05:02:57 -06:00
|
|
|
pool<RTLIL::SigBit> pattern_bits = pattern.to_sigbit_pool();
|
2014-08-14 15:32:18 -05:00
|
|
|
return extract(pattern_bits, other);
|
|
|
|
}
|
|
|
|
|
2014-12-26 14:59:41 -06:00
|
|
|
RTLIL::SigSpec RTLIL::SigSpec::extract(const pool<RTLIL::SigBit> &pattern, const RTLIL::SigSpec *other) const
|
2013-01-05 04:13:26 -06:00
|
|
|
{
|
2014-07-23 20:50:28 -05:00
|
|
|
if (other)
|
|
|
|
cover("kernel.rtlil.sigspec.extract_other");
|
|
|
|
else
|
|
|
|
cover("kernel.rtlil.sigspec.extract");
|
|
|
|
|
2014-07-28 04:08:55 -05:00
|
|
|
log_assert(other == NULL || width_ == other->width_);
|
2013-11-21 21:07:13 -06:00
|
|
|
|
|
|
|
std::vector<RTLIL::SigBit> bits_match = to_sigbit_vector();
|
|
|
|
RTLIL::SigSpec ret;
|
|
|
|
|
|
|
|
if (other) {
|
2014-07-26 08:57:27 -05:00
|
|
|
std::vector<RTLIL::SigBit> bits_other = other->to_sigbit_vector();
|
2014-07-22 13:12:15 -05:00
|
|
|
for (int i = 0; i < width_; i++)
|
2014-08-14 15:32:18 -05:00
|
|
|
if (bits_match[i].wire && pattern.count(bits_match[i]))
|
2013-11-21 21:07:13 -06:00
|
|
|
ret.append_bit(bits_other[i]);
|
|
|
|
} else {
|
2014-07-22 13:12:15 -05:00
|
|
|
for (int i = 0; i < width_; i++)
|
2014-08-14 15:32:18 -05:00
|
|
|
if (bits_match[i].wire && pattern.count(bits_match[i]))
|
2013-11-21 21:07:13 -06:00
|
|
|
ret.append_bit(bits_match[i]);
|
2013-01-05 04:13:26 -06:00
|
|
|
}
|
2013-11-21 21:07:13 -06:00
|
|
|
|
2013-01-05 04:13:26 -06:00
|
|
|
ret.check();
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
void RTLIL::SigSpec::replace(int offset, const RTLIL::SigSpec &with)
|
|
|
|
{
|
2014-07-24 08:05:41 -05:00
|
|
|
cover("kernel.rtlil.sigspec.replace_pos");
|
2014-07-23 20:50:28 -05:00
|
|
|
|
2014-07-22 15:26:30 -05:00
|
|
|
unpack();
|
|
|
|
with.unpack();
|
2014-07-22 14:33:52 -05:00
|
|
|
|
2014-07-28 04:08:55 -05:00
|
|
|
log_assert(offset >= 0);
|
|
|
|
log_assert(with.width_ >= 0);
|
|
|
|
log_assert(offset+with.width_ <= width_);
|
2014-07-22 15:26:30 -05:00
|
|
|
|
|
|
|
for (int i = 0; i < with.width_; i++)
|
|
|
|
bits_.at(offset + i) = with.bits_.at(i);
|
|
|
|
|
2013-01-05 04:13:26 -06:00
|
|
|
check();
|
|
|
|
}
|
|
|
|
|
|
|
|
void RTLIL::SigSpec::remove_const()
|
|
|
|
{
|
2014-07-27 07:47:48 -05:00
|
|
|
if (packed())
|
|
|
|
{
|
|
|
|
cover("kernel.rtlil.sigspec.remove_const.packed");
|
2014-07-23 20:50:28 -05:00
|
|
|
|
2014-07-27 07:47:48 -05:00
|
|
|
std::vector<RTLIL::SigChunk> new_chunks;
|
2014-10-10 09:59:44 -05:00
|
|
|
new_chunks.reserve(GetSize(chunks_));
|
2014-07-22 15:26:30 -05:00
|
|
|
|
2014-07-27 07:47:48 -05:00
|
|
|
width_ = 0;
|
|
|
|
for (auto &chunk : chunks_)
|
|
|
|
if (chunk.wire != NULL) {
|
|
|
|
new_chunks.push_back(chunk);
|
|
|
|
width_ += chunk.width;
|
|
|
|
}
|
2014-07-22 15:26:30 -05:00
|
|
|
|
2014-07-27 07:47:48 -05:00
|
|
|
chunks_.swap(new_chunks);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
cover("kernel.rtlil.sigspec.remove_const.unpacked");
|
2014-07-22 15:26:30 -05:00
|
|
|
|
2014-07-27 07:47:48 -05:00
|
|
|
std::vector<RTLIL::SigBit> new_bits;
|
|
|
|
new_bits.reserve(width_);
|
|
|
|
|
|
|
|
for (auto &bit : bits_)
|
|
|
|
if (bit.wire != NULL)
|
|
|
|
new_bits.push_back(bit);
|
|
|
|
|
|
|
|
bits_.swap(new_bits);
|
|
|
|
width_ = bits_.size();
|
|
|
|
}
|
2014-07-22 15:26:30 -05:00
|
|
|
|
2013-01-05 04:13:26 -06:00
|
|
|
check();
|
|
|
|
}
|
|
|
|
|
|
|
|
void RTLIL::SigSpec::remove(int offset, int length)
|
|
|
|
{
|
2014-07-23 20:50:28 -05:00
|
|
|
cover("kernel.rtlil.sigspec.remove_pos");
|
|
|
|
|
2014-07-22 15:26:30 -05:00
|
|
|
unpack();
|
|
|
|
|
2014-07-28 04:08:55 -05:00
|
|
|
log_assert(offset >= 0);
|
|
|
|
log_assert(length >= 0);
|
|
|
|
log_assert(offset + length <= width_);
|
2014-07-22 15:26:30 -05:00
|
|
|
|
|
|
|
bits_.erase(bits_.begin() + offset, bits_.begin() + offset + length);
|
|
|
|
width_ = bits_.size();
|
|
|
|
|
2013-01-05 04:13:26 -06:00
|
|
|
check();
|
|
|
|
}
|
|
|
|
|
|
|
|
RTLIL::SigSpec RTLIL::SigSpec::extract(int offset, int length) const
|
|
|
|
{
|
2014-07-22 15:26:30 -05:00
|
|
|
unpack();
|
2014-07-23 20:50:28 -05:00
|
|
|
cover("kernel.rtlil.sigspec.extract_pos");
|
2014-07-22 15:26:30 -05:00
|
|
|
return std::vector<RTLIL::SigBit>(bits_.begin() + offset, bits_.begin() + offset + length);
|
2013-01-05 04:13:26 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
void RTLIL::SigSpec::append(const RTLIL::SigSpec &signal)
|
|
|
|
{
|
2014-07-23 13:11:55 -05:00
|
|
|
if (signal.width_ == 0)
|
|
|
|
return;
|
2014-07-22 14:33:52 -05:00
|
|
|
|
2014-07-23 13:11:55 -05:00
|
|
|
if (width_ == 0) {
|
|
|
|
*this = signal;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-07-23 20:50:28 -05:00
|
|
|
cover("kernel.rtlil.sigspec.append");
|
|
|
|
|
2014-07-23 13:11:55 -05:00
|
|
|
if (packed() != signal.packed()) {
|
|
|
|
pack();
|
|
|
|
signal.pack();
|
2013-01-05 04:13:26 -06:00
|
|
|
}
|
2014-07-22 15:26:30 -05:00
|
|
|
|
2014-07-23 13:11:55 -05:00
|
|
|
if (packed())
|
|
|
|
for (auto &other_c : signal.chunks_)
|
|
|
|
{
|
|
|
|
auto &my_last_c = chunks_.back();
|
|
|
|
if (my_last_c.wire == NULL && other_c.wire == NULL) {
|
2014-09-01 04:36:02 -05:00
|
|
|
auto &this_data = my_last_c.data;
|
|
|
|
auto &other_data = other_c.data;
|
2014-07-23 13:11:55 -05:00
|
|
|
this_data.insert(this_data.end(), other_data.begin(), other_data.end());
|
|
|
|
my_last_c.width += other_c.width;
|
|
|
|
} else
|
|
|
|
if (my_last_c.wire == other_c.wire && my_last_c.offset + my_last_c.width == other_c.offset) {
|
|
|
|
my_last_c.width += other_c.width;
|
|
|
|
} else
|
|
|
|
chunks_.push_back(other_c);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
bits_.insert(bits_.end(), signal.bits_.begin(), signal.bits_.end());
|
|
|
|
|
|
|
|
width_ += signal.width_;
|
2014-07-24 08:05:41 -05:00
|
|
|
check();
|
2013-11-21 21:07:13 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
void RTLIL::SigSpec::append_bit(const RTLIL::SigBit &bit)
|
|
|
|
{
|
2014-07-22 15:26:30 -05:00
|
|
|
if (packed())
|
|
|
|
{
|
2014-07-23 20:50:28 -05:00
|
|
|
cover("kernel.rtlil.sigspec.append_bit.packed");
|
|
|
|
|
2014-07-22 15:26:30 -05:00
|
|
|
if (chunks_.size() == 0)
|
|
|
|
chunks_.push_back(bit);
|
2013-11-21 21:07:13 -06:00
|
|
|
else
|
2014-07-22 15:26:30 -05:00
|
|
|
if (bit.wire == NULL)
|
|
|
|
if (chunks_.back().wire == NULL) {
|
2014-09-01 04:36:02 -05:00
|
|
|
chunks_.back().data.push_back(bit.data);
|
2014-07-22 15:26:30 -05:00
|
|
|
chunks_.back().width++;
|
|
|
|
} else
|
|
|
|
chunks_.push_back(bit);
|
2013-11-21 21:07:13 -06:00
|
|
|
else
|
2014-07-22 15:26:30 -05:00
|
|
|
if (chunks_.back().wire == bit.wire && chunks_.back().offset + chunks_.back().width == bit.offset)
|
|
|
|
chunks_.back().width++;
|
|
|
|
else
|
|
|
|
chunks_.push_back(bit);
|
|
|
|
}
|
|
|
|
else
|
2014-07-23 20:50:28 -05:00
|
|
|
{
|
|
|
|
cover("kernel.rtlil.sigspec.append_bit.unpacked");
|
2014-07-22 15:26:30 -05:00
|
|
|
bits_.push_back(bit);
|
2014-07-23 20:50:28 -05:00
|
|
|
}
|
2014-07-22 15:26:30 -05:00
|
|
|
|
2014-07-22 13:12:15 -05:00
|
|
|
width_++;
|
2014-07-24 08:05:41 -05:00
|
|
|
check();
|
2013-01-05 04:13:26 -06:00
|
|
|
}
|
|
|
|
|
2013-11-07 11:17:10 -06:00
|
|
|
void RTLIL::SigSpec::extend_u0(int width, bool is_signed)
|
2013-11-07 09:53:28 -06:00
|
|
|
{
|
2014-07-24 20:17:35 -05:00
|
|
|
cover("kernel.rtlil.sigspec.extend_u0");
|
2014-07-23 20:50:28 -05:00
|
|
|
|
2014-07-22 14:33:52 -05:00
|
|
|
pack();
|
|
|
|
|
2014-07-22 13:12:15 -05:00
|
|
|
if (width_ > width)
|
|
|
|
remove(width, width_ - width);
|
2015-07-02 04:14:30 -05:00
|
|
|
|
2014-07-22 13:12:15 -05:00
|
|
|
if (width_ < width) {
|
2014-12-24 02:51:17 -06:00
|
|
|
RTLIL::SigBit padding = width_ > 0 ? (*this)[width_ - 1] : RTLIL::State::S0;
|
2013-11-07 09:53:28 -06:00
|
|
|
if (!is_signed)
|
2014-12-24 02:51:17 -06:00
|
|
|
padding = RTLIL::State::S0;
|
2014-07-22 13:12:15 -05:00
|
|
|
while (width_ < width)
|
2013-11-07 09:53:28 -06:00
|
|
|
append(padding);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2014-07-23 14:34:14 -05:00
|
|
|
RTLIL::SigSpec RTLIL::SigSpec::repeat(int num) const
|
|
|
|
{
|
2014-07-23 20:50:28 -05:00
|
|
|
cover("kernel.rtlil.sigspec.repeat");
|
|
|
|
|
2014-07-23 14:34:14 -05:00
|
|
|
RTLIL::SigSpec sig;
|
|
|
|
for (int i = 0; i < num; i++)
|
|
|
|
sig.append(*this);
|
|
|
|
return sig;
|
|
|
|
}
|
|
|
|
|
2014-07-23 21:46:36 -05:00
|
|
|
#ifndef NDEBUG
|
2013-01-05 04:13:26 -06:00
|
|
|
void RTLIL::SigSpec::check() const
|
|
|
|
{
|
2014-07-24 08:05:41 -05:00
|
|
|
if (width_ > 64)
|
|
|
|
{
|
|
|
|
cover("kernel.rtlil.sigspec.check.skip");
|
|
|
|
}
|
|
|
|
else if (packed())
|
2014-07-22 15:26:30 -05:00
|
|
|
{
|
2014-07-23 20:50:28 -05:00
|
|
|
cover("kernel.rtlil.sigspec.check.packed");
|
|
|
|
|
2014-07-22 15:26:30 -05:00
|
|
|
int w = 0;
|
|
|
|
for (size_t i = 0; i < chunks_.size(); i++) {
|
|
|
|
const RTLIL::SigChunk chunk = chunks_[i];
|
|
|
|
if (chunk.wire == NULL) {
|
2014-07-23 13:11:55 -05:00
|
|
|
if (i > 0)
|
2014-07-28 04:08:55 -05:00
|
|
|
log_assert(chunks_[i-1].wire != NULL);
|
|
|
|
log_assert(chunk.offset == 0);
|
2014-09-01 04:36:02 -05:00
|
|
|
log_assert(chunk.data.size() == (size_t)chunk.width);
|
2014-07-22 15:26:30 -05:00
|
|
|
} else {
|
2014-07-23 13:11:55 -05:00
|
|
|
if (i > 0 && chunks_[i-1].wire == chunk.wire)
|
2014-07-28 04:08:55 -05:00
|
|
|
log_assert(chunk.offset != chunks_[i-1].offset + chunks_[i-1].width);
|
|
|
|
log_assert(chunk.offset >= 0);
|
|
|
|
log_assert(chunk.width >= 0);
|
|
|
|
log_assert(chunk.offset + chunk.width <= chunk.wire->width);
|
2014-09-01 04:36:02 -05:00
|
|
|
log_assert(chunk.data.size() == 0);
|
2014-07-22 15:26:30 -05:00
|
|
|
}
|
|
|
|
w += chunk.width;
|
2013-01-05 04:13:26 -06:00
|
|
|
}
|
2014-07-28 04:08:55 -05:00
|
|
|
log_assert(w == width_);
|
|
|
|
log_assert(bits_.empty());
|
2014-07-22 15:26:30 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-07-23 20:50:28 -05:00
|
|
|
cover("kernel.rtlil.sigspec.check.unpacked");
|
|
|
|
|
2014-10-10 09:59:44 -05:00
|
|
|
log_assert(width_ == GetSize(bits_));
|
2014-07-28 04:08:55 -05:00
|
|
|
log_assert(chunks_.empty());
|
2013-01-05 04:13:26 -06:00
|
|
|
}
|
|
|
|
}
|
2014-07-23 21:46:36 -05:00
|
|
|
#endif
|
2013-01-05 04:13:26 -06:00
|
|
|
|
|
|
|
bool RTLIL::SigSpec::operator <(const RTLIL::SigSpec &other) const
|
|
|
|
{
|
2014-07-23 20:50:28 -05:00
|
|
|
cover("kernel.rtlil.sigspec.comp_lt");
|
|
|
|
|
2014-07-23 16:58:03 -05:00
|
|
|
if (this == &other)
|
|
|
|
return false;
|
2014-07-22 14:33:52 -05:00
|
|
|
|
2014-07-22 13:12:15 -05:00
|
|
|
if (width_ != other.width_)
|
|
|
|
return width_ < other.width_;
|
2013-01-05 04:13:26 -06:00
|
|
|
|
2014-07-23 16:58:03 -05:00
|
|
|
pack();
|
|
|
|
other.pack();
|
|
|
|
|
|
|
|
if (chunks_.size() != other.chunks_.size())
|
|
|
|
return chunks_.size() < other.chunks_.size();
|
|
|
|
|
2014-12-26 14:35:22 -06:00
|
|
|
updhash();
|
|
|
|
other.updhash();
|
2013-01-05 04:13:26 -06:00
|
|
|
|
2014-07-23 16:58:03 -05:00
|
|
|
if (hash_ != other.hash_)
|
|
|
|
return hash_ < other.hash_;
|
2013-01-05 04:13:26 -06:00
|
|
|
|
2014-07-23 16:58:03 -05:00
|
|
|
for (size_t i = 0; i < chunks_.size(); i++)
|
2014-07-23 20:50:28 -05:00
|
|
|
if (chunks_[i] != other.chunks_[i]) {
|
|
|
|
cover("kernel.rtlil.sigspec.comp_lt.hash_collision");
|
2014-07-23 16:58:03 -05:00
|
|
|
return chunks_[i] < other.chunks_[i];
|
2014-07-23 20:50:28 -05:00
|
|
|
}
|
2013-01-05 04:13:26 -06:00
|
|
|
|
2014-07-23 21:16:32 -05:00
|
|
|
cover("kernel.rtlil.sigspec.comp_lt.equal");
|
2013-01-05 04:13:26 -06:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool RTLIL::SigSpec::operator ==(const RTLIL::SigSpec &other) const
|
|
|
|
{
|
2014-07-23 20:50:28 -05:00
|
|
|
cover("kernel.rtlil.sigspec.comp_eq");
|
|
|
|
|
2014-07-23 16:58:03 -05:00
|
|
|
if (this == &other)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
if (width_ != other.width_)
|
|
|
|
return false;
|
|
|
|
|
2014-07-22 14:33:52 -05:00
|
|
|
pack();
|
|
|
|
other.pack();
|
|
|
|
|
2014-07-23 16:58:03 -05:00
|
|
|
if (chunks_.size() != chunks_.size())
|
2013-01-05 04:13:26 -06:00
|
|
|
return false;
|
|
|
|
|
2014-12-26 14:35:22 -06:00
|
|
|
updhash();
|
|
|
|
other.updhash();
|
2013-01-05 04:13:26 -06:00
|
|
|
|
2014-07-23 16:58:03 -05:00
|
|
|
if (hash_ != other.hash_)
|
2013-01-05 04:13:26 -06:00
|
|
|
return false;
|
|
|
|
|
2014-07-23 16:58:03 -05:00
|
|
|
for (size_t i = 0; i < chunks_.size(); i++)
|
2014-07-23 20:50:28 -05:00
|
|
|
if (chunks_[i] != other.chunks_[i]) {
|
|
|
|
cover("kernel.rtlil.sigspec.comp_eq.hash_collision");
|
2013-01-05 04:13:26 -06:00
|
|
|
return false;
|
2014-07-23 20:50:28 -05:00
|
|
|
}
|
2013-01-05 04:13:26 -06:00
|
|
|
|
2014-07-23 21:16:32 -05:00
|
|
|
cover("kernel.rtlil.sigspec.comp_eq.equal");
|
2013-01-05 04:13:26 -06:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-07-24 15:47:57 -05:00
|
|
|
bool RTLIL::SigSpec::is_wire() const
|
|
|
|
{
|
|
|
|
cover("kernel.rtlil.sigspec.is_wire");
|
|
|
|
|
|
|
|
pack();
|
2014-10-10 09:59:44 -05:00
|
|
|
return GetSize(chunks_) == 1 && chunks_[0].wire && chunks_[0].wire->width == width_;
|
2014-07-24 15:47:57 -05:00
|
|
|
}
|
|
|
|
|
2014-07-25 07:23:10 -05:00
|
|
|
bool RTLIL::SigSpec::is_chunk() const
|
|
|
|
{
|
|
|
|
cover("kernel.rtlil.sigspec.is_chunk");
|
|
|
|
|
|
|
|
pack();
|
2014-10-10 09:59:44 -05:00
|
|
|
return GetSize(chunks_) == 1;
|
2014-07-25 07:23:10 -05:00
|
|
|
}
|
|
|
|
|
2013-01-05 04:13:26 -06:00
|
|
|
bool RTLIL::SigSpec::is_fully_const() const
|
|
|
|
{
|
2014-07-23 20:50:28 -05:00
|
|
|
cover("kernel.rtlil.sigspec.is_fully_const");
|
|
|
|
|
2014-07-22 14:33:52 -05:00
|
|
|
pack();
|
2014-07-22 13:12:15 -05:00
|
|
|
for (auto it = chunks_.begin(); it != chunks_.end(); it++)
|
2013-01-05 04:13:26 -06:00
|
|
|
if (it->width > 0 && it->wire != NULL)
|
|
|
|
return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-04-29 00:28:15 -05:00
|
|
|
bool RTLIL::SigSpec::is_fully_zero() const
|
|
|
|
{
|
|
|
|
cover("kernel.rtlil.sigspec.is_fully_zero");
|
|
|
|
|
|
|
|
pack();
|
|
|
|
for (auto it = chunks_.begin(); it != chunks_.end(); it++) {
|
|
|
|
if (it->width > 0 && it->wire != NULL)
|
|
|
|
return false;
|
|
|
|
for (size_t i = 0; i < it->data.size(); i++)
|
|
|
|
if (it->data[i] != RTLIL::State::S0)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-01-05 04:13:26 -06:00
|
|
|
bool RTLIL::SigSpec::is_fully_def() const
|
|
|
|
{
|
2014-07-23 20:50:28 -05:00
|
|
|
cover("kernel.rtlil.sigspec.is_fully_def");
|
|
|
|
|
2014-07-22 14:33:52 -05:00
|
|
|
pack();
|
2014-07-22 13:12:15 -05:00
|
|
|
for (auto it = chunks_.begin(); it != chunks_.end(); it++) {
|
2013-01-05 04:13:26 -06:00
|
|
|
if (it->width > 0 && it->wire != NULL)
|
|
|
|
return false;
|
2014-09-01 04:36:02 -05:00
|
|
|
for (size_t i = 0; i < it->data.size(); i++)
|
|
|
|
if (it->data[i] != RTLIL::State::S0 && it->data[i] != RTLIL::State::S1)
|
2013-01-05 04:13:26 -06:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool RTLIL::SigSpec::is_fully_undef() const
|
|
|
|
{
|
2014-07-23 20:50:28 -05:00
|
|
|
cover("kernel.rtlil.sigspec.is_fully_undef");
|
|
|
|
|
2014-07-22 14:33:52 -05:00
|
|
|
pack();
|
2014-07-22 13:12:15 -05:00
|
|
|
for (auto it = chunks_.begin(); it != chunks_.end(); it++) {
|
2013-01-05 04:13:26 -06:00
|
|
|
if (it->width > 0 && it->wire != NULL)
|
|
|
|
return false;
|
2014-09-01 04:36:02 -05:00
|
|
|
for (size_t i = 0; i < it->data.size(); i++)
|
|
|
|
if (it->data[i] != RTLIL::State::Sx && it->data[i] != RTLIL::State::Sz)
|
2013-01-05 04:13:26 -06:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-02-07 17:01:51 -06:00
|
|
|
bool RTLIL::SigSpec::has_const() const
|
|
|
|
{
|
|
|
|
cover("kernel.rtlil.sigspec.has_const");
|
|
|
|
|
|
|
|
pack();
|
|
|
|
for (auto it = chunks_.begin(); it != chunks_.end(); it++)
|
|
|
|
if (it->width > 0 && it->wire == NULL)
|
|
|
|
return true;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2013-01-05 04:13:26 -06:00
|
|
|
bool RTLIL::SigSpec::has_marked_bits() const
|
|
|
|
{
|
2014-07-23 20:50:28 -05:00
|
|
|
cover("kernel.rtlil.sigspec.has_marked_bits");
|
|
|
|
|
2014-07-22 14:33:52 -05:00
|
|
|
pack();
|
2014-07-22 13:12:15 -05:00
|
|
|
for (auto it = chunks_.begin(); it != chunks_.end(); it++)
|
2013-01-05 04:13:26 -06:00
|
|
|
if (it->width > 0 && it->wire == NULL) {
|
2014-09-01 04:36:02 -05:00
|
|
|
for (size_t i = 0; i < it->data.size(); i++)
|
|
|
|
if (it->data[i] == RTLIL::State::Sm)
|
2013-01-05 04:13:26 -06:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool RTLIL::SigSpec::as_bool() const
|
|
|
|
{
|
2014-07-23 20:50:28 -05:00
|
|
|
cover("kernel.rtlil.sigspec.as_bool");
|
|
|
|
|
2014-07-22 14:33:52 -05:00
|
|
|
pack();
|
2014-10-10 09:59:44 -05:00
|
|
|
log_assert(is_fully_const() && GetSize(chunks_) <= 1);
|
2014-07-23 13:32:28 -05:00
|
|
|
if (width_)
|
2014-09-01 04:36:02 -05:00
|
|
|
return RTLIL::Const(chunks_[0].data).as_bool();
|
2013-01-05 04:13:26 -06:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-08-24 08:14:00 -05:00
|
|
|
int RTLIL::SigSpec::as_int(bool is_signed) const
|
2013-01-05 04:13:26 -06:00
|
|
|
{
|
2014-07-23 20:50:28 -05:00
|
|
|
cover("kernel.rtlil.sigspec.as_int");
|
|
|
|
|
2014-07-22 14:33:52 -05:00
|
|
|
pack();
|
2014-10-10 09:59:44 -05:00
|
|
|
log_assert(is_fully_const() && GetSize(chunks_) <= 1);
|
2014-07-23 13:32:28 -05:00
|
|
|
if (width_)
|
2014-09-01 04:36:02 -05:00
|
|
|
return RTLIL::Const(chunks_[0].data).as_int(is_signed);
|
2013-01-05 04:13:26 -06:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string RTLIL::SigSpec::as_string() const
|
|
|
|
{
|
2014-07-23 20:50:28 -05:00
|
|
|
cover("kernel.rtlil.sigspec.as_string");
|
|
|
|
|
2014-07-22 14:33:52 -05:00
|
|
|
pack();
|
2013-01-05 04:13:26 -06:00
|
|
|
std::string str;
|
2014-07-22 13:12:15 -05:00
|
|
|
for (size_t i = chunks_.size(); i > 0; i--) {
|
|
|
|
const RTLIL::SigChunk &chunk = chunks_[i-1];
|
2013-01-05 04:13:26 -06:00
|
|
|
if (chunk.wire != NULL)
|
|
|
|
for (int j = 0; j < chunk.width; j++)
|
|
|
|
str += "?";
|
|
|
|
else
|
2014-09-01 04:36:02 -05:00
|
|
|
str += RTLIL::Const(chunk.data).as_string();
|
2013-01-05 04:13:26 -06:00
|
|
|
}
|
|
|
|
return str;
|
|
|
|
}
|
|
|
|
|
|
|
|
RTLIL::Const RTLIL::SigSpec::as_const() const
|
|
|
|
{
|
2014-07-23 20:50:28 -05:00
|
|
|
cover("kernel.rtlil.sigspec.as_const");
|
|
|
|
|
2014-07-22 14:33:52 -05:00
|
|
|
pack();
|
2014-10-10 09:59:44 -05:00
|
|
|
log_assert(is_fully_const() && GetSize(chunks_) <= 1);
|
2014-07-23 13:32:28 -05:00
|
|
|
if (width_)
|
|
|
|
return chunks_[0].data;
|
2013-01-05 04:13:26 -06:00
|
|
|
return RTLIL::Const();
|
|
|
|
}
|
|
|
|
|
2014-07-24 15:47:57 -05:00
|
|
|
RTLIL::Wire *RTLIL::SigSpec::as_wire() const
|
|
|
|
{
|
|
|
|
cover("kernel.rtlil.sigspec.as_wire");
|
|
|
|
|
|
|
|
pack();
|
2014-07-28 04:08:55 -05:00
|
|
|
log_assert(is_wire());
|
2014-07-24 15:47:57 -05:00
|
|
|
return chunks_[0].wire;
|
|
|
|
}
|
|
|
|
|
2014-07-25 07:23:10 -05:00
|
|
|
RTLIL::SigChunk RTLIL::SigSpec::as_chunk() const
|
|
|
|
{
|
|
|
|
cover("kernel.rtlil.sigspec.as_chunk");
|
|
|
|
|
|
|
|
pack();
|
2014-07-28 04:08:55 -05:00
|
|
|
log_assert(is_chunk());
|
2014-07-25 07:23:10 -05:00
|
|
|
return chunks_[0];
|
|
|
|
}
|
|
|
|
|
2013-01-05 04:13:26 -06:00
|
|
|
bool RTLIL::SigSpec::match(std::string pattern) const
|
|
|
|
{
|
2014-07-23 20:50:28 -05:00
|
|
|
cover("kernel.rtlil.sigspec.match");
|
|
|
|
|
2014-07-22 14:33:52 -05:00
|
|
|
pack();
|
2013-01-05 04:13:26 -06:00
|
|
|
std::string str = as_string();
|
2014-07-28 04:08:55 -05:00
|
|
|
log_assert(pattern.size() == str.size());
|
2013-01-05 04:13:26 -06:00
|
|
|
|
|
|
|
for (size_t i = 0; i < pattern.size(); i++) {
|
|
|
|
if (pattern[i] == ' ')
|
|
|
|
continue;
|
|
|
|
if (pattern[i] == '*') {
|
|
|
|
if (str[i] != 'z' && str[i] != 'x')
|
|
|
|
return false;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (pattern[i] != str[i])
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-11-21 21:07:13 -06:00
|
|
|
std::set<RTLIL::SigBit> RTLIL::SigSpec::to_sigbit_set() const
|
|
|
|
{
|
2014-07-23 20:50:28 -05:00
|
|
|
cover("kernel.rtlil.sigspec.to_sigbit_set");
|
|
|
|
|
2014-07-22 14:33:52 -05:00
|
|
|
pack();
|
2013-11-21 21:07:13 -06:00
|
|
|
std::set<RTLIL::SigBit> sigbits;
|
2014-07-22 13:12:15 -05:00
|
|
|
for (auto &c : chunks_)
|
2013-11-21 21:07:13 -06:00
|
|
|
for (int i = 0; i < c.width; i++)
|
|
|
|
sigbits.insert(RTLIL::SigBit(c, i));
|
|
|
|
return sigbits;
|
|
|
|
}
|
|
|
|
|
2014-12-27 05:02:57 -06:00
|
|
|
pool<RTLIL::SigBit> RTLIL::SigSpec::to_sigbit_pool() const
|
2014-12-26 03:53:21 -06:00
|
|
|
{
|
2014-12-26 14:59:41 -06:00
|
|
|
cover("kernel.rtlil.sigspec.to_sigbit_pool");
|
2014-12-26 03:53:21 -06:00
|
|
|
|
|
|
|
pack();
|
2014-12-26 14:59:41 -06:00
|
|
|
pool<RTLIL::SigBit> sigbits;
|
2014-12-26 03:53:21 -06:00
|
|
|
for (auto &c : chunks_)
|
|
|
|
for (int i = 0; i < c.width; i++)
|
|
|
|
sigbits.insert(RTLIL::SigBit(c, i));
|
|
|
|
return sigbits;
|
|
|
|
}
|
|
|
|
|
2013-11-21 21:07:13 -06:00
|
|
|
std::vector<RTLIL::SigBit> RTLIL::SigSpec::to_sigbit_vector() const
|
|
|
|
{
|
2014-07-23 20:50:28 -05:00
|
|
|
cover("kernel.rtlil.sigspec.to_sigbit_vector");
|
|
|
|
|
2014-07-22 14:33:52 -05:00
|
|
|
unpack();
|
|
|
|
return bits_;
|
2013-11-21 21:07:13 -06:00
|
|
|
}
|
|
|
|
|
2014-08-14 16:14:47 -05:00
|
|
|
std::map<RTLIL::SigBit, RTLIL::SigBit> RTLIL::SigSpec::to_sigbit_map(const RTLIL::SigSpec &other) const
|
|
|
|
{
|
|
|
|
cover("kernel.rtlil.sigspec.to_sigbit_map");
|
|
|
|
|
|
|
|
unpack();
|
|
|
|
other.unpack();
|
|
|
|
|
|
|
|
log_assert(width_ == other.width_);
|
|
|
|
|
|
|
|
std::map<RTLIL::SigBit, RTLIL::SigBit> new_map;
|
|
|
|
for (int i = 0; i < width_; i++)
|
|
|
|
new_map[bits_[i]] = other.bits_[i];
|
|
|
|
|
|
|
|
return new_map;
|
|
|
|
}
|
|
|
|
|
2014-12-26 03:53:21 -06:00
|
|
|
dict<RTLIL::SigBit, RTLIL::SigBit> RTLIL::SigSpec::to_sigbit_dict(const RTLIL::SigSpec &other) const
|
|
|
|
{
|
|
|
|
cover("kernel.rtlil.sigspec.to_sigbit_dict");
|
|
|
|
|
|
|
|
unpack();
|
|
|
|
other.unpack();
|
|
|
|
|
|
|
|
log_assert(width_ == other.width_);
|
|
|
|
|
|
|
|
dict<RTLIL::SigBit, RTLIL::SigBit> new_map;
|
|
|
|
for (int i = 0; i < width_; i++)
|
|
|
|
new_map[bits_[i]] = other.bits_[i];
|
|
|
|
|
|
|
|
return new_map;
|
|
|
|
}
|
|
|
|
|
2014-02-02 14:35:26 -06:00
|
|
|
RTLIL::SigBit RTLIL::SigSpec::to_single_sigbit() const
|
|
|
|
{
|
2014-07-23 20:50:28 -05:00
|
|
|
cover("kernel.rtlil.sigspec.to_single_sigbit");
|
|
|
|
|
2014-07-22 14:33:52 -05:00
|
|
|
pack();
|
2014-07-22 13:12:15 -05:00
|
|
|
log_assert(width_ == 1);
|
|
|
|
for (auto &c : chunks_)
|
2014-02-02 14:35:26 -06:00
|
|
|
if (c.width)
|
|
|
|
return RTLIL::SigBit(c);
|
|
|
|
log_abort();
|
|
|
|
}
|
|
|
|
|
2013-06-19 02:30:37 -05:00
|
|
|
static void sigspec_parse_split(std::vector<std::string> &tokens, const std::string &text, char sep)
|
|
|
|
{
|
|
|
|
size_t start = 0, end = 0;
|
|
|
|
while ((end = text.find(sep, start)) != std::string::npos) {
|
|
|
|
tokens.push_back(text.substr(start, end - start));
|
|
|
|
start = end + 1;
|
|
|
|
}
|
|
|
|
tokens.push_back(text.substr(start));
|
|
|
|
}
|
|
|
|
|
|
|
|
static int sigspec_parse_get_dummy_line_num()
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool RTLIL::SigSpec::parse(RTLIL::SigSpec &sig, RTLIL::Module *module, std::string str)
|
|
|
|
{
|
2014-07-23 20:50:28 -05:00
|
|
|
cover("kernel.rtlil.sigspec.parse");
|
|
|
|
|
2015-08-11 04:32:37 -05:00
|
|
|
AST::current_filename = "input";
|
|
|
|
AST::use_internal_line_num();
|
|
|
|
AST::set_line_num(0);
|
|
|
|
|
2013-06-19 02:30:37 -05:00
|
|
|
std::vector<std::string> tokens;
|
|
|
|
sigspec_parse_split(tokens, str, ',');
|
|
|
|
|
|
|
|
sig = RTLIL::SigSpec();
|
2013-12-07 04:57:29 -06:00
|
|
|
for (int tokidx = int(tokens.size())-1; tokidx >= 0; tokidx--)
|
2013-06-19 02:30:37 -05:00
|
|
|
{
|
2013-12-07 04:57:29 -06:00
|
|
|
std::string netname = tokens[tokidx];
|
2013-06-19 02:30:37 -05:00
|
|
|
std::string indices;
|
|
|
|
|
|
|
|
if (netname.size() == 0)
|
|
|
|
continue;
|
|
|
|
|
2014-10-26 14:33:10 -05:00
|
|
|
if (('0' <= netname[0] && netname[0] <= '9') || netname[0] == '\'') {
|
2014-07-23 20:50:28 -05:00
|
|
|
cover("kernel.rtlil.sigspec.parse.const");
|
2013-06-19 02:30:37 -05:00
|
|
|
AST::get_line_num = sigspec_parse_get_dummy_line_num;
|
|
|
|
AST::AstNode *ast = VERILOG_FRONTEND::const2ast(netname);
|
|
|
|
if (ast == NULL)
|
|
|
|
return false;
|
|
|
|
sig.append(RTLIL::Const(ast->bits));
|
|
|
|
delete ast;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2013-11-05 21:14:56 -06:00
|
|
|
if (module == NULL)
|
|
|
|
return false;
|
|
|
|
|
2014-07-23 20:50:28 -05:00
|
|
|
cover("kernel.rtlil.sigspec.parse.net");
|
|
|
|
|
2013-06-19 02:30:37 -05:00
|
|
|
if (netname[0] != '$' && netname[0] != '\\')
|
|
|
|
netname = "\\" + netname;
|
|
|
|
|
2014-07-26 18:49:51 -05:00
|
|
|
if (module->wires_.count(netname) == 0) {
|
2013-06-19 02:30:37 -05:00
|
|
|
size_t indices_pos = netname.size()-1;
|
|
|
|
if (indices_pos > 2 && netname[indices_pos] == ']')
|
|
|
|
{
|
|
|
|
indices_pos--;
|
|
|
|
while (indices_pos > 0 && ('0' <= netname[indices_pos] && netname[indices_pos] <= '9')) indices_pos--;
|
|
|
|
if (indices_pos > 0 && netname[indices_pos] == ':') {
|
|
|
|
indices_pos--;
|
|
|
|
while (indices_pos > 0 && ('0' <= netname[indices_pos] && netname[indices_pos] <= '9')) indices_pos--;
|
|
|
|
}
|
|
|
|
if (indices_pos > 0 && netname[indices_pos] == '[') {
|
|
|
|
indices = netname.substr(indices_pos);
|
|
|
|
netname = netname.substr(0, indices_pos);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-26 18:49:51 -05:00
|
|
|
if (module->wires_.count(netname) == 0)
|
2013-06-19 02:30:37 -05:00
|
|
|
return false;
|
|
|
|
|
2014-07-26 18:49:51 -05:00
|
|
|
RTLIL::Wire *wire = module->wires_.at(netname);
|
2013-06-19 02:30:37 -05:00
|
|
|
if (!indices.empty()) {
|
|
|
|
std::vector<std::string> index_tokens;
|
|
|
|
sigspec_parse_split(index_tokens, indices.substr(1, indices.size()-2), ':');
|
2014-07-23 20:50:28 -05:00
|
|
|
if (index_tokens.size() == 1) {
|
|
|
|
cover("kernel.rtlil.sigspec.parse.bit_sel");
|
2014-10-15 17:54:14 -05:00
|
|
|
int a = atoi(index_tokens.at(0).c_str());
|
|
|
|
if (a < 0 || a >= wire->width)
|
|
|
|
return false;
|
|
|
|
sig.append(RTLIL::SigSpec(wire, a));
|
2014-07-23 20:50:28 -05:00
|
|
|
} else {
|
|
|
|
cover("kernel.rtlil.sigspec.parse.part_sel");
|
2013-06-19 02:30:37 -05:00
|
|
|
int a = atoi(index_tokens.at(0).c_str());
|
|
|
|
int b = atoi(index_tokens.at(1).c_str());
|
|
|
|
if (a > b) {
|
|
|
|
int tmp = a;
|
|
|
|
a = b, b = tmp;
|
|
|
|
}
|
2014-10-15 17:54:14 -05:00
|
|
|
if (a < 0 || a >= wire->width)
|
|
|
|
return false;
|
|
|
|
if (b < 0 || b >= wire->width)
|
|
|
|
return false;
|
2014-07-23 02:48:26 -05:00
|
|
|
sig.append(RTLIL::SigSpec(wire, a, b-a+1));
|
2013-06-19 02:30:37 -05:00
|
|
|
}
|
|
|
|
} else
|
|
|
|
sig.append(wire);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-02-06 12:22:46 -06:00
|
|
|
bool RTLIL::SigSpec::parse_sel(RTLIL::SigSpec &sig, RTLIL::Design *design, RTLIL::Module *module, std::string str)
|
|
|
|
{
|
|
|
|
if (str.empty() || str[0] != '@')
|
|
|
|
return parse(sig, module, str);
|
|
|
|
|
2014-07-23 20:50:28 -05:00
|
|
|
cover("kernel.rtlil.sigspec.parse.sel");
|
|
|
|
|
2014-02-06 12:22:46 -06:00
|
|
|
str = RTLIL::escape_id(str.substr(1));
|
|
|
|
if (design->selection_vars.count(str) == 0)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
sig = RTLIL::SigSpec();
|
|
|
|
RTLIL::Selection &sel = design->selection_vars.at(str);
|
2014-07-26 18:49:51 -05:00
|
|
|
for (auto &it : module->wires_)
|
2014-02-06 12:22:46 -06:00
|
|
|
if (sel.selected_member(module->name, it.first))
|
|
|
|
sig.append(it.second);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-11-09 05:02:27 -06:00
|
|
|
bool RTLIL::SigSpec::parse_rhs(const RTLIL::SigSpec &lhs, RTLIL::SigSpec &sig, RTLIL::Module *module, std::string str)
|
|
|
|
{
|
2013-12-07 04:57:29 -06:00
|
|
|
if (str == "0") {
|
2014-07-23 20:50:28 -05:00
|
|
|
cover("kernel.rtlil.sigspec.parse.rhs_zeros");
|
2014-07-22 13:12:15 -05:00
|
|
|
sig = RTLIL::SigSpec(RTLIL::State::S0, lhs.width_);
|
2013-12-07 04:57:29 -06:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (str == "~0") {
|
2014-07-23 20:50:28 -05:00
|
|
|
cover("kernel.rtlil.sigspec.parse.rhs_ones");
|
2014-07-22 13:12:15 -05:00
|
|
|
sig = RTLIL::SigSpec(RTLIL::State::S1, lhs.width_);
|
2013-12-07 04:57:29 -06:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-07-22 13:12:15 -05:00
|
|
|
if (lhs.chunks_.size() == 1) {
|
2013-11-09 05:02:27 -06:00
|
|
|
char *p = (char*)str.c_str(), *endptr;
|
2014-10-18 08:20:38 -05:00
|
|
|
long int val = strtol(p, &endptr, 10);
|
2013-11-09 05:02:27 -06:00
|
|
|
if (endptr && endptr != p && *endptr == 0) {
|
2014-07-22 13:12:15 -05:00
|
|
|
sig = RTLIL::SigSpec(val, lhs.width_);
|
2014-07-23 20:50:28 -05:00
|
|
|
cover("kernel.rtlil.sigspec.parse.rhs_dec");
|
2013-11-09 05:02:27 -06:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return parse(sig, module, str);
|
|
|
|
}
|
|
|
|
|
2013-01-05 04:13:26 -06:00
|
|
|
RTLIL::CaseRule::~CaseRule()
|
|
|
|
{
|
|
|
|
for (auto it = switches.begin(); it != switches.end(); it++)
|
|
|
|
delete *it;
|
|
|
|
}
|
|
|
|
|
2013-07-27 07:27:51 -05:00
|
|
|
RTLIL::CaseRule *RTLIL::CaseRule::clone() const
|
|
|
|
{
|
|
|
|
RTLIL::CaseRule *new_caserule = new RTLIL::CaseRule;
|
|
|
|
new_caserule->compare = compare;
|
|
|
|
new_caserule->actions = actions;
|
|
|
|
for (auto &it : switches)
|
|
|
|
new_caserule->switches.push_back(it->clone());
|
|
|
|
return new_caserule;
|
|
|
|
}
|
|
|
|
|
2013-01-05 04:13:26 -06:00
|
|
|
RTLIL::SwitchRule::~SwitchRule()
|
|
|
|
{
|
|
|
|
for (auto it = cases.begin(); it != cases.end(); it++)
|
|
|
|
delete *it;
|
|
|
|
}
|
|
|
|
|
2013-07-27 07:27:51 -05:00
|
|
|
RTLIL::SwitchRule *RTLIL::SwitchRule::clone() const
|
|
|
|
{
|
|
|
|
RTLIL::SwitchRule *new_switchrule = new RTLIL::SwitchRule;
|
|
|
|
new_switchrule->signal = signal;
|
|
|
|
new_switchrule->attributes = attributes;
|
|
|
|
for (auto &it : cases)
|
|
|
|
new_switchrule->cases.push_back(it->clone());
|
|
|
|
return new_switchrule;
|
2015-07-02 04:14:30 -05:00
|
|
|
|
2013-07-27 07:27:51 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
RTLIL::SyncRule *RTLIL::SyncRule::clone() const
|
|
|
|
{
|
|
|
|
RTLIL::SyncRule *new_syncrule = new RTLIL::SyncRule;
|
|
|
|
new_syncrule->type = type;
|
|
|
|
new_syncrule->signal = signal;
|
|
|
|
new_syncrule->actions = actions;
|
|
|
|
return new_syncrule;
|
|
|
|
}
|
|
|
|
|
2013-01-05 04:13:26 -06:00
|
|
|
RTLIL::Process::~Process()
|
|
|
|
{
|
|
|
|
for (auto it = syncs.begin(); it != syncs.end(); it++)
|
|
|
|
delete *it;
|
|
|
|
}
|
|
|
|
|
2013-07-27 07:27:51 -05:00
|
|
|
RTLIL::Process *RTLIL::Process::clone() const
|
|
|
|
{
|
|
|
|
RTLIL::Process *new_proc = new RTLIL::Process;
|
|
|
|
|
|
|
|
new_proc->name = name;
|
|
|
|
new_proc->attributes = attributes;
|
|
|
|
|
|
|
|
RTLIL::CaseRule *rc_ptr = root_case.clone();
|
|
|
|
new_proc->root_case = *rc_ptr;
|
|
|
|
rc_ptr->switches.clear();
|
|
|
|
delete rc_ptr;
|
|
|
|
|
|
|
|
for (auto &it : syncs)
|
|
|
|
new_proc->syncs.push_back(it->clone());
|
2015-07-02 04:14:30 -05:00
|
|
|
|
2013-07-27 07:27:51 -05:00
|
|
|
return new_proc;
|
|
|
|
}
|
|
|
|
|
2014-07-31 06:19:47 -05:00
|
|
|
YOSYS_NAMESPACE_END
|
|
|
|
|