You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As a step towards #6623 we need to have a representation of an overflow check in SSA which is separate from the arithmetic operations.
We have range check instructions already so we should be able to insert these along any arithmetic operations to maintain the current checked behaviour. This would however unlock more opportunities for instruction hoisting etc, as we can hoist the arithmetic while keeping the range checks under a conditional, etc.
The text was updated successfully, but these errors were encountered:
As a step towards #6623 we need to have a representation of an overflow check in SSA which is separate from the arithmetic operations.
We have range check instructions already so we should be able to insert these along any arithmetic operations to maintain the current checked behaviour. This would however unlock more opportunities for instruction hoisting etc, as we can hoist the arithmetic while keeping the range checks under a conditional, etc.
The text was updated successfully, but these errors were encountered: