OpenSTA/search/GatedClk.cc

266 lines
7.5 KiB
C++
Raw Normal View History

2018-09-28 17:54:21 +02:00
// OpenSTA, Static Timing Analyzer
// Copyright (c) 2025, Parallax Software, Inc.
2018-09-28 17:54:21 +02: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
2018-09-28 17:54:21 +02:00
// 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.
2018-09-28 17:54:21 +02:00
2020-04-05 23:53:44 +02:00
#include "GatedClk.hh"
2020-04-05 20:35:51 +02:00
2020-04-05 23:53:44 +02:00
#include "FuncExpr.hh"
#include "Liberty.hh"
#include "PortDirection.hh"
#include "Network.hh"
#include "Graph.hh"
#include "Sdc.hh"
#include "Search.hh"
2018-09-28 17:54:21 +02:00
namespace sta {
GatedClk::GatedClk(const StaState *sta) :
StaState(sta)
{
}
bool
GatedClk::isGatedClkEnable(Vertex *vertex) const
{
bool is_gated_clk_enable;
const Pin *clk_pin;
LogicValue logic_active_value;
isGatedClkEnable(vertex,
is_gated_clk_enable, clk_pin, logic_active_value);
return is_gated_clk_enable;
}
void
GatedClk::isGatedClkEnable(Vertex *enable_vertex,
bool &is_gated_clk_enable,
const Pin *&clk_pin,
LogicValue &logic_active_value) const
{
is_gated_clk_enable = false;
const Pin *enable_pin = enable_vertex->pin();
const Instance *inst = network_->instance(enable_pin);
LibertyPort *enable_port = network_->libertyPort(enable_pin);
EvalPred *eval_pred = search_->evalPred();
if (enable_port
&& enable_port->direction()->isInput()
&& !sdc_->isDisableClockGatingCheck(enable_pin)
&& !sdc_->isDisableClockGatingCheck(inst)
&& eval_pred->searchFrom(enable_vertex)) {
2019-03-13 01:25:53 +01:00
FuncExpr *func = nullptr;
Vertex *gclk_vertex = nullptr;
2018-09-28 17:54:21 +02:00
VertexOutEdgeIterator edge_iter(enable_vertex, graph_);
while (edge_iter.hasNext()) {
Edge *edge = edge_iter.next();
gclk_vertex = edge->to(graph_);
if (edge->role() == TimingRole::combinational()
&& eval_pred->searchTo(gclk_vertex)
&& eval_pred->searchThru(edge)) {
const Pin *gclk_pin = gclk_vertex->pin();
LibertyPort *gclk_port = network_->libertyPort(gclk_pin);
if (gclk_port) {
func = gclk_port->function();
if (func)
break;
}
}
}
if (func
&& search_->isClock(gclk_vertex)
&& !search_->isClock(enable_vertex)) {
FuncExprPortIterator clk_port_iter(func);
while (clk_port_iter.hasNext()) {
LibertyPort *clk_port = clk_port_iter.next();
if (clk_port != enable_port) {
bool is_clk_gate = false;
isClkGatingFunc(func, enable_port, clk_port,
is_clk_gate, logic_active_value);
if (is_clk_gate) {
clk_pin = network_->findPin(inst, clk_port);
if (clk_pin
&& !sdc_->isDisableClockGatingCheck(clk_pin)
&& search_->isClock(graph_->pinLoadVertex(clk_pin))) {
is_gated_clk_enable = true;
break;
}
}
}
}
}
}
}
void
GatedClk::gatedClkEnables(Vertex *clk_vertex,
// Return value.
PinSet &enable_pins)
{
const Pin *clk_pin = clk_vertex->pin();
const Instance *inst = network_->instance(clk_pin);
LibertyPort *clk_port = network_->libertyPort(clk_pin);
EvalPred *eval_pred = search_->evalPred();
if (clk_port
&& !sdc_->isDisableClockGatingCheck(clk_pin)
&& !sdc_->isDisableClockGatingCheck(inst)
&& eval_pred->searchFrom(clk_vertex)) {
2019-03-13 01:25:53 +01:00
FuncExpr *func = nullptr;
Vertex *gclk_vertex = nullptr;
2018-09-28 17:54:21 +02:00
VertexOutEdgeIterator edge_iter(clk_vertex, graph_);
while (edge_iter.hasNext()) {
Edge *edge = edge_iter.next();
gclk_vertex = edge->to(graph_);
if (edge->role() == TimingRole::combinational()
&& eval_pred->searchTo(gclk_vertex)
&& eval_pred->searchThru(edge)) {
const Pin *gclk_pin = gclk_vertex->pin();
LibertyPort *gclk_port = network_->libertyPort(gclk_pin);
if (gclk_port) {
func = gclk_port->function();
if (func) {
if (search_->isClock(gclk_vertex)) {
FuncExprPortIterator enable_port_iter(func);
while (enable_port_iter.hasNext()) {
LibertyPort *enable_port = enable_port_iter.next();
if (enable_port != clk_port) {
bool is_clk_gate;
LogicValue logic_value;
isClkGatingFunc(func, enable_port, clk_port,
is_clk_gate, logic_value);
if (is_clk_gate) {
Pin *enable_pin = network_->findPin(inst, enable_port);
if (enable_pin
&& !sdc_->isDisableClockGatingCheck(enable_pin)
&& !search_->isClock(graph_->pinLoadVertex(enable_pin))) {
enable_pins.insert(enable_pin);
}
}
}
}
}
break;
}
}
}
}
}
}
void
GatedClk::isClkGatingFunc(FuncExpr *func,
LibertyPort *enable_port,
LibertyPort *clk_port,
bool &is_clk_gate,
LogicValue &logic_value) const
{
// The function should be in two-level SOP or POS form depending on "cost".
// We need to apply literal cofactor if any input port is constant and
// do "simple" logic minimization based on SOP and POS.
while (func->op() == FuncExpr::op_not)
func = func->left();
if (func->op() == FuncExpr::op_and)
2019-03-13 01:25:53 +01:00
logic_value = LogicValue::one;
2018-09-28 17:54:21 +02:00
else if (func->op() == FuncExpr::op_or)
2019-03-13 01:25:53 +01:00
logic_value = LogicValue::zero;
2018-09-28 17:54:21 +02:00
else {
is_clk_gate = false;
return;
}
FuncExprSet funcs;
functionClkOperands(func, func->left(), funcs);
functionClkOperands(func, func->right(), funcs);
bool need_gating_check = false;
FuncExprSet::Iterator expr_iter(funcs);
while (expr_iter.hasNext()) {
FuncExpr *expr = expr_iter.next();
if (expr->op() == FuncExpr::op_not) {
if (expr->left()->op() == FuncExpr::op_port
&& expr->left()->port() == clk_port) {
need_gating_check = true;
2019-03-13 01:25:53 +01:00
logic_value = (logic_value == LogicValue::one) ? LogicValue::zero : LogicValue::one;
2018-09-28 17:54:21 +02:00
}
}
else {
if (expr->op() == FuncExpr::op_port
&& expr->port() == clk_port) {
need_gating_check = true;
}
}
}
if (need_gating_check) {
FuncExprSet::Iterator expr_iter2(funcs);
while (expr_iter2.hasNext()) {
FuncExpr *expr = expr_iter2.next();
FuncExprPortIterator en_port_iter(expr);
while (en_port_iter.hasNext()) {
LibertyPort *port = en_port_iter.next();
if (port == enable_port) {
is_clk_gate = true;
return;
}
}
}
}
is_clk_gate = false;
}
void
GatedClk::functionClkOperands(FuncExpr *root_expr,
FuncExpr *expr,
FuncExprSet &funcs) const
{
if (expr->op() != root_expr->op())
funcs.insert(expr);
else {
functionClkOperands(root_expr, expr->left(), funcs);
functionClkOperands(root_expr, expr->right(), funcs);
}
}
name, asString -> to_string, const commit d122d05822e02dcc08c665ac6ec7513791dd7209 Author: James Cherry <cherry@parallaxsw.com> Date: Thu Mar 27 08:58:22 2025 -0700 rebase Signed-off-by: James Cherry <cherry@parallaxsw.com> commit 9c7ae9a7ddd885ebdab102d48b3f39dc5dacf948 Author: James Cherry <cherry@parallaxsw.com> Date: Tue Mar 25 16:21:52 2025 -0700 write_spice8 Signed-off-by: James Cherry <cherry@parallaxsw.com> commit 2bd088f03bb2e414305232d9ebd76c9d1958ec81 Author: James Cherry <cherry@parallaxsw.com> Date: Tue Mar 25 10:08:00 2025 -0700 liberty reader stringify Signed-off-by: James Cherry <cherry@parallaxsw.com> commit 86974caf063433b37ed1378e7103db4b2e55a04c Author: James Cherry <cherry@parallaxsw.com> Date: Mon Mar 24 20:25:39 2025 -0700 ConcreteLiberary/Cell/Port use string Signed-off-by: James Cherry <cherry@parallaxsw.com> commit 334476e185149a90b35cdd859e0a760ec9aa242a Author: James Cherry <cherry@parallaxsw.com> Date: Mon Mar 24 20:16:08 2025 -0700 leak Signed-off-by: James Cherry <cherry@parallaxsw.com> commit 5130e8d44804f483d9099d48bb413a7f3362b4e1 Author: James Cherry <cherry@parallaxsw.com> Date: Mon Mar 24 15:57:14 2025 -0700 liberty parser stringify Signed-off-by: James Cherry <cherry@parallaxsw.com> commit d48eba88cbde9093e3eb12bcee8eb48ccd444434 Author: James Cherry <cherry@parallaxsw.com> Date: Mon Mar 24 11:16:04 2025 -0700 stringify Signed-off-by: James Cherry <cherry@parallaxsw.com> commit 6913fb198d642f6b05a94fb1852064706a748b81 Author: James Cherry <cherry@parallaxsw.com> Date: Mon Mar 24 11:06:17 2025 -0700 stringify Signed-off-by: James Cherry <cherry@parallaxsw.com> commit 371bca08ecf9bf816b7adcbb7ae1458c4073f5f8 Author: James Cherry <cherry@parallaxsw.com> Date: Mon Mar 24 10:44:31 2025 -0700 TableTemplate use string Signed-off-by: James Cherry <cherry@parallaxsw.com> commit 326465920a1f4a33dbe6be35cff5ca2245b6677e Author: James Cherry <cherry@parallaxsw.com> Date: Mon Mar 24 09:04:55 2025 -0700 use string Signed-off-by: James Cherry <cherry@parallaxsw.com> commit b93a542ddfbcb5c793c9b533cbe64ea20ec08f4a Author: James Cherry <cherry@parallaxsw.com> Date: Mon Mar 24 08:59:01 2025 -0700 timingSenseString -> to_string Signed-off-by: James Cherry <cherry@parallaxsw.com> commit 6c121a0ff4231b37df076a62e83832897be62ff4 Author: James Cherry <cherry@parallaxsw.com> Date: Sun Mar 23 16:09:47 2025 -0700 Corner use string Signed-off-by: James Cherry <cherry@parallaxsw.com> commit 07b989a5a43bf5d341aa6ba2880be663997577d5 Author: James Cherry <cherry@parallaxsw.com> Date: Sun Mar 23 16:05:43 2025 -0700 Tag::to_string() Signed-off-by: James Cherry <cherry@parallaxsw.com> commit 0b9480cc5a3fa9ef0cb1c6e8ba0d4a29de2df816 Author: James Cherry <cherry@parallaxsw.com> Date: Sun Mar 23 15:53:29 2025 -0700 PathAnalysisPt::to_string Signed-off-by: James Cherry <cherry@parallaxsw.com> commit a028659091e99270f7501615285730681ed59523 Author: James Cherry <cherry@parallaxsw.com> Date: Sun Mar 23 12:19:03 2025 -0700 TimingRole stati alloc Signed-off-by: James Cherry <cherry@parallaxsw.com> commit 495be6a57bda23d82e511282f5db7c188b32971b Author: James Cherry <cherry@parallaxsw.com> Date: Sat Mar 22 21:36:52 2025 -0700 RiseFall/RiseFallBoth/Transition const Signed-off-by: James Cherry <cherry@parallaxsw.com> commit 4c4b28adb383321b1172f4b774c7c4d9a1aee69f Author: James Cherry <cherry@parallaxsw.com> Date: Sat Mar 22 20:38:26 2025 -0700 TimingRole const Signed-off-by: James Cherry <cherry@parallaxsw.com> commit 54ab58ec7200d420bf3b5e709e74b652af88d508 Author: James Cherry <cherry@parallaxsw.com> Date: Sat Mar 22 14:15:07 2025 -0700 const MinMax Signed-off-by: James Cherry <cherry@parallaxsw.com> commit f70bb38df17b2ed758c7b6ba5647b7355366c0c0 Author: James Cherry <cherry@parallaxsw.com> Date: Sat Mar 22 13:14:31 2025 -0700 Transition::to_string(() Signed-off-by: James Cherry <cherry@parallaxsw.com> commit b3f3d67328194351fb8efac2219bcfbcec331552 Author: James Cherry <cherry@parallaxsw.com> Date: Sat Mar 22 12:33:25 2025 -0700 RiseFall::to_string Signed-off-by: James Cherry <cherry@parallaxsw.com> commit 4046f8a376926dfde980860c51d2c5c70cf4a867 Author: James Cherry <cherry@parallaxsw.com> Date: Thu Mar 20 09:04:10 2025 -0700 TimingRole::name -> to_string Signed-off-by: James Cherry <cherry@parallaxsw.com> commit cf4dd918eccb05d459f1804ced8365c81a5c6a50 Author: James Cherry <cherry@parallaxsw.com> Date: Wed Mar 19 20:14:42 2025 -0700 MinMax::asString -> to_string Signed-off-by: James Cherry <cherry@parallaxsw.com> commit d80118117dda25be7b2b4896f19e955645c27f73 Author: James Cherry <cherry@parallaxsw.com> Date: Wed Mar 19 17:43:08 2025 -0700 TimingRole::name -> to_string Signed-off-by: James Cherry <cherry@parallaxsw.com> commit 284fa25c28aca998e8ce92e7b7bb927697494a13 Author: James Cherry <cherry@parallaxsw.com> Date: Wed Mar 19 17:02:27 2025 -0700 comment Signed-off-by: James Cherry <cherry@parallaxsw.com> commit 646f19749b997e03dc4cbdf165cd7637010276d3 Author: James Cherry <cherry@parallaxsw.com> Date: Wed Mar 19 14:47:40 2025 -0700 FuncExpr::asString -> to_string Signed-off-by: James Cherry <cherry@parallaxsw.com> commit 4f73d8e7ad21feac6f41130b7b070f3e345b6fb5 Author: James Cherry <cherry@parallaxsw.com> Date: Wed Mar 19 14:04:13 2025 -0700 Vertex::name -> to_string Signed-off-by: James Cherry <cherry@parallaxsw.com> commit 7c7ec486aaea86f6607a1ef72bb1a74dca603831 Author: James Cherry <cherry@parallaxsw.com> Date: Wed Mar 19 13:39:24 2025 -0700 Vertex::name -> to_string Signed-off-by: James Cherry <cherry@parallaxsw.com> Signed-off-by: James Cherry <cherry@parallaxsw.com>
2025-03-31 00:27:53 +02:00
const RiseFall *
2018-09-28 17:54:21 +02:00
GatedClk::gatedClkActiveTrans(LogicValue active_value,
const MinMax *min_max) const
{
name, asString -> to_string, const commit d122d05822e02dcc08c665ac6ec7513791dd7209 Author: James Cherry <cherry@parallaxsw.com> Date: Thu Mar 27 08:58:22 2025 -0700 rebase Signed-off-by: James Cherry <cherry@parallaxsw.com> commit 9c7ae9a7ddd885ebdab102d48b3f39dc5dacf948 Author: James Cherry <cherry@parallaxsw.com> Date: Tue Mar 25 16:21:52 2025 -0700 write_spice8 Signed-off-by: James Cherry <cherry@parallaxsw.com> commit 2bd088f03bb2e414305232d9ebd76c9d1958ec81 Author: James Cherry <cherry@parallaxsw.com> Date: Tue Mar 25 10:08:00 2025 -0700 liberty reader stringify Signed-off-by: James Cherry <cherry@parallaxsw.com> commit 86974caf063433b37ed1378e7103db4b2e55a04c Author: James Cherry <cherry@parallaxsw.com> Date: Mon Mar 24 20:25:39 2025 -0700 ConcreteLiberary/Cell/Port use string Signed-off-by: James Cherry <cherry@parallaxsw.com> commit 334476e185149a90b35cdd859e0a760ec9aa242a Author: James Cherry <cherry@parallaxsw.com> Date: Mon Mar 24 20:16:08 2025 -0700 leak Signed-off-by: James Cherry <cherry@parallaxsw.com> commit 5130e8d44804f483d9099d48bb413a7f3362b4e1 Author: James Cherry <cherry@parallaxsw.com> Date: Mon Mar 24 15:57:14 2025 -0700 liberty parser stringify Signed-off-by: James Cherry <cherry@parallaxsw.com> commit d48eba88cbde9093e3eb12bcee8eb48ccd444434 Author: James Cherry <cherry@parallaxsw.com> Date: Mon Mar 24 11:16:04 2025 -0700 stringify Signed-off-by: James Cherry <cherry@parallaxsw.com> commit 6913fb198d642f6b05a94fb1852064706a748b81 Author: James Cherry <cherry@parallaxsw.com> Date: Mon Mar 24 11:06:17 2025 -0700 stringify Signed-off-by: James Cherry <cherry@parallaxsw.com> commit 371bca08ecf9bf816b7adcbb7ae1458c4073f5f8 Author: James Cherry <cherry@parallaxsw.com> Date: Mon Mar 24 10:44:31 2025 -0700 TableTemplate use string Signed-off-by: James Cherry <cherry@parallaxsw.com> commit 326465920a1f4a33dbe6be35cff5ca2245b6677e Author: James Cherry <cherry@parallaxsw.com> Date: Mon Mar 24 09:04:55 2025 -0700 use string Signed-off-by: James Cherry <cherry@parallaxsw.com> commit b93a542ddfbcb5c793c9b533cbe64ea20ec08f4a Author: James Cherry <cherry@parallaxsw.com> Date: Mon Mar 24 08:59:01 2025 -0700 timingSenseString -> to_string Signed-off-by: James Cherry <cherry@parallaxsw.com> commit 6c121a0ff4231b37df076a62e83832897be62ff4 Author: James Cherry <cherry@parallaxsw.com> Date: Sun Mar 23 16:09:47 2025 -0700 Corner use string Signed-off-by: James Cherry <cherry@parallaxsw.com> commit 07b989a5a43bf5d341aa6ba2880be663997577d5 Author: James Cherry <cherry@parallaxsw.com> Date: Sun Mar 23 16:05:43 2025 -0700 Tag::to_string() Signed-off-by: James Cherry <cherry@parallaxsw.com> commit 0b9480cc5a3fa9ef0cb1c6e8ba0d4a29de2df816 Author: James Cherry <cherry@parallaxsw.com> Date: Sun Mar 23 15:53:29 2025 -0700 PathAnalysisPt::to_string Signed-off-by: James Cherry <cherry@parallaxsw.com> commit a028659091e99270f7501615285730681ed59523 Author: James Cherry <cherry@parallaxsw.com> Date: Sun Mar 23 12:19:03 2025 -0700 TimingRole stati alloc Signed-off-by: James Cherry <cherry@parallaxsw.com> commit 495be6a57bda23d82e511282f5db7c188b32971b Author: James Cherry <cherry@parallaxsw.com> Date: Sat Mar 22 21:36:52 2025 -0700 RiseFall/RiseFallBoth/Transition const Signed-off-by: James Cherry <cherry@parallaxsw.com> commit 4c4b28adb383321b1172f4b774c7c4d9a1aee69f Author: James Cherry <cherry@parallaxsw.com> Date: Sat Mar 22 20:38:26 2025 -0700 TimingRole const Signed-off-by: James Cherry <cherry@parallaxsw.com> commit 54ab58ec7200d420bf3b5e709e74b652af88d508 Author: James Cherry <cherry@parallaxsw.com> Date: Sat Mar 22 14:15:07 2025 -0700 const MinMax Signed-off-by: James Cherry <cherry@parallaxsw.com> commit f70bb38df17b2ed758c7b6ba5647b7355366c0c0 Author: James Cherry <cherry@parallaxsw.com> Date: Sat Mar 22 13:14:31 2025 -0700 Transition::to_string(() Signed-off-by: James Cherry <cherry@parallaxsw.com> commit b3f3d67328194351fb8efac2219bcfbcec331552 Author: James Cherry <cherry@parallaxsw.com> Date: Sat Mar 22 12:33:25 2025 -0700 RiseFall::to_string Signed-off-by: James Cherry <cherry@parallaxsw.com> commit 4046f8a376926dfde980860c51d2c5c70cf4a867 Author: James Cherry <cherry@parallaxsw.com> Date: Thu Mar 20 09:04:10 2025 -0700 TimingRole::name -> to_string Signed-off-by: James Cherry <cherry@parallaxsw.com> commit cf4dd918eccb05d459f1804ced8365c81a5c6a50 Author: James Cherry <cherry@parallaxsw.com> Date: Wed Mar 19 20:14:42 2025 -0700 MinMax::asString -> to_string Signed-off-by: James Cherry <cherry@parallaxsw.com> commit d80118117dda25be7b2b4896f19e955645c27f73 Author: James Cherry <cherry@parallaxsw.com> Date: Wed Mar 19 17:43:08 2025 -0700 TimingRole::name -> to_string Signed-off-by: James Cherry <cherry@parallaxsw.com> commit 284fa25c28aca998e8ce92e7b7bb927697494a13 Author: James Cherry <cherry@parallaxsw.com> Date: Wed Mar 19 17:02:27 2025 -0700 comment Signed-off-by: James Cherry <cherry@parallaxsw.com> commit 646f19749b997e03dc4cbdf165cd7637010276d3 Author: James Cherry <cherry@parallaxsw.com> Date: Wed Mar 19 14:47:40 2025 -0700 FuncExpr::asString -> to_string Signed-off-by: James Cherry <cherry@parallaxsw.com> commit 4f73d8e7ad21feac6f41130b7b070f3e345b6fb5 Author: James Cherry <cherry@parallaxsw.com> Date: Wed Mar 19 14:04:13 2025 -0700 Vertex::name -> to_string Signed-off-by: James Cherry <cherry@parallaxsw.com> commit 7c7ec486aaea86f6607a1ef72bb1a74dca603831 Author: James Cherry <cherry@parallaxsw.com> Date: Wed Mar 19 13:39:24 2025 -0700 Vertex::name -> to_string Signed-off-by: James Cherry <cherry@parallaxsw.com> Signed-off-by: James Cherry <cherry@parallaxsw.com>
2025-03-31 00:27:53 +02:00
const RiseFall *leading_rf;
2018-09-28 17:54:21 +02:00
switch (active_value) {
2019-03-13 01:25:53 +01:00
case LogicValue::one:
case LogicValue::unknown:
2019-11-11 23:30:19 +01:00
leading_rf = RiseFall::rise();
2018-09-28 17:54:21 +02:00
break;
2019-03-13 01:25:53 +01:00
case LogicValue::zero:
2019-11-11 23:30:19 +01:00
leading_rf = RiseFall::fall();
2018-09-28 17:54:21 +02:00
break;
default:
2020-12-14 02:21:35 +01:00
criticalError(249, "illegal gated clock active value");
2019-11-11 23:30:19 +01:00
leading_rf = RiseFall::rise();
2018-09-28 17:54:21 +02:00
break;
}
if (min_max == MinMax::max())
2019-11-11 23:30:19 +01:00
return leading_rf;
2018-09-28 17:54:21 +02:00
else
2019-11-11 23:30:19 +01:00
return leading_rf->opposite();
2018-09-28 17:54:21 +02:00
}
} // namespace