solidity/test/formal/move_and_across_shr_128.py
2021-10-13 16:20:10 +02:00

38 lines
630 B
Python

from opcodes import AND, SHR
from rule import Rule
from z3 import BitVec, BitVecVal, ULT
"""
Rule:
SHR(B, AND(X, A)) -> AND(SHR(B, X), A >> B)
SHR(B, AND(A, X)) -> AND(SHR(B, X), A >> B)
Requirements:
B < BitWidth
"""
rule = Rule()
n_bits = 128
# Input vars
X = BitVec('X', n_bits)
A = BitVec('A', n_bits)
B = BitVec('B', n_bits)
# Constants
BitWidth = BitVecVal(n_bits, n_bits)
# Requirements
rule.require(ULT(B, BitWidth))
# Non optimized result
nonopt_1 = SHR(B, AND(X, A))
nonopt_2 = SHR(B, AND(A, X))
# Optimized result
Mask = SHR(B, A)
opt = AND(SHR(B, X), Mask)
rule.check(nonopt_1, opt)
rule.check(nonopt_2, opt)