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

Bounded integer transformation #58

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open

Conversation

alastairreid
Copy link

This uses bounds information plus range analysis to change many integers from being fixed size (usually 128 bits) to being exactly the right size for the range of values supported.

This has three effects

  • There is a chance that IMUL will correctly use 130 bit integers for the calculation.
  • Variables are the right size
  • LLVM is able to infer the size of many other values (that ASLi does not directly support)

This transformation is not complete: it will not infer the size of every variable/value that it could.
But it is enough that code quality is often improved.
And it gives enough of a framework that we can incrementally improve it one operation at a time.

This transformation transforms expressions with a constrained
integer type into sized integer expressions (__sint(N)).

This enables backends to implement integers more efficiently than
simply choosing a very large size to represent all integers.

Signed-off-by: Alastair Reid <[email protected]>
Example usage for testing

    dune exec bin/asl2c.py -- --backend=c23 -O0 -Obounded -v --run foo.asl

Signed-off-by: Alastair Reid <[email protected]>
Signed-off-by: Alastair Reid <[email protected]>
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.

1 participant