report_net pin locations
This commit is contained in:
parent
07e1262186
commit
1f0d7ffdde
|
|
@ -382,7 +382,7 @@ proc report_net_pin { pin verbose corner digits } {
|
||||||
puts -nonewline [port_capacitance_str $liberty_port $digits]
|
puts -nonewline [port_capacitance_str $liberty_port $digits]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
puts ""
|
puts "[pin_location_str $pin]"
|
||||||
} elseif [$pin is_top_level_port] {
|
} elseif [$pin is_top_level_port] {
|
||||||
puts -nonewline " [get_full_name $pin] [pin_direction $pin] port"
|
puts -nonewline " [get_full_name $pin] [pin_direction $pin] port"
|
||||||
if { $verbose } {
|
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 -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] {
|
} elseif [$pin is_hierarchical] {
|
||||||
puts " [get_full_name $pin] [pin_direction $pin]"
|
puts " [get_full_name $pin] [pin_direction $pin]"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# default handler
|
||||||
|
proc pin_location_str { pin } {
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
################################################################
|
################################################################
|
||||||
|
|
||||||
proc report_pin_ { pin } {
|
proc report_pin_ { pin } {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue