solidity/test/cmdlineTests/yul_optimizer_steps/output

38 lines
1.2 KiB
Plaintext
Raw Normal View History

Optimized IR:
/*******************************************************
* WARNING *
* Solidity to Yul compilation is still EXPERIMENTAL *
* It can result in LOSS OF FUNDS or worse *
* !USE AT YOUR OWN RISK! *
*******************************************************/
object "C_7" {
code {
{
mstore(64, 128)
if callvalue() { revert(0, 0) }
2021-04-29 09:43:27 +00:00
let _1 := allocate_unbounded()
codecopy(_1, dataoffset("C_7_deployed"), datasize("C_7_deployed"))
return(_1, datasize("C_7_deployed"))
}
2021-04-29 09:43:27 +00:00
function allocate_unbounded() -> memPtr
{ memPtr := mload(64) }
}
object "C_7_deployed" {
code {
{
mstore(64, 128)
if iszero(lt(calldatasize(), 4))
{
2021-01-25 15:57:25 +00:00
let selector := shift_right_unsigned(calldataload(0))
pop(selector)
}
pop(iszero(calldatasize()))
revert(0, 0)
}
2021-01-25 15:57:25 +00:00
function shift_right_unsigned(value) -> newValue
{ newValue := shr(224, value) }
}
}
}