2013-07-19 04:39:49 +02:00
|
|
|
/*
|
|
|
|
|
* 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);
|
|
|
|
|
}
|
|
|
|
|
|
2013-07-20 05:02:14 +02:00
|
|
|
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));
|
2013-07-19 04:39:49 +02:00
|
|
|
dpos += 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int print_lpm(FILE*fd, ivl_lpm_t net)
|
|
|
|
|
{
|
|
|
|
|
int rc = 0;
|
2016-06-09 07:26:01 +02:00
|
|
|
ivl_lpm_type_t type = ivl_lpm_type(net);
|
2013-07-19 04:39:49 +02:00
|
|
|
|
2016-06-09 07:26:01 +02:00
|
|
|
switch (type) {
|
2013-07-28 03:20:39 +02:00
|
|
|
case IVL_LPM_ADD:
|
|
|
|
|
rc += print_lpm_add(fd, net);
|
|
|
|
|
break;
|
2013-07-28 05:04:45 +02:00
|
|
|
case IVL_LPM_CMP_EQ:
|
|
|
|
|
case IVL_LPM_CMP_EEQ:
|
|
|
|
|
rc += print_lpm_cmp_eq(fd, net);
|
|
|
|
|
break;
|
2013-07-29 02:48:03 +02:00
|
|
|
case IVL_LPM_CMP_GE:
|
|
|
|
|
case IVL_LPM_CMP_GT:
|
|
|
|
|
rc += print_lpm_cmp_gt(fd, net);
|
|
|
|
|
break;
|
2013-07-19 04:39:49 +02:00
|
|
|
case IVL_LPM_CONCAT:
|
|
|
|
|
case IVL_LPM_CONCATZ:
|
|
|
|
|
rc += print_concat(fd, net);
|
|
|
|
|
break;
|
2013-07-28 05:04:45 +02:00
|
|
|
case IVL_LPM_CMP_NE:
|
|
|
|
|
case IVL_LPM_CMP_NEE:
|
|
|
|
|
rc += print_lpm_cmp_ne(fd, net);
|
|
|
|
|
break;
|
2013-08-20 01:42:49 +02:00
|
|
|
case IVL_LPM_FF:
|
|
|
|
|
rc += print_lpm_ff(fd, net);
|
|
|
|
|
break;
|
2013-08-01 05:38:20 +02:00
|
|
|
case IVL_LPM_MUX:
|
|
|
|
|
rc += print_lpm_mux(fd, net);
|
|
|
|
|
break;
|
2013-07-19 04:39:49 +02:00
|
|
|
case IVL_LPM_PART_VP:
|
2013-07-29 03:47:11 +02:00
|
|
|
rc += print_lpm_part_vp(fd, net);
|
2013-07-19 04:39:49 +02:00
|
|
|
break;
|
2013-08-01 04:59:26 +02:00
|
|
|
case IVL_LPM_RE_AND:
|
|
|
|
|
case IVL_LPM_RE_OR:
|
|
|
|
|
case IVL_LPM_RE_XOR:
|
|
|
|
|
case IVL_LPM_RE_NAND:
|
|
|
|
|
case IVL_LPM_RE_NOR:
|
|
|
|
|
case IVL_LPM_RE_XNOR:
|
|
|
|
|
rc += print_lpm_re_logic(fd, net);
|
|
|
|
|
break;
|
2013-07-28 04:02:17 +02:00
|
|
|
case IVL_LPM_SUB:
|
|
|
|
|
rc += print_lpm_sub(fd, net);
|
|
|
|
|
break;
|
2016-06-09 07:26:01 +02:00
|
|
|
case IVL_LPM_SHIFTL:
|
|
|
|
|
case IVL_LPM_SHIFTR:
|
|
|
|
|
rc += print_lpm_shift(fd, net, type == IVL_LPM_SHIFTL);
|
|
|
|
|
break;
|
2016-06-10 20:32:45 +02:00
|
|
|
case IVL_LPM_SIGN_EXT:
|
|
|
|
|
rc += print_lpm_sign_ext(fd, net);
|
|
|
|
|
break;
|
2013-07-19 04:39:49 +02:00
|
|
|
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;
|
|
|
|
|
}
|