Go: improve path summary by changing post update nodes#13473
Closed
owen-mc wants to merge 2 commits intogithub:mainfrom
Closed
Go: improve path summary by changing post update nodes#13473owen-mc wants to merge 2 commits intogithub:mainfrom
owen-mc wants to merge 2 commits intogithub:mainfrom
Conversation
4843d1c to
9ea23c1
Compare
smowton
reviewed
Jun 16, 2023
| MkImplicitVarargsSlice(CallExpr c) { c.hasImplicitVarargs() } or | ||
| MkFlowSummaryNode(FlowSummaryImpl::Private::SummaryNode sn) | ||
| MkFlowSummaryNode(FlowSummaryImpl::Private::SummaryNode sn) or | ||
| MkPostUpdateNode(IR::Instruction insn) { insn = updatedInstruction() } |
| result = IR::evalExprInstruction(any(SendStmt s).getChannel()) | ||
| } | ||
|
|
||
| private IR::Instruction getAccessPathPredecessor2(IR::Instruction insn) { |
Contributor
There was a problem hiding this comment.
Looks like getAWrittenNode is now unused, so we could remove that and getAccessPathPredecessor then remove the 2 here
| result = getAWrittenInstruction() | ||
| } | ||
|
|
||
| private Expr updatedExpr() { |
9ea23c1 to
9e4f4fa
Compare
Contributor
Author
|
Not needed now we have proper post-update nodes in #14751. |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Cf. this comment and the surrounding discussion.
This PR adds new data-flow nodes which are used for post-update nodes. This means that the post-update node will now be in the expected place. This should make path summaries easier to understand.