Optimize exp when base is -1

This commit is contained in:
Harikrishnan Mulackal
2020-09-29 17:44:09 +02:00
parent 2037b7d6b8
commit 2b9f040c48
6 changed files with 87 additions and 0 deletions
+16
View File
@@ -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)