-
Notifications
You must be signed in to change notification settings - Fork 1.7k
C++: Improve alias analysis for indirections #1736
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
Draft
dave-bartolomeo
wants to merge
13
commits into
github:main
Choose a base branch
from
dave-bartolomeo:dave/BetterAlias2
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
Changes from all commits
Commits
Show all changes
13 commits
Select commit
Hold shift + click to select a range
8213284
C++: Make `duplicateOperand` query report function name
dave-bartolomeo d40e9f0
C++: Make `IRVariable` non-abstract
dave-bartolomeo 448e4d4
C++: Print memory accesses on the correct instruction in `PrintSSA`
dave-bartolomeo 9c1eb7e
C++: Add SSA sanity tests
dave-bartolomeo 2abcaed
C++: Refactor some integer constant code
dave-bartolomeo 336b7d3
C++: Update points_to test for new alias analysis
dave-bartolomeo 22b776d
C++: Fix escape tests for alias API changes
dave-bartolomeo 5b2baa4
C++: Add SSA sanity tests to IR tests
dave-bartolomeo 4aab88e
C++: Add SSA test case for new alias analysis
dave-bartolomeo 5385f13
C++: Fix dataflow test expectations for new alias analysis
dave-bartolomeo d4ae9dd
C++: Alias analysis changes to support precise indirections
dave-bartolomeo 2bc3506
C++: Update `SimpleSSA` to use the new alias analysis API
dave-bartolomeo 352e750
C++: Implement precise analysis of indirections in `AliasedSSA`
dave-bartolomeo 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
1 change: 1 addition & 0 deletions
1
cpp/ql/src/semmle/code/cpp/ir/implementation/aliased_ssa/internal/AliasAnalysisInternal.qll
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 |
---|---|---|
@@ -1 +1,2 @@ | ||
import semmle.code.cpp.ir.implementation.unaliased_ssa.IR as InputIR | ||
import AliasConfiguration as Configuration |
51 changes: 51 additions & 0 deletions
51
cpp/ql/src/semmle/code/cpp/ir/implementation/aliased_ssa/internal/AliasConfiguration.qll
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 |
---|---|---|
@@ -0,0 +1,51 @@ | ||
private import cpp | ||
private import semmle.code.cpp.ir.implementation.unaliased_ssa.IR | ||
private import semmle.code.cpp.ir.implementation.unaliased_ssa.gvn.ValueNumbering | ||
private import AliasAnalysis | ||
|
||
/** | ||
* A memory allocation that can be tracked by the AliasedSSA alias analysis. | ||
* For now, we track all variables accessed within the function, including both local variables | ||
* and global variables. In the future, we will track indirect parameters as well. | ||
*/ | ||
class Allocation extends ValueNumber { | ||
IRVariable var; | ||
|
||
Allocation() { | ||
// For now, we only track variables. | ||
var = this.getAnInstruction().(VariableAddressInstruction).getVariable() | ||
} | ||
|
||
final string getAllocationString() { | ||
exists(string suffix | | ||
result = var.toString() + suffix and | ||
if isUnaliased() then | ||
suffix = "" | ||
else | ||
suffix = "*" | ||
) | ||
} | ||
|
||
final Type getType() { | ||
result = var.getType() | ||
} | ||
|
||
final int getBitSize() { | ||
result = getType().getSize() * 8 | ||
} | ||
|
||
final predicate alwaysEscapes() { | ||
// An automatic variable only escapes if its address is taken and escapes, but we assume that | ||
// any other kind of variable always escapes. | ||
not var instanceof IRAutomaticVariable | ||
} | ||
|
||
final predicate isUnaliased() { | ||
not allocationEscapes(this) | ||
} | ||
|
||
final Instruction getABaseInstruction() { | ||
// Any instruction with this value number serves as a base address for this allocation. | ||
result = getAnInstruction() | ||
} | ||
} |
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.
What about modeled allocators or default
new
?