2020-11-13 11:14:30 +00:00
|
|
|
contract c {
|
|
|
|
uint[3][90][] large;
|
|
|
|
uint[3][3][] small;
|
|
|
|
function test() public returns (uint r) {
|
|
|
|
for (uint i = 0; i < 7; i++) {
|
|
|
|
large.push();
|
|
|
|
small.push();
|
|
|
|
}
|
|
|
|
large[3][2][0] = 2;
|
|
|
|
large[1] = large[3];
|
|
|
|
small[3][2][0] = 2;
|
|
|
|
small[1] = small[2];
|
|
|
|
r = ((
|
|
|
|
small[3][2][0] * 0x100 |
|
|
|
|
small[1][2][0]) * 0x100 |
|
|
|
|
large[3][2][0]) * 0x100 |
|
|
|
|
large[1][2][0];
|
|
|
|
delete small;
|
|
|
|
delete large;
|
|
|
|
|
|
|
|
}
|
|
|
|
function clear() public returns (uint, uint) {
|
|
|
|
for (uint i = 0; i < 7; i++) {
|
|
|
|
large.push();
|
|
|
|
small.push();
|
|
|
|
}
|
|
|
|
small[3][2][0] = 0;
|
|
|
|
large[3][2][0] = 0;
|
|
|
|
while (small.length > 0)
|
|
|
|
small.pop();
|
|
|
|
while (large.length > 0)
|
|
|
|
large.pop();
|
|
|
|
return (small.length, large.length);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// ----
|
|
|
|
// test() -> 0x02000202
|
2022-05-23 10:54:18 +00:00
|
|
|
// gas irOptimized: 4649903
|
2022-03-07 18:13:35 +00:00
|
|
|
// gas legacy: 4578320
|
|
|
|
// gas legacyOptimized: 4548312
|
2021-01-08 03:45:19 +00:00
|
|
|
// storageEmpty -> 1
|
2020-11-13 11:14:30 +00:00
|
|
|
// clear() -> 0, 0
|
2022-05-23 10:54:18 +00:00
|
|
|
// gas irOptimized: 4477229
|
2022-03-07 18:13:35 +00:00
|
|
|
// gas legacy: 4410748
|
|
|
|
// gas legacyOptimized: 4382489
|
2021-01-08 03:45:19 +00:00
|
|
|
// storageEmpty -> 1
|