-
Notifications
You must be signed in to change notification settings - Fork 84
Use global invariant for dead branch detection #525
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
11 commits
Select commit
Hold shift + click to select a range
7e83425
Add incremental test for dead branches
sim642 c5948e8
Add regression test for multiple dead branches
sim642 d60ed7e
Add Node global variables to DeadBranchLifter
sim642 dfad2ad
Add dead branch warnings via global invariant
sim642 b9dde35
Add expressions to global invariant based dead branch
sim642 cba9b14
Remove global data structure for dead branch
sim642 a568e3e
Remove Deadcode module
sim642 d3a046e
Remove unused dead_locations variable
sim642 72cb6e3
Clean up DeadBranchLifter
sim642 ffec468
Fix HTML globals with DeadBranchLifter
sim642 b9dcafb
Remove fixed TODO in 01-cpa/55-dead-branch-multiple
sim642 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 was deleted.
Oops, something went wrong.
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,16 @@ | ||
| #include <assert.h> | ||
|
|
||
| void foo() { | ||
|
|
||
| } | ||
|
|
||
| int main() { | ||
| int a = 1; | ||
|
|
||
| if (a) // WARN | ||
| assert(a); | ||
|
|
||
| foo(); | ||
|
|
||
| return 0; | ||
| } |
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,5 @@ | ||
| { | ||
| "dbg": { | ||
| "print_dead_code": true | ||
| } | ||
| } |
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,11 @@ | ||
| --- tests/incremental/00-basic/07-dead-branch.c | ||
| +++ tests/incremental/00-basic/07-dead-branch.c | ||
| @@ -1,7 +1,7 @@ | ||
| #include <assert.h> | ||
|
|
||
| void foo() { | ||
| - | ||
| + assert(1); | ||
| } | ||
|
|
||
| int main() { |
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,12 @@ | ||
| #include <assert.h> | ||
|
|
||
| int main() { | ||
| int a = 1; | ||
| int b = 0; | ||
|
|
||
| if (a && b) { // WARN | ||
| assert(0); // NOWARN (unreachable) | ||
| } | ||
|
|
||
| return 0; | ||
| } |
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.