2014-03-09 14:40:04 -05:00
|
|
|
/*
|
|
|
|
* yosys -- Yosys Open SYnthesis Suite
|
|
|
|
*
|
|
|
|
* Copyright (C) 2012 Clifford Wolf <clifford@clifford.at>
|
2015-07-02 04:14:30 -05:00
|
|
|
*
|
2014-03-09 14:40:04 -05: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
|
|
|
*
|
2014-03-09 14:40:04 -05: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-03-09 14:40:04 -05:00
|
|
|
#include "kernel/sigtools.h"
|
|
|
|
#include "kernel/log.h"
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
2014-10-16 11:06:54 -05:00
|
|
|
|
|
|
|
#ifndef _WIN32
|
|
|
|
# include <unistd.h>
|
|
|
|
# include <dirent.h>
|
|
|
|
#endif
|
2014-03-09 14:40:04 -05:00
|
|
|
|
2014-07-31 06:19:47 -05:00
|
|
|
USING_YOSYS_NAMESPACE
|
|
|
|
|
2014-03-13 11:34:31 -05:00
|
|
|
#ifdef YOSYS_ENABLE_VERIFIC
|
2014-03-09 14:40:04 -05:00
|
|
|
|
2017-07-24 06:57:16 -05:00
|
|
|
#ifdef __clang__
|
2014-03-14 05:46:13 -05:00
|
|
|
#pragma clang diagnostic push
|
|
|
|
#pragma clang diagnostic ignored "-Woverloaded-virtual"
|
2017-07-24 06:57:16 -05:00
|
|
|
#endif
|
2014-03-14 05:46:13 -05:00
|
|
|
|
2014-03-09 14:40:04 -05:00
|
|
|
#include "veri_file.h"
|
|
|
|
#include "vhdl_file.h"
|
2014-03-14 05:46:13 -05:00
|
|
|
#include "VeriModule.h"
|
2017-07-24 06:57:16 -05:00
|
|
|
#include "VeriWrite.h"
|
2014-03-14 05:46:13 -05:00
|
|
|
#include "VhdlUnits.h"
|
2014-03-09 14:40:04 -05:00
|
|
|
#include "DataBase.h"
|
|
|
|
#include "Message.h"
|
|
|
|
|
2017-07-24 06:57:16 -05:00
|
|
|
#ifdef __clang__
|
2014-03-14 05:46:13 -05:00
|
|
|
#pragma clang diagnostic pop
|
2017-07-24 06:57:16 -05:00
|
|
|
#endif
|
2014-03-14 05:46:13 -05:00
|
|
|
|
2014-03-09 14:40:04 -05:00
|
|
|
#ifdef VERIFIC_NAMESPACE
|
|
|
|
using namespace Verific ;
|
|
|
|
#endif
|
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
#endif
|
|
|
|
|
|
|
|
PRIVATE_NAMESPACE_BEGIN
|
|
|
|
|
|
|
|
#ifdef YOSYS_ENABLE_VERIFIC
|
|
|
|
|
|
|
|
void msg_func(msg_type_t msg_type, const char *message_id, linefile_type linefile, const char *msg, va_list args)
|
2014-03-09 14:40:04 -05:00
|
|
|
{
|
2017-02-11 04:39:50 -06:00
|
|
|
string message = stringf("VERIFIC-%s [%s] ",
|
2014-03-09 14:40:04 -05:00
|
|
|
msg_type == VERIFIC_NONE ? "NONE" :
|
|
|
|
msg_type == VERIFIC_ERROR ? "ERROR" :
|
|
|
|
msg_type == VERIFIC_WARNING ? "WARNING" :
|
|
|
|
msg_type == VERIFIC_IGNORE ? "IGNORE" :
|
|
|
|
msg_type == VERIFIC_INFO ? "INFO" :
|
|
|
|
msg_type == VERIFIC_COMMENT ? "COMMENT" :
|
|
|
|
msg_type == VERIFIC_PROGRAM_ERROR ? "PROGRAM_ERROR" : "UNKNOWN", message_id);
|
2017-02-11 04:39:50 -06:00
|
|
|
|
2014-03-09 14:40:04 -05:00
|
|
|
if (linefile)
|
2017-02-11 04:39:50 -06:00
|
|
|
message += stringf("%s:%d: ", LineFile::GetFileName(linefile), LineFile::GetLineNo(linefile));
|
|
|
|
|
|
|
|
message += vstringf(msg, args);
|
|
|
|
|
|
|
|
if (msg_type == VERIFIC_ERROR || msg_type == VERIFIC_WARNING || msg_type == VERIFIC_PROGRAM_ERROR)
|
|
|
|
log_warning("%s\n", message.c_str());
|
|
|
|
else
|
|
|
|
log("%s\n", message.c_str());
|
2014-03-09 14:40:04 -05:00
|
|
|
}
|
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
struct VerificImporter
|
2014-03-09 14:40:04 -05:00
|
|
|
{
|
2017-02-04 06:36:00 -06:00
|
|
|
RTLIL::Module *module;
|
2017-07-24 04:29:06 -05:00
|
|
|
Netlist *netlist;
|
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
std::map<Net*, RTLIL::SigBit> net_map;
|
|
|
|
std::map<Net*, Net*> sva_posedge_map;
|
2014-03-09 14:40:04 -05:00
|
|
|
|
2017-07-24 04:29:06 -05:00
|
|
|
bool mode_gates, mode_keep, verbose;
|
|
|
|
|
|
|
|
VerificImporter(bool mode_gates, bool mode_keep, bool verbose) :
|
|
|
|
mode_gates(mode_gates), mode_keep(mode_keep), verbose(verbose)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
RTLIL::SigBit net_map_at(Net *net)
|
|
|
|
{
|
|
|
|
if (net->IsExternalTo(netlist))
|
|
|
|
log_error("Found unflattened external reference to net '%s' in netlist '%s' from netlist '%s'.\n",
|
|
|
|
net->Name(), net->Owner()->CellBaseName(), netlist->CellBaseName());
|
|
|
|
|
|
|
|
return net_map.at(net);
|
|
|
|
}
|
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
void import_attributes(dict<RTLIL::IdString, RTLIL::Const> &attributes, DesignObj *obj)
|
|
|
|
{
|
|
|
|
MapIter mi;
|
|
|
|
Att *attr;
|
2014-03-10 06:06:57 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (obj->Linefile())
|
|
|
|
attributes["\\src"] = stringf("%s:%d", LineFile::GetFileName(obj->Linefile()), LineFile::GetLineNo(obj->Linefile()));
|
2014-03-10 06:06:57 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
// FIXME: Parse numeric attributes
|
|
|
|
FOREACH_ATTRIBUTE(obj, mi, attr)
|
|
|
|
attributes[RTLIL::escape_id(attr->Key())] = RTLIL::Const(std::string(attr->Value()));
|
|
|
|
}
|
2014-03-10 06:06:57 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
RTLIL::SigSpec operatorInput(Instance *inst)
|
|
|
|
{
|
2014-03-16 20:43:53 -05:00
|
|
|
RTLIL::SigSpec sig;
|
2017-02-04 06:36:00 -06:00
|
|
|
for (int i = int(inst->InputSize())-1; i >= 0; i--)
|
|
|
|
if (inst->GetInputBit(i))
|
2017-07-24 04:29:06 -05:00
|
|
|
sig.append(net_map_at(inst->GetInputBit(i)));
|
2017-02-04 06:36:00 -06:00
|
|
|
else
|
2014-03-16 20:43:53 -05:00
|
|
|
sig.append(RTLIL::State::Sz);
|
|
|
|
return sig;
|
|
|
|
}
|
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
RTLIL::SigSpec operatorInput1(Instance *inst)
|
|
|
|
{
|
|
|
|
RTLIL::SigSpec sig;
|
|
|
|
for (int i = int(inst->Input1Size())-1; i >= 0; i--)
|
|
|
|
if (inst->GetInput1Bit(i))
|
2017-07-24 04:29:06 -05:00
|
|
|
sig.append(net_map_at(inst->GetInput1Bit(i)));
|
2014-03-10 06:06:57 -05:00
|
|
|
else
|
2017-02-04 06:36:00 -06:00
|
|
|
sig.append(RTLIL::State::Sz);
|
|
|
|
return sig;
|
2014-03-14 05:46:13 -05:00
|
|
|
}
|
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
RTLIL::SigSpec operatorInput2(Instance *inst)
|
|
|
|
{
|
|
|
|
RTLIL::SigSpec sig;
|
|
|
|
for (int i = int(inst->Input2Size())-1; i >= 0; i--)
|
|
|
|
if (inst->GetInput2Bit(i))
|
2017-07-24 04:29:06 -05:00
|
|
|
sig.append(net_map_at(inst->GetInput2Bit(i)));
|
2017-02-04 06:36:00 -06:00
|
|
|
else
|
|
|
|
sig.append(RTLIL::State::Sz);
|
|
|
|
return sig;
|
2014-03-17 08:42:07 -05:00
|
|
|
}
|
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
RTLIL::SigSpec operatorInport(Instance *inst, const char *portname)
|
|
|
|
{
|
|
|
|
PortBus *portbus = inst->View()->GetPortBus(portname);
|
|
|
|
if (portbus) {
|
|
|
|
RTLIL::SigSpec sig;
|
|
|
|
for (unsigned i = 0; i < portbus->Size(); i++) {
|
|
|
|
Net *net = inst->GetNet(portbus->ElementAtIndex(i));
|
|
|
|
if (net) {
|
|
|
|
if (net->IsGnd())
|
|
|
|
sig.append(RTLIL::State::S0);
|
|
|
|
else if (net->IsPwr())
|
|
|
|
sig.append(RTLIL::State::S1);
|
|
|
|
else
|
2017-07-24 04:29:06 -05:00
|
|
|
sig.append(net_map_at(net));
|
2017-02-04 06:36:00 -06:00
|
|
|
} else
|
|
|
|
sig.append(RTLIL::State::Sz);
|
|
|
|
}
|
|
|
|
return sig;
|
|
|
|
} else {
|
|
|
|
Port *port = inst->View()->GetPort(portname);
|
|
|
|
log_assert(port != NULL);
|
|
|
|
Net *net = inst->GetNet(port);
|
2017-07-24 04:29:06 -05:00
|
|
|
return net_map_at(net);
|
2017-02-04 06:36:00 -06:00
|
|
|
}
|
2014-03-14 05:46:13 -05:00
|
|
|
}
|
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
RTLIL::SigSpec operatorOutput(Instance *inst)
|
|
|
|
{
|
|
|
|
RTLIL::SigSpec sig;
|
|
|
|
RTLIL::Wire *dummy_wire = NULL;
|
|
|
|
for (int i = int(inst->OutputSize())-1; i >= 0; i--)
|
|
|
|
if (inst->GetOutputBit(i)) {
|
2017-07-24 04:29:06 -05:00
|
|
|
sig.append(net_map_at(inst->GetOutputBit(i)));
|
2017-02-04 06:36:00 -06:00
|
|
|
dummy_wire = NULL;
|
|
|
|
} else {
|
|
|
|
if (dummy_wire == NULL)
|
|
|
|
dummy_wire = module->addWire(NEW_ID);
|
|
|
|
else
|
|
|
|
dummy_wire->width++;
|
|
|
|
sig.append(RTLIL::SigSpec(dummy_wire, dummy_wire->width - 1));
|
|
|
|
}
|
|
|
|
return sig;
|
2016-02-13 01:19:30 -06:00
|
|
|
}
|
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
bool import_netlist_instance_gates(Instance *inst)
|
|
|
|
{
|
|
|
|
if (inst->Type() == PRIM_AND) {
|
2017-07-24 04:29:06 -05:00
|
|
|
module->addAndGate(RTLIL::escape_id(inst->Name()), net_map_at(inst->GetInput1()), net_map_at(inst->GetInput2()), net_map_at(inst->GetOutput()));
|
2017-02-04 06:36:00 -06:00
|
|
|
return true;
|
|
|
|
}
|
2016-02-02 04:26:07 -06:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == PRIM_NAND) {
|
|
|
|
RTLIL::SigSpec tmp = module->addWire(NEW_ID);
|
2017-07-24 04:29:06 -05:00
|
|
|
module->addAndGate(NEW_ID, net_map_at(inst->GetInput1()), net_map_at(inst->GetInput2()), tmp);
|
|
|
|
module->addNotGate(RTLIL::escape_id(inst->Name()), tmp, net_map_at(inst->GetOutput()));
|
2017-02-04 06:36:00 -06:00
|
|
|
return true;
|
|
|
|
}
|
2014-03-14 05:46:13 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == PRIM_OR) {
|
2017-07-24 04:29:06 -05:00
|
|
|
module->addOrGate(RTLIL::escape_id(inst->Name()), net_map_at(inst->GetInput1()), net_map_at(inst->GetInput2()), net_map_at(inst->GetOutput()));
|
2017-02-04 06:36:00 -06:00
|
|
|
return true;
|
|
|
|
}
|
2014-03-14 05:46:13 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == PRIM_NOR) {
|
|
|
|
RTLIL::SigSpec tmp = module->addWire(NEW_ID);
|
2017-07-24 04:29:06 -05:00
|
|
|
module->addOrGate(NEW_ID, net_map_at(inst->GetInput1()), net_map_at(inst->GetInput2()), tmp);
|
|
|
|
module->addNotGate(RTLIL::escape_id(inst->Name()), tmp, net_map_at(inst->GetOutput()));
|
2017-02-04 06:36:00 -06:00
|
|
|
return true;
|
|
|
|
}
|
2014-03-17 08:42:07 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == PRIM_XOR) {
|
2017-07-24 04:29:06 -05:00
|
|
|
module->addXorGate(RTLIL::escape_id(inst->Name()), net_map_at(inst->GetInput1()), net_map_at(inst->GetInput2()), net_map_at(inst->GetOutput()));
|
2017-02-04 06:36:00 -06:00
|
|
|
return true;
|
|
|
|
}
|
2014-03-14 05:46:13 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == PRIM_XNOR) {
|
2017-07-24 04:29:06 -05:00
|
|
|
module->addXnorGate(RTLIL::escape_id(inst->Name()), net_map_at(inst->GetInput1()), net_map_at(inst->GetInput2()), net_map_at(inst->GetOutput()));
|
2017-02-04 06:36:00 -06:00
|
|
|
return true;
|
|
|
|
}
|
2014-03-14 05:46:13 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == PRIM_BUF) {
|
2017-07-24 04:29:06 -05:00
|
|
|
module->addBufGate(RTLIL::escape_id(inst->Name()), net_map_at(inst->GetInput()), net_map_at(inst->GetOutput()));
|
2017-02-04 06:36:00 -06:00
|
|
|
return true;
|
|
|
|
}
|
2014-03-14 05:46:13 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == PRIM_INV) {
|
2017-07-24 04:29:06 -05:00
|
|
|
module->addNotGate(RTLIL::escape_id(inst->Name()), net_map_at(inst->GetInput()), net_map_at(inst->GetOutput()));
|
2017-02-04 06:36:00 -06:00
|
|
|
return true;
|
|
|
|
}
|
2014-03-14 05:46:13 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == PRIM_MUX) {
|
2017-07-24 04:29:06 -05:00
|
|
|
module->addMuxGate(RTLIL::escape_id(inst->Name()), net_map_at(inst->GetInput1()), net_map_at(inst->GetInput2()), net_map_at(inst->GetControl()), net_map_at(inst->GetOutput()));
|
2017-02-04 06:36:00 -06:00
|
|
|
return true;
|
|
|
|
}
|
2014-03-17 08:42:07 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == PRIM_TRI) {
|
2017-07-24 04:29:06 -05:00
|
|
|
module->addMuxGate(RTLIL::escape_id(inst->Name()), RTLIL::State::Sz, net_map_at(inst->GetInput()), net_map_at(inst->GetControl()), net_map_at(inst->GetOutput()));
|
2017-02-04 06:36:00 -06:00
|
|
|
return true;
|
|
|
|
}
|
2014-03-14 05:46:13 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == PRIM_FADD)
|
|
|
|
{
|
2017-07-24 04:29:06 -05:00
|
|
|
RTLIL::SigSpec a = net_map_at(inst->GetInput1()), b = net_map_at(inst->GetInput2()), c = net_map_at(inst->GetCin());
|
|
|
|
RTLIL::SigSpec x = inst->GetCout() ? net_map_at(inst->GetCout()) : module->addWire(NEW_ID);
|
|
|
|
RTLIL::SigSpec y = inst->GetOutput() ? net_map_at(inst->GetOutput()) : module->addWire(NEW_ID);
|
2017-02-04 06:36:00 -06:00
|
|
|
RTLIL::SigSpec tmp1 = module->addWire(NEW_ID);
|
|
|
|
RTLIL::SigSpec tmp2 = module->addWire(NEW_ID);
|
|
|
|
RTLIL::SigSpec tmp3 = module->addWire(NEW_ID);
|
|
|
|
module->addXorGate(NEW_ID, a, b, tmp1);
|
|
|
|
module->addXorGate(RTLIL::escape_id(inst->Name()), tmp1, c, y);
|
|
|
|
module->addAndGate(NEW_ID, tmp1, c, tmp2);
|
|
|
|
module->addAndGate(NEW_ID, a, b, tmp3);
|
|
|
|
module->addOrGate(NEW_ID, tmp2, tmp3, x);
|
|
|
|
return true;
|
|
|
|
}
|
2014-03-17 08:42:07 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == PRIM_DFFRS)
|
|
|
|
{
|
|
|
|
if (inst->GetSet()->IsGnd() && inst->GetReset()->IsGnd())
|
2017-07-24 04:29:06 -05:00
|
|
|
module->addDffGate(RTLIL::escape_id(inst->Name()), net_map_at(inst->GetClock()), net_map_at(inst->GetInput()), net_map_at(inst->GetOutput()));
|
2017-02-04 06:36:00 -06:00
|
|
|
else if (inst->GetSet()->IsGnd())
|
2017-07-24 04:29:06 -05:00
|
|
|
module->addAdffGate(RTLIL::escape_id(inst->Name()), net_map_at(inst->GetClock()), net_map_at(inst->GetReset()),
|
|
|
|
net_map_at(inst->GetInput()), net_map_at(inst->GetOutput()), false);
|
2017-02-04 06:36:00 -06:00
|
|
|
else if (inst->GetReset()->IsGnd())
|
2017-07-24 04:29:06 -05:00
|
|
|
module->addAdffGate(RTLIL::escape_id(inst->Name()), net_map_at(inst->GetClock()), net_map_at(inst->GetSet()),
|
|
|
|
net_map_at(inst->GetInput()), net_map_at(inst->GetOutput()), true);
|
2017-02-04 06:36:00 -06:00
|
|
|
else
|
2017-07-24 04:29:06 -05:00
|
|
|
module->addDffsrGate(RTLIL::escape_id(inst->Name()), net_map_at(inst->GetClock()), net_map_at(inst->GetSet()), net_map_at(inst->GetReset()),
|
|
|
|
net_map_at(inst->GetInput()), net_map_at(inst->GetOutput()));
|
2017-02-04 06:36:00 -06:00
|
|
|
return true;
|
|
|
|
}
|
2014-03-14 05:46:13 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
return false;
|
2014-03-14 05:46:13 -05:00
|
|
|
}
|
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
bool import_netlist_instance_cells(Instance *inst)
|
|
|
|
{
|
|
|
|
if (inst->Type() == PRIM_AND) {
|
2017-07-24 04:29:06 -05:00
|
|
|
module->addAnd(RTLIL::escape_id(inst->Name()), net_map_at(inst->GetInput1()), net_map_at(inst->GetInput2()), net_map_at(inst->GetOutput()));
|
2017-02-04 06:36:00 -06:00
|
|
|
return true;
|
|
|
|
}
|
2014-03-14 05:46:13 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == PRIM_NAND) {
|
|
|
|
RTLIL::SigSpec tmp = module->addWire(NEW_ID);
|
2017-07-24 04:29:06 -05:00
|
|
|
module->addAnd(NEW_ID, net_map_at(inst->GetInput1()), net_map_at(inst->GetInput2()), tmp);
|
|
|
|
module->addNot(RTLIL::escape_id(inst->Name()), tmp, net_map_at(inst->GetOutput()));
|
2017-02-04 06:36:00 -06:00
|
|
|
return true;
|
|
|
|
}
|
2014-03-14 05:46:13 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == PRIM_OR) {
|
2017-07-24 04:29:06 -05:00
|
|
|
module->addOr(RTLIL::escape_id(inst->Name()), net_map_at(inst->GetInput1()), net_map_at(inst->GetInput2()), net_map_at(inst->GetOutput()));
|
2017-02-04 06:36:00 -06:00
|
|
|
return true;
|
|
|
|
}
|
2014-03-17 08:42:07 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == PRIM_NOR) {
|
|
|
|
RTLIL::SigSpec tmp = module->addWire(NEW_ID);
|
2017-07-24 04:29:06 -05:00
|
|
|
module->addOr(NEW_ID, net_map_at(inst->GetInput1()), net_map_at(inst->GetInput2()), tmp);
|
|
|
|
module->addNot(RTLIL::escape_id(inst->Name()), tmp, net_map_at(inst->GetOutput()));
|
2017-02-04 06:36:00 -06:00
|
|
|
return true;
|
|
|
|
}
|
2014-03-14 05:46:13 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == PRIM_XOR) {
|
2017-07-24 04:29:06 -05:00
|
|
|
module->addXor(RTLIL::escape_id(inst->Name()), net_map_at(inst->GetInput1()), net_map_at(inst->GetInput2()), net_map_at(inst->GetOutput()));
|
2017-02-04 06:36:00 -06:00
|
|
|
return true;
|
|
|
|
}
|
2014-03-14 05:46:13 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == PRIM_XNOR) {
|
2017-07-24 04:29:06 -05:00
|
|
|
module->addXnor(RTLIL::escape_id(inst->Name()), net_map_at(inst->GetInput1()), net_map_at(inst->GetInput2()), net_map_at(inst->GetOutput()));
|
2017-02-04 06:36:00 -06:00
|
|
|
return true;
|
|
|
|
}
|
2015-11-24 05:16:19 -06:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == PRIM_INV) {
|
2017-07-24 04:29:06 -05:00
|
|
|
module->addNot(RTLIL::escape_id(inst->Name()), net_map_at(inst->GetInput()), net_map_at(inst->GetOutput()));
|
2017-02-04 06:36:00 -06:00
|
|
|
return true;
|
2014-03-14 10:40:25 -05:00
|
|
|
}
|
2014-03-14 05:46:13 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == PRIM_MUX) {
|
2017-07-24 04:29:06 -05:00
|
|
|
module->addMux(RTLIL::escape_id(inst->Name()), net_map_at(inst->GetInput1()), net_map_at(inst->GetInput2()), net_map_at(inst->GetControl()), net_map_at(inst->GetOutput()));
|
2017-02-04 06:36:00 -06:00
|
|
|
return true;
|
|
|
|
}
|
2014-03-14 05:46:13 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == PRIM_TRI) {
|
2017-07-24 04:29:06 -05:00
|
|
|
module->addMux(RTLIL::escape_id(inst->Name()), RTLIL::State::Sz, net_map_at(inst->GetInput()), net_map_at(inst->GetControl()), net_map_at(inst->GetOutput()));
|
2017-02-04 06:36:00 -06:00
|
|
|
return true;
|
|
|
|
}
|
2014-03-14 05:46:13 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == PRIM_FADD)
|
|
|
|
{
|
|
|
|
RTLIL::SigSpec a_plus_b = module->addWire(NEW_ID, 2);
|
2017-07-24 04:29:06 -05:00
|
|
|
RTLIL::SigSpec y = inst->GetOutput() ? net_map_at(inst->GetOutput()) : module->addWire(NEW_ID);
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->GetCout())
|
2017-07-24 04:29:06 -05:00
|
|
|
y.append(net_map_at(inst->GetCout()));
|
|
|
|
module->addAdd(NEW_ID, net_map_at(inst->GetInput1()), net_map_at(inst->GetInput2()), a_plus_b);
|
|
|
|
module->addAdd(RTLIL::escape_id(inst->Name()), a_plus_b, net_map_at(inst->GetCin()), y);
|
2017-02-04 06:36:00 -06:00
|
|
|
return true;
|
|
|
|
}
|
2014-03-14 05:46:13 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == PRIM_DFFRS)
|
|
|
|
{
|
|
|
|
if (inst->GetSet()->IsGnd() && inst->GetReset()->IsGnd())
|
2017-07-24 04:29:06 -05:00
|
|
|
module->addDff(RTLIL::escape_id(inst->Name()), net_map_at(inst->GetClock()), net_map_at(inst->GetInput()), net_map_at(inst->GetOutput()));
|
2017-02-04 06:36:00 -06:00
|
|
|
else if (inst->GetSet()->IsGnd())
|
2017-07-24 04:29:06 -05:00
|
|
|
module->addAdff(RTLIL::escape_id(inst->Name()), net_map_at(inst->GetClock()), net_map_at(inst->GetReset()),
|
|
|
|
net_map_at(inst->GetInput()), net_map_at(inst->GetOutput()), RTLIL::State::S0);
|
2017-02-04 06:36:00 -06:00
|
|
|
else if (inst->GetReset()->IsGnd())
|
2017-07-24 04:29:06 -05:00
|
|
|
module->addAdff(RTLIL::escape_id(inst->Name()), net_map_at(inst->GetClock()), net_map_at(inst->GetSet()),
|
|
|
|
net_map_at(inst->GetInput()), net_map_at(inst->GetOutput()), RTLIL::State::S1);
|
2017-02-04 06:36:00 -06:00
|
|
|
else
|
2017-07-24 04:29:06 -05:00
|
|
|
module->addDffsr(RTLIL::escape_id(inst->Name()), net_map_at(inst->GetClock()), net_map_at(inst->GetSet()), net_map_at(inst->GetReset()),
|
|
|
|
net_map_at(inst->GetInput()), net_map_at(inst->GetOutput()));
|
2017-02-04 06:36:00 -06:00
|
|
|
return true;
|
|
|
|
}
|
2014-03-14 05:46:13 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == PRIM_DLATCHRS)
|
|
|
|
{
|
|
|
|
if (inst->GetSet()->IsGnd() && inst->GetReset()->IsGnd())
|
2017-07-24 04:29:06 -05:00
|
|
|
module->addDlatch(RTLIL::escape_id(inst->Name()), net_map_at(inst->GetControl()), net_map_at(inst->GetInput()), net_map_at(inst->GetOutput()));
|
2017-02-04 06:36:00 -06:00
|
|
|
else
|
2017-07-24 04:29:06 -05:00
|
|
|
module->addDlatchsr(RTLIL::escape_id(inst->Name()), net_map_at(inst->GetControl()), net_map_at(inst->GetSet()), net_map_at(inst->GetReset()),
|
|
|
|
net_map_at(inst->GetInput()), net_map_at(inst->GetOutput()));
|
2017-02-04 06:36:00 -06:00
|
|
|
return true;
|
|
|
|
}
|
2014-03-14 05:46:13 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
#define IN operatorInput(inst)
|
|
|
|
#define IN1 operatorInput1(inst)
|
|
|
|
#define IN2 operatorInput2(inst)
|
|
|
|
#define OUT operatorOutput(inst)
|
|
|
|
#define SIGNED inst->View()->IsSigned()
|
|
|
|
|
|
|
|
if (inst->Type() == OPER_ADDER) {
|
|
|
|
RTLIL::SigSpec out = OUT;
|
|
|
|
if (inst->GetCout() != NULL)
|
2017-07-24 04:29:06 -05:00
|
|
|
out.append(net_map_at(inst->GetCout()));
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->GetCin()->IsGnd()) {
|
|
|
|
module->addAdd(RTLIL::escape_id(inst->Name()), IN1, IN2, out, SIGNED);
|
|
|
|
} else {
|
|
|
|
RTLIL::SigSpec tmp = module->addWire(NEW_ID, GetSize(out));
|
|
|
|
module->addAdd(NEW_ID, IN1, IN2, tmp, SIGNED);
|
2017-07-24 04:29:06 -05:00
|
|
|
module->addAdd(RTLIL::escape_id(inst->Name()), tmp, net_map_at(inst->GetCin()), out, false);
|
2017-02-04 06:36:00 -06:00
|
|
|
}
|
|
|
|
return true;
|
2016-02-13 01:19:30 -06:00
|
|
|
}
|
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == OPER_MULTIPLIER) {
|
|
|
|
module->addMul(RTLIL::escape_id(inst->Name()), IN1, IN2, OUT, SIGNED);
|
|
|
|
return true;
|
2016-02-13 01:19:30 -06:00
|
|
|
}
|
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == OPER_DIVIDER) {
|
|
|
|
module->addDiv(RTLIL::escape_id(inst->Name()), IN1, IN2, OUT, SIGNED);
|
|
|
|
return true;
|
|
|
|
}
|
2014-03-14 05:46:13 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == OPER_MODULO) {
|
|
|
|
module->addMod(RTLIL::escape_id(inst->Name()), IN1, IN2, OUT, SIGNED);
|
|
|
|
return true;
|
|
|
|
}
|
2014-03-14 05:46:13 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == OPER_REMAINDER) {
|
|
|
|
module->addMod(RTLIL::escape_id(inst->Name()), IN1, IN2, OUT, SIGNED);
|
|
|
|
return true;
|
|
|
|
}
|
2014-03-14 05:46:13 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == OPER_SHIFT_LEFT) {
|
|
|
|
module->addShl(RTLIL::escape_id(inst->Name()), IN1, IN2, OUT, false);
|
|
|
|
return true;
|
|
|
|
}
|
2014-03-14 05:46:13 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == OPER_ENABLED_DECODER) {
|
|
|
|
RTLIL::SigSpec vec;
|
2017-07-24 04:29:06 -05:00
|
|
|
vec.append(net_map_at(inst->GetControl()));
|
2017-02-04 06:36:00 -06:00
|
|
|
for (unsigned i = 1; i < inst->OutputSize(); i++) {
|
|
|
|
vec.append(RTLIL::State::S0);
|
|
|
|
}
|
|
|
|
module->addShl(RTLIL::escape_id(inst->Name()), vec, IN, OUT, false);
|
|
|
|
return true;
|
|
|
|
}
|
2014-03-14 05:46:13 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == OPER_DECODER) {
|
|
|
|
RTLIL::SigSpec vec;
|
|
|
|
vec.append(RTLIL::State::S1);
|
|
|
|
for (unsigned i = 1; i < inst->OutputSize(); i++) {
|
|
|
|
vec.append(RTLIL::State::S0);
|
|
|
|
}
|
|
|
|
module->addShl(RTLIL::escape_id(inst->Name()), vec, IN, OUT, false);
|
|
|
|
return true;
|
|
|
|
}
|
2014-03-14 05:46:13 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == OPER_SHIFT_RIGHT) {
|
|
|
|
Net *net_cin = inst->GetCin();
|
|
|
|
Net *net_a_msb = inst->GetInput1Bit(0);
|
|
|
|
if (net_cin->IsGnd())
|
|
|
|
module->addShr(RTLIL::escape_id(inst->Name()), IN1, IN2, OUT, false);
|
|
|
|
else if (net_cin == net_a_msb)
|
|
|
|
module->addSshr(RTLIL::escape_id(inst->Name()), IN1, IN2, OUT, true);
|
|
|
|
else
|
|
|
|
log_error("Can't import Verific OPER_SHIFT_RIGHT instance %s: carry_in is neither 0 nor msb of left input\n", inst->Name());
|
|
|
|
return true;
|
|
|
|
}
|
2014-03-14 05:46:13 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == OPER_REDUCE_AND) {
|
2017-07-24 04:29:06 -05:00
|
|
|
module->addReduceAnd(RTLIL::escape_id(inst->Name()), IN, net_map_at(inst->GetOutput()), SIGNED);
|
2017-02-04 06:36:00 -06:00
|
|
|
return true;
|
|
|
|
}
|
2014-03-14 05:46:13 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == OPER_REDUCE_OR) {
|
2017-07-24 04:29:06 -05:00
|
|
|
module->addReduceOr(RTLIL::escape_id(inst->Name()), IN, net_map_at(inst->GetOutput()), SIGNED);
|
2017-02-04 06:36:00 -06:00
|
|
|
return true;
|
|
|
|
}
|
2014-03-14 05:46:13 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == OPER_REDUCE_XOR) {
|
2017-07-24 04:29:06 -05:00
|
|
|
module->addReduceXor(RTLIL::escape_id(inst->Name()), IN, net_map_at(inst->GetOutput()), SIGNED);
|
2017-02-04 06:36:00 -06:00
|
|
|
return true;
|
|
|
|
}
|
2014-03-14 05:46:13 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == OPER_REDUCE_XNOR) {
|
2017-07-24 04:29:06 -05:00
|
|
|
module->addReduceXnor(RTLIL::escape_id(inst->Name()), IN, net_map_at(inst->GetOutput()), SIGNED);
|
2017-02-04 06:36:00 -06:00
|
|
|
return true;
|
|
|
|
}
|
2014-03-14 05:46:13 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == OPER_LESSTHAN) {
|
|
|
|
Net *net_cin = inst->GetCin();
|
|
|
|
if (net_cin->IsGnd())
|
2017-07-24 04:29:06 -05:00
|
|
|
module->addLt(RTLIL::escape_id(inst->Name()), IN1, IN2, net_map_at(inst->GetOutput()), SIGNED);
|
2017-02-04 06:36:00 -06:00
|
|
|
else if (net_cin->IsPwr())
|
2017-07-24 04:29:06 -05:00
|
|
|
module->addLe(RTLIL::escape_id(inst->Name()), IN1, IN2, net_map_at(inst->GetOutput()), SIGNED);
|
2017-02-04 06:36:00 -06:00
|
|
|
else
|
|
|
|
log_error("Can't import Verific OPER_LESSTHAN instance %s: carry_in is neither 0 nor 1\n", inst->Name());
|
|
|
|
return true;
|
|
|
|
}
|
2014-03-14 05:46:13 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == OPER_WIDE_AND) {
|
|
|
|
module->addAnd(RTLIL::escape_id(inst->Name()), IN1, IN2, OUT, SIGNED);
|
|
|
|
return true;
|
|
|
|
}
|
2014-03-14 05:46:13 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == OPER_WIDE_OR) {
|
|
|
|
module->addOr(RTLIL::escape_id(inst->Name()), IN1, IN2, OUT, SIGNED);
|
|
|
|
return true;
|
|
|
|
}
|
2014-03-14 05:46:13 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == OPER_WIDE_XOR) {
|
|
|
|
module->addXor(RTLIL::escape_id(inst->Name()), IN1, IN2, OUT, SIGNED);
|
|
|
|
return true;
|
|
|
|
}
|
2014-03-14 05:46:13 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == OPER_WIDE_XNOR) {
|
|
|
|
module->addXnor(RTLIL::escape_id(inst->Name()), IN1, IN2, OUT, SIGNED);
|
|
|
|
return true;
|
|
|
|
}
|
2014-03-14 05:46:13 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == OPER_WIDE_BUF) {
|
|
|
|
module->addPos(RTLIL::escape_id(inst->Name()), IN, OUT, SIGNED);
|
|
|
|
return true;
|
|
|
|
}
|
2014-03-14 05:46:13 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == OPER_WIDE_INV) {
|
|
|
|
module->addNot(RTLIL::escape_id(inst->Name()), IN, OUT, SIGNED);
|
|
|
|
return true;
|
|
|
|
}
|
2014-03-17 08:42:07 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == OPER_MINUS) {
|
|
|
|
module->addSub(RTLIL::escape_id(inst->Name()), IN1, IN2, OUT, SIGNED);
|
|
|
|
return true;
|
|
|
|
}
|
2014-03-16 20:43:53 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == OPER_UMINUS) {
|
|
|
|
module->addNeg(RTLIL::escape_id(inst->Name()), IN, OUT, SIGNED);
|
|
|
|
return true;
|
|
|
|
}
|
2014-03-14 05:46:13 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == OPER_EQUAL) {
|
2017-07-24 04:29:06 -05:00
|
|
|
module->addEq(RTLIL::escape_id(inst->Name()), IN1, IN2, net_map_at(inst->GetOutput()), SIGNED);
|
2017-02-04 06:36:00 -06:00
|
|
|
return true;
|
|
|
|
}
|
2014-03-14 05:46:13 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == OPER_NEQUAL) {
|
2017-07-24 04:29:06 -05:00
|
|
|
module->addNe(RTLIL::escape_id(inst->Name()), IN1, IN2, net_map_at(inst->GetOutput()), SIGNED);
|
2017-02-04 06:36:00 -06:00
|
|
|
return true;
|
|
|
|
}
|
2014-03-14 05:46:13 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == OPER_WIDE_MUX) {
|
2017-07-24 04:29:06 -05:00
|
|
|
module->addMux(RTLIL::escape_id(inst->Name()), IN1, IN2, net_map_at(inst->GetControl()), OUT);
|
2017-02-04 06:36:00 -06:00
|
|
|
return true;
|
|
|
|
}
|
2014-03-14 05:46:13 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == OPER_WIDE_TRI) {
|
2017-07-24 04:29:06 -05:00
|
|
|
module->addMux(RTLIL::escape_id(inst->Name()), RTLIL::SigSpec(RTLIL::State::Sz, inst->OutputSize()), IN, net_map_at(inst->GetControl()), OUT);
|
2017-02-04 06:36:00 -06:00
|
|
|
return true;
|
|
|
|
}
|
2014-03-09 14:40:04 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == OPER_WIDE_DFFRS) {
|
|
|
|
RTLIL::SigSpec sig_set = operatorInport(inst, "set");
|
|
|
|
RTLIL::SigSpec sig_reset = operatorInport(inst, "reset");
|
|
|
|
if (sig_set.is_fully_const() && !sig_set.as_bool() && sig_reset.is_fully_const() && !sig_reset.as_bool())
|
2017-07-24 04:29:06 -05:00
|
|
|
module->addDff(RTLIL::escape_id(inst->Name()), net_map_at(inst->GetClock()), IN, OUT);
|
2017-02-04 06:36:00 -06:00
|
|
|
else
|
2017-07-24 04:29:06 -05:00
|
|
|
module->addDffsr(RTLIL::escape_id(inst->Name()), net_map_at(inst->GetClock()), sig_set, sig_reset, IN, OUT);
|
2017-02-04 06:36:00 -06:00
|
|
|
return true;
|
|
|
|
}
|
2014-03-09 14:40:04 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
#undef IN
|
|
|
|
#undef IN1
|
|
|
|
#undef IN2
|
|
|
|
#undef OUT
|
|
|
|
#undef SIGNED
|
2014-03-09 14:40:04 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
return false;
|
|
|
|
}
|
2014-03-09 14:40:04 -05:00
|
|
|
|
2017-07-24 04:29:06 -05:00
|
|
|
void import_netlist(RTLIL::Design *design, Netlist *nl, std::set<Netlist*> &nl_todo)
|
2014-03-09 14:40:04 -05:00
|
|
|
{
|
2017-02-04 06:36:00 -06:00
|
|
|
std::string module_name = nl->IsOperator() ? std::string("$verific$") + nl->Owner()->Name() : RTLIL::escape_id(nl->Owner()->Name());
|
2014-03-09 14:40:04 -05:00
|
|
|
|
2017-07-24 04:29:06 -05:00
|
|
|
netlist = nl;
|
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (design->has(module_name)) {
|
|
|
|
if (!nl->IsOperator())
|
|
|
|
log_cmd_error("Re-definition of module `%s'.\n", nl->Owner()->Name());
|
|
|
|
return;
|
|
|
|
}
|
2014-03-09 14:40:04 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
module = new RTLIL::Module;
|
|
|
|
module->name = module_name;
|
|
|
|
design->add(module);
|
2014-03-09 14:40:04 -05:00
|
|
|
|
2017-07-22 09:16:44 -05:00
|
|
|
if (nl->IsBlackBox()) {
|
|
|
|
log("Importing blackbox module %s.\n", RTLIL::id2cstr(module->name));
|
|
|
|
module->set_bool_attribute("\\blackbox");
|
|
|
|
} else {
|
|
|
|
log("Importing module %s.\n", RTLIL::id2cstr(module->name));
|
|
|
|
}
|
2014-03-16 19:56:00 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
SetIter si;
|
|
|
|
MapIter mi, mi2;
|
|
|
|
Port *port;
|
|
|
|
PortBus *portbus;
|
|
|
|
Net *net;
|
|
|
|
NetBus *netbus;
|
|
|
|
Instance *inst;
|
|
|
|
PortRef *pr;
|
2014-03-09 14:40:04 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
FOREACH_PORT_OF_NETLIST(nl, mi, port)
|
|
|
|
{
|
|
|
|
if (port->Bus())
|
|
|
|
continue;
|
2014-03-09 14:40:04 -05:00
|
|
|
|
2017-07-24 04:29:06 -05:00
|
|
|
if (verbose)
|
|
|
|
log(" importing port %s.\n", port->Name());
|
2017-02-04 06:36:00 -06:00
|
|
|
|
|
|
|
RTLIL::Wire *wire = module->addWire(RTLIL::escape_id(port->Name()));
|
|
|
|
import_attributes(wire->attributes, port);
|
2014-03-09 14:40:04 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
wire->port_id = nl->IndexOf(port) + 1;
|
2014-03-09 14:40:04 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (port->GetDir() == DIR_INOUT || port->GetDir() == DIR_IN)
|
|
|
|
wire->port_input = true;
|
|
|
|
if (port->GetDir() == DIR_INOUT || port->GetDir() == DIR_OUT)
|
|
|
|
wire->port_output = true;
|
2014-03-09 14:40:04 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (port->GetNet()) {
|
|
|
|
net = port->GetNet();
|
2014-03-09 14:40:04 -05:00
|
|
|
if (net_map.count(net) == 0)
|
2017-02-04 06:36:00 -06:00
|
|
|
net_map[net] = wire;
|
2014-03-09 14:40:04 -05:00
|
|
|
else if (wire->port_input)
|
2017-07-24 04:29:06 -05:00
|
|
|
module->connect(net_map_at(net), wire);
|
2014-03-09 14:40:04 -05:00
|
|
|
else
|
2017-07-24 04:29:06 -05:00
|
|
|
module->connect(wire, net_map_at(net));
|
2014-03-09 14:40:04 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
FOREACH_PORTBUS_OF_NETLIST(nl, mi, portbus)
|
2014-03-16 11:05:05 -05:00
|
|
|
{
|
2017-07-24 04:29:06 -05:00
|
|
|
if (verbose)
|
|
|
|
log(" importing portbus %s.\n", portbus->Name());
|
2017-02-04 06:36:00 -06:00
|
|
|
|
|
|
|
RTLIL::Wire *wire = module->addWire(RTLIL::escape_id(portbus->Name()), portbus->Size());
|
|
|
|
wire->start_offset = min(portbus->LeftIndex(), portbus->RightIndex());
|
|
|
|
import_attributes(wire->attributes, portbus);
|
|
|
|
|
|
|
|
if (portbus->GetDir() == DIR_INOUT || portbus->GetDir() == DIR_IN)
|
|
|
|
wire->port_input = true;
|
|
|
|
if (portbus->GetDir() == DIR_INOUT || portbus->GetDir() == DIR_OUT)
|
|
|
|
wire->port_output = true;
|
|
|
|
|
|
|
|
for (int i = portbus->LeftIndex();; i += portbus->IsUp() ? +1 : -1) {
|
|
|
|
if (portbus->ElementAtIndex(i) && portbus->ElementAtIndex(i)->GetNet()) {
|
|
|
|
net = portbus->ElementAtIndex(i)->GetNet();
|
|
|
|
RTLIL::SigBit bit(wire, i - wire->start_offset);
|
|
|
|
if (net_map.count(net) == 0)
|
|
|
|
net_map[net] = bit;
|
|
|
|
else if (wire->port_input)
|
2017-07-24 04:29:06 -05:00
|
|
|
module->connect(net_map_at(net), bit);
|
2017-02-04 06:36:00 -06:00
|
|
|
else
|
2017-07-24 04:29:06 -05:00
|
|
|
module->connect(bit, net_map_at(net));
|
2014-03-16 11:05:05 -05:00
|
|
|
}
|
2017-02-04 06:36:00 -06:00
|
|
|
if (i == portbus->RightIndex())
|
|
|
|
break;
|
2014-03-16 11:05:05 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
module->fixup_ports();
|
2014-03-09 14:40:04 -05:00
|
|
|
|
2017-02-11 04:40:18 -06:00
|
|
|
dict<Net*, char, hash_ptr_ops> init_nets;
|
2017-02-09 05:53:46 -06:00
|
|
|
pool<Net*, hash_ptr_ops> anyconst_nets;
|
|
|
|
pool<Net*, hash_ptr_ops> anyseq_nets;
|
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
FOREACH_NET_OF_NETLIST(nl, mi, net)
|
|
|
|
{
|
|
|
|
if (net->IsRamNet())
|
|
|
|
{
|
|
|
|
RTLIL::Memory *memory = new RTLIL::Memory;
|
|
|
|
memory->name = RTLIL::escape_id(net->Name());
|
|
|
|
log_assert(module->count_id(memory->name) == 0);
|
|
|
|
module->memories[memory->name] = memory;
|
|
|
|
|
|
|
|
int number_of_bits = net->Size();
|
|
|
|
int bits_in_word = number_of_bits;
|
|
|
|
FOREACH_PORTREF_OF_NET(net, si, pr) {
|
|
|
|
if (pr->GetInst()->Type() == OPER_READ_PORT) {
|
|
|
|
bits_in_word = min<int>(bits_in_word, pr->GetInst()->OutputSize());
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (pr->GetInst()->Type() == OPER_WRITE_PORT || pr->GetInst()->Type() == OPER_CLOCKED_WRITE_PORT) {
|
|
|
|
bits_in_word = min<int>(bits_in_word, pr->GetInst()->Input2Size());
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
log_error("Verific RamNet %s is connected to unsupported instance type %s (%s).\n",
|
|
|
|
net->Name(), pr->GetInst()->View()->Owner()->Name(), pr->GetInst()->Name());
|
|
|
|
}
|
2014-03-09 14:40:04 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
memory->width = bits_in_word;
|
|
|
|
memory->size = number_of_bits / bits_in_word;
|
2017-02-11 08:57:36 -06:00
|
|
|
|
|
|
|
const char *ascii_initdata = net->GetWideInitialValue();
|
|
|
|
if (ascii_initdata) {
|
|
|
|
while (*ascii_initdata != 0 && *ascii_initdata != '\'')
|
|
|
|
ascii_initdata++;
|
|
|
|
if (*ascii_initdata == '\'')
|
|
|
|
ascii_initdata++;
|
|
|
|
if (*ascii_initdata != 0) {
|
|
|
|
log_assert(*ascii_initdata == 'b');
|
|
|
|
ascii_initdata++;
|
|
|
|
}
|
|
|
|
for (int word_idx = 0; word_idx < memory->size; word_idx++) {
|
|
|
|
Const initval = Const(State::Sx, memory->width);
|
|
|
|
bool initval_valid = false;
|
|
|
|
for (int bit_idx = memory->width-1; bit_idx >= 0; bit_idx--) {
|
|
|
|
if (*ascii_initdata == 0)
|
|
|
|
break;
|
|
|
|
if (*ascii_initdata == '0' || *ascii_initdata == '1') {
|
|
|
|
initval[bit_idx] = (*ascii_initdata == '0') ? State::S0 : State::S1;
|
|
|
|
initval_valid = true;
|
|
|
|
}
|
|
|
|
ascii_initdata++;
|
|
|
|
}
|
|
|
|
if (initval_valid) {
|
|
|
|
RTLIL::Cell *cell = module->addCell(NEW_ID, "$meminit");
|
|
|
|
cell->parameters["\\WORDS"] = 1;
|
|
|
|
if (net->GetOrigTypeRange()->LeftRangeBound() < net->GetOrigTypeRange()->RightRangeBound())
|
|
|
|
cell->setPort("\\ADDR", word_idx);
|
|
|
|
else
|
|
|
|
cell->setPort("\\ADDR", memory->size - word_idx - 1);
|
|
|
|
cell->setPort("\\DATA", initval);
|
|
|
|
cell->parameters["\\MEMID"] = RTLIL::Const(memory->name.str());
|
|
|
|
cell->parameters["\\ABITS"] = 32;
|
|
|
|
cell->parameters["\\WIDTH"] = memory->width;
|
|
|
|
cell->parameters["\\PRIORITY"] = RTLIL::Const(autoidx-1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-02-04 06:36:00 -06:00
|
|
|
continue;
|
|
|
|
}
|
2014-03-09 14:40:04 -05:00
|
|
|
|
2017-02-11 04:40:18 -06:00
|
|
|
if (net->GetInitialValue())
|
|
|
|
init_nets[net] = net->GetInitialValue();
|
|
|
|
|
2017-02-09 05:53:46 -06:00
|
|
|
const char *rand_const_attr = net->GetAttValue(" rand_const");
|
|
|
|
const char *rand_attr = net->GetAttValue(" rand");
|
|
|
|
|
|
|
|
if (rand_const_attr != nullptr && !strcmp(rand_const_attr, "1"))
|
|
|
|
anyconst_nets.insert(net);
|
|
|
|
|
|
|
|
else if (rand_attr != nullptr && !strcmp(rand_attr, "1"))
|
|
|
|
anyseq_nets.insert(net);
|
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (net_map.count(net)) {
|
2017-07-24 04:29:06 -05:00
|
|
|
if (verbose)
|
|
|
|
log(" skipping net %s.\n", net->Name());
|
2017-02-04 06:36:00 -06:00
|
|
|
continue;
|
|
|
|
}
|
2014-03-09 14:40:04 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (net->Bus())
|
|
|
|
continue;
|
2014-03-09 14:40:04 -05:00
|
|
|
|
2017-07-24 04:29:06 -05:00
|
|
|
if (verbose)
|
|
|
|
log(" importing net %s.\n", net->Name());
|
2014-03-09 14:40:04 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
RTLIL::IdString wire_name = module->uniquify(RTLIL::escape_id(net->Name()));
|
|
|
|
RTLIL::Wire *wire = module->addWire(wire_name);
|
|
|
|
import_attributes(wire->attributes, net);
|
2014-03-09 14:40:04 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
net_map[net] = wire;
|
|
|
|
}
|
2014-03-09 14:40:04 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
FOREACH_NETBUS_OF_NETLIST(nl, mi, netbus)
|
|
|
|
{
|
|
|
|
bool found_new_net = false;
|
2014-03-09 14:40:04 -05:00
|
|
|
for (int i = netbus->LeftIndex();; i += netbus->IsUp() ? +1 : -1) {
|
2017-02-04 06:36:00 -06:00
|
|
|
net = netbus->ElementAtIndex(i);
|
|
|
|
if (net_map.count(net) == 0)
|
|
|
|
found_new_net = true;
|
2014-03-09 14:40:04 -05:00
|
|
|
if (i == netbus->RightIndex())
|
|
|
|
break;
|
|
|
|
}
|
2017-02-04 06:36:00 -06:00
|
|
|
|
|
|
|
if (found_new_net)
|
|
|
|
{
|
2017-07-24 04:29:06 -05:00
|
|
|
if (verbose)
|
|
|
|
log(" importing netbus %s.\n", netbus->Name());
|
2017-02-04 06:36:00 -06:00
|
|
|
|
|
|
|
RTLIL::IdString wire_name = module->uniquify(RTLIL::escape_id(netbus->Name()));
|
|
|
|
RTLIL::Wire *wire = module->addWire(wire_name, netbus->Size());
|
|
|
|
wire->start_offset = min(netbus->LeftIndex(), netbus->RightIndex());
|
|
|
|
import_attributes(wire->attributes, netbus);
|
|
|
|
|
2017-02-11 04:40:18 -06:00
|
|
|
RTLIL::Const initval = Const(State::Sx, GetSize(wire));
|
|
|
|
bool initval_valid = false;
|
|
|
|
|
|
|
|
for (int i = netbus->LeftIndex();; i += netbus->IsUp() ? +1 : -1)
|
|
|
|
{
|
|
|
|
if (netbus->ElementAtIndex(i))
|
|
|
|
{
|
|
|
|
int bitidx = i - wire->start_offset;
|
2017-02-04 06:36:00 -06:00
|
|
|
net = netbus->ElementAtIndex(i);
|
2017-02-11 04:40:18 -06:00
|
|
|
RTLIL::SigBit bit(wire, bitidx);
|
|
|
|
|
|
|
|
if (init_nets.count(net)) {
|
|
|
|
if (init_nets.at(net) == '0')
|
|
|
|
initval.bits.at(bitidx) = State::S0;
|
|
|
|
if (init_nets.at(net) == '1')
|
|
|
|
initval.bits.at(bitidx) = State::S1;
|
|
|
|
initval_valid = true;
|
|
|
|
init_nets.erase(net);
|
|
|
|
}
|
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (net_map.count(net) == 0)
|
|
|
|
net_map[net] = bit;
|
|
|
|
else
|
2017-07-24 04:29:06 -05:00
|
|
|
module->connect(bit, net_map_at(net));
|
2017-02-04 06:36:00 -06:00
|
|
|
}
|
2017-02-11 04:40:18 -06:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (i == netbus->RightIndex())
|
|
|
|
break;
|
|
|
|
}
|
2017-02-11 04:40:18 -06:00
|
|
|
|
|
|
|
if (initval_valid)
|
|
|
|
wire->attributes["\\init"] = initval;
|
2017-02-04 06:36:00 -06:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2017-07-24 04:29:06 -05:00
|
|
|
if (verbose)
|
|
|
|
log(" skipping netbus %s.\n", netbus->Name());
|
2017-02-04 06:36:00 -06:00
|
|
|
}
|
2017-02-09 05:53:46 -06:00
|
|
|
|
|
|
|
SigSpec anyconst_sig;
|
|
|
|
SigSpec anyseq_sig;
|
|
|
|
|
|
|
|
for (int i = netbus->RightIndex();; i += netbus->IsUp() ? -1 : +1) {
|
|
|
|
net = netbus->ElementAtIndex(i);
|
|
|
|
if (net != nullptr && anyconst_nets.count(net)) {
|
2017-07-24 04:29:06 -05:00
|
|
|
anyconst_sig.append(net_map_at(net));
|
2017-02-09 05:53:46 -06:00
|
|
|
anyconst_nets.erase(net);
|
|
|
|
}
|
|
|
|
if (net != nullptr && anyseq_nets.count(net)) {
|
2017-07-24 04:29:06 -05:00
|
|
|
anyseq_sig.append(net_map_at(net));
|
2017-02-09 05:53:46 -06:00
|
|
|
anyseq_nets.erase(net);
|
|
|
|
}
|
|
|
|
if (i == netbus->LeftIndex())
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (GetSize(anyconst_sig))
|
|
|
|
module->connect(anyconst_sig, module->Anyconst(NEW_ID, GetSize(anyconst_sig)));
|
|
|
|
|
|
|
|
if (GetSize(anyseq_sig))
|
|
|
|
module->connect(anyseq_sig, module->Anyseq(NEW_ID, GetSize(anyseq_sig)));
|
2014-03-09 14:40:04 -05:00
|
|
|
}
|
2017-02-04 06:36:00 -06:00
|
|
|
|
2017-02-11 04:40:18 -06:00
|
|
|
for (auto it : init_nets)
|
|
|
|
{
|
|
|
|
Const initval;
|
2017-07-24 04:29:06 -05:00
|
|
|
SigBit bit = net_map_at(it.first);
|
2017-02-11 04:40:18 -06:00
|
|
|
log_assert(bit.wire);
|
|
|
|
|
|
|
|
if (bit.wire->attributes.count("\\init"))
|
|
|
|
initval = bit.wire->attributes.at("\\init");
|
|
|
|
|
|
|
|
while (GetSize(initval) < GetSize(bit.wire))
|
|
|
|
initval.bits.push_back(State::Sx);
|
|
|
|
|
|
|
|
if (it.second == '0')
|
|
|
|
initval.bits.at(bit.offset) = State::S0;
|
|
|
|
if (it.second == '1')
|
|
|
|
initval.bits.at(bit.offset) = State::S1;
|
|
|
|
|
|
|
|
bit.wire->attributes["\\init"] = initval;
|
|
|
|
}
|
|
|
|
|
2017-02-09 05:53:46 -06:00
|
|
|
for (auto net : anyconst_nets)
|
2017-07-24 04:29:06 -05:00
|
|
|
module->connect(net_map_at(net), module->Anyconst(NEW_ID));
|
2017-02-09 05:53:46 -06:00
|
|
|
|
|
|
|
for (auto net : anyseq_nets)
|
2017-07-24 04:29:06 -05:00
|
|
|
module->connect(net_map_at(net), module->Anyseq(NEW_ID));
|
2017-02-09 05:53:46 -06:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
FOREACH_INSTANCE_OF_NETLIST(nl, mi, inst)
|
2014-03-09 14:40:04 -05:00
|
|
|
{
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == PRIM_SVA_POSEDGE) {
|
|
|
|
Net *in_net = inst->GetInput();
|
|
|
|
Net *out_net = inst->GetOutput();
|
|
|
|
sva_posedge_map[out_net] = in_net;
|
|
|
|
continue;
|
|
|
|
}
|
2014-03-09 14:40:04 -05:00
|
|
|
}
|
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
FOREACH_INSTANCE_OF_NETLIST(nl, mi, inst)
|
|
|
|
{
|
|
|
|
if (inst->Type() == PRIM_SVA_POSEDGE)
|
|
|
|
continue;
|
2014-03-09 14:40:04 -05:00
|
|
|
|
2017-07-24 04:29:06 -05:00
|
|
|
if (verbose)
|
|
|
|
log(" importing cell %s (%s).\n", inst->Name(), inst->View()->Owner()->Name());
|
|
|
|
|
2014-03-09 14:40:04 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == PRIM_SVA_AT)
|
|
|
|
{
|
|
|
|
Net *in1 = inst->GetInput1();
|
|
|
|
Net *in2 = inst->GetInput2();
|
|
|
|
Net *out = inst->GetOutput();
|
2014-03-09 14:40:04 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (sva_posedge_map.count(in2))
|
|
|
|
std::swap(in1, in2);
|
2016-02-13 01:19:30 -06:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
log_assert(sva_posedge_map.count(in1));
|
|
|
|
Net *clk = sva_posedge_map.at(in1);
|
2014-03-09 14:40:04 -05:00
|
|
|
|
2017-07-24 04:29:06 -05:00
|
|
|
SigBit outsig = net_map_at(out);
|
2017-02-04 06:36:00 -06:00
|
|
|
log_assert(outsig.wire && GetSize(outsig.wire) == 1);
|
2017-02-11 04:47:51 -06:00
|
|
|
outsig.wire->attributes["\\init"] = Const(1, 1);
|
2014-03-09 14:40:04 -05:00
|
|
|
|
2017-07-24 04:29:06 -05:00
|
|
|
module->addDff(NEW_ID, net_map_at(clk), net_map_at(in2), net_map_at(out));
|
2017-02-04 06:36:00 -06:00
|
|
|
continue;
|
2014-03-16 11:05:05 -05:00
|
|
|
}
|
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == PRIM_SVA_IMMEDIATE_ASSERT || inst->Type() == PRIM_SVA_ASSERT) {
|
|
|
|
Net *in = inst->GetInput();
|
2017-07-24 04:29:06 -05:00
|
|
|
module->addAssert(NEW_ID, net_map_at(in), State::S1);
|
2014-03-14 05:46:13 -05:00
|
|
|
continue;
|
2017-02-04 06:36:00 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
if (inst->Type() == PRIM_SVA_IMMEDIATE_ASSUME || inst->Type() == PRIM_SVA_ASSUME) {
|
|
|
|
Net *in = inst->GetInput();
|
2017-07-24 04:29:06 -05:00
|
|
|
module->addAssume(NEW_ID, net_map_at(in), State::S1);
|
2014-03-17 08:42:07 -05:00
|
|
|
continue;
|
2017-02-04 06:36:00 -06:00
|
|
|
}
|
2014-03-13 12:21:00 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == PRIM_SVA_IMMEDIATE_COVER || inst->Type() == PRIM_SVA_COVER) {
|
2017-02-04 07:14:26 -06:00
|
|
|
Net *in = inst->GetInput();
|
2017-07-24 04:29:06 -05:00
|
|
|
module->addCover(NEW_ID, net_map_at(in), State::S1);
|
2017-02-04 06:36:00 -06:00
|
|
|
continue;
|
|
|
|
}
|
2014-03-09 14:40:04 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == PRIM_PWR) {
|
2017-07-24 04:29:06 -05:00
|
|
|
module->connect(net_map_at(inst->GetOutput()), RTLIL::State::S1);
|
2017-02-04 06:36:00 -06:00
|
|
|
continue;
|
|
|
|
}
|
2014-03-09 14:40:04 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == PRIM_GND) {
|
2017-07-24 04:29:06 -05:00
|
|
|
module->connect(net_map_at(inst->GetOutput()), RTLIL::State::S0);
|
2017-02-04 06:36:00 -06:00
|
|
|
continue;
|
|
|
|
}
|
2014-03-09 14:40:04 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == PRIM_BUF) {
|
2017-07-24 04:29:06 -05:00
|
|
|
module->addBufGate(RTLIL::escape_id(inst->Name()), net_map_at(inst->GetInput()), net_map_at(inst->GetOutput()));
|
2017-02-04 06:36:00 -06:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (inst->Type() == PRIM_X) {
|
2017-07-24 04:29:06 -05:00
|
|
|
module->connect(net_map_at(inst->GetOutput()), RTLIL::State::Sx);
|
2017-02-04 06:36:00 -06:00
|
|
|
continue;
|
|
|
|
}
|
2015-11-16 05:38:56 -06:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == PRIM_Z) {
|
2017-07-24 04:29:06 -05:00
|
|
|
module->connect(net_map_at(inst->GetOutput()), RTLIL::State::Sz);
|
2017-02-04 06:36:00 -06:00
|
|
|
continue;
|
2014-03-09 14:40:04 -05:00
|
|
|
}
|
2017-02-04 06:36:00 -06:00
|
|
|
|
|
|
|
if (inst->Type() == OPER_READ_PORT)
|
|
|
|
{
|
|
|
|
RTLIL::Memory *memory = module->memories.at(RTLIL::escape_id(inst->GetInput()->Name()));
|
|
|
|
if (memory->width != int(inst->OutputSize()))
|
|
|
|
log_error("Import of asymetric memories from Verific is not supported yet: %s %s\n", inst->Name(), inst->GetInput()->Name());
|
|
|
|
|
|
|
|
RTLIL::SigSpec addr = operatorInput1(inst);
|
|
|
|
RTLIL::SigSpec data = operatorOutput(inst);
|
|
|
|
|
|
|
|
RTLIL::Cell *cell = module->addCell(RTLIL::escape_id(inst->Name()), "$memrd");
|
|
|
|
cell->parameters["\\MEMID"] = memory->name.str();
|
|
|
|
cell->parameters["\\CLK_ENABLE"] = false;
|
|
|
|
cell->parameters["\\CLK_POLARITY"] = true;
|
|
|
|
cell->parameters["\\TRANSPARENT"] = false;
|
|
|
|
cell->parameters["\\ABITS"] = GetSize(addr);
|
|
|
|
cell->parameters["\\WIDTH"] = GetSize(data);
|
|
|
|
cell->setPort("\\CLK", RTLIL::State::Sx);
|
|
|
|
cell->setPort("\\EN", RTLIL::State::Sx);
|
|
|
|
cell->setPort("\\ADDR", addr);
|
|
|
|
cell->setPort("\\DATA", data);
|
|
|
|
continue;
|
2016-02-03 01:59:57 -06:00
|
|
|
}
|
2015-11-16 05:38:56 -06:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
if (inst->Type() == OPER_WRITE_PORT || inst->Type() == OPER_CLOCKED_WRITE_PORT)
|
|
|
|
{
|
|
|
|
RTLIL::Memory *memory = module->memories.at(RTLIL::escape_id(inst->GetOutput()->Name()));
|
|
|
|
if (memory->width != int(inst->Input2Size()))
|
|
|
|
log_error("Import of asymetric memories from Verific is not supported yet: %s %s\n", inst->Name(), inst->GetInput()->Name());
|
|
|
|
|
|
|
|
RTLIL::SigSpec addr = operatorInput1(inst);
|
|
|
|
RTLIL::SigSpec data = operatorInput2(inst);
|
|
|
|
|
|
|
|
RTLIL::Cell *cell = module->addCell(RTLIL::escape_id(inst->Name()), "$memwr");
|
|
|
|
cell->parameters["\\MEMID"] = memory->name.str();
|
|
|
|
cell->parameters["\\CLK_ENABLE"] = false;
|
|
|
|
cell->parameters["\\CLK_POLARITY"] = true;
|
|
|
|
cell->parameters["\\PRIORITY"] = 0;
|
|
|
|
cell->parameters["\\ABITS"] = GetSize(addr);
|
|
|
|
cell->parameters["\\WIDTH"] = GetSize(data);
|
2017-07-24 04:29:06 -05:00
|
|
|
cell->setPort("\\EN", RTLIL::SigSpec(net_map_at(inst->GetControl())).repeat(GetSize(data)));
|
2017-02-04 06:36:00 -06:00
|
|
|
cell->setPort("\\CLK", RTLIL::State::S0);
|
|
|
|
cell->setPort("\\ADDR", addr);
|
|
|
|
cell->setPort("\\DATA", data);
|
|
|
|
|
|
|
|
if (inst->Type() == OPER_CLOCKED_WRITE_PORT) {
|
|
|
|
cell->parameters["\\CLK_ENABLE"] = true;
|
2017-07-24 04:29:06 -05:00
|
|
|
cell->setPort("\\CLK", net_map_at(inst->GetClock()));
|
2017-02-04 06:36:00 -06:00
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!mode_gates) {
|
|
|
|
if (import_netlist_instance_cells(inst))
|
|
|
|
continue;
|
|
|
|
if (inst->IsOperator())
|
|
|
|
log_warning("Unsupported Verific operator: %s (fallback to gate level implementation provided by verific)\n", inst->View()->Owner()->Name());
|
|
|
|
} else {
|
|
|
|
if (import_netlist_instance_gates(inst))
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (inst->IsPrimitive())
|
2017-07-22 09:16:44 -05:00
|
|
|
{
|
|
|
|
if (!mode_keep)
|
|
|
|
log_error("Unsupported Verific primitive %s of type %s\n", inst->Name(), inst->View()->Owner()->Name());
|
|
|
|
log_warning("Unsupported Verific primitive %s of type %s\n", inst->Name(), inst->View()->Owner()->Name());
|
|
|
|
}
|
2017-02-04 06:36:00 -06:00
|
|
|
|
|
|
|
nl_todo.insert(inst->View());
|
|
|
|
|
|
|
|
RTLIL::Cell *cell = module->addCell(RTLIL::escape_id(inst->Name()), inst->IsOperator() ?
|
|
|
|
std::string("$verific$") + inst->View()->Owner()->Name() : RTLIL::escape_id(inst->View()->Owner()->Name()));
|
|
|
|
|
|
|
|
dict<IdString, vector<SigBit>> cell_port_conns;
|
|
|
|
|
2017-07-24 04:29:06 -05:00
|
|
|
if (verbose)
|
|
|
|
log(" ports in verific db:\n");
|
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
FOREACH_PORTREF_OF_INST(inst, mi2, pr) {
|
2017-07-24 04:29:06 -05:00
|
|
|
if (verbose)
|
|
|
|
log(" .%s(%s)\n", pr->GetPort()->Name(), pr->GetNet()->Name());
|
2017-02-04 06:36:00 -06:00
|
|
|
const char *port_name = pr->GetPort()->Name();
|
|
|
|
int port_offset = 0;
|
|
|
|
if (pr->GetPort()->Bus()) {
|
|
|
|
port_name = pr->GetPort()->Bus()->Name();
|
|
|
|
port_offset = pr->GetPort()->Bus()->IndexOf(pr->GetPort()) -
|
|
|
|
min(pr->GetPort()->Bus()->LeftIndex(), pr->GetPort()->Bus()->RightIndex());
|
|
|
|
}
|
|
|
|
IdString port_name_id = RTLIL::escape_id(port_name);
|
|
|
|
auto &sigvec = cell_port_conns[port_name_id];
|
|
|
|
if (GetSize(sigvec) <= port_offset) {
|
|
|
|
SigSpec zwires = module->addWire(NEW_ID, port_offset+1-GetSize(sigvec));
|
|
|
|
for (auto bit : zwires)
|
|
|
|
sigvec.push_back(bit);
|
|
|
|
}
|
2017-07-24 04:29:06 -05:00
|
|
|
sigvec[port_offset] = net_map_at(pr->GetNet());
|
2017-02-04 06:36:00 -06:00
|
|
|
}
|
|
|
|
|
2017-07-24 04:29:06 -05:00
|
|
|
if (verbose)
|
|
|
|
log(" ports in yosys db:\n");
|
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
for (auto &it : cell_port_conns) {
|
2017-07-24 04:29:06 -05:00
|
|
|
if (verbose)
|
|
|
|
log(" .%s(%s)\n", log_id(it.first), log_signal(it.second));
|
2017-02-04 06:36:00 -06:00
|
|
|
cell->setPort(it.first, it.second);
|
|
|
|
}
|
2014-03-09 14:40:04 -05:00
|
|
|
}
|
|
|
|
}
|
2017-02-04 06:36:00 -06:00
|
|
|
};
|
2014-03-09 14:40:04 -05:00
|
|
|
|
2014-03-13 11:34:31 -05:00
|
|
|
#endif /* YOSYS_ENABLE_VERIFIC */
|
2014-03-09 14:40:04 -05:00
|
|
|
|
|
|
|
struct VerificPass : public Pass {
|
|
|
|
VerificPass() : Pass("verific", "load Verilog and VHDL designs using Verific") { }
|
|
|
|
virtual void help()
|
|
|
|
{
|
|
|
|
// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
|
|
|
|
log("\n");
|
2017-07-22 09:16:44 -05:00
|
|
|
log(" verific {-vlog95|-vlog2k|-sv2005|-sv2009|-sv} <verilog-file>..\n");
|
2014-03-09 14:40:04 -05:00
|
|
|
log("\n");
|
|
|
|
log("Load the specified Verilog/SystemVerilog files into Verific.\n");
|
|
|
|
log("\n");
|
|
|
|
log("\n");
|
2017-02-08 03:40:33 -06:00
|
|
|
log(" verific {-vhdl87|-vhdl93|-vhdl2k|-vhdl2008|-vhdpsl} <vhdl-file>..\n");
|
2014-03-09 14:40:04 -05:00
|
|
|
log("\n");
|
|
|
|
log("Load the specified VHDL files into Verific.\n");
|
|
|
|
log("\n");
|
|
|
|
log("\n");
|
2017-07-25 06:33:25 -05:00
|
|
|
log(" verific -import [options] <top-module>..\n");
|
2014-03-09 14:40:04 -05:00
|
|
|
log("\n");
|
2015-08-14 03:56:05 -05:00
|
|
|
log("Elaborate the design for the specified top modules, import to Yosys and\n");
|
2014-03-14 05:46:13 -05:00
|
|
|
log("reset the internal state of Verific. A gate-level netlist is created\n");
|
2017-07-24 04:29:06 -05:00
|
|
|
log("when called with -gates.\n");
|
|
|
|
log("\n");
|
2017-07-24 06:57:16 -05:00
|
|
|
log("Import options:\n");
|
|
|
|
log("\n");
|
2017-07-25 06:33:25 -05:00
|
|
|
log(" -all\n");
|
|
|
|
log(" Elaborate all modules, not just the hierarchy below the given top\n");
|
|
|
|
log(" modules. With this option the list of modules to import is optional.\n");
|
|
|
|
log("\n");
|
2017-07-24 06:57:16 -05:00
|
|
|
log(" -gates\n");
|
|
|
|
log(" Create a gate-level netlist.\n");
|
2017-07-24 04:29:06 -05:00
|
|
|
log("\n");
|
2017-07-24 06:57:16 -05:00
|
|
|
log(" -flatten\n");
|
|
|
|
log(" Flatten the design in Verific before importing.\n");
|
2017-07-24 04:29:06 -05:00
|
|
|
log("\n");
|
2017-07-24 06:57:16 -05:00
|
|
|
log(" -v\n");
|
|
|
|
log(" Verbose log messages.\n");
|
|
|
|
log("\n");
|
|
|
|
log(" -k\n");
|
|
|
|
log(" Keep going after an unsupported verific primitive is found. The\n");
|
|
|
|
log(" unsupported primitive is added as blockbox module to the design.\n");
|
|
|
|
log("\n");
|
|
|
|
log(" -d <dump_file>\n");
|
|
|
|
log(" Dump the Verific netlist as a verilog file.\n");
|
2014-03-09 14:40:04 -05:00
|
|
|
log("\n");
|
|
|
|
log("Visit http://verific.com/ for more information on Verific.\n");
|
|
|
|
log("\n");
|
|
|
|
}
|
2014-03-13 11:34:31 -05:00
|
|
|
#ifdef YOSYS_ENABLE_VERIFIC
|
2014-03-09 14:40:04 -05:00
|
|
|
virtual void execute(std::vector<std::string> args, RTLIL::Design *design)
|
|
|
|
{
|
2016-04-21 16:28:37 -05:00
|
|
|
log_header(design, "Executing VERIFIC (loading Verilog and VHDL designs using Verific).\n");
|
2014-03-09 14:40:04 -05:00
|
|
|
|
|
|
|
Message::SetConsoleOutput(0);
|
|
|
|
Message::RegisterCallBackMsg(msg_func);
|
2017-07-24 04:29:06 -05:00
|
|
|
RuntimeFlags::SetVar("db_allow_external_nets", 1);
|
2014-03-09 14:40:04 -05:00
|
|
|
|
2017-07-04 13:01:30 -05:00
|
|
|
const char *release_str = Message::ReleaseString();
|
|
|
|
time_t release_time = Message::ReleaseDate();
|
|
|
|
char *release_tmstr = ctime(&release_time);
|
|
|
|
|
|
|
|
if (release_str == nullptr)
|
|
|
|
release_str = "(no release string)";
|
|
|
|
|
|
|
|
for (char *p = release_tmstr; *p; p++)
|
|
|
|
if (*p == '\n') *p = 0;
|
|
|
|
|
|
|
|
log("Built with Verific %s, released at %s.\n", release_str, release_tmstr);
|
|
|
|
|
2017-07-22 09:16:44 -05:00
|
|
|
int argidx = 1;
|
|
|
|
|
|
|
|
if (GetSize(args) > argidx && args[argidx] == "-vlog95") {
|
|
|
|
for (argidx++; argidx < GetSize(args); argidx++)
|
2014-03-09 14:40:04 -05:00
|
|
|
if (!veri_file::Analyze(args[argidx].c_str(), veri_file::VERILOG_95))
|
|
|
|
log_cmd_error("Reading `%s' in VERILOG_95 mode failed.\n", args[argidx].c_str());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-07-22 09:16:44 -05:00
|
|
|
if (GetSize(args) > argidx && args[argidx] == "-vlog2k") {
|
|
|
|
for (argidx++; argidx < GetSize(args); argidx++)
|
2014-03-09 14:40:04 -05:00
|
|
|
if (!veri_file::Analyze(args[argidx].c_str(), veri_file::VERILOG_2K))
|
|
|
|
log_cmd_error("Reading `%s' in VERILOG_2K mode failed.\n", args[argidx].c_str());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-07-22 09:16:44 -05:00
|
|
|
if (GetSize(args) > argidx && args[argidx] == "-sv2005") {
|
|
|
|
for (argidx++; argidx < GetSize(args); argidx++)
|
2014-03-09 14:40:04 -05:00
|
|
|
if (!veri_file::Analyze(args[argidx].c_str(), veri_file::SYSTEM_VERILOG_2005))
|
|
|
|
log_cmd_error("Reading `%s' in SYSTEM_VERILOG_2005 mode failed.\n", args[argidx].c_str());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-07-22 09:16:44 -05:00
|
|
|
if (GetSize(args) > argidx && args[argidx] == "-sv2009") {
|
|
|
|
for (argidx++; argidx < GetSize(args); argidx++)
|
2014-03-09 14:40:04 -05:00
|
|
|
if (!veri_file::Analyze(args[argidx].c_str(), veri_file::SYSTEM_VERILOG_2009))
|
|
|
|
log_cmd_error("Reading `%s' in SYSTEM_VERILOG_2009 mode failed.\n", args[argidx].c_str());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-07-22 09:16:44 -05:00
|
|
|
if (GetSize(args) > argidx && args[argidx] == "-sv") {
|
|
|
|
for (argidx++; argidx < GetSize(args); argidx++)
|
2014-03-09 14:40:04 -05:00
|
|
|
if (!veri_file::Analyze(args[argidx].c_str(), veri_file::SYSTEM_VERILOG))
|
|
|
|
log_cmd_error("Reading `%s' in SYSTEM_VERILOG mode failed.\n", args[argidx].c_str());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-07-22 09:16:44 -05:00
|
|
|
if (GetSize(args) > argidx && args[argidx] == "-vhdl87") {
|
2015-11-12 12:28:14 -06:00
|
|
|
vhdl_file::SetDefaultLibraryPath((proc_share_dirname() + "verific/vhdl_vdbs_1987").c_str());
|
2017-07-22 09:16:44 -05:00
|
|
|
for (argidx++; argidx < GetSize(args); argidx++)
|
2014-03-09 14:40:04 -05:00
|
|
|
if (!vhdl_file::Analyze(args[argidx].c_str(), "work", vhdl_file::VHDL_87))
|
|
|
|
log_cmd_error("Reading `%s' in VHDL_87 mode failed.\n", args[argidx].c_str());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-07-22 09:16:44 -05:00
|
|
|
if (GetSize(args) > argidx && args[argidx] == "-vhdl93") {
|
2014-03-13 11:34:31 -05:00
|
|
|
vhdl_file::SetDefaultLibraryPath((proc_share_dirname() + "verific/vhdl_vdbs_1993").c_str());
|
2017-07-22 09:16:44 -05:00
|
|
|
for (argidx++; argidx < GetSize(args); argidx++)
|
2014-03-09 14:40:04 -05:00
|
|
|
if (!vhdl_file::Analyze(args[argidx].c_str(), "work", vhdl_file::VHDL_93))
|
|
|
|
log_cmd_error("Reading `%s' in VHDL_93 mode failed.\n", args[argidx].c_str());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-07-22 09:16:44 -05:00
|
|
|
if (GetSize(args) > argidx && args[argidx] == "-vhdl2k") {
|
2014-03-13 11:34:31 -05:00
|
|
|
vhdl_file::SetDefaultLibraryPath((proc_share_dirname() + "verific/vhdl_vdbs_1993").c_str());
|
2017-07-22 09:16:44 -05:00
|
|
|
for (argidx++; argidx < GetSize(args); argidx++)
|
2014-03-09 14:40:04 -05:00
|
|
|
if (!vhdl_file::Analyze(args[argidx].c_str(), "work", vhdl_file::VHDL_2K))
|
|
|
|
log_cmd_error("Reading `%s' in VHDL_2K mode failed.\n", args[argidx].c_str());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-07-22 09:16:44 -05:00
|
|
|
if (GetSize(args) > argidx && args[argidx] == "-vhdl2008") {
|
2014-03-13 11:34:31 -05:00
|
|
|
vhdl_file::SetDefaultLibraryPath((proc_share_dirname() + "verific/vhdl_vdbs_2008").c_str());
|
2017-07-22 09:16:44 -05:00
|
|
|
for (argidx++; argidx < GetSize(args); argidx++)
|
2014-03-09 14:40:04 -05:00
|
|
|
if (!vhdl_file::Analyze(args[argidx].c_str(), "work", vhdl_file::VHDL_2008))
|
|
|
|
log_cmd_error("Reading `%s' in VHDL_2008 mode failed.\n", args[argidx].c_str());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-07-22 09:16:44 -05:00
|
|
|
if (GetSize(args) > argidx && args[argidx] == "-vhdpsl") {
|
2017-02-08 03:40:33 -06:00
|
|
|
vhdl_file::SetDefaultLibraryPath((proc_share_dirname() + "verific/vhdl_vdbs_2008").c_str());
|
2017-07-22 09:16:44 -05:00
|
|
|
for (argidx++; argidx < GetSize(args); argidx++)
|
2017-02-08 03:40:33 -06:00
|
|
|
if (!vhdl_file::Analyze(args[argidx].c_str(), "work", vhdl_file::VHDL_PSL))
|
|
|
|
log_cmd_error("Reading `%s' in VHDL_PSL mode failed.\n", args[argidx].c_str());
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-07-22 09:16:44 -05:00
|
|
|
if (GetSize(args) > argidx && args[argidx] == "-import")
|
2014-03-09 14:40:04 -05:00
|
|
|
{
|
|
|
|
std::set<Netlist*> nl_todo, nl_done;
|
2017-07-22 09:16:44 -05:00
|
|
|
bool mode_all = false, mode_gates = false, mode_keep = false;
|
2017-07-24 04:29:06 -05:00
|
|
|
bool verbose = false, flatten = false;
|
2017-07-24 06:57:16 -05:00
|
|
|
string dumpfile;
|
2014-03-09 14:40:04 -05:00
|
|
|
|
2017-07-22 09:16:44 -05:00
|
|
|
for (argidx++; argidx < GetSize(args); argidx++) {
|
2014-03-14 05:46:13 -05:00
|
|
|
if (args[argidx] == "-all") {
|
|
|
|
mode_all = true;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (args[argidx] == "-gates") {
|
|
|
|
mode_gates = true;
|
|
|
|
continue;
|
|
|
|
}
|
2017-07-24 04:29:06 -05:00
|
|
|
if (args[argidx] == "-flatten") {
|
|
|
|
flatten = true;
|
|
|
|
continue;
|
|
|
|
}
|
2017-07-22 09:16:44 -05:00
|
|
|
if (args[argidx] == "-k") {
|
|
|
|
mode_keep = true;
|
|
|
|
continue;
|
|
|
|
}
|
2017-07-24 04:29:06 -05:00
|
|
|
if (args[argidx] == "-v") {
|
|
|
|
verbose = true;
|
|
|
|
continue;
|
|
|
|
}
|
2017-07-24 06:57:16 -05:00
|
|
|
if (args[argidx] == "-d" && argidx+1 < GetSize(args)) {
|
|
|
|
dumpfile = args[++argidx];
|
|
|
|
continue;
|
|
|
|
}
|
2014-03-14 05:46:13 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-07-22 09:16:44 -05:00
|
|
|
if (argidx > GetSize(args) && args[argidx].substr(0, 1) == "-")
|
2014-09-06 01:47:06 -05:00
|
|
|
cmd_error(args, argidx, "unknown option");
|
2014-03-14 05:46:13 -05:00
|
|
|
|
|
|
|
if (mode_all)
|
|
|
|
{
|
2017-07-25 06:33:25 -05:00
|
|
|
log("Running veri_file::ElaborateAll().\n");
|
|
|
|
if (!veri_file::ElaborateAll())
|
|
|
|
log_cmd_error("Elaboration of Verilog modules failed.\n");
|
|
|
|
|
|
|
|
log("Running vhdl_file::ElaborateAll().\n");
|
|
|
|
if (!vhdl_file::ElaborateAll())
|
|
|
|
log_cmd_error("Elaboration of VHDL modules failed.\n");
|
|
|
|
|
|
|
|
std::set<string> modnames;
|
|
|
|
for (; argidx < GetSize(args); argidx++)
|
|
|
|
modnames.insert(args[argidx]);
|
|
|
|
|
|
|
|
Library *lib = Netlist::PresentDesign()->Owner()->Owner();
|
|
|
|
|
|
|
|
MapIter iter;
|
|
|
|
char *iter_name;
|
|
|
|
Verific::Cell *iter_cell;
|
|
|
|
|
|
|
|
FOREACH_MAP_ITEM(lib->GetCells(), iter, &iter_name, &iter_cell)
|
|
|
|
{
|
|
|
|
if (*iter_name == '$' || (!modnames.empty() && !modnames.count(iter_name)))
|
2014-03-14 05:46:13 -05:00
|
|
|
continue;
|
2017-07-25 06:33:25 -05:00
|
|
|
|
|
|
|
nl_todo.insert(iter_cell->GetFirstNetlist());
|
|
|
|
modnames.erase(iter_name);
|
2014-03-14 05:46:13 -05:00
|
|
|
}
|
2017-07-25 06:33:25 -05:00
|
|
|
|
|
|
|
for (auto name : modnames)
|
|
|
|
log_cmd_error("Module not found: %s\n", name.c_str());
|
2014-03-14 05:46:13 -05:00
|
|
|
}
|
|
|
|
else
|
2017-07-25 06:33:25 -05:00
|
|
|
{
|
2017-07-22 09:16:44 -05:00
|
|
|
if (argidx == GetSize(args))
|
2014-03-14 05:46:13 -05:00
|
|
|
log_cmd_error("No top module specified.\n");
|
2014-03-09 14:40:04 -05:00
|
|
|
|
2017-07-25 06:33:25 -05:00
|
|
|
for (; argidx < GetSize(args); argidx++) {
|
|
|
|
if (veri_file::GetModule(args[argidx].c_str())) {
|
|
|
|
log("Running veri_file::Elaborate(\"%s\").\n", args[argidx].c_str());
|
|
|
|
if (!veri_file::Elaborate(args[argidx].c_str()))
|
|
|
|
log_cmd_error("Elaboration of top module `%s' failed.\n", args[argidx].c_str());
|
|
|
|
nl_todo.insert(Netlist::PresentDesign());
|
|
|
|
} else {
|
|
|
|
log("Running vhdl_file::Elaborate(\"%s\").\n", args[argidx].c_str());
|
|
|
|
if (!vhdl_file::Elaborate(args[argidx].c_str()))
|
|
|
|
log_cmd_error("Elaboration of top module `%s' failed.\n", args[argidx].c_str());
|
|
|
|
nl_todo.insert(Netlist::PresentDesign());
|
|
|
|
}
|
2014-03-09 14:40:04 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-07-24 04:29:06 -05:00
|
|
|
if (flatten) {
|
|
|
|
for (auto nl : nl_todo)
|
|
|
|
nl->Flatten();
|
|
|
|
}
|
|
|
|
|
2017-07-24 06:57:16 -05:00
|
|
|
if (!dumpfile.empty())
|
|
|
|
{
|
|
|
|
if (GetSize(nl_todo) != 1)
|
|
|
|
log_cmd_error("Verific dump mode needs exactly one top module.\n");
|
|
|
|
|
|
|
|
VeriWrite veri_writer;
|
|
|
|
veri_writer.WriteFile(dumpfile.c_str(), *nl_todo.begin());
|
|
|
|
}
|
|
|
|
|
2014-03-09 14:40:04 -05:00
|
|
|
while (!nl_todo.empty()) {
|
|
|
|
Netlist *nl = *nl_todo.begin();
|
2017-02-04 06:36:00 -06:00
|
|
|
if (nl_done.count(nl) == 0) {
|
2017-07-24 04:29:06 -05:00
|
|
|
VerificImporter importer(mode_gates, mode_keep, verbose);
|
|
|
|
importer.import_netlist(design, nl, nl_todo);
|
2017-02-04 06:36:00 -06:00
|
|
|
}
|
2014-03-09 14:40:04 -05:00
|
|
|
nl_todo.erase(nl);
|
|
|
|
nl_done.insert(nl);
|
|
|
|
}
|
|
|
|
|
|
|
|
Libset::Reset();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
log_cmd_error("Missing or unsupported mode parameter.\n");
|
|
|
|
}
|
2014-03-13 11:34:31 -05:00
|
|
|
#else /* YOSYS_ENABLE_VERIFIC */
|
2014-03-09 14:40:04 -05:00
|
|
|
virtual void execute(std::vector<std::string>, RTLIL::Design *) {
|
|
|
|
log_cmd_error("This version of Yosys is built without Verific support.\n");
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
} VerificPass;
|
2015-07-02 04:14:30 -05:00
|
|
|
|
2017-02-04 06:36:00 -06:00
|
|
|
PRIVATE_NAMESPACE_END
|
2014-07-31 06:19:47 -05:00
|
|
|
|