[hls-fuzzer] Add termination type system#1007
Open
zero9178 wants to merge 2 commits into
Open
Conversation
A common choice in (currently all) targets is to only generate terminating programs. This requires a few tricks especially in handling for loops such as limiting ranges and also limiting loop variable assignments. This PR therefore introduces a new `TerminationTypeSystem` that can just be combined into any other type system to generate terminating programs. Internally it reuses the bitwidth type system for limiting the ranges of the iter, start and end values of a structured-for loop (as was previously done manually in random-c and the bitwidth type system, but is now reused) and additionally blocks the iter variables of a for loop from ever being assigned to.
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.
A common choice in (currently all) targets is to only generate terminating programs. This requires a few tricks especially in handling for loops such as limiting ranges and also limiting loop variable assignments.
This PR therefore introduces a new
TerminationTypeSystemthat can just be combined into any other type system to generate terminating programs. Internally it reuses the bitwidth type system for limiting the ranges of the iter, start and end values of a structured-for loop (as was previously done manually in random-c and the bitwidth type system, but is now reused) and additionally blocks the iter variables of a for loop from ever being assigned to.Alternative to #990