Skip to content

Commit 2fc4ece

Browse files
committed
rm Sta:findGroupPathPins
Signed-off-by: James Cherry <[email protected]>
1 parent 82a37d0 commit 2fc4ece

File tree

6 files changed

+0
-401
lines changed

6 files changed

+0
-401
lines changed

CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,6 @@ set(STA_SOURCE
202202
search/TagGroup.cc
203203
search/VertexVisitor.cc
204204
search/VisitPathEnds.cc
205-
search/VisitPathGroupVertices.cc
206205
search/WorstSlack.cc
207206

208207
spice/WritePathSpice.cc

include/sta/Sta.hh

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -907,9 +907,6 @@ public:
907907
PinSet endpointPins();
908908
VertexSet *endpoints();
909909
int endpointViolationCount(const MinMax *min_max);
910-
// Find the fanin vertices for a group path.
911-
// Vertices in the clock network are NOT included.
912-
PinSet findGroupPathPins(const char *group_path_name);
913910
// Find all required times after updateTiming().
914911
void findRequireds();
915912
std::string reportDelayCalc(Edge *edge,

sdc/Sdc.i

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1355,19 +1355,6 @@ set_voltage_net(const Net *net,
13551355

13561356
////////////////////////////////////////////////////////////////
13571357

1358-
PinSet
1359-
group_path_pins(const char *group_path_name)
1360-
{
1361-
Sta *sta = Sta::sta();
1362-
Sdc *sdc = sta->sdc();
1363-
if (sdc->isGroupPathName(group_path_name))
1364-
return sta->findGroupPathPins(group_path_name);
1365-
else
1366-
return PinSet(sta->network());
1367-
}
1368-
1369-
////////////////////////////////////////////////////////////////
1370-
13711358
char
13721359
pin_case_logic_value(const Pin *pin)
13731360
{

search/Sta.cc

Lines changed: 0 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@
7575
#include "ClkLatency.hh"
7676
#include "FindRegister.hh"
7777
#include "ReportPath.hh"
78-
#include "VisitPathGroupVertices.hh"
7978
#include "Genclks.hh"
8079
#include "ClkNetwork.hh"
8180
#include "power/Power.hh"
@@ -2721,36 +2720,6 @@ Sta::endpointViolationCount(const MinMax *min_max)
27212720
return violations;
27222721
}
27232722

2724-
PinSet
2725-
Sta::findGroupPathPins(const char *group_path_name)
2726-
{
2727-
if (!(search_->havePathGroups()
2728-
&& search_->arrivalsValid())) {
2729-
PathEndSeq path_ends = findPathEnds(// from, thrus, to, unconstrained
2730-
nullptr, nullptr, nullptr, false,
2731-
// corner, min_max,
2732-
nullptr, MinMaxAll::max(),
2733-
// group_path_count, endpoint_path_count
2734-
1, 1,
2735-
// unique_pins, unique_edges
2736-
true, true,
2737-
-INF, INF, // slack_min, slack_max,
2738-
false, // sort_by_slack
2739-
nullptr, // group_names
2740-
// setup, hold, recovery, removal,
2741-
true, true, true, true,
2742-
// clk_gating_setup, clk_gating_hold
2743-
true, true);
2744-
}
2745-
2746-
PathGroup *path_group = search_->findPathGroup(group_path_name,
2747-
MinMax::max());
2748-
PinSet pins(network_);
2749-
VertexPinCollector visitor(pins);
2750-
visitPathGroupVertices(path_group, &visitor, this);
2751-
return pins;
2752-
}
2753-
27542723
////////////////////////////////////////////////////////////////
27552724

27562725
void

search/VisitPathGroupVertices.cc

Lines changed: 0 additions & 313 deletions
This file was deleted.

0 commit comments

Comments
 (0)