OpenSTA/search/ClkNetwork.cc

268 lines
5.8 KiB
C++

// OpenSTA, Static Timing Analyzer
// Copyright (c) 2026, Parallax Software, Inc.
//
// 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/>.
//
// The origin of this software must not be misrepresented; you must not
// claim that you wrote the original software.
//
// Altered source versions must be plainly marked as such, and must not be
// misrepresented as being the original software.
//
// This notice may not be removed or altered from any source distribution.
#include "ClkNetwork.hh"
#include "Debug.hh"
#include "Network.hh"
#include "Graph.hh"
#include "Bfs.hh"
#include "Sdc.hh"
#include "Mode.hh"
#include "SearchPred.hh"
#include "Search.hh"
namespace sta {
ClkNetwork::ClkNetwork(Mode *mode,
StaState *sta) :
StaState(sta),
mode_(mode),
clk_pins_valid_(false)
{
}
ClkNetwork::~ClkNetwork()
{
deleteContents(clk_pins_map_);
}
void
ClkNetwork::ensureClkNetwork()
{
if (!clk_pins_valid_)
findClkPins();
}
void
ClkNetwork::clear()
{
clk_pins_valid_ = false;
pin_clks_map_.clear();
deleteContents(clk_pins_map_);
pin_ideal_clks_map_.clear();
}
void
ClkNetwork::clkPinsInvalid()
{
debugPrint(debug_, "clk_network", 1, "clk network invalid");
clk_pins_valid_ = false;
}
void
ClkNetwork::deletePinBefore(const Pin *pin)
{
if (isClock(pin))
clkPinsInvalid();
}
void
ClkNetwork::disconnectPinBefore(const Pin *pin)
{
if (isClock(pin))
clkPinsInvalid();
}
void
ClkNetwork::connectPinAfter(const Pin *pin)
{
if (network_->isRegClkPin(pin))
clkPinsInvalid();
}
class ClkSearchPred : public ClkTreeSearchPred
{
public:
ClkSearchPred(const StaState *sta);
bool searchTo(const Vertex *to,
const Mode *mode) const override;
};
ClkSearchPred::ClkSearchPred(const StaState *sta) :
ClkTreeSearchPred(sta)
{
}
bool
ClkSearchPred::searchTo(const Vertex *to,
const Mode *mode) const
{
return !mode->sdc()->isLeafPinClock(to->pin());
}
void
ClkNetwork::findClkPins()
{
debugPrint(debug_, "clk_network", 1, "find clk network");
clear();
findClkPins(false, pin_clks_map_);
findClkPins(true, pin_ideal_clks_map_);
clk_pins_valid_ = true;
}
void
ClkNetwork::findClkPins(bool ideal_only,
PinClksMap &pin_clks_map)
{
const Sdc *sdc = mode_->sdc();
ClkSearchPred srch_pred(this);
BfsFwdIterator bfs(BfsIndex::other, &srch_pred, this);
for (Clock *clk : sdc->clocks()) {
if (!ideal_only
|| !clk->isPropagated()) {
PinSet *clk_pins = clk_pins_map_[clk];
if (clk_pins == nullptr) {
clk_pins = new PinSet(network_);
clk_pins_map_[clk] = clk_pins;
}
for (const Pin *pin : clk->leafPins()) {
if (!ideal_only
|| !sdc->isPropagatedClock(pin)) {
Vertex *vertex, *bidirect_drvr_vertex;
graph_->pinVertices(pin, vertex, bidirect_drvr_vertex);
bfs.enqueue(vertex);
if (bidirect_drvr_vertex)
bfs.enqueue(bidirect_drvr_vertex);
}
}
while (bfs.hasNext()) {
Vertex *vertex = bfs.next();
const Pin *pin = vertex->pin();
if (!ideal_only
|| !sdc->isPropagatedClock(pin)) {
clk_pins->insert(pin);
ClockSet &pin_clks = pin_clks_map[pin];
pin_clks.insert(clk);
bfs.enqueueAdjacentVertices(vertex);
}
}
}
}
}
bool
ClkNetwork::isClock(const Pin *pin) const
{
return pin_clks_map_.contains(pin);
}
bool
ClkNetwork::isClock(const Vertex *vertex) const
{
return isClock(vertex->pin());
}
bool
ClkNetwork::isClock(const Net *net) const
{
bool is_clk = false;
NetConnectedPinIterator *pin_iter = network_->pinIterator(net);
while (pin_iter->hasNext()) {
const Pin *pin = pin_iter->next();
if (isClock(pin)) {
is_clk = true;
break;
}
}
delete pin_iter;
return is_clk;
}
bool
ClkNetwork::isIdealClock(const Pin *pin) const
{
return pin_ideal_clks_map_.contains(pin);
}
bool
ClkNetwork::isIdealClock(const Vertex *vertex) const
{
return isIdealClock(vertex->pin());
}
bool
ClkNetwork::isPropagatedClock(const Pin *pin) const
{
return pin_clks_map_.contains(pin)
&& !pin_ideal_clks_map_.contains(pin);
}
const ClockSet *
ClkNetwork::clocks(const Pin *pin) const
{
auto itr = pin_clks_map_.find(pin);
if (itr != pin_clks_map_.end())
return &itr->second;
else
return nullptr;
}
const ClockSet *
ClkNetwork::clocks(const Vertex *vertex) const
{
return clocks(vertex->pin());
}
const ClockSet *
ClkNetwork::idealClocks(const Pin *pin) const
{
auto itr = pin_ideal_clks_map_.find(pin);
if (itr != pin_ideal_clks_map_.end())
return &itr->second;
else
return nullptr;
}
const PinSet *
ClkNetwork::pins(const Clock *clk)
{
if (clk_pins_map_.contains(clk))
return clk_pins_map_[clk];
else
return nullptr;
}
float
ClkNetwork::idealClkSlew(const Pin *pin,
const RiseFall *rf,
const MinMax *min_max) const
{
const ClockSet *clks = idealClocks(pin);
if (clks && !clks->empty()) {
float slew = min_max->initValue();
for (Clock *clk : *clks) {
float clk_slew = clk->slew(rf, min_max);
if (min_max->compare(clk_slew, slew))
slew = clk_slew;
}
return slew;
}
else
return 0.0;
}
} // namespace