mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
[YulOpt] Implement loop-invariant code motion
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
{
|
||||
let b := 1
|
||||
for { let a := 1 } iszero(eq(a, 10)) { a := add(a, 1) } {
|
||||
let c := mload(3) // c cannot be moved because non-movable
|
||||
let not_inv := add(b, c) // no_inv cannot be moved because its value depends on c
|
||||
a := add(a, 1)
|
||||
mstore(a, not_inv)
|
||||
}
|
||||
}
|
||||
// ====
|
||||
// step: loopInvariantCodeMotion
|
||||
// ----
|
||||
// {
|
||||
// let b := 1
|
||||
// let a := 1
|
||||
// for { } iszero(eq(a, 10)) { a := add(a, 1) }
|
||||
// {
|
||||
// let c := mload(3)
|
||||
// let not_inv := add(b, c)
|
||||
// a := add(a, 1)
|
||||
// mstore(a, not_inv)
|
||||
// }
|
||||
// }
|
||||
Reference in New Issue
Block a user