forked from The-OpenROAD-Project/OpenSTA
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGatedClk.hh
56 lines (48 loc) · 1.66 KB
/
GatedClk.hh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// OpenSTA, Static Timing Analyzer
// Copyright (c) 2019, 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/>.
#ifndef STA_GATED_CLK_H
#define STA_GATED_CLK_H
#include "SdcClass.hh"
#include "GraphClass.hh"
#include "SearchClass.hh"
namespace sta {
typedef Set<FuncExpr*> FuncExprSet;
class GatedClk : public StaState
{
public:
GatedClk(const StaState *sta);
bool isGatedClkEnable(Vertex *vertex) const;
void isGatedClkEnable(Vertex *enable_vertex,
bool &is_gated_clk_enable,
const Pin *&clk_pin,
LogicValue &logic_active_value) const;
void gatedClkEnables(Vertex *clk_vertex,
// Return value.
PinSet &enable_pins);
RiseFall *gatedClkActiveTrans(LogicValue active_value,
const MinMax *min_max) const;
protected:
void isClkGatingFunc(FuncExpr *func,
LibertyPort *enable_port,
LibertyPort *clk_port,
bool &is_clk_gate,
LogicValue &logic_value) const;
void functionClkOperands(FuncExpr *root_expr,
FuncExpr *curr_expr,
FuncExprSet &funcs) const;
};
} // namespace
#endif