@@ -45,17 +45,20 @@ proc report_metrics { stage when { include_erc true } { include_clock_skew true
4545 report_puts " \n =========================================================================="
4646 report_puts " $when report_checks -path_delay min"
4747 report_puts " --------------------------------------------------------------------------"
48- report_checks -path_delay min -fields {slew cap input net fanout} -format full_clock_expanded >> $filename
48+ report_checks -path_delay min -fields {slew cap input net fanout} \
49+ -format full_clock_expanded >> $filename
4950
5051 report_puts " \n =========================================================================="
5152 report_puts " $when report_checks -path_delay max"
5253 report_puts " --------------------------------------------------------------------------"
53- report_checks -path_delay max -fields {slew cap input net fanout} -format full_clock_expanded >> $filename
54+ report_checks -path_delay max -fields {slew cap input net fanout} \
55+ -format full_clock_expanded >> $filename
5456
5557 report_puts " \n =========================================================================="
5658 report_puts " $when report_checks -unconstrained"
5759 report_puts " --------------------------------------------------------------------------"
58- report_checks -unconstrained -fields {slew cap input net fanout} -format full_clock_expanded >> $filename
60+ report_checks -unconstrained -fields {slew cap input net fanout} \
61+ -format full_clock_expanded >> $filename
5962
6063 if { $include_erc } {
6164 report_puts " \n =========================================================================="
@@ -154,23 +157,29 @@ proc report_metrics { stage when { include_erc true } { include_clock_skew true
154157 report_puts " \n =========================================================================="
155158 report_puts " $when report_checks -path_delay max reg to reg"
156159 report_puts " --------------------------------------------------------------------------"
157- report_checks -path_delay max -from [all_registers] -to [all_registers] -format full_clock_expanded >> $filename
160+ report_checks -path_delay max -from [all_registers] -to [all_registers] \
161+ -format full_clock_expanded >> $filename
158162 report_puts " \n =========================================================================="
159163 report_puts " $when report_checks -path_delay min reg to reg"
160164 report_puts " --------------------------------------------------------------------------"
161- report_checks -path_delay min -from [all_registers] -to [all_registers] -format full_clock_expanded >> $filename
165+ report_checks -path_delay min -from [all_registers] -to [all_registers] \
166+ -format full_clock_expanded >> $filename
162167
163- set inp_to_reg_critical_path [lindex [find_timing_paths -path_delay max -from [all_inputs] -to [all_registers]] 0]
168+ set inp_to_reg_critical_path \
169+ [lindex [find_timing_paths -path_delay max -from [all_inputs] -to [all_registers]] 0]
164170 if { $inp_to_reg_critical_path != " " } {
165- set target_clock_latency_max [sta::format_time [$inp_to_reg_critical_path target_clk_delay] 4]
171+ set target_clock_latency_max \
172+ [sta::format_time [$inp_to_reg_critical_path target_clk_delay] 4]
166173 } else {
167174 set target_clock_latency_max 0
168175 }
169176
170177
171- set inp_to_reg_critical_path [lindex [find_timing_paths -path_delay min -from [all_inputs] -to [all_registers]] 0]
178+ set inp_to_reg_critical_path [lindex \
179+ [find_timing_paths -path_delay min -from [all_inputs] -to [all_registers]] 0]
172180 if { $inp_to_reg_critical_path != " " } {
173- set target_clock_latency_min [sta::format_time [$inp_to_reg_critical_path target_clk_delay] 4]
181+ set target_clock_latency_min \
182+ [sta::format_time [$inp_to_reg_critical_path target_clk_delay] 4]
174183 set source_clock_latency [sta::format_time [$inp_to_reg_critical_path source_clk_latency] 4]
175184 } else {
176185 set target_clock_latency_min 0
0 commit comments