mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
36 lines
837 B
Plaintext
36 lines
837 B
Plaintext
{
|
|
function allocate(size) -> p {
|
|
p := mload(0x40)
|
|
mstore(0x40, add(p, size))
|
|
}
|
|
function array_index_access(array, index) -> p {
|
|
p := add(array, mul(index, 0x20))
|
|
}
|
|
pop(allocate(0x20))
|
|
let x := allocate(0x40)
|
|
mstore(array_index_access(x, 3), 2)
|
|
if 0 {
|
|
mstore(0x40, 0x20)
|
|
}
|
|
if sub(2,1) {
|
|
for { switch mul(1,2) case 2 { mstore(0x40, 0x20) } } sub(1,1) {} { mstore(0x80, 0x40) }
|
|
}
|
|
sstore(0, array_index_access(x, 3))
|
|
sstore(1, mload(0x40))
|
|
}
|
|
// ----
|
|
// step: fullSuite
|
|
//
|
|
// {
|
|
// {
|
|
// let p := mload(0x40)
|
|
// mstore(0x40, add(p, 0x20))
|
|
// mstore(0x40, add(p, 96))
|
|
// let p_1 := add(p, 128)
|
|
// mstore(p_1, 2)
|
|
// mstore(0x40, 0x20)
|
|
// sstore(0, p_1)
|
|
// sstore(1, 0x20)
|
|
// }
|
|
// }
|