Sta::reportPathVerbose

Signed-off-by: James Cherry <cherry@CerezoBook.local>
This commit is contained in:
James Cherry 2026-07-18 15:40:15 -07:00
parent 6d30081013
commit 76bc0496ec
2 changed files with 10 additions and 0 deletions

View File

@ -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,

View File

@ -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)
{