-
Notifications
You must be signed in to change notification settings - Fork 256
Sta latest 0618 #372
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
maliberty
merged 5 commits into
The-OpenROAD-Project:master
from
The-OpenROAD-Project-staging:sta_latest_0618
Jun 18, 2026
Merged
Sta latest 0618 #372
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
740fa7d
input ref pin graph edges
376d86b
rm Sdc::output_delay_ref_pin_map_
0fe167a
sta_internal_bidirect_instance_paths_enabled use load->driver edges
133580e
Sta::findRequired(vertex) public
5dae393
Merge remote-tracking branch 'upstream/master' into sta_latest_0618
dsengupta0628 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -576,6 +576,7 @@ public: | |
| const Clock *clk, | ||
| const RiseFall *clk_rf, | ||
| const MinMaxAll *min_max); | ||
| void ensureInputDelayRefPinEdges(); | ||
| void setOutputDelay(const Pin *pin, | ||
| const RiseFallBoth *rf, | ||
| const Clock *clk, | ||
|
|
@@ -806,7 +807,6 @@ public: | |
| const MinMaxAll *min_max); | ||
|
|
||
| // STA interface. | ||
| InputDelaySet *refPinInputDelays(const Pin *ref_pin) const; | ||
| const LogicValueMap &logicValues() const { return logic_value_map_; } | ||
| const LogicValueMap &caseLogicValues() const { return case_value_map_; } | ||
| // Returns nullptr if set_operating_conditions has not been called. | ||
|
|
@@ -1221,6 +1221,7 @@ protected: | |
| InputDelay *except); | ||
| void deleteInputDelaysReferencing(const Clock *clk); | ||
| void deleteInputDelay(InputDelay *input_delay); | ||
|
|
||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
| OutputDelay *findOutputDelay(const Pin *pin, | ||
| const ClockEdge *clk_edge); | ||
| OutputDelay *makeOutputDelay(const Pin *pin, | ||
|
|
@@ -1229,6 +1230,7 @@ protected: | |
| OutputDelay *except); | ||
| void deleteOutputDelaysReferencing(const Clock *clk); | ||
| void deleteOutputDelay(OutputDelay *output_delay); | ||
|
|
||
| void deleteClockInsertion(ClockInsertion *insertion); | ||
| void deleteClockInsertionsReferencing(Clock *clk); | ||
| void deleteInterClockUncertainty(InterClockUncertainty *uncertainties); | ||
|
|
@@ -1334,15 +1336,14 @@ protected: | |
|
|
||
| InputDelaySet input_delays_; | ||
| InputDelaysPinMap input_delay_pin_map_; | ||
| InputDelaysPinMap input_delay_ref_pin_map_; | ||
| bool have_input_delay_ref_pins_{false}; | ||
| // Input delays on hierarchical pins are indexed by the load pins. | ||
| InputDelaysPinMap input_delay_leaf_pin_map_; | ||
| InputDelaysPinMap input_delay_internal_pin_map_; | ||
| int input_delay_index_{0}; | ||
|
|
||
| OutputDelaySet output_delays_; | ||
| OutputDelaysPinMap output_delay_pin_map_; | ||
| OutputDelaysPinMap output_delay_ref_pin_map_; | ||
| // Output delays on hierarchical pins are indexed by the load pins. | ||
| OutputDelaysPinMap output_delay_leaf_pin_map_; | ||
|
|
||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Potential null pointer dereference. If
bidir_loadorbidir_drvris null (for example, if the pin is a power or ground pin, or if the vertices were not created), callingmakeEdgewill dereference a null pointer when callingid(from)orid(to). A null check should be added before creating the edge.