Add batch 1 (YosysHQ_picorv32, alexforencich_verilog-ethernet, The-OpenROAD-Project_OpenROAD, darklife_darkriscv, corundum_corundum)
f61bac1 verified | # SPDX-License-Identifier: BSD-3-Clause | |
| # Copyright (c) 2019-2025, The OpenROAD Authors | |
| # -library is the default | |
| sta::define_cmd_args "read_lef" {[-tech] [-library] [-tech_name name] filename} | |
| proc read_lef { args } { | |
| sta::parse_key_args "read_lef" args keys {-tech_name} flags {-tech -library} | |
| sta::check_argc_eq1 "read_lef" $args | |
| set filename [file nativename [lindex $args 0]] | |
| if { ![file exists $filename] } { | |
| utl::error "ORD" 1 "$filename does not exist." | |
| } | |
| if { ![file readable $filename] } { | |
| utl::error "ORD" 2 "$filename is not readable." | |
| } | |
| set make_tech [info exists flags(-tech)] | |
| set make_lib [info exists flags(-library)] | |
| if { !$make_tech && !$make_lib } { | |
| set make_lib 1 | |
| if { [info exists keys(-tech_name)] } { | |
| set make_tech 1 | |
| } else { | |
| set make_tech [expr ![ord::db_has_tech]] | |
| } | |
| } | |
| set tech_name "" | |
| set lib_name [file rootname [file tail $filename]] | |
| if { [info exists keys(-tech_name)] } { | |
| set tech_name $keys(-tech_name) | |
| } elseif { $make_tech } { | |
| set tech_name $lib_name | |
| } | |
| ord::read_lef_cmd $filename $lib_name $tech_name $make_tech $make_lib | |
| } | |
| sta::define_cmd_args "read_def" {[-floorplan_initialize|-incremental]\ | |
| [-continue_on_errors]\ | |
| [-tech name] \ | |
| [-chip chip_name] \ | |
| filename} | |
| proc read_def { args } { | |
| sta::parse_key_args "read_def" args keys {-tech -chip} \ | |
| flags {-floorplan_initialize -incremental \ | |
| -order_wires -continue_on_errors} | |
| sta::check_argc_eq1 "read_def" $args | |
| set filename [file nativename [lindex $args 0]] | |
| if { ![file exists $filename] } { | |
| utl::error "ORD" 3 "$filename does not exist." | |
| } | |
| if { ![file readable $filename] || ![file isfile $filename] } { | |
| utl::error "ORD" 4 "$filename is not readable." | |
| } | |
| if { [info exists keys(-tech)] } { | |
| set tech_name $keys(-tech) | |
| set tech [[ord::get_db] findTech $tech_name] | |
| if { $tech == "NULL" } { | |
| utl::error ORD 52 "Technology $tech_name not found." | |
| } | |
| } elseif { ![ord::db_has_tech] } { | |
| utl::error "ORD" 5 "No technology has been read." | |
| } else { | |
| set tech [[ord::get_db] getTech] | |
| } | |
| if { [info exists flags(-order_wires)] } { | |
| utl::warn "ORD" 33 "-order_wires is deprecated." | |
| } | |
| set continue_on_errors [info exists flags(-continue_on_errors)] | |
| set floorplan_init [info exists flags(-floorplan_initialize)] | |
| set incremental [info exists flags(-incremental)] | |
| if { $floorplan_init + $incremental > 1 } { | |
| utl::error ORD 16 "Options -incremental and -floorplan_initialization\ | |
| are mutually exclusive." | |
| } | |
| if { [info exists keys(-chip)] } { | |
| set chip [[ord::get_db] findChip $keys(-chip)] | |
| if { $chip == "NULL" } { | |
| utl::error ORD 21 "Chip $keys(-chip) not found." | |
| } | |
| } else { | |
| if { [[ord::get_db] getChip] == "NULL" } { | |
| set chip [odb::dbChip_create [ord::get_db] $tech] | |
| } else { | |
| set chip [[ord::get_db] getChip] | |
| } | |
| } | |
| ord::read_def_cmd $filename $continue_on_errors $floorplan_init \ | |
| $incremental $chip | |
| } | |
| sta::define_cmd_args "write_def" {[-version version] filename} | |
| proc write_def { args } { | |
| sta::parse_key_args "write_def" args keys {-version} flags {} | |
| set version "5.8" | |
| if { [info exists keys(-version)] } { | |
| set version $keys(-version) | |
| if { | |
| !($version == "5.8" | |
| || $version == "5.7" | |
| || $version == "5.6" | |
| || $version == "5.5" | |
| || $version == "5.4" | |
| || $version == "5.3") | |
| } { | |
| utl::error "ORD" 6 "DEF versions 5.8, 5.7, 5.6, 5.5, 5.4, 5.3 supported." | |
| } | |
| } | |
| sta::check_argc_eq1 "write_def" $args | |
| set filename [file nativename [lindex $args 0]] | |
| ord::write_def_cmd $filename $version | |
| } | |
| sta::define_cmd_args "write_abstract_lef" {[-bloat_factor amount|-bloat_occupied_layers] filename} | |
| sta::define_cmd_args "write_lef" {filename} | |
| proc write_lef { args } { | |
| sta::parse_key_args "write_lef" args keys {} flags {} | |
| sta::check_argc_eq1 "write_lef" $args | |
| set filename [file nativename [lindex $args 0]] | |
| ord::write_lef_cmd $filename | |
| } | |
| proc write_abstract_lef { args } { | |
| sta::parse_key_args "write_abstract_lef" args keys {-bloat_factor} flags {-bloat_occupied_layers} | |
| set bloat_factor 10 | |
| if { [info exists keys(-bloat_factor)] } { | |
| set bloat_factor $keys(-bloat_factor) | |
| sta::check_positive_float "bloat_factor" $bloat_factor | |
| } | |
| set bloat_occupied_layers [info exists flags(-bloat_occupied_layers)] | |
| if { [info exists keys(-bloat_factor)] && $bloat_occupied_layers } { | |
| utl::error ORD 1050 "Options -bloat and -bloat_occupied_layers are\ | |
| both set. At most one should be used." | |
| } | |
| sta::check_argc_eq1 "write_abstract_lef" $args | |
| set filename [file nativename [lindex $args 0]] | |
| ord::write_abstract_lef_cmd $filename $bloat_factor $bloat_occupied_layers | |
| } | |
| sta::define_cmd_args "write_cdl" {[-include_fillers] | |
| -masters masters_filenames out_filename } | |
| proc write_cdl { args } { | |
| sta::parse_key_args "write_cdl" args keys {-masters} flags {-include_fillers} | |
| set fillers [info exists flags(-include_fillers)] | |
| sta::check_argc_eq1 "write_cdl" $args | |
| if { ![info exists keys(-masters)] } { | |
| utl::error ORD 1013 "-masters is required." | |
| } | |
| set out_filename [file nativename [lindex $args 0]] | |
| set masters_filenames [] | |
| foreach masters_filename $keys(-masters) { | |
| lappend masters_filenames [file nativename $masters_filename] | |
| } | |
| ord::write_cdl_cmd $out_filename $masters_filenames $fillers | |
| } | |
| sta::define_cmd_args "read_3dbv" {filename} | |
| proc read_3dbv { args } { | |
| sta::parse_key_args "read_3dbv" args keys {} flags {} | |
| sta::check_argc_eq1 "read_3dbv" $args | |
| set filename [file nativename [lindex $args 0]] | |
| if { ![file exists $filename] } { | |
| utl::error "ORD" 70 "$filename does not exist." | |
| } | |
| if { ![file readable $filename] } { | |
| utl::error "ORD" 71 "$filename is not readable." | |
| } | |
| ord::read_3dbv_cmd $filename | |
| } | |
| sta::define_cmd_args "write_3dbv" {filename} | |
| proc write_3dbv { args } { | |
| sta::parse_key_args "write_3dbv" args keys {} flags {} | |
| sta::check_argc_eq1 "write_3dbv" $args | |
| set filename [file nativename [lindex $args 0]] | |
| ord::write_3dbv_cmd $filename | |
| } | |
| proc write_3dbx { args } { | |
| sta::parse_key_args "write_3dbx" args keys {} flags {} | |
| sta::check_argc_eq1 "write_3dbx" $args | |
| set filename [file nativename [lindex $args 0]] | |
| ord::write_3dbx_cmd $filename | |
| } | |
| sta::define_cmd_args "read_3dbx" {filename} | |
| proc read_3dbx { args } { | |
| sta::parse_key_args "read_3dbx" args keys {} flags {} | |
| sta::check_argc_eq1 "read_3dbx" $args | |
| set filename [file nativename [lindex $args 0]] | |
| if { ![file exists $filename] } { | |
| utl::error "ORD" 72 "$filename does not exist." | |
| } | |
| if { ![file readable $filename] } { | |
| utl::error "ORD" 73 "$filename is not readable." | |
| } | |
| ord::read_3dbx_cmd $filename | |
| } | |
| sta::define_cmd_args "read_3dblox_bmap" {filename} | |
| proc read_3dblox_bmap { args } { | |
| sta::parse_key_args "read_3dblox_bmap" args keys {} flags {} | |
| sta::check_argc_eq1 "read_3dblox_bmap" $args | |
| set filename [file nativename [lindex $args 0]] | |
| if { ![file exists $filename] } { | |
| utl::error "ORD" 74 "$filename does not exist." | |
| } | |
| if { ![file readable $filename] } { | |
| utl::error "ORD" 75 "$filename is not readable." | |
| } | |
| ord::read_3dblox_bmap_cmd $filename | |
| } | |
| sta::define_cmd_args "check_3dblox" {} | |
| proc check_3dblox { args } { | |
| sta::parse_key_args "check_3dblox" args keys {} flags {} | |
| sta::check_argc_eq0 "check_3dblox" $args | |
| ord::check_3dblox_cmd | |
| } | |
| sta::define_cmd_args "write_db" {filename} | |
| sta::define_cmd_args "read_db" {[-hier] filename} | |
| proc read_db { args } { | |
| # TODO: -hier is not needed anymore. | |
| # - It will be removed in a future release. | |
| # - It is currently retained for backward compatibility. | |
| sta::parse_key_args "read_db" args keys {} flags {-hier} | |
| sta::check_argc_eq1or2 "read_db" $args | |
| set filename [file nativename [lindex $args 0]] | |
| if { ![file exists $filename] } { | |
| utl::error "ORD" 7 "$filename does not exist." | |
| } | |
| set hierarchy [info exists flags(-hier)] | |
| if { ![file readable $filename] } { | |
| utl::error "ORD" 8 "$filename is not readable." | |
| } | |
| ord::read_db_cmd $filename $hierarchy | |
| } | |
| sta::define_cmd_args "write_db" {[-compression level] filename} | |
| proc write_db { args } { | |
| sta::parse_key_args "write_db" args \ | |
| keys {-compression} \ | |
| flags {} | |
| sta::check_argc_eq1 "write_db" $args | |
| set filename [file nativename [lindex $args 0]] | |
| set compression_level -1 | |
| if { [info exists keys(-compression)] } { | |
| set compression_level $keys(-compression) | |
| sta::check_integer "write_db" $compression_level | |
| if { $compression_level < 0 || $compression_level > 9 } { | |
| utl::error "ORD" 77 "Compression level must be between 0 and 9." | |
| } | |
| if { ![string match "*.gz" $filename] } { | |
| utl::warn "ORD" 78 "Compression level specified but output file is not a gzip file (.gz)." | |
| } | |
| } | |
| ord::write_db_cmd $filename $compression_level | |
| } | |
| sta::define_cmd_args "assign_ndr" { -ndr name (-net name | -all_clocks) } | |
| proc assign_ndr { args } { | |
| sta::parse_key_args "assign_ndr" args keys {-ndr -net} flags {-all_clocks} | |
| if { ![info exists keys(-ndr)] } { | |
| utl::error ORD 1009 "-name is missing." | |
| } | |
| if { !([info exists keys(-net)] ^ [info exists flags(-all_clocks)]) } { | |
| utl::error ORD 1010 "Either -net or -all_clocks need to be defined." | |
| } | |
| set block [[[ord::get_db] getChip] getBlock] | |
| set ndrName $keys(-ndr) | |
| set ndr [$block findNonDefaultRule $ndrName] | |
| if { $ndr == "NULL" } { | |
| utl::error ORD 1011 "No NDR named ${ndrName} found." | |
| } | |
| if { [info exists keys(-net)] } { | |
| set netName $keys(-net) | |
| set net [$block findNet $netName] | |
| if { $net == "NULL" } { | |
| utl::error ORD 1012 "No net named ${netName} found." | |
| } | |
| $net setNonDefaultRule $ndr | |
| } else { | |
| foreach net [sta::find_all_clk_nets] { | |
| $net setNonDefaultRule $ndr | |
| } | |
| } | |
| } | |
| sta::define_cmd_args "set_debug_level" { tool group level } | |
| proc set_debug_level { args } { | |
| sta::check_argc_eq3 "set_debug_level" $args | |
| lassign $args tool group level | |
| sta::check_integer "set_debug_level" $level | |
| ord::set_debug_level $tool $group $level | |
| } | |
| sta::define_cmd_args "suppress_message" { tool id } | |
| proc suppress_message { args } { | |
| sta::check_argc_eq2 "suppress_message" $args | |
| lassign $args tool id | |
| sta::check_integer "suppress_message_level" $id | |
| utl::suppress_message $tool $id | |
| } | |
| sta::define_cmd_args "unsuppress_message" { tool id } | |
| proc unsuppress_message { args } { | |
| sta::check_argc_eq2 "unsuppress_message" $args | |
| lassign $args tool id | |
| sta::check_integer "unsuppress_message_level" $id | |
| utl::unsuppress_message $tool $id | |
| } | |
| proc set_thread_count { count } { | |
| ord::set_thread_count $count | |
| } | |
| proc thread_count { } { | |
| return [ord::thread_count] | |
| } | |
| proc cpu_count { } { | |
| return [ord::cpu_count] | |
| } | |
| sta::define_cmd_args "global_connect" { [-force] [-verbose] } | |
| proc global_connect { args } { | |
| sta::parse_key_args "global_connect" args \ | |
| keys {} \ | |
| flags {-force -verbose} | |
| sta::check_argc_eq0 "add_global_connection" $args | |
| [ord::get_db_block] globalConnect [info exists flags(-force)] [info exists flags(-verbose)] | |
| } | |
| sta::define_cmd_args "clear_global_connect" {} | |
| proc clear_global_connect { } { | |
| [ord::get_db_block] clearGlobalConnect | |
| } | |
| sta::define_cmd_args "report_global_connect" {} | |
| proc report_global_connect { } { | |
| [ord::get_db_block] reportGlobalConnect | |
| } | |
| sta::define_cmd_args "add_global_connection" {[-net net_name] \ | |
| [-inst_pattern inst_name_pattern] \ | |
| [-pin_pattern pin_name_pattern] \ | |
| [(-power|-ground)] \ | |
| [-region region_name] \ | |
| [-defer_connection] | |
| } | |
| proc add_global_connection { args } { | |
| sta::parse_key_args "add_global_connection" args \ | |
| keys {-net -inst_pattern -pin_pattern -region} \ | |
| flags {-power -ground -defer_connection} | |
| sta::check_argc_eq0 "add_global_connection" $args | |
| if { [info exists flags(-power)] && [info exists flags(-ground)] } { | |
| utl::error ORD 41 "The flags -power and -ground of the\ | |
| add_global_connection command are mutually exclusive." | |
| } | |
| if { ![info exists keys(-net)] } { | |
| utl::error ORD 42 "The -net option of the add_global_connection command is required." | |
| } | |
| if { ![info exists keys(-inst_pattern)] } { | |
| set keys(-inst_pattern) {.*} | |
| } | |
| if { ![info exists keys(-pin_pattern)] } { | |
| utl::error ORD 43 "The -pin_pattern option of the add_global_connection command is required." | |
| } | |
| set net [[ord::get_db_block] findNet $keys(-net)] | |
| if { $net == "NULL" } { | |
| set net [odb::dbNet_create [ord::get_db_block] $keys(-net)] | |
| if { ![info exists flags(-power)] && ![info exists flags(-ground)] } { | |
| utl::warn ORD 44 "Net created for $keys(-net), if intended as power\ | |
| or ground net add the -power/-ground switch as appropriate." | |
| } | |
| } | |
| if { [info exists flags(-power)] } { | |
| $net setSpecial | |
| $net setSigType POWER | |
| } elseif { [info exists flags(-ground)] } { | |
| $net setSpecial | |
| $net setSigType GROUND | |
| } | |
| set do_connect 1 | |
| if { [info exists flags(-defer_connection)] } { | |
| utl::warn ORD 46 "-defer_connection has been deprecated." | |
| set do_connect 0 | |
| } | |
| set region "NULL" | |
| if { [info exists keys(-region)] } { | |
| set region [[ord::get_db_block] findRegion $keys(-region)] | |
| if { $region == "NULL" } { | |
| utl::error ORD 45 "Region \"$keys(-region)\" not defined" | |
| } | |
| } | |
| [ord::get_db_block] addGlobalConnect $region $keys(-inst_pattern) \ | |
| $keys(-pin_pattern) $net $do_connect | |
| } | |
| sta::define_cmd_args "place_inst" {-name inst_name \ | |
| (-origin xy_origin | -location xy_location) \ | |
| [-orientation orientation] \ | |
| [-cell library_cell] \ | |
| [-status status]} | |
| proc place_inst { args } { | |
| if { [ord::get_db_block] == "NULL" } { | |
| utl::error ORD 55 "Design must be loaded before calling place_cell." | |
| } | |
| set db [ord::get_db] | |
| set block [ord::get_db_block] | |
| sta::parse_key_args "place_cell" args \ | |
| keys {-cell -origin -orientation -location -name -status} | |
| set placement_status "PLACED" | |
| if { [info exists keys(-status)] } { | |
| set placement_status $keys(-status) | |
| } | |
| if { [info exists keys(-cell)] } { | |
| set cell_name $keys(-cell) | |
| if { [set cell_master [$db findMaster $cell_name]] == "NULL" } { | |
| utl::error ORD 56 "Cell $cell_name not loaded into design." | |
| } | |
| } | |
| if { [info exists keys(-name)] } { | |
| set inst_name $keys(-name) | |
| } else { | |
| utl::error ORD 57 "-name is a required argument to the place_cell command." | |
| } | |
| if { [info exists keys(-orientation)] } { | |
| set orient $keys(-orientation) | |
| } else { | |
| set orient "R0" | |
| } | |
| if { ![info exists keys(-origin)] && ![info exists keys(-location)] } { | |
| utl::error ORD 62 "No origin or location specified for $inst_name." | |
| } | |
| if { [info exists keys(-origin)] && [info exists keys(-location)] } { | |
| utl::error ORD 63 "origin and location specified for $inst_name, only one is supported." | |
| } | |
| # Verify center/origin | |
| if { [info exists keys(-origin)] } { | |
| set origin $keys(-origin) | |
| if { [llength $origin] != 2 } { | |
| utl::error ORD 59 "Origin is $origin, but must be a list of 2 numbers." | |
| } | |
| if { [catch { set x [ord::microns_to_dbu [lindex $origin 0]] } msg] } { | |
| utl::error ORD 60 "Invalid value specified for x value, [lindex $origin 0], $msg." | |
| } | |
| if { [catch { set y [ord::microns_to_dbu [lindex $origin 1]] } msg] } { | |
| utl::error ORD 61 "Invalid value specified for y value, [lindex $origin 1], $msg." | |
| } | |
| } elseif { [info exists keys(-location)] } { | |
| set location $keys(-location) | |
| if { [llength $location] != 2 } { | |
| utl::error ORD 68 "location is $location, but must be a list of 2 numbers." | |
| } | |
| if { [catch { set x [ord::microns_to_dbu [lindex $location 0]] } msg] } { | |
| utl::error ORD 66 "Invalid value specified for x value, [lindex $location 0], $msg." | |
| } | |
| if { [catch { set y [ord::microns_to_dbu [lindex $location 1]] } msg] } { | |
| utl::error ORD 67 "Invalid value specified for y value, [lindex $location 1], $msg." | |
| } | |
| } | |
| if { [set inst [$block findInst $inst_name]] == "NULL" } { | |
| if { [info exists keys(-cell)] } { | |
| set inst [odb::dbInst_create $block $cell_master $inst_name] | |
| } else { | |
| utl::error ORD 63 \ | |
| "Instance $inst_name not in the design, -cell must be specified to create a new instance." | |
| } | |
| } else { | |
| if { [info exists keys(-cell)] } { | |
| set master_name [[$inst getMaster] getName] | |
| if { $master_name != $cell_name } { | |
| utl::error ORD 64 \ | |
| "Instance $inst_name expected to be $cell_name, but is actually $master_name." | |
| } | |
| } | |
| } | |
| if { $inst == "NULL" } { | |
| utl::error ORD 65 "Cannot create instance $inst_name of $cell_name." | |
| } | |
| $inst setOrient $orient | |
| if { [info exists keys(-origin)] } { | |
| $inst setOrigin $x $y | |
| } else { | |
| $inst setLocation $x $y | |
| } | |
| $inst setPlacementStatus $placement_status | |
| } | |
| ################################################################ | |
| namespace eval ord { | |
| proc ensure_units_initialized { } { | |
| if { ![units_initialized] } { | |
| utl::error "ORD" 13 "Command units uninitialized. Use the\ | |
| read_liberty or set_cmd_units command to set units." | |
| } | |
| } | |
| proc clear { } { | |
| sta::clear_network | |
| sta::clear_sta | |
| grt::clear | |
| [get_db] clear | |
| } | |
| proc profile_cmd { filename args } { | |
| utl::info 99 "Profiling $args > $filename." | |
| profile -commands on | |
| if { [catch "{*}$args"] } { # tclint-disable-line command-args | |
| global errorInfo | |
| puts $errorInfo | |
| } | |
| profile off profarray | |
| profrep profarray cpu $filename | |
| } | |
| proc get_die_area { } { | |
| set area {} | |
| set rect [[ord::get_db_block] getDieArea] | |
| lappend area [ord::dbu_to_microns [$rect xMin]] | |
| lappend area [ord::dbu_to_microns [$rect yMin]] | |
| lappend area [ord::dbu_to_microns [$rect xMax]] | |
| lappend area [ord::dbu_to_microns [$rect yMax]] | |
| return $area | |
| } | |
| proc get_core_area { } { | |
| set area {} | |
| set rect [[ord::get_db_block] getCoreArea] | |
| lappend area [ord::dbu_to_microns [$rect xMin]] | |
| lappend area [ord::dbu_to_microns [$rect yMin]] | |
| lappend area [ord::dbu_to_microns [$rect xMax]] | |
| lappend area [ord::dbu_to_microns [$rect yMax]] | |
| return $area | |
| } | |
| proc parse_list_args { cmd arg_var list_var lists_args } { | |
| upvar 1 $arg_var args | |
| upvar 1 $list_var list | |
| foreach arg_opt $lists_args { | |
| set remaining_args [] | |
| set list($arg_opt) [] | |
| for { set i 0 } { $i < [llength $args] } { incr i } { | |
| set arg [lindex $args $i] | |
| if { [sta::is_keyword_arg $arg] } { | |
| if { $arg == $arg_opt } { | |
| incr i | |
| if { [llength $args] == $i } { | |
| utl::error ORD 560 "$cmd $arg_opt missing value." | |
| } | |
| lappend list($arg_opt) [lindex $args $i] | |
| } else { | |
| lappend remaining_args $arg | |
| } | |
| } else { | |
| lappend remaining_args $arg | |
| } | |
| } | |
| set args $remaining_args | |
| } | |
| } | |
| # namespace ord | |
| } | |