File size: 2,721 Bytes
198fb2a | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 | utl::set_metrics_stage "synth__{}"
source $::env(SCRIPTS_DIR)/load.tcl
erase_non_stage_variables synth
source_env_var_if_exists PLATFORM_TCL
source $::env(SCRIPTS_DIR)/read_liberty.tcl
log_cmd read_lef $::env(TECH_LEF)
log_cmd read_lef $::env(SC_LEF)
if { [env_var_exists_and_non_empty ADDITIONAL_LEFS] } {
foreach lef $::env(ADDITIONAL_LEFS) {
log_cmd read_lef $lef
}
}
if { [env_var_exists_and_non_empty DONT_USE_CELLS] } {
log_cmd set_dont_use $::env(DONT_USE_CELLS)
}
# Setup verilog include directories
set vIdirsArgs ""
if { [env_var_exists_and_non_empty VERILOG_INCLUDE_DIRS] } {
foreach dir $::env(VERILOG_INCLUDE_DIRS) {
lappend vIdirsArgs "-I$dir"
}
set vIdirsArgs [join $vIdirsArgs]
}
set elaborate_args [list \
-D SYNTHESIS --compat=vcs --ignore-assertions --no-implicit-memories --top $::env(DESIGN_NAME) \
{*}$vIdirsArgs {*}[env_var_or_empty VERILOG_DEFINES]]
lappend elaborate_args {*}$::env(VERILOG_FILES)
# Apply top-level parameters
dict for {key value} [env_var_or_empty VERILOG_TOP_PARAMS] {
lappend elaborate_args -G "$key=$value"
}
# Apply module blackboxing based on module names as they appear
# in the input, that is before any module name mangling done
# by elaboration and synthesis
if { [env_var_exists_and_non_empty SYNTH_BLACKBOXES] } {
foreach m $::env(SYNTH_BLACKBOXES) {
lappend elaborate_args --blackboxed-module "$m"
}
}
lappend elaborate_args {*}$::env(SYNTH_SLANG_ARGS)
# If the sources are solely .v files, enable Verilog compatibility
set has_non_v_files false
foreach fn $::env(VERILOG_FILES) {
if { [file extension [string trim $fn]] != ".v" } {
set has_non_v_files true
}
}
if { !$has_non_v_files } {
lappend elaborate_args --std=1364-2005
}
log_cmd sv_elaborate {*}$elaborate_args
log_cmd syn::stats
log_cmd synthesize
log_cmd read_sdc $::env(SDC_FILE)
log_cmd repair_design -pre_placement
report_metrics 1 "synth" false false
orfs_write_db $::env(RESULTS_DIR)/1_synth.odb
# Canonicalize 1_synth.sdc. The original SDC_FILE provided by
# the user could have dependencies, such as sourcing util.tcl,
# which are read in here and a canonicalized version is written
# out by OpenSTA that has no dependencies. Sole writer of
# 1_synth.sdc.
orfs_write_sdc $::env(RESULTS_DIR)/1_synth.sdc
# Gate-level netlist for LEC (write_lec_verilog strips physical-only
# masters, matching the CTS-stage LEC convention) and any other netlist
# consumer. The Bazel synthesis action declares this file as an output,
# so it must be written unconditionally. write_lec_verilog takes a bare
# filename and prefixes $::env(RESULTS_DIR) itself, like the cts.tcl
# call sites.
source $::env(SCRIPTS_DIR)/lec_check.tcl
write_lec_verilog 1_synth.v
|