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

Lift restrictions against allocating the last storage slot #15911

Open
Tracked by #15727
cameel opened this issue Mar 3, 2025 · 3 comments
Open
Tracked by #15727

Lift restrictions against allocating the last storage slot #15911

cameel opened this issue Mar 3, 2025 · 3 comments
Labels
low effort There is not much implementation work to be done. The task is very easy or tiny. low impact Changes are not very noticeable or potential benefits are limited. must have eventually Something we consider essential but not enough to prevent us from releasing Solidity 1.0 without it.

Comments

@cameel
Copy link
Member

cameel commented Mar 3, 2025

Currently, defining a storage variable that covers the last storage slot results in a compilation error. Either when contract's variables are so large that they cover the whole storage (this is already possible) or when the layout base is shifted so much that reasonably-sized variables reach the last slot (which will be possible after #597).

It's not clear why the restriction was added. It may have been done to keep the last slot reserved, but this wasn't documented anywhere, so it could just as well have been be a mistake.

We should remove the restriction.

Steps to reproduce

Oversized array

contract C {
    uint[2**256] x;
}
Error: Array length too large, maximum is 2**256 - 1.
 --> test.sol:2:10:
  |
2 |     uint[2**256] x;
  |          ^^^^^^

Layout

contract D layout at 2**256 - 1 {
    uint x;
}
Error: Contract extends past the end of storage when this base slot value is specified.
 --> test.sol:1:22:
  |
1 | contract D layout at 2**256 - 1 {
  |                      ^^^^^^^^^^
@cameel cameel added low effort There is not much implementation work to be done. The task is very easy or tiny. low impact Changes are not very noticeable or potential benefits are limited. must have eventually Something we consider essential but not enough to prevent us from releasing Solidity 1.0 without it. labels Mar 3, 2025
@krishnabandewar
Copy link

can I take this ?

@cameel
Copy link
Member Author

cameel commented Mar 4, 2025

One more thing here. #15668 adds a bunch of tests for things at the end of storage, but necessarily places them 1 slot away from the actual end. These tests need to be updated when this gets implemented.

@anushkasomani
Copy link

hi, @cameel can i work on this issue

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
low effort There is not much implementation work to be done. The task is very easy or tiny. low impact Changes are not very noticeable or potential benefits are limited. must have eventually Something we consider essential but not enough to prevent us from releasing Solidity 1.0 without it.
Projects
None yet
Development

No branches or pull requests

3 participants