iverilog/tgt-blif/lpm.cc

120 lines
3.5 KiB
C++
Raw Normal View History

/*
* Copyright (c) 2013 Stephen Williams (steve@icarus.com)
*
* This source code is free software; you can redistribute it
* and/or modify it in source code form under the terms of the GNU
* General Public License as published by the Free Software
* Foundation; either version 2 of the License, or (at your option)
* any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
# include "priv.h"
# include "nex_data.h"
# include <cassert>
/*
* Implement IVL_LPM_CONCAT devices by creating a .names buffer for
* each bit of the output. Connect the output bit to the input bit. So
* for example:
* Q = {A, B, C}
* becomes:
* .names C Q[0]
* 1 1
* .names B Q[1]
* 1 1
* .names A Q[2]
* 1 1
* (In this example, A, B, and C are 1 bit.)
*/
static int print_concat(FILE*fd, ivl_lpm_t net)
{
fprintf(fd, "# %s:%u: IVL_LPM_CONCAT: width=%u\n",
ivl_lpm_file(net), ivl_lpm_lineno(net), ivl_lpm_width(net));
ivl_nexus_t nex_q = ivl_lpm_q(net);
blif_nex_data_t*ned_q = blif_nex_data_t::get_nex_data(nex_q);
ivl_nexus_t nex_d = ivl_lpm_data(net,0);
blif_nex_data_t*ned_d = blif_nex_data_t::get_nex_data(nex_d);
unsigned didx = 0;
unsigned dpos = 0;
for (unsigned wid = 0 ; wid < ivl_lpm_width(net) ; wid += 1) {
if (dpos >= ned_d->get_width()) {
didx += 1;
dpos = 0;
nex_d = ivl_lpm_data(net,didx);
ned_d = blif_nex_data_t::get_nex_data(nex_d);
}
fprintf(fd, ".names %s%s %s%s\n1 1\n",
ned_d->get_name(), ned_d->get_name_index(dpos),
ned_q->get_name(), ned_q->get_name_index(wid));
dpos += 1;
}
return 0;
}
/*
* This implements the IVL_LPM_PART_VP, which is the vector-to-part
* part select. Implement this as a .names buffer.
*/
static int print_part_vp(FILE*fd, ivl_lpm_t net)
{
int rc = 0;
ivl_nexus_t nex_out = ivl_lpm_q(net);
blif_nex_data_t*ned_out = blif_nex_data_t::get_nex_data(nex_out);
// Only handle bit selects.
assert(ned_out->get_width() == 1);
// Only handle constant part select base.
assert(ivl_lpm_data(net,1) == 0);
unsigned bit_sel = ivl_lpm_base(net);
ivl_nexus_t nex_in = ivl_lpm_data(net,0);
blif_nex_data_t*ned_in = blif_nex_data_t::get_nex_data(nex_in);
assert(bit_sel < ned_in->get_width());
fprintf(fd, ".names %s%s %s%s # %s:%u\n1 1\n",
ned_in->get_name(), ned_in->get_name_index(bit_sel),
ned_out->get_name(), ned_out->get_name_index(0),
ivl_lpm_file(net), ivl_lpm_lineno(net));
return rc;
}
int print_lpm(FILE*fd, ivl_lpm_t net)
{
int rc = 0;
switch (ivl_lpm_type(net)) {
case IVL_LPM_CONCAT:
case IVL_LPM_CONCATZ:
rc += print_concat(fd, net);
break;
case IVL_LPM_PART_VP:
rc += print_part_vp(fd, net);
break;
default:
fprintf(fd, "# XXXX ivl_lpm_type(net) --> %d\n", ivl_lpm_type(net));
fprintf(stderr, "%s:%u: sorry: ivl_lpm_type(net)==%d not implemented.\n",
ivl_lpm_file(net), ivl_lpm_lineno(net), ivl_lpm_type(net));
rc += 1;
break;
}
return rc;
}