2013-11-20 12:37:40 -06:00
/*
* yosys - - Yosys Open SYnthesis Suite
*
* Copyright ( C ) 2012 Clifford Wolf < clifford @ clifford . at >
2015-07-02 04:14:30 -05:00
*
2013-11-20 12:37:40 -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-11-20 12:37:40 -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-09-27 09:17:53 -05:00
# include "kernel/yosys.h"
USING_YOSYS_NAMESPACE
PRIVATE_NAMESPACE_BEGIN
2013-11-20 12:37:40 -06:00
2020-03-09 06:53:51 -05:00
static bool is_formal_celltype ( const std : : string & celltype )
{
if ( celltype = = " assert " | | celltype = = " assume " | | celltype = = " live " | | celltype = = " fair " | | celltype = = " cover " )
return true ;
else
return false ;
}
static void add_formal ( RTLIL : : Module * module , const std : : string & celltype , const std : : string & name , const std : : string & enable_name )
{
std : : string escaped_name = RTLIL : : escape_id ( name ) ;
std : : string escaped_enable_name = ( enable_name ! = " " ) ? RTLIL : : escape_id ( enable_name ) : " " ;
RTLIL : : Wire * wire = module - > wire ( escaped_name ) ;
log_assert ( is_formal_celltype ( celltype ) ) ;
if ( wire = = nullptr ) {
log_error ( " Could not find wire with name \" %s \" . \n " , name . c_str ( ) ) ;
}
else {
RTLIL : : Cell * formal_cell = module - > addCell ( NEW_ID , " $ " + celltype ) ;
2020-04-02 11:51:32 -05:00
formal_cell - > setPort ( ID : : A , wire ) ;
2020-03-09 06:53:51 -05:00
if ( enable_name = = " " ) {
2020-04-02 11:51:32 -05:00
formal_cell - > setPort ( ID : : EN , State : : S1 ) ;
2020-03-09 06:53:51 -05:00
log ( " Added $%s cell for wire \" %s.%s \" \n " , celltype . c_str ( ) , module - > name . str ( ) . c_str ( ) , name . c_str ( ) ) ;
}
else {
RTLIL : : Wire * enable_wire = module - > wire ( escaped_enable_name ) ;
if ( enable_wire = = nullptr )
log_error ( " Could not find enable wire with name \" %s \" . \n " , enable_name . c_str ( ) ) ;
2020-04-02 11:51:32 -05:00
formal_cell - > setPort ( ID : : EN , enable_wire ) ;
2020-03-09 06:53:51 -05:00
log ( " Added $%s cell for wire \" %s.%s \" enabled by wire \" %s.%s \" . \n " , celltype . c_str ( ) , module - > name . str ( ) . c_str ( ) , name . c_str ( ) , module - > name . str ( ) . c_str ( ) , enable_name . c_str ( ) ) ;
}
}
}
2013-11-20 12:37:40 -06:00
static void add_wire ( RTLIL : : Design * design , RTLIL : : Module * module , std : : string name , int width , bool flag_input , bool flag_output , bool flag_global )
{
2020-03-10 05:37:10 -05:00
RTLIL : : Wire * wire = nullptr ;
2013-11-20 12:37:40 -06:00
name = RTLIL : : escape_id ( name ) ;
if ( module - > count_id ( name ) ! = 0 )
{
2020-03-10 05:37:10 -05:00
wire = module - > wire ( name ) ;
2013-11-20 12:37:40 -06:00
2020-03-10 05:37:10 -05:00
if ( wire ! = nullptr & & wire - > width ! = width )
wire = nullptr ;
2013-11-20 12:37:40 -06:00
2020-03-10 05:37:10 -05:00
if ( wire ! = nullptr & & wire - > port_input ! = flag_input )
wire = nullptr ;
2013-11-20 12:37:40 -06:00
2020-03-10 05:37:10 -05:00
if ( wire ! = nullptr & & wire - > port_output ! = flag_output )
wire = nullptr ;
2013-11-20 12:37:40 -06:00
2020-03-10 05:37:10 -05:00
if ( wire = = nullptr )
2013-11-20 12:37:40 -06:00
log_cmd_error ( " Found incompatible object with same name in module %s! \n " , module - > name . c_str ( ) ) ;
2013-11-20 20:01:20 -06:00
log ( " Module %s already has such an object. \n " , module - > name . c_str ( ) ) ;
}
else
{
2014-07-26 13:12:50 -05:00
wire = module - > addWire ( name , width ) ;
2013-11-20 20:01:20 -06:00
wire - > port_input = flag_input ;
wire - > port_output = flag_output ;
if ( flag_input | | flag_output ) {
module - > fixup_ports ( ) ;
}
log ( " Added wire %s to module %s. \n " , name . c_str ( ) , module - > name . c_str ( ) ) ;
2013-11-20 12:37:40 -06:00
}
if ( ! flag_global )
return ;
2020-03-10 05:37:10 -05:00
for ( auto cell : module - > cells ( ) )
2013-11-20 12:37:40 -06:00
{
2020-03-10 05:37:10 -05:00
RTLIL : : Module * mod = design - > module ( cell - > type ) ;
if ( mod = = nullptr )
2013-11-20 12:37:40 -06:00
continue ;
if ( ! design - > selected_whole_module ( mod - > name ) )
continue ;
2019-04-18 10:42:12 -05:00
if ( mod - > get_blackbox_attribute ( ) )
2013-11-20 12:37:40 -06:00
continue ;
2020-03-10 05:37:10 -05:00
if ( cell - > hasPort ( name ) )
2013-11-20 12:37:40 -06:00
continue ;
2020-03-10 05:37:10 -05:00
cell - > setPort ( name , wire ) ;
log ( " Added connection %s to cell %s.%s (%s). \n " , name . c_str ( ) , module - > name . c_str ( ) , cell - > name . c_str ( ) , cell - > type . c_str ( ) ) ;
2013-11-20 12:37:40 -06:00
}
}
struct AddPass : public Pass {
AddPass ( ) : Pass ( " add " , " add objects to the design " ) { }
2020-06-18 18:34:52 -05:00
void help ( ) override
2013-11-20 12:37:40 -06:00
{
// |---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|---v---|
log ( " \n " ) ;
log ( " add <command> [selection] \n " ) ;
log ( " \n " ) ;
log ( " This command adds objects to the design. It operates on all fully selected \n " ) ;
log ( " modules. So e.g. 'add -wire foo' will add a wire foo to all selected modules. \n " ) ;
log ( " \n " ) ;
log ( " \n " ) ;
log ( " add {-wire|-input|-inout|-output} <name> <width> [selection] \n " ) ;
log ( " \n " ) ;
log ( " Add a wire (input, inout, output port) with the given name and width. The \n " ) ;
log ( " command will fail if the object exists already and has different properties \n " ) ;
log ( " than the object to be created. \n " ) ;
log ( " \n " ) ;
log ( " \n " ) ;
log ( " add -global_input <name> <width> [selection] \n " ) ;
log ( " \n " ) ;
log ( " Like 'add -input', but also connect the signal between instances of the \n " ) ;
log ( " selected modules. \n " ) ;
log ( " \n " ) ;
2019-09-20 03:27:17 -05:00
log ( " \n " ) ;
2020-03-09 06:53:51 -05:00
log ( " add {-assert|-assume|-live|-fair|-cover} <name1> [-if <name2>] \n " ) ;
log ( " \n " ) ;
log ( " Add an $assert, $assume, etc. cell connected to a wire named name1, with its \n " ) ;
log ( " enable signal optionally connected to a wire named name2 (default: 1'b1). \n " ) ;
log ( " \n " ) ;
log ( " \n " ) ;
2019-09-20 03:27:17 -05:00
log ( " add -mod <name[s]> \n " ) ;
log ( " \n " ) ;
log ( " Add module[s] with the specified name[s]. \n " ) ;
log ( " \n " ) ;
2013-11-20 12:37:40 -06:00
}
2020-06-18 18:34:52 -05:00
void execute ( std : : vector < std : : string > args , RTLIL : : Design * design ) override
2013-11-20 12:37:40 -06:00
{
std : : string command ;
std : : string arg_name ;
2020-03-09 06:53:51 -05:00
std : : string enable_name = " " ;
2013-11-20 12:37:40 -06:00
bool arg_flag_input = false ;
bool arg_flag_output = false ;
bool arg_flag_global = false ;
2019-09-20 03:27:17 -05:00
bool mod_mode = false ;
2013-11-20 12:37:40 -06:00
int arg_width = 0 ;
size_t argidx ;
for ( argidx = 1 ; argidx < args . size ( ) ; argidx + + )
{
std : : string arg = args [ argidx ] ;
if ( arg = = " -wire " | | arg = = " -input " | | arg = = " -inout " | | arg = = " -output " | | arg = = " -global_input " ) {
if ( argidx + 2 > = args . size ( ) )
break ;
command = " wire " ;
if ( arg = = " -input " | | arg = = " -inout " | | arg = = " -global_input " )
arg_flag_input = true ;
if ( arg = = " -output " | | arg = = " -inout " )
arg_flag_output = true ;
if ( arg = = " -global_input " )
arg_flag_global = true ;
arg_name = args [ + + argidx ] ;
arg_width = atoi ( args [ + + argidx ] . c_str ( ) ) ;
continue ;
}
2019-09-20 03:27:17 -05:00
if ( arg = = " -mod " ) {
mod_mode = true ;
argidx + + ;
break ;
}
2020-03-09 06:53:51 -05:00
if ( arg . length ( ) > 0 & & arg [ 0 ] = = ' - ' & & is_formal_celltype ( arg . substr ( 1 ) ) ) {
if ( argidx + 1 > = args . size ( ) )
break ;
command = arg . substr ( 1 ) ;
arg_name = args [ + + argidx ] ;
if ( argidx + 2 < args . size ( ) & & args [ argidx + 1 ] = = " -if " ) {
enable_name = args [ argidx + 2 ] ;
argidx + = 2 ;
}
continue ;
}
2013-11-20 12:37:40 -06:00
break ;
}
2019-09-20 03:27:17 -05:00
if ( mod_mode ) {
for ( ; argidx < args . size ( ) ; argidx + + )
design - > addModule ( RTLIL : : escape_id ( args [ argidx ] ) ) ;
return ;
}
2013-11-20 12:37:40 -06:00
extra_args ( args , argidx , design ) ;
2020-03-12 12:00:21 -05:00
bool selected_anything = false ;
2020-03-10 05:37:10 -05:00
for ( auto module : design - > modules ( ) )
2013-11-20 12:37:40 -06:00
{
2020-03-10 05:37:10 -05:00
log_assert ( module ! = nullptr ) ;
2013-11-20 12:37:40 -06:00
if ( ! design - > selected_whole_module ( module - > name ) )
continue ;
2020-04-02 11:51:32 -05:00
if ( module - > get_bool_attribute ( ID : : blackbox ) )
2013-11-20 12:37:40 -06:00
continue ;
2020-03-12 12:00:21 -05:00
selected_anything = true ;
2020-03-09 06:53:51 -05:00
if ( is_formal_celltype ( command ) )
add_formal ( module , command , arg_name , enable_name ) ;
else if ( command = = " wire " )
2013-11-20 12:37:40 -06:00
add_wire ( design , module , arg_name , arg_width , arg_flag_input , arg_flag_output , arg_flag_global ) ;
}
2020-03-12 12:00:21 -05:00
if ( ! selected_anything )
log_warning ( " No modules selected, or only blackboxes. Nothing was added. \n " ) ;
2013-11-20 12:37:40 -06:00
}
} AddPass ;
2015-07-02 04:14:30 -05:00
2014-09-27 09:17:53 -05:00
PRIVATE_NAMESPACE_END