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
{{ message }}
This repository was archived by the owner on Jun 21, 2023. It is now read-only.
It is, in general, impossible for DSG to know if a region will overflow during DSE, since the code might have for loops etc. However, it could have a general idea as follows:
Keep track of the last known write position for each region
Update the last known write position whenever the pointer is set to an absolute value, a write is called or a write array is called.
Raise an error if the last known write position is beyond the end of the region.
This should work reasonably well, although I am still not sure it is flawless... only testing would tell!