/* * yosys -- Yosys Open SYnthesis Suite * * Copyright (C) 2012 Claire Xenia Wolf * * 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. * * 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. * */ #include "kernel/celledges.h" USING_YOSYS_NAMESPACE PRIVATE_NAMESPACE_BEGIN void bitwise_unary_op(AbstractCellEdgesDatabase *db, RTLIL::Cell *cell) { bool is_signed = cell->getParam(ID::A_SIGNED).as_bool(); int a_width = GetSize(cell->getPort(ID::A)); int y_width = GetSize(cell->getPort(ID::Y)); for (int i = 0; i < y_width; i++) { if (i < a_width) db->add_edge(cell, ID::A, i, ID::Y, i, -1); else if (is_signed && a_width > 0) db->add_edge(cell, ID::A, a_width-1, ID::Y, i, -1); } } void bitwise_binary_op(AbstractCellEdgesDatabase *db, RTLIL::Cell *cell) { bool is_signed = cell->getParam(ID::A_SIGNED).as_bool(); int a_width = GetSize(cell->getPort(ID::A)); int b_width = GetSize(cell->getPort(ID::B)); int y_width = GetSize(cell->getPort(ID::Y)); if (cell->type == ID($and) && !is_signed) { if (a_width > b_width) a_width = b_width; else b_width = a_width; } for (int i = 0; i < y_width; i++) { if (i < a_width) db->add_edge(cell, ID::A, i, ID::Y, i, -1); else if (is_signed && a_width > 0) db->add_edge(cell, ID::A, a_width-1, ID::Y, i, -1); if (i < b_width) db->add_edge(cell, ID::B, i, ID::Y, i, -1); else if (is_signed && b_width > 0) db->add_edge(cell, ID::B, b_width-1, ID::Y, i, -1); } } void arith_neg_op(AbstractCellEdgesDatabase *db, RTLIL::Cell *cell) { bool is_signed = cell->getParam(ID::A_SIGNED).as_bool(); int a_width = GetSize(cell->getPort(ID::A)); int y_width = GetSize(cell->getPort(ID::Y)); if (is_signed && a_width == 1) y_width = std::min(y_width, 1); for (int i = 0; i < y_width; i++) for (int k = 0; k <= i && k < a_width; k++) db->add_edge(cell, ID::A, k, ID::Y, i, -1); } void arith_binary_op(AbstractCellEdgesDatabase *db, RTLIL::Cell *cell) { bool is_signed = cell->getParam(ID::A_SIGNED).as_bool(); int a_width = GetSize(cell->getPort(ID::A)); int b_width = GetSize(cell->getPort(ID::B)); int y_width = GetSize(cell->getPort(ID::Y)); if (!is_signed && cell->type != ID($sub)) { int ab_width = std::max(a_width, b_width); y_width = std::min(y_width, ab_width+1); } for (int i = 0; i < y_width; i++) { for (int k = 0; k <= i; k++) { if (k < a_width) db->add_edge(cell, ID::A, k, ID::Y, i, -1); if (k < b_width) db->add_edge(cell, ID::B, k, ID::Y, i, -1); } } } void reduce_op(AbstractCellEdgesDatabase *db, RTLIL::Cell *cell) { int a_width = GetSize(cell->getPort(ID::A)); for (int i = 0; i < a_width; i++) db->add_edge(cell, ID::A, i, ID::Y, 0, -1); } void compare_op(AbstractCellEdgesDatabase *db, RTLIL::Cell *cell) { int a_width = GetSize(cell->getPort(ID::A)); int b_width = GetSize(cell->getPort(ID::B)); for (int i = 0; i < a_width; i++) db->add_edge(cell, ID::A, i, ID::Y, 0, -1); for (int i = 0; i < b_width; i++) db->add_edge(cell, ID::B, i, ID::Y, 0, -1); } void mux_op(AbstractCellEdgesDatabase *db, RTLIL::Cell *cell) { int a_width = GetSize(cell->getPort(ID::A)); int b_width = GetSize(cell->getPort(ID::B)); int s_width = GetSize(cell->getPort(ID::S)); for (int i = 0; i < a_width; i++) { db->add_edge(cell, ID::A, i, ID::Y, i, -1); for (int k = i; k < b_width; k += a_width) db->add_edge(cell, ID::B, k, ID::Y, i, -1); for (int k = 0; k < s_width; k++) db->add_edge(cell, ID::S, k, ID::Y, i, -1); } } void bmux_op(AbstractCellEdgesDatabase *db, RTLIL::Cell *cell) { int width = GetSize(cell->getPort(ID::Y)); int a_width = GetSize(cell->getPort(ID::A)); int s_width = GetSize(cell->getPort(ID::S)); for (int i = 0; i < width; i++) { for (int k = i; k < a_width; k += width) db->add_edge(cell, ID::A, k, ID::Y, i, -1); for (int k = 0; k < s_width; k++) db->add_edge(cell, ID::S, k, ID::Y, i, -1); } } void demux_op(AbstractCellEdgesDatabase *db, RTLIL::Cell *cell) { int width = GetSize(cell->getPort(ID::Y)); int a_width = GetSize(cell->getPort(ID::A)); int s_width = GetSize(cell->getPort(ID::S)); for (int i = 0; i < width; i++) { db->add_edge(cell, ID::A, i % a_width, ID::Y, i, -1); for (int k = 0; k < s_width; k++) db->add_edge(cell, ID::S, k, ID::Y, i, -1); } } void shift_op(AbstractCellEdgesDatabase *db, RTLIL::Cell *cell) { bool is_signed = cell->getParam(ID::A_SIGNED).as_bool(); int a_width = GetSize(cell->getPort(ID::A)); int b_width = GetSize(cell->getPort(ID::B)); int y_width = GetSize(cell->getPort(ID::Y)); // how far the maximum value of B is able to shift int b_range = (1<type.in(ID($shl), ID($sshl))) { // << and <<< b_range_upper = a_width + b_range; if (is_signed) b_range_upper -= 1; a_range_lower = max(0, i - b_range); a_range_upper = min(i+1, a_width); } else if (cell->type.in(ID($shr), ID($sshr))){ // >> and >>> b_range_upper = a_width; a_range_lower = min(i, a_width - 1); // technically the min is unneccessary as b_range_upper check already skips any i >= a_width, but let's leave the logic in since this is hard enough a_range_upper = min(i+1 + b_range, a_width); } else if (cell->type.in(ID($shift), ID($shiftx))) { // can go both ways depending on sign of B // 2's complement range is different depending on direction int b_range_left = (1<<(b_width - 1)); int b_range_right = (1<<(b_width - 1)) - 1; b_range_upper = a_width + b_range_left; a_range_lower = max(0, i - b_range_left); a_range_upper = min(i+1 + b_range_right, a_width); } if (i < b_range_upper) { for (int k = a_range_lower; k < a_range_upper; k++) db->add_edge(cell, ID::A, k, ID::Y, i, -1); } else { // the only possible influence value is sign extension if (is_signed) db->add_edge(cell, ID::A, a_width - 1, ID::Y, i, -1); } for (int k = 0; k < b_width; k++) { if (cell->type.in(ID($shl), ID($sshl)) && a_width == 1 && is_signed) { int skip = (1<<(k+1)); int base = skip -1; if (i % skip != base) db->add_edge(cell, ID::B, k, ID::Y, i, -1); } else if (cell->type.in(ID($shr), ID($sshr)) && is_signed) { int skip = (1<<(k+1)); int base = 0; if (i % skip != base || i < a_width - 1) db->add_edge(cell, ID::B, k, ID::Y, i, -1); } else { db->add_edge(cell, ID::B, k, ID::Y, i, -1); } } } } PRIVATE_NAMESPACE_END bool YOSYS_NAMESPACE_PREFIX AbstractCellEdgesDatabase::add_edges_from_cell(RTLIL::Cell *cell) { if (cell->type.in(ID($not), ID($pos))) { bitwise_unary_op(this, cell); return true; } if (cell->type.in(ID($and), ID($or), ID($xor), ID($xnor))) { bitwise_binary_op(this, cell); return true; } if (cell->type == ID($neg)) { arith_neg_op(this, cell); return true; } if (cell->type.in(ID($add), ID($sub))) { arith_binary_op(this, cell); return true; } if (cell->type.in(ID($reduce_and), ID($reduce_or), ID($reduce_xor), ID($reduce_xnor), ID($reduce_bool), ID($logic_not))) { reduce_op(this, cell); return true; } if (cell->type.in(ID($shl), ID($shr), ID($sshl), ID($sshr), ID($shift), ID($shiftx))) { shift_op(this, cell); return true; } if (cell->type.in(ID($lt), ID($le), ID($eq), ID($ne), ID($eqx), ID($nex), ID($ge), ID($gt))) { compare_op(this, cell); return true; } if (cell->type.in(ID($mux), ID($pmux))) { mux_op(this, cell); return true; } if (cell->type == ID($bmux)) { bmux_op(this, cell); return true; } if (cell->type == ID($demux)) { demux_op(this, cell); return true; } // FIXME: $mul $div $mod $divfloor $modfloor $pow $slice $concat $bweqx // FIXME: $lut $sop $alu $lcu $macc $fa $logic_and $logic_or $bwmux // FIXME: $_BUF_ $_NOT_ $_AND_ $_NAND_ $_OR_ $_NOR_ $_XOR_ $_XNOR_ $_ANDNOT_ $_ORNOT_ // FIXME: $_MUX_ $_NMUX_ $_MUX4_ $_MUX8_ $_MUX16_ $_AOI3_ $_OAI3_ $_AOI4_ $_OAI4_ // FIXME: $specify2 $specify3 $specrule ??? // FIXME: $equiv $set_tag $get_tag $overwrite_tag $original_tag if (cell->type.in(ID($assert), ID($assume), ID($live), ID($fair), ID($cover), ID($initstate), ID($anyconst), ID($anyseq), ID($allconst), ID($allseq))) return true; // no-op: these have either no inputs or no outputs return false; }