mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Optimize exp when base is -1
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
from rule import Rule
|
||||
from opcodes import *
|
||||
from util import *
|
||||
|
||||
"""
|
||||
Checking conversion of exp(-1, X) to sub(isZero(and(X, 1)), and(X, 1))
|
||||
"""
|
||||
|
||||
rule = Rule()
|
||||
n_bits = 256
|
||||
|
||||
X = BitVec('X', n_bits)
|
||||
|
||||
exp_neg_one = If(MOD(X, 2) == 0, BitVecVal(1, n_bits), BVUnsignedMax(n_bits, n_bits))
|
||||
|
||||
rule.check(SUB(ISZERO(AND(X, 1)), AND(X, 1)), exp_neg_one)
|
||||
Reference in New Issue
Block a user