📄 shownetpropandrelationship.tcl
字号:
proc ShowNetProp {id} { global fp puts $fp " <---- properties ----" puts $fp " npiName=[npi_get $id -npiName]" puts $fp " npiFullName=[npi_get $id -npiFullName]" puts $fp " npiType=[npi_get $id -npiType]" puts $fp " npiFile=[npi_get $id -npiFile]" puts $fp " npiLineNo=[npi_get $id -npiLineNo]" puts $fp " npiDirection=[npi_get $id -npiDirection]" puts $fp " npiSize=[npi_get $id -npiSize]" puts $fp " npiIsExplicitScalared=[npi_get $id -npiIsExplicitScalared]" puts $fp " npiIsExplicitVectored=[npi_get $id -npiIsExplicitVectored]" puts $fp " npiIsVector=[npi_get $id -npiIsVector]" puts $fp " npiIsScalar=[npi_get $id -npiIsScalar]" puts $fp " npiNetType=[npi_get $id -npiNetType]" puts $fp " npiIsImplicitDecl=[npi_get $id -npiIsImplicitDecl]" puts $fp " >---- properties ----"}proc foreach_IterateHandle {iter_handle iter_type} { global fp set Object_Handle [npi_scan $iter_handle] puts $fp " <---$iter_type--->" while {$Object_Handle != "NULL"} { puts $fp " <---begin npi_scan \$iter_handle--->" puts $fp " npiType = [npi_get $Object_Handle -npiType]" puts $fp " npiName = [npi_get $Object_Handle -npiName]" puts $fp " npiLineNo = [npi_get $Object_Handle -npiLineNo]" puts $fp " <---end of npi_scan \$iter_handle--->" set Object_Handle [npi_scan $iter_handle] } puts $fp " <---end of $iter_type--->"}proc ShowHandleProp {Handle type} { global fp puts $fp " <---$type --->" if {$Handle != "NULL"} { puts $fp " npiType = [npi_get $Handle -npiType]" puts $fp " npiName = [npi_get $Handle -npiName]" puts $fp " npiLineNo = [npi_get $Handle -npiLineNo]" } puts $fp " <---end of $type --->"}proc ShowNetRelationship {id} { global fp puts $fp " <---relationship --->" set port_iter [npi_iterate $id -npiType npiPort] foreach_IterateHandle $port_iter "npi_iterate \$id -npiType npiPort" set portinst_iter [npi_iterate $id -npiType npiPortInst] foreach_IterateHandle $portinst_iter "npi_iterate \$id -npiType npiPortInst" set Scope [npi_handle $id -npiType npiScope] ShowHandleProp $Scope "npi_handle \$id -npiType npiScope" set Left [npi_handle $id -npiType npiLeftRange] ShowHandleProp $Left "npi_handle \$id -npiType npiLeftRange" set Right [npi_handle $id -npiType npiRightRange] ShowHandleProp $Right "npi_handle \$id -npiType npiRightRange" puts $fp " <---end of relationship --->"}proc ShowNetPropAndRelationship {} { global g_Net global fp set var $g_Net puts $fp "<---begin showing Net information--->" ShowNetProp $var ShowNetRelationship $var puts $fp "<---end of showing Net information--->"} set log_file [file join [file dirname [info script]] [file tail [info script]].out]set fp [open $log_file w]fconfigure $fp -buffering nonenpi_register_cb -npiModuleBased Net ShowNetPropAndRelationshipnpi_traverse_model -npiModuleBasedclose $fp
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -