OpenSTA/graph/DelayNormal2.cc

460 lines
9.1 KiB
C++
Raw Normal View History

2018-11-26 18:15:52 +01:00
// OpenSTA, Static Timing Analyzer
2020-03-07 03:50:37 +01:00
// Copyright (c) 2020, Parallax Software, Inc.
2018-11-26 18:15:52 +01:00
//
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program. If not, see <https://www.gnu.org/licenses/>.
2020-04-05 23:53:44 +02:00
#include "Delay.hh"
2020-04-05 20:35:51 +02:00
2018-11-26 18:15:52 +01:00
#include <cmath> // sqrt
2020-04-05 20:35:51 +02:00
2020-04-05 23:53:44 +02:00
#include "StaConfig.hh"
#include "Error.hh"
#include "StringUtil.hh"
#include "Fuzzy.hh"
#include "Units.hh"
#include "StaState.hh"
2018-11-26 18:15:52 +01:00
2018-12-05 23:18:41 +01:00
// SSTA compilation.
2019-03-22 00:19:16 +01:00
#if (SSTA == 2)
2018-11-26 18:15:52 +01:00
namespace sta {
2018-12-11 19:47:04 +01:00
inline float
square(float x)
{
return x * x;
}
2018-11-26 18:15:52 +01:00
static Delay delay_init_values[MinMax::index_count];
void
initDelayConstants()
{
delay_init_values[MinMax::minIndex()] = MinMax::min()->initValue();
delay_init_values[MinMax::maxIndex()] = MinMax::max()->initValue();
}
const Delay &
delayInitValue(const MinMax *min_max)
{
return delay_init_values[min_max->index()];
}
Delay::Delay() :
mean_(0.0),
2018-12-11 19:47:04 +01:00
sigma2_{0.0, 0.0}
2018-11-26 18:15:52 +01:00
{
}
Delay::Delay(float mean) :
mean_(mean),
2018-12-11 19:47:04 +01:00
sigma2_{0.0, 0.0}
2018-11-26 18:15:52 +01:00
{
}
Delay::Delay(float mean,
2018-12-11 19:47:04 +01:00
float sigma2_early,
float sigma2_late) :
2018-11-26 18:15:52 +01:00
mean_(mean),
2018-12-11 19:47:04 +01:00
sigma2_{sigma2_early, sigma2_late}
2018-11-26 18:15:52 +01:00
{
}
float
Delay::sigma(const EarlyLate *early_late) const
{
2018-12-11 19:47:04 +01:00
float sigma = sigma2_[early_late->index()];
if (sigma < 0.0)
// Sigma is negative for crpr to offset sigmas in the common
// clock path.
return -sqrt(-sigma);
else
return sqrt(sigma);
}
float
Delay::sigma2(const EarlyLate *early_late) const
{
return sigma2_[early_late->index()];
}
float
Delay::sigma2Early() const
{
return sigma2_[early_index];
}
float
Delay::sigma2Late() const
{
return sigma2_[late_index];
2018-11-26 18:15:52 +01:00
}
void
Delay::operator=(const Delay &delay)
{
mean_ = delay.mean_;
2018-12-11 19:47:04 +01:00
sigma2_[early_index] = delay.sigma2_[early_index];
sigma2_[late_index] = delay.sigma2_[late_index];
2018-11-26 18:15:52 +01:00
}
void
Delay::operator=(float delay)
{
mean_ = delay;
2018-12-11 19:47:04 +01:00
sigma2_[early_index] = 0.0;
sigma2_[late_index] = 0.0;
2018-11-26 18:15:52 +01:00
}
void
Delay::operator+=(const Delay &delay)
{
mean_ += delay.mean_;
2018-12-11 19:47:04 +01:00
sigma2_[early_index] += delay.sigma2_[early_index];
sigma2_[late_index] += delay.sigma2_[late_index];
2018-11-26 18:15:52 +01:00
}
void
Delay::operator+=(float delay)
{
mean_ += delay;
}
Delay
Delay::operator+(const Delay &delay) const
{
return Delay(mean_ + delay.mean_,
2018-12-11 19:47:04 +01:00
sigma2_[early_index] + delay.sigma2_[early_index],
sigma2_[late_index] + delay.sigma2_[late_index]);
2018-11-26 18:15:52 +01:00
}
Delay
Delay::operator+(float delay) const
{
2018-12-11 19:47:04 +01:00
return Delay(mean_ + delay, sigma2_[early_index], sigma2_[late_index]);
2018-11-26 18:15:52 +01:00
}
Delay
Delay::operator-(const Delay &delay) const
{
return Delay(mean_ - delay.mean_,
sigma2_[early_index] + delay.sigma2_[late_index],
sigma2_[late_index] + delay.sigma2_[early_index]);
2018-11-26 18:15:52 +01:00
}
Delay
Delay::operator-(float delay) const
{
2018-12-11 19:47:04 +01:00
return Delay(mean_ - delay, sigma2_[early_index], sigma2_[late_index]);
2018-11-26 18:15:52 +01:00
}
Delay
Delay::operator-() const
{
return Delay(-mean_, sigma2_[late_index], sigma2_[early_index]);
2018-11-26 18:15:52 +01:00
}
void
Delay::operator-=(float delay)
{
2019-01-27 08:03:01 +01:00
mean_ -= delay;
}
void
Delay::operator-=(const Delay &delay)
{
mean_ -= delay.mean_;
2019-04-29 17:39:05 +02:00
sigma2_[early_index] += delay.sigma2_[early_index];
sigma2_[late_index] += delay.sigma2_[late_index];
2018-11-26 18:15:52 +01:00
}
bool
Delay::operator==(const Delay &delay) const
{
return mean_ == delay.mean_
&& sigma2_[early_index] == delay.sigma2_[late_index]
&& sigma2_[late_index] == delay.sigma2_[early_index];
2018-11-26 18:15:52 +01:00
}
bool
Delay::operator>(const Delay &delay) const
{
return mean_ > delay.mean_;
}
bool
Delay::operator>=(const Delay &delay) const
{
return mean_ >= delay.mean_;
}
bool
Delay::operator<(const Delay &delay) const
{
return mean_ < delay.mean_;
}
bool
Delay::operator<=(const Delay &delay) const
{
return mean_ <= delay.mean_;
}
2018-12-11 19:47:04 +01:00
////////////////////////////////////////////////////////////////
Delay
makeDelay(float delay,
float sigma_early,
float sigma_late)
{
return Delay(delay, square(sigma_early), square(sigma_late));
}
Delay
makeDelay2(float delay,
float sigma2_early,
float sigma2_late)
{
return Delay(delay, sigma2_early, sigma2_late);
}
2018-11-26 18:15:52 +01:00
bool
delayIsInitValue(const Delay &delay,
const MinMax *min_max)
{
return fuzzyEqual(delay.mean(), min_max->initValue())
2018-12-11 19:47:04 +01:00
&& delay.sigma2Early() == 0.0
&& delay.sigma2Late() == 0.0;
2018-11-26 18:15:52 +01:00
}
bool
2019-03-13 01:25:53 +01:00
fuzzyZero(const Delay &delay)
2018-11-26 18:15:52 +01:00
{
return fuzzyZero(delay.mean())
2018-12-11 19:47:04 +01:00
&& fuzzyZero(delay.sigma2Early())
&& fuzzyZero(delay.sigma2Late());
2018-11-26 18:15:52 +01:00
}
2020-03-30 00:47:31 +02:00
bool
fuzzyInf(const Delay &delay)
{
return fuzzyInf(delay.mean());
}
2018-11-26 18:15:52 +01:00
bool
2019-03-13 01:25:53 +01:00
fuzzyEqual(const Delay &delay1,
const Delay &delay2)
2018-11-26 18:15:52 +01:00
{
return fuzzyEqual(delay1.mean(), delay2.mean())
2018-12-11 19:47:04 +01:00
&& fuzzyEqual(delay1.sigma2Early(), delay2.sigma2Early())
&& fuzzyEqual(delay1.sigma2Late(), delay2.sigma2Late());
2018-11-26 18:15:52 +01:00
}
bool
2019-03-13 01:25:53 +01:00
fuzzyLess(const Delay &delay1,
const Delay &delay2)
2018-11-26 18:15:52 +01:00
{
return fuzzyLess(delay1.mean(), delay2.mean());
}
bool
2019-03-13 01:25:53 +01:00
fuzzyLess(const Delay &delay1,
float delay2)
2018-11-26 18:15:52 +01:00
{
return fuzzyLess(delay1.mean(), delay2);
}
bool
2019-03-13 01:25:53 +01:00
fuzzyLessEqual(const Delay &delay1,
const Delay &delay2)
2018-11-26 18:15:52 +01:00
{
return fuzzyLessEqual(delay1.mean(), delay2.mean());
}
bool
2019-03-13 01:25:53 +01:00
fuzzyLessEqual(const Delay &delay1,
2018-11-26 18:15:52 +01:00
float delay2)
{
return fuzzyLessEqual(delay1.mean(), delay2);
}
bool
2019-03-13 01:25:53 +01:00
fuzzyLessEqual(const Delay &delay1,
const Delay &delay2,
const MinMax *min_max)
2018-11-26 18:15:52 +01:00
{
if (min_max == MinMax::max())
return fuzzyLessEqual(delay1.mean(), delay2.mean());
else
return fuzzyGreaterEqual(delay1.mean(), delay2.mean());
}
bool
2019-03-13 01:25:53 +01:00
fuzzyGreater(const Delay &delay1,
const Delay &delay2)
2018-11-26 18:15:52 +01:00
{
return fuzzyGreater(delay1.mean(), delay2.mean());
}
bool
2019-03-13 01:25:53 +01:00
fuzzyGreater(const Delay &delay1,
float delay2)
2018-11-26 18:15:52 +01:00
{
return fuzzyGreater(delay1.mean(), delay2);
}
bool
2019-03-13 01:25:53 +01:00
fuzzyGreaterEqual(const Delay &delay1,
const Delay &delay2)
2018-11-26 18:15:52 +01:00
{
return fuzzyGreaterEqual(delay1.mean(), delay2.mean());
}
bool
2019-03-13 01:25:53 +01:00
fuzzyGreaterEqual(const Delay &delay1,
float delay2)
2018-11-26 18:15:52 +01:00
{
return fuzzyGreaterEqual(delay1.mean(), delay2);
}
bool
2019-03-13 01:25:53 +01:00
fuzzyGreater(const Delay &delay1,
const Delay &delay2,
const MinMax *min_max)
2018-11-26 18:15:52 +01:00
{
if (min_max == MinMax::max())
return fuzzyGreater(delay1.mean(), delay2.mean());
else
return fuzzyLess(delay1.mean(), delay2.mean());
}
bool
2019-03-13 01:25:53 +01:00
fuzzyGreaterEqual(const Delay &delay1,
const Delay &delay2,
const MinMax *min_max)
2018-11-26 18:15:52 +01:00
{
if (min_max == MinMax::max())
return fuzzyGreaterEqual(delay1.mean(), delay2.mean());
else
return fuzzyLessEqual(delay1.mean(), delay2.mean());
}
bool
2019-03-13 01:25:53 +01:00
fuzzyLess(const Delay &delay1,
const Delay &delay2,
const MinMax *min_max)
2018-11-26 18:15:52 +01:00
{
if (min_max == MinMax::max())
return fuzzyLess(delay1.mean(), delay2.mean());
else
return fuzzyGreater(delay1.mean(), delay2.mean());
}
Delay
operator+(float delay1,
const Delay &delay2)
{
return Delay(delay1 + delay2.mean(),
2018-12-11 19:47:04 +01:00
delay2.sigma2Early(),
delay2.sigma2Late());
2018-11-26 18:15:52 +01:00
}
Delay
operator/(float delay1,
const Delay &delay2)
{
return Delay(delay1 / delay2.mean(),
2018-12-11 19:47:04 +01:00
delay2.sigma2Early(),
delay2.sigma2Late());
2018-11-26 18:15:52 +01:00
}
Delay
operator*(const Delay &delay1,
2019-04-29 17:39:05 +02:00
float delay2)
2018-11-26 18:15:52 +01:00
{
2019-04-29 17:39:05 +02:00
return Delay(delay1.mean() * delay2,
2019-12-21 02:42:06 +01:00
delay1.sigma2Early() * delay2 * delay2,
delay1.sigma2Late() * delay2 * delay2);
2018-11-26 18:15:52 +01:00
}
float
delayRatio(const Delay &delay1,
const Delay &delay2)
{
return delay1.mean() / delay2.mean();
}
2018-12-05 23:18:41 +01:00
float
delayAsFloat(const Delay &delay,
2019-03-13 01:25:53 +01:00
const EarlyLate *early_late,
2019-06-01 17:07:38 +02:00
const StaState *sta)
2018-12-05 23:18:41 +01:00
{
2019-06-01 17:07:38 +02:00
if (sta->pocvEnabled()) {
if (early_late == EarlyLate::early())
return delay.mean() - delay.sigma(early_late) * sta->sigmaFactor();
else if (early_late == EarlyLate::late())
return delay.mean() + delay.sigma(early_late) * sta->sigmaFactor();
else
internalError("unknown early/late value.");
}
2018-12-05 23:18:41 +01:00
else
2019-06-01 17:07:38 +02:00
return delay.mean();
2018-12-05 23:18:41 +01:00
}
2018-12-11 19:47:04 +01:00
float
delaySigma2(const Delay &delay,
const EarlyLate *early_late)
{
return delay.sigma2(early_late);
}
const char *
delayAsString(const Delay &delay,
const StaState *sta)
{
return delayAsString(delay, sta, sta->units()->timeUnit()->digits());
}
2018-11-26 18:15:52 +01:00
const char *
delayAsString(const Delay &delay,
2019-01-27 08:03:01 +01:00
const StaState *sta,
2018-11-26 18:15:52 +01:00
int digits)
{
2019-01-27 08:03:01 +01:00
const Unit *unit = sta->units()->timeUnit();
if (sta->pocvEnabled()) {
float sigma_early = delay.sigma(EarlyLate::early());
float sigma_late = delay.sigma(EarlyLate::late());
2019-12-24 02:26:25 +01:00
return stringPrintTmp("%s[%s : %s]",
unit->asString(delay.mean(), digits),
unit->asString(sigma_early, digits),
unit->asString(sigma_late, digits));
2019-01-27 08:03:01 +01:00
}
2018-11-26 18:15:52 +01:00
else
2019-01-27 08:03:01 +01:00
return unit->asString(delay.mean(), digits);
2018-11-26 18:15:52 +01:00
}
const char *
2018-12-05 23:18:41 +01:00
delayAsString(const Delay &delay,
const EarlyLate *early_late,
2019-01-27 08:03:01 +01:00
const StaState *sta,
2018-12-05 23:18:41 +01:00
int digits)
2018-11-26 18:15:52 +01:00
{
2019-06-01 17:07:38 +02:00
float mean_sigma = delayAsFloat(delay, early_late, sta);
2019-01-27 08:03:01 +01:00
return sta->units()->timeUnit()->asString(mean_sigma, digits);
2018-11-26 18:15:52 +01:00
}
} // namespace
2020-02-16 01:13:16 +01:00
#endif // (SSTA == 2)