-
Notifications
You must be signed in to change notification settings - Fork 5
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
Support large int literals in Theta backend #30
Comments
Gazer converts integer type (short, long, signed, unsigned, etc.) variables in the given C code to int in the generated CFA. Theta 1.7 handles these as large int literals, so the new functionality seems to work without any internal change in Gazer. |
There is a nuance after 1<<63ull: it does not fit the range of int64_t (as it is used in IntLiteralExpr). I'd reopen this as a bug or create a new issue in Gazer, whichever is more appropriate :) |
Reopening seems cleaner to me in this case. |
Thanks @radl97 for pointing this out. What could you imagine as a solution? Replacing Gazer's internal representation with some bigint (e.g. from boost)? Furthermore, is this also an issue for the BMC backend? |
LLVM has some solution, I think. For example APInteger maybe, which stores bitwidth with the value. Note: I would skip Boost, as it is only used on the outer layers, mostly for filesystem handling. Without giving much thought, I think BMC is affected when using Integer representations (instead of the default(?) bitvectors). Disclaimer: Both my claims against BMC and Theta modules are untested, I've only seen how IntLitExpr stores integers, which led me to think the problem exists. Further investigation may show otherwise. I gladly take up the quest, if you'd like :) (both verifying and solving the issue) |
@radl97 if you feel like doing it, please go ahead. You can create a new branch and when you're done submit a PR. It would also be nice to come up with a simple test that fails currently, but will be fixed by the patch. |
@radl97 Indeed, we currently store large int literals in Note that you probably will have to update the expression hashing mechanism for int literals in |
Previously Theta could only parse 32-bit integer literals, but with 1.7 (see #29) it should not be a limitation. We should check if Gazer has to be modified internally to be able to produce larger literals.
The text was updated successfully, but these errors were encountered: