2019-11-21 17:56:25 +00:00
|
|
|
{"contracts":{"A":{"C":{"ir":"/*******************************************************
|
|
|
|
* WARNING *
|
|
|
|
* Solidity to Yul compilation is still EXPERIMENTAL *
|
|
|
|
* It can result in LOSS OF FUNDS or worse *
|
|
|
|
* !USE AT YOUR OWN RISK! *
|
|
|
|
*******************************************************/
|
|
|
|
|
|
|
|
|
2020-11-26 21:33:36 +00:00
|
|
|
object \"C_11\" {
|
2019-11-21 17:56:25 +00:00
|
|
|
code {
|
2020-10-15 14:25:15 +00:00
|
|
|
mstore(64, 128)
|
2020-04-06 15:26:59 +00:00
|
|
|
if callvalue() { revert(0, 0) }
|
2019-11-21 17:56:25 +00:00
|
|
|
|
2020-11-26 21:33:36 +00:00
|
|
|
constructor_C_11()
|
2019-11-21 17:56:25 +00:00
|
|
|
|
2020-11-26 21:33:36 +00:00
|
|
|
codecopy(0, dataoffset(\"C_11_deployed\"), datasize(\"C_11_deployed\"))
|
2020-04-27 17:35:35 +00:00
|
|
|
|
2020-11-26 21:33:36 +00:00
|
|
|
return(0, datasize(\"C_11_deployed\"))
|
2019-11-21 17:56:25 +00:00
|
|
|
|
2020-11-26 21:33:36 +00:00
|
|
|
function constructor_C_11() {
|
2020-04-06 15:26:59 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-11-21 17:56:25 +00:00
|
|
|
}
|
2020-11-26 21:33:36 +00:00
|
|
|
object \"C_11_deployed\" {
|
2019-11-21 17:56:25 +00:00
|
|
|
code {
|
2020-10-15 14:25:15 +00:00
|
|
|
mstore(64, 128)
|
2019-11-21 17:56:25 +00:00
|
|
|
|
|
|
|
if iszero(lt(calldatasize(), 4))
|
|
|
|
{
|
|
|
|
let selector := shift_right_224_unsigned(calldataload(0))
|
|
|
|
switch selector
|
|
|
|
|
|
|
|
case 0x26121ff0
|
|
|
|
{
|
|
|
|
// f()
|
2021-01-04 16:18:09 +00:00
|
|
|
|
2019-11-21 17:56:25 +00:00
|
|
|
if callvalue() { revert(0, 0) }
|
|
|
|
abi_decode_tuple_(4, calldatasize())
|
2020-11-26 21:33:36 +00:00
|
|
|
let ret_0 := fun_f_10()
|
2021-01-14 16:27:55 +00:00
|
|
|
let memPos := allocate_memory(0)
|
2020-05-06 23:55:30 +00:00
|
|
|
let memEnd := abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack(memPos , ret_0)
|
2019-11-21 17:56:25 +00:00
|
|
|
return(memPos, sub(memEnd, memPos))
|
|
|
|
}
|
|
|
|
|
|
|
|
default {}
|
|
|
|
}
|
2019-11-26 15:27:07 +00:00
|
|
|
if iszero(calldatasize()) { }
|
2019-11-21 17:56:25 +00:00
|
|
|
revert(0, 0)
|
|
|
|
|
|
|
|
function abi_decode_tuple_(headStart, dataEnd) {
|
|
|
|
if slt(sub(dataEnd, headStart), 0) { revert(0, 0) }
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value, pos) -> end {
|
|
|
|
let length := array_length_t_string_memory_ptr(value)
|
|
|
|
pos := array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length)
|
|
|
|
copy_memory_to_memory(add(value, 0x20), pos, length)
|
|
|
|
end := add(pos, round_up_to_mul_of_32(length))
|
|
|
|
}
|
|
|
|
|
|
|
|
function abi_encode_tuple_t_string_memory_ptr__to_t_string_memory_ptr__fromStack(headStart , value0) -> tail {
|
|
|
|
tail := add(headStart, 32)
|
|
|
|
|
|
|
|
mstore(add(headStart, 0), sub(tail, headStart))
|
|
|
|
tail := abi_encode_t_string_memory_ptr_to_t_string_memory_ptr_fromStack(value0, tail)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2021-01-14 16:27:55 +00:00
|
|
|
function allocate_memory(size) -> memPtr {
|
|
|
|
memPtr := allocate_unbounded()
|
|
|
|
finalize_allocation(memPtr, size)
|
2019-11-21 17:56:25 +00:00
|
|
|
}
|
|
|
|
|
2020-12-22 22:11:53 +00:00
|
|
|
function allocate_memory_array_t_string_memory_ptr(length) -> memPtr {
|
|
|
|
let allocSize := array_allocation_size_t_string_memory_ptr(length)
|
2021-01-14 16:27:55 +00:00
|
|
|
memPtr := allocate_memory(allocSize)
|
2020-12-22 22:11:53 +00:00
|
|
|
|
|
|
|
mstore(memPtr, length)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2021-01-14 16:27:55 +00:00
|
|
|
function allocate_unbounded() -> memPtr {
|
|
|
|
memPtr := mload(64)
|
|
|
|
}
|
|
|
|
|
2020-12-22 22:11:53 +00:00
|
|
|
function array_allocation_size_t_string_memory_ptr(length) -> size {
|
|
|
|
// Make sure we can allocate memory without overflow
|
|
|
|
if gt(length, 0xffffffffffffffff) { panic_error_0x41() }
|
|
|
|
|
2021-01-14 18:50:02 +00:00
|
|
|
size := round_up_to_mul_of_32(length)
|
2020-12-22 22:11:53 +00:00
|
|
|
|
|
|
|
// add length slot
|
|
|
|
size := add(size, 0x20)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2019-11-21 17:56:25 +00:00
|
|
|
function array_length_t_string_memory_ptr(value) -> length {
|
|
|
|
|
|
|
|
length := mload(value)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function array_storeLengthForEncoding_t_string_memory_ptr_fromStack(pos, length) -> updated_pos {
|
|
|
|
mstore(pos, length)
|
|
|
|
updated_pos := add(pos, 0x20)
|
|
|
|
}
|
|
|
|
|
|
|
|
function convert_t_stringliteral_9f0adad0a59b05d2e04a1373342b10b9eb16c57c164c8a3bfcbf46dccee39a21_to_t_string_memory_ptr() -> converted {
|
2020-12-22 22:11:53 +00:00
|
|
|
converted := copy_literal_to_memory_9f0adad0a59b05d2e04a1373342b10b9eb16c57c164c8a3bfcbf46dccee39a21()
|
|
|
|
}
|
2019-11-21 17:56:25 +00:00
|
|
|
|
2020-12-22 22:11:53 +00:00
|
|
|
function copy_literal_to_memory_9f0adad0a59b05d2e04a1373342b10b9eb16c57c164c8a3bfcbf46dccee39a21() -> memPtr {
|
|
|
|
memPtr := allocate_memory_array_t_string_memory_ptr(6)
|
|
|
|
store_literal_in_memory_9f0adad0a59b05d2e04a1373342b10b9eb16c57c164c8a3bfcbf46dccee39a21(add(memPtr, 32))
|
2019-11-21 17:56:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function copy_memory_to_memory(src, dst, length) {
|
|
|
|
let i := 0
|
|
|
|
for { } lt(i, length) { i := add(i, 32) }
|
|
|
|
{
|
|
|
|
mstore(add(dst, i), mload(add(src, i)))
|
|
|
|
}
|
|
|
|
if gt(i, length)
|
|
|
|
{
|
|
|
|
// clear end
|
|
|
|
mstore(add(dst, length), 0)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-01-14 16:27:55 +00:00
|
|
|
function finalize_allocation(memPtr, size) {
|
|
|
|
let newFreePtr := add(memPtr, round_up_to_mul_of_32(size))
|
|
|
|
// protect against overflow
|
|
|
|
if or(gt(newFreePtr, 0xffffffffffffffff), lt(newFreePtr, memPtr)) { panic_error_0x41() }
|
|
|
|
mstore(64, newFreePtr)
|
|
|
|
}
|
|
|
|
|
2020-11-26 21:33:36 +00:00
|
|
|
function fun_f_10() -> vloc__5_mpos {
|
2020-03-02 20:42:46 +00:00
|
|
|
let zero_value_for_type_t_string_memory_ptr_1_mpos := zero_value_for_split_t_string_memory_ptr()
|
2020-11-26 21:33:36 +00:00
|
|
|
vloc__5_mpos := zero_value_for_type_t_string_memory_ptr_1_mpos
|
2020-03-02 20:42:46 +00:00
|
|
|
|
2020-11-26 21:33:36 +00:00
|
|
|
vloc__5_mpos := convert_t_stringliteral_9f0adad0a59b05d2e04a1373342b10b9eb16c57c164c8a3bfcbf46dccee39a21_to_t_string_memory_ptr()
|
2019-11-26 15:27:07 +00:00
|
|
|
leave
|
2019-11-21 17:56:25 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-10-13 11:28:39 +00:00
|
|
|
function panic_error_0x41() {
|
|
|
|
mstore(0, 35408467139433450592217433187231851964531694900788300625387963629091585785856)
|
|
|
|
mstore(4, 0x41)
|
|
|
|
revert(0, 0x24)
|
2020-09-24 13:45:45 +00:00
|
|
|
}
|
|
|
|
|
2019-11-21 17:56:25 +00:00
|
|
|
function round_up_to_mul_of_32(value) -> result {
|
|
|
|
result := and(add(value, 31), not(31))
|
|
|
|
}
|
|
|
|
|
|
|
|
function shift_right_224_unsigned(value) -> newValue {
|
|
|
|
newValue :=
|
|
|
|
|
|
|
|
shr(224, value)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-12-22 22:11:53 +00:00
|
|
|
function store_literal_in_memory_9f0adad0a59b05d2e04a1373342b10b9eb16c57c164c8a3bfcbf46dccee39a21(memPtr) {
|
|
|
|
|
|
|
|
mstore(add(memPtr, 0), \"abcabc\")
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-03-02 20:42:46 +00:00
|
|
|
function zero_value_for_split_t_string_memory_ptr() -> ret {
|
|
|
|
ret := 96
|
|
|
|
}
|
|
|
|
|
2019-11-21 17:56:25 +00:00
|
|
|
}
|
2020-04-09 19:59:17 +00:00
|
|
|
|
2019-11-21 17:56:25 +00:00
|
|
|
}
|
2020-04-09 19:59:17 +00:00
|
|
|
|
2019-11-21 17:56:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
"}}},"sources":{"A":{"id":0}}}
|