I have a list of max transition terminal violations from a third party tool : ( .
ie. <inst>/<term> max_tran tran violation
coding/CODING_SW_REGS_inst/v8_lite_inst/A 0.6800 0.7106 -0.0306 (VIOLATED)
I would like to find out the instname/cellname and netname of the driver driving a specific "terminal".
Online support search pointed me to the following ... very very close ... but not quite.
Useful single line dbGet scripts
Solution ID: 11598038
27. To find out the instname/cellname of the driver driving a specific net.
set netName <netName>
set inst [dbGet [dbGet -p [dbGet -p top.nets.name $netName].allTerms.isOutput 1].inst]
Puts "Net: $netName, driving inst name: [dbGet $inst.name], driving cell name: [dbGet $inst.cell.name]"
Any dbGet gurus out there??
Shawn