导图社区 dc_shellpt_shell的一些常用命令
这是一篇关于dc_shellpt_shell的一些常用命令的思维导图,用于支持各种复杂的设计和分析任务。
这是一篇关于tcl使用总结的思维导图,主要内容包括:文本处理,正则匹配,过程函数,控制流,列表,置换。
这是一篇关于dbGet命令使用总结的思维导图,帮助用户更好地理解和使用这一工具,提高数据获取、处理和分析的效率。
社区模板帮助中心,点此进入>>
互联网9大思维
组织架构-单商户商城webAPP 思维导图。
域控上线
python思维导图
css
CSS
计算机操作系统思维导图
计算机组成原理
IMX6UL(A7)
考试学情分析系统
dc_shell/pt_shell的一些常用命令
current_design
保存当前设计的top name
current_instance
在pt_shell中设置当前的working instance,和linux下的cd 命令相似, 进入某一hier之后 get_cells * 就只get本层的cells
current_instance . 当前instance
current_instance .. 后退一级
current_instance (不加参数)返回top hier
current_instance a/b/c 进入a/b/c例化层次
get_cells/get_cell
Creates a collection of cells from the current design, relative to the current instance.
get_cells * 就是get所有当前instance所有的cells
get_cells -hier * 就是get所有当前instance及以下所有的cells
get_cells A/B/C/*reg 在A/B/C hier下get *reg
get_cells -hier *reg 在当前及以下层级get_cells
get_cells *reg 只在当前层次get *reg
get_cell A/*/C/*reg
get_pins/get_pin
Creates a collection of pins that match the specified criteria.
get_pins * 就是get所有当前instance及以下所有的cells的所有pins
get_pins A/B/C/*reg/D 在指定的A/B/C hier下get *reg的D pin
get_pins -hier *reg/D 在当前及以下层级get *reg 的D pin
get_pins *reg/D 只在当前层次get *reg的D pin
get_ports/get_port
和get_cells/get_cell的情况一致