const
Signed-off-by: James Cherry <cherry@parallaxsw.com>
This commit is contained in:
parent
eb4839e145
commit
503b4146b6
|
|
@ -458,36 +458,36 @@ public:
|
||||||
void setCaseAnalysis(Pin *pin,
|
void setCaseAnalysis(Pin *pin,
|
||||||
LogicValue value);
|
LogicValue value);
|
||||||
void removeCaseAnalysis(Pin *pin);
|
void removeCaseAnalysis(Pin *pin);
|
||||||
void setInputDelay(Pin *pin,
|
void setInputDelay(const Pin *pin,
|
||||||
const RiseFallBoth *rf,
|
const RiseFallBoth *rf,
|
||||||
Clock *clk,
|
const Clock *clk,
|
||||||
const RiseFall *clk_rf,
|
const RiseFall *clk_rf,
|
||||||
Pin *ref_pin,
|
const Pin *ref_pin,
|
||||||
bool source_latency_included,
|
bool source_latency_included,
|
||||||
bool network_latency_included,
|
bool network_latency_included,
|
||||||
const MinMaxAll *min_max,
|
const MinMaxAll *min_max,
|
||||||
bool add,
|
bool add,
|
||||||
float delay);
|
float delay);
|
||||||
void removeInputDelay(Pin *pin,
|
void removeInputDelay(const Pin *pin,
|
||||||
RiseFallBoth *rf,
|
const RiseFallBoth *rf,
|
||||||
Clock *clk,
|
const Clock *clk,
|
||||||
RiseFall *clk_rf,
|
const RiseFall *clk_rf,
|
||||||
MinMaxAll *min_max);
|
const MinMaxAll *min_max);
|
||||||
void setOutputDelay(Pin *pin,
|
void setOutputDelay(const Pin *pin,
|
||||||
const RiseFallBoth *rf,
|
const RiseFallBoth *rf,
|
||||||
Clock *clk,
|
const Clock *clk,
|
||||||
const RiseFall *clk_rf,
|
const RiseFall *clk_rf,
|
||||||
Pin *ref_pin,
|
const Pin *ref_pin,
|
||||||
bool source_latency_included,
|
bool source_latency_included,
|
||||||
bool network_latency_included,
|
bool network_latency_included,
|
||||||
const MinMaxAll *min_max,
|
const MinMaxAll *min_max,
|
||||||
bool add,
|
bool add,
|
||||||
float delay);
|
float delay);
|
||||||
void removeOutputDelay(Pin *pin,
|
void removeOutputDelay(const Pin *pin,
|
||||||
RiseFallBoth *rf,
|
const RiseFallBoth *rf,
|
||||||
Clock *clk,
|
const Clock *clk,
|
||||||
RiseFall *clk_rf,
|
const RiseFall *clk_rf,
|
||||||
MinMaxAll *min_max);
|
const MinMaxAll *min_max);
|
||||||
void makeFalsePath(ExceptionFrom *from,
|
void makeFalsePath(ExceptionFrom *from,
|
||||||
ExceptionThruSeq *thrus,
|
ExceptionThruSeq *thrus,
|
||||||
ExceptionTo *to,
|
ExceptionTo *to,
|
||||||
|
|
|
||||||
|
|
@ -1858,11 +1858,11 @@ Sta::removeCaseAnalysis(Pin *pin)
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
Sta::setInputDelay(Pin *pin,
|
Sta::setInputDelay(const Pin *pin,
|
||||||
const RiseFallBoth *rf,
|
const RiseFallBoth *rf,
|
||||||
Clock *clk,
|
const Clock *clk,
|
||||||
const RiseFall *clk_rf,
|
const RiseFall *clk_rf,
|
||||||
Pin *ref_pin,
|
const Pin *ref_pin,
|
||||||
bool source_latency_included,
|
bool source_latency_included,
|
||||||
bool network_latency_included,
|
bool network_latency_included,
|
||||||
const MinMaxAll *min_max,
|
const MinMaxAll *min_max,
|
||||||
|
|
@ -1877,22 +1877,22 @@ Sta::setInputDelay(Pin *pin,
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
Sta::removeInputDelay(Pin *pin,
|
Sta::removeInputDelay(const Pin *pin,
|
||||||
RiseFallBoth *rf,
|
const RiseFallBoth *rf,
|
||||||
Clock *clk,
|
const Clock *clk,
|
||||||
RiseFall *clk_rf,
|
const RiseFall *clk_rf,
|
||||||
MinMaxAll *min_max)
|
const MinMaxAll *min_max)
|
||||||
{
|
{
|
||||||
sdc_->removeInputDelay(pin, rf, clk, clk_rf, min_max);
|
sdc_->removeInputDelay(pin, rf, clk, clk_rf, min_max);
|
||||||
search_->arrivalInvalid(pin);
|
search_->arrivalInvalid(pin);
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
Sta::setOutputDelay(Pin *pin,
|
Sta::setOutputDelay(const Pin *pin,
|
||||||
const RiseFallBoth *rf,
|
const RiseFallBoth *rf,
|
||||||
Clock *clk,
|
const Clock *clk,
|
||||||
const RiseFall *clk_rf,
|
const RiseFall *clk_rf,
|
||||||
Pin *ref_pin,
|
const Pin *ref_pin,
|
||||||
bool source_latency_included,
|
bool source_latency_included,
|
||||||
bool network_latency_included,
|
bool network_latency_included,
|
||||||
const MinMaxAll *min_max,
|
const MinMaxAll *min_max,
|
||||||
|
|
@ -1907,11 +1907,11 @@ Sta::setOutputDelay(Pin *pin,
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
Sta::removeOutputDelay(Pin *pin,
|
Sta::removeOutputDelay(const Pin *pin,
|
||||||
RiseFallBoth *rf,
|
const RiseFallBoth *rf,
|
||||||
Clock *clk,
|
const Clock *clk,
|
||||||
RiseFall *clk_rf,
|
const RiseFall *clk_rf,
|
||||||
MinMaxAll *min_max)
|
const MinMaxAll *min_max)
|
||||||
{
|
{
|
||||||
sdc_->removeOutputDelay(pin, rf, clk, clk_rf, min_max);
|
sdc_->removeOutputDelay(pin, rf, clk, clk_rf, min_max);
|
||||||
sdcChangedGraph();
|
sdcChangedGraph();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue