-
Notifications
You must be signed in to change notification settings - Fork 1.9k
C++: Reuse even more DataFlow::Nodes
#14008
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
Merged
Changes from all commits
Commits
Show all changes
9 commits
Select commit
Hold shift + click to select a range
50190ef
C++: Don't limit instruction and operand reuse to those cases where w…
MathiasVP c46f9e4
C++: Don't consider additional loads when reusing dataflow operands.
MathiasVP ef9d342
C++: Accept more test changes.
MathiasVP bb1712b
Merge branch 'main' into reuse-even-more-nodes
MathiasVP f65fe34
C++: Add false positive caused by flowing back into a function after …
MathiasVP 99cc417
C++: Fix FPs by making 'isArgumentOfCallable' more robust.
MathiasVP e4a11b8
Merge branch 'main' into reuse-even-more-nodes
MathiasVP b092da4
C++: Accept more test changes.
MathiasVP 261ba8e
C++: Add QLDoc to 'isDereference'.
MathiasVP 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
14 changes: 14 additions & 0 deletions
14
cpp/ql/test/library-tests/dataflow/dataflow-tests/self_argument_flow.cpp
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,14 @@ | ||
| namespace { | ||
| struct Foo { | ||
| char string[10]; | ||
| }; | ||
|
|
||
| void acquire(char*); | ||
|
|
||
| Foo* test_self_argument_flow() { | ||
| Foo *info; | ||
| acquire(info->string); // clean | ||
|
|
||
| return info; | ||
| } | ||
| } |
2 changes: 2 additions & 0 deletions
2
cpp/ql/test/library-tests/dataflow/dataflow-tests/test_self_argument_flow.expected
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,2 @@ | ||
| testFailures | ||
| failures |
33 changes: 33 additions & 0 deletions
33
cpp/ql/test/library-tests/dataflow/dataflow-tests/test_self_argument_flow.ql
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,33 @@ | ||
| import cpp | ||
| import semmle.code.cpp.dataflow.new.DataFlow | ||
| import TestUtilities.InlineExpectationsTest | ||
|
|
||
| module TestConfig implements DataFlow::ConfigSig { | ||
| predicate isSource(DataFlow::Node source) { | ||
| source.getLocation().getFile().getBaseName() = "self_argument_flow.cpp" and | ||
| source.asDefiningArgument() = | ||
| any(Call call | call.getTarget().hasName("acquire")).getAnArgument() | ||
| } | ||
|
|
||
| predicate isSink(DataFlow::Node sink) { | ||
| sink.asIndirectArgument() = any(Call call | call.getTarget().hasName("acquire")).getAnArgument() | ||
| } | ||
geoffw0 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| } | ||
|
|
||
| import DataFlow::Global<TestConfig> | ||
|
|
||
| module TestSelfArgumentFlow implements TestSig { | ||
| string getARelevantTag() { result = "self-arg-flow" } | ||
|
|
||
| predicate hasActualResult(Location location, string element, string tag, string value) { | ||
| exists(DataFlow::Node sink | | ||
| flowTo(sink) and | ||
| location = sink.getLocation() and | ||
| element = sink.toString() and | ||
| tag = "self-arg-flow" and | ||
| value = "" | ||
| ) | ||
| } | ||
| } | ||
|
|
||
| import MakeTest<TestSelfArgumentFlow> | ||
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.
Uh oh!
There was an error while loading. Please reload this page.