Merge pull request #10683 from ethereum/optSubEq

Optimize iszero(sub(x, y)) to eq(x, y).
This commit is contained in:
Harikrishnan Mulackal
2021-01-06 12:22:54 +01:00
committed by GitHub
4 changed files with 45 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
from rule import Rule
from opcodes import *
"""
Rule:
ISZERO(SUB(X, Y)) -> EQ(X, Y)
"""
rule = Rule()
n_bits = 256
# Input vars
X = BitVec('X', n_bits)
Y = BitVec('Y', n_bits)
# Non optimized result
nonopt = ISZERO(SUB(X, Y))
# Optimized result
opt = EQ(X, Y)
rule.check(nonopt, opt)
@@ -0,0 +1,16 @@
{
let a := calldataload(0)
let b := calldataload(0x20)
let x := sub(a, b)
if iszero(x) {
sstore(0, 1)
}
}
// ----
// step: expressionSimplifier
//
// {
// let _1 := 0
// let a := calldataload(_1)
// if eq(a, calldataload(0x20)) { sstore(_1, 1) }
// }