StaTcl.i rename requireds vars
Signed-off-by: James Cherry <cherry@parallaxsw.com>
This commit is contained in:
parent
f8fc314a03
commit
3a892bf894
17
tcl/StaTcl.i
17
tcl/StaTcl.i
|
|
@ -6032,15 +6032,15 @@ requireds_clk(const RiseFall *rf,
|
||||||
const RiseFall *clk_rf)
|
const RiseFall *clk_rf)
|
||||||
{
|
{
|
||||||
Sta *sta = Sta::sta();
|
Sta *sta = Sta::sta();
|
||||||
FloatSeq requireds;
|
FloatSeq reqs;
|
||||||
const ClockEdge *clk_edge = nullptr;
|
const ClockEdge *clk_edge = nullptr;
|
||||||
if (clk)
|
if (clk)
|
||||||
clk_edge = clk->edge(clk_rf);
|
clk_edge = clk->edge(clk_rf);
|
||||||
for (auto path_ap : sta->corners()->pathAnalysisPts()) {
|
for (auto path_ap : sta->corners()->pathAnalysisPts()) {
|
||||||
requireds.push_back(delayAsFloat(sta->vertexRequired(self, rf, clk_edge,
|
reqs.push_back(delayAsFloat(sta->vertexRequired(self, rf, clk_edge,
|
||||||
path_ap)));
|
path_ap)));
|
||||||
}
|
}
|
||||||
return requireds;
|
return reqs;
|
||||||
}
|
}
|
||||||
|
|
||||||
StringSeq
|
StringSeq
|
||||||
|
|
@ -6050,16 +6050,15 @@ requireds_clk_delays(const RiseFall *rf,
|
||||||
int digits)
|
int digits)
|
||||||
{
|
{
|
||||||
Sta *sta = Sta::sta();
|
Sta *sta = Sta::sta();
|
||||||
StringSeq requireds;
|
StringSeq reqs;
|
||||||
const ClockEdge *clk_edge = nullptr;
|
const ClockEdge *clk_edge = nullptr;
|
||||||
if (clk)
|
if (clk)
|
||||||
clk_edge = clk->edge(clk_rf);
|
clk_edge = clk->edge(clk_rf);
|
||||||
for (auto path_ap : sta->corners()->pathAnalysisPts()) {
|
for (auto path_ap : sta->corners()->pathAnalysisPts()) {
|
||||||
requireds.push_back(delayAsString(sta->vertexRequired(self, rf, clk_edge,
|
reqs.push_back(delayAsString(sta->vertexRequired(self, rf, clk_edge, path_ap),
|
||||||
path_ap),
|
sta, digits));
|
||||||
sta, digits));
|
|
||||||
}
|
}
|
||||||
return requireds;
|
return reqs;
|
||||||
}
|
}
|
||||||
|
|
||||||
Slack
|
Slack
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue