2018-09-28 17:54:21 +02:00
|
|
|
// OpenSTA, Static Timing Analyzer
|
2024-01-12 01:34:49 +01:00
|
|
|
// Copyright (c) 2024, 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
|
2022-01-04 18:17:08 +01:00
|
|
|
// 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
|
2022-01-04 18:17:08 +01:00
|
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2018-09-28 17:54:21 +02:00
|
|
|
|
2020-02-16 01:13:16 +01:00
|
|
|
#pragma once
|
2018-09-28 17:54:21 +02:00
|
|
|
|
2020-04-05 23:53:44 +02:00
|
|
|
#include "SearchClass.hh"
|
|
|
|
|
#include "Path.hh"
|
2018-09-28 17:54:21 +02:00
|
|
|
|
|
|
|
|
namespace sta {
|
|
|
|
|
|
|
|
|
|
class PathVertexRep;
|
|
|
|
|
|
|
|
|
|
// Implements Path API for a vertex.
|
|
|
|
|
class PathVertex : public Path
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
PathVertex();
|
|
|
|
|
PathVertex(const PathVertex &path);
|
|
|
|
|
PathVertex(const PathVertex *path);
|
|
|
|
|
PathVertex(const PathVertexRep *path,
|
|
|
|
|
const StaState *sta);
|
|
|
|
|
PathVertex(const PathVertexRep &path,
|
|
|
|
|
const StaState *sta);
|
|
|
|
|
// If tag is not in the vertex tag group isNull() is true.
|
|
|
|
|
PathVertex(Vertex *vertex,
|
|
|
|
|
Tag *tag,
|
|
|
|
|
const StaState *sta);
|
|
|
|
|
PathVertex(Vertex *vertex,
|
|
|
|
|
Tag *tag,
|
|
|
|
|
int arrival_index);
|
|
|
|
|
void init();
|
|
|
|
|
void init(const PathVertexRep *path,
|
|
|
|
|
const StaState *sta);
|
|
|
|
|
void init(const PathVertexRep &path,
|
|
|
|
|
const StaState *sta);
|
|
|
|
|
void init(Vertex *vertex,
|
|
|
|
|
Tag *tag,
|
|
|
|
|
const StaState *sta);
|
|
|
|
|
void init(Vertex *vertex,
|
|
|
|
|
Tag *tag,
|
|
|
|
|
int arrival_index);
|
2019-11-11 21:03:38 +01:00
|
|
|
void operator=(const PathVertex &path);
|
2018-09-28 17:54:21 +02:00
|
|
|
virtual bool isNull() const;
|
|
|
|
|
virtual void setRef(PathRef *ref) const;
|
|
|
|
|
virtual Vertex *vertex(const StaState *) const { return vertex_; }
|
2019-11-11 17:38:25 +01:00
|
|
|
virtual VertexId vertexId(const StaState *sta) const;
|
2018-09-28 17:54:21 +02:00
|
|
|
virtual Tag *tag(const StaState *) const { return tag_; }
|
|
|
|
|
virtual TagIndex tagIndex(const StaState *sta) const;
|
2019-11-11 23:30:19 +01:00
|
|
|
virtual const RiseFall *transition(const StaState *) const;
|
|
|
|
|
virtual int rfIndex(const StaState *sta) const;
|
2018-09-28 17:54:21 +02:00
|
|
|
virtual PathAnalysisPt *pathAnalysisPt(const StaState *sta) const;
|
|
|
|
|
virtual PathAPIndex pathAnalysisPtIndex(const StaState *sta) const;
|
|
|
|
|
void arrivalIndex(int &arrival_index,
|
|
|
|
|
bool &arrival_exists) const;
|
|
|
|
|
void setArrivalIndex(int arrival_index);
|
|
|
|
|
virtual Arrival arrival(const StaState *sta) const;
|
|
|
|
|
virtual void setArrival(Arrival arrival,
|
|
|
|
|
const StaState *sta);
|
|
|
|
|
virtual const Required &required(const StaState *sta) const;
|
|
|
|
|
virtual void setRequired(const Required &required,
|
|
|
|
|
const StaState *sta);
|
|
|
|
|
virtual void prevPath(const StaState *sta,
|
|
|
|
|
// Return values.
|
|
|
|
|
PathRef &prev_path,
|
|
|
|
|
TimingArc *&prev_arc) const;
|
|
|
|
|
void prevPath(const StaState *sta,
|
|
|
|
|
// Return values.
|
|
|
|
|
PathVertex &prev_path) const;
|
|
|
|
|
void prevPath(const StaState *sta,
|
|
|
|
|
// Return values.
|
|
|
|
|
PathVertex &prev_path,
|
|
|
|
|
TimingArc *&prev_arc) const;
|
|
|
|
|
static bool equal(const PathVertex *path1,
|
|
|
|
|
const PathVertex *path2);
|
|
|
|
|
|
|
|
|
|
using Path::setRef;
|
|
|
|
|
using Path::prevPath;
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
Vertex *vertex_;
|
|
|
|
|
Tag *tag_;
|
|
|
|
|
int arrival_index_;
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
friend class PathRef;
|
|
|
|
|
friend class VertexPathIterator;
|
|
|
|
|
friend bool pathVertexEqual(const PathVertex *path1,
|
|
|
|
|
const PathVertex *path2);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
// Iterator for vertex paths.
|
|
|
|
|
class VertexPathIterator : public Iterator<PathVertex*>
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
// Iterate over all vertex paths.
|
|
|
|
|
VertexPathIterator(Vertex *vertex,
|
|
|
|
|
const StaState *sta);
|
|
|
|
|
// Iterate over vertex paths with the same transition and
|
|
|
|
|
// analysis pt but different tags.
|
|
|
|
|
VertexPathIterator(Vertex *vertex,
|
2019-11-11 23:30:19 +01:00
|
|
|
const RiseFall *rf,
|
2018-09-28 17:54:21 +02:00
|
|
|
const PathAnalysisPt *path_ap,
|
|
|
|
|
const StaState *sta);
|
|
|
|
|
// Iterate over vertex paths with the same transition and
|
|
|
|
|
// analysis pt min/max but different tags.
|
|
|
|
|
VertexPathIterator(Vertex *vertex,
|
2019-11-11 23:30:19 +01:00
|
|
|
const RiseFall *rf,
|
2018-09-28 17:54:21 +02:00
|
|
|
const MinMax *min_max,
|
|
|
|
|
const StaState *sta);
|
2021-03-28 01:46:35 +01:00
|
|
|
VertexPathIterator(Vertex *vertex,
|
|
|
|
|
const RiseFall *rf,
|
|
|
|
|
const PathAnalysisPt *path_ap,
|
|
|
|
|
const MinMax *min_max,
|
|
|
|
|
const StaState *sta);
|
2018-09-28 17:54:21 +02:00
|
|
|
virtual ~VertexPathIterator();
|
|
|
|
|
virtual bool hasNext();
|
|
|
|
|
virtual PathVertex *next();
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
void findNext();
|
|
|
|
|
|
|
|
|
|
const Search *search_;
|
|
|
|
|
Vertex *vertex_;
|
2019-11-11 23:30:19 +01:00
|
|
|
const RiseFall *rf_;
|
2018-09-28 17:54:21 +02:00
|
|
|
const PathAnalysisPt *path_ap_;
|
|
|
|
|
const MinMax *min_max_;
|
|
|
|
|
ArrivalMap::Iterator arrival_iter_;
|
|
|
|
|
PathVertex path_;
|
|
|
|
|
PathVertex next_;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
} // namespace
|