Skip to content
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

Conditionally simplify use of if-then-else conditions #8042

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from

Conversation

tautschnig
Copy link
Collaborator

When symbolically executing (and dereferencing) statements like *p = *p + 1; where p may point to more than a single object we ended up with nested if-then-else expressions on the right-hand side that would use the very same conditions. In this particular case, we should propagate the conditions into nested if-then-else expressions. This simplification may be expensive, so we don't enable it in general.

  • Each commit message has a non-empty body, explaining why the change was made.
  • Methods or procedures I have added are documented, following the guidelines provided in CODING_STANDARD.md.
  • n/a The feature or user visible behaviour I have added or modified has been documented in the User Guide in doc/cprover-manual/
  • Regression or unit tests are included, or existing tests cover the modified code (in this case I have detailed which ones those are in the commit message).
  • My commit message includes data points confirming performance improvements (if claimed).
  • My PR is restricted to a single feature or bugfix.
  • n/a White-space or formatting changes outside the feature-related changed lines are in commits of their own.

Copy link

codecov bot commented Nov 15, 2023

Codecov Report

All modified and coverable lines are covered by tests ✅

Project coverage is 78.38%. Comparing base (1ed7b2f) to head (830a7f1).

Additional details and impacted files
@@           Coverage Diff            @@
##           develop    #8042   +/-   ##
========================================
  Coverage    78.38%   78.38%           
========================================
  Files         1720     1720           
  Lines       187982   188010   +28     
  Branches     18474    18477    +3     
========================================
+ Hits        147346   147376   +30     
+ Misses       40636    40634    -2     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@tautschnig tautschnig force-pushed the features/simplify-if-then-else branch from be83fd6 to e7637a7 Compare November 15, 2023 19:33
@tautschnig tautschnig force-pushed the features/simplify-if-then-else branch from e7637a7 to 5fade35 Compare January 22, 2024 15:05
When symbolically executing (and dereferencing) statements like
`*p = *p + 1;` where `p` may point to more than a single object we ended
up with nested if-then-else expressions on the right-hand side that
would use the very same conditions. In this particular case, we should
propagate the conditions into nested if-then-else expressions. This
simplification may be expensive, so we don't enable it in general.
@tautschnig tautschnig force-pushed the features/simplify-if-then-else branch from 5fade35 to 830a7f1 Compare April 23, 2024 08:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants