Sta::reportPathVerbose
Signed-off-by: James Cherry <cherry@CerezoBook.local>
This commit is contained in:
parent
6d30081013
commit
76bc0496ec
|
|
@ -1008,6 +1008,8 @@ public:
|
|||
void reportPathEnds(PathEndSeq *ends);
|
||||
ReportPath *reportPath() { return report_path_; }
|
||||
void reportPath(const Path *path);
|
||||
// For debugging.
|
||||
void reportPathVerbose(const Path *path);
|
||||
|
||||
// Report clk skews for clks.
|
||||
void reportClkSkew(ConstClockSeq &clks,
|
||||
|
|
|
|||
|
|
@ -2862,6 +2862,14 @@ Sta::reportPath(const Path *path)
|
|||
report_path_->reportPath(path);
|
||||
}
|
||||
|
||||
void
|
||||
Sta::reportPathVerbose(const Path *path)
|
||||
{
|
||||
const StringSeq field_names = {"input_pins", "slew", "capacitance"};
|
||||
setReportPathFields(field_names);
|
||||
report_path_->reportPath(path);
|
||||
}
|
||||
|
||||
void
|
||||
Sta::updateTiming(bool full)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue