report_net pin locations

This commit is contained in:
James Cherry 2020-06-27 16:24:17 -07:00
parent 07e1262186
commit 1f0d7ffdde
1 changed files with 7 additions and 2 deletions

View File

@ -382,7 +382,7 @@ proc report_net_pin { pin verbose corner digits } {
puts -nonewline [port_capacitance_str $liberty_port $digits]
}
}
puts ""
puts "[pin_location_str $pin]"
} elseif [$pin is_top_level_port] {
puts -nonewline " [get_full_name $pin] [pin_direction $pin] port"
if { $verbose } {
@ -404,12 +404,17 @@ proc report_net_pin { pin verbose corner digits } {
puts -nonewline " pin [capacitances_str $cap_r_min $cap_r_max $cap_f_min $cap_f_max $digits]"
}
}
puts ""
puts "[pin_location_str $pin]"
} elseif [$pin is_hierarchical] {
puts " [get_full_name $pin] [pin_direction $pin]"
}
}
# default handler
proc pin_location_str { pin } {
return ""
}
################################################################
proc report_pin_ { pin } {