问两prime time的问题
时间:12-12
整理:3721RD
点击:
1.如何report ff cell的reset pin到 output pin的delay?直接从.lib或者 lib.v 里
面去找,可以看到是有这个reset -> output的delay,但是直接pt 里面:report_delay
_caculate -from [get_pin ff/reset ] -to [get_pins ff/Q],则直接显示:
****************************************
Report : delay_calculation
Design : i2c_slave
Version: C-2009.06-SP3
Date : Wed Jun 13 11:47:42 2012
****************************************
0
而如果是report_delay_caculate -from [get_pin ff/cp ] -to [get_pins ff/Q],则显
示
****************************************
Report : delay_calculation
Design : i2c_slave
Version: C-2009.06-SP3
Date : Wed Jun 13 11:47:58 2012
****************************************
No arcs between those pins.
0
注意,从reset 到 Q 没有提示No arcs between those pins.
所以不知道这里是什么问题。
2. 如何方便的知道两个节点间的delay? 除了用report_timing 先报出整个path,然后
自己再手动截取需要的部分外,有没有什么比较方便的法子么?
谢谢大家
面去找,可以看到是有这个reset -> output的delay,但是直接pt 里面:report_delay
_caculate -from [get_pin ff/reset ] -to [get_pins ff/Q],则直接显示:
****************************************
Report : delay_calculation
Design : i2c_slave
Version: C-2009.06-SP3
Date : Wed Jun 13 11:47:42 2012
****************************************
0
而如果是report_delay_caculate -from [get_pin ff/cp ] -to [get_pins ff/Q],则显
示
****************************************
Report : delay_calculation
Design : i2c_slave
Version: C-2009.06-SP3
Date : Wed Jun 13 11:47:58 2012
****************************************
No arcs between those pins.
0
注意,从reset 到 Q 没有提示No arcs between those pins.
所以不知道这里是什么问题。
2. 如何方便的知道两个节点间的delay? 除了用report_timing 先报出整个path,然后
自己再手动截取需要的部分外,有没有什么比较方便的法子么?
谢谢大家
确定 该cell的lib全load进去了?
你man 一下get_lib_timing_arcs,会有一个show_lib_arcs 的proc。报告一下该lib cell的timing arc。
show_lib_arcs -of_objects */*
set timing_enable_preset_set true后就能报出来了。
thx