2022-06-03 20:04:16 +00:00
|
|
|
from opcodes import AND, ISZERO, SLT, SGT, SUB
|
2019-06-14 15:47:54 +00:00
|
|
|
from rule import Rule
|
2021-01-21 15:20:22 +00:00
|
|
|
from util import BVSignedMax, BVSignedMin, BVSignedUpCast
|
|
|
|
from z3 import BitVec, BVSubNoOverflow, BVSubNoUnderflow, Not
|
2019-06-14 15:47:54 +00:00
|
|
|
|
|
|
|
"""
|
|
|
|
Overflow checked signed integer subtraction.
|
|
|
|
"""
|
|
|
|
|
|
|
|
n_bits = 256
|
|
|
|
type_bits = 8
|
|
|
|
|
|
|
|
while type_bits <= n_bits:
|
|
|
|
|
|
|
|
rule = Rule()
|
|
|
|
|
|
|
|
# Input vars
|
|
|
|
X_short = BitVec('X', type_bits)
|
|
|
|
Y_short = BitVec('Y', type_bits)
|
|
|
|
|
|
|
|
# Z3's overflow and underflow conditions
|
|
|
|
actual_overflow = Not(BVSubNoOverflow(X_short, Y_short))
|
|
|
|
actual_underflow = Not(BVSubNoUnderflow(X_short, Y_short, True))
|
|
|
|
|
|
|
|
# cast to full n_bits values
|
|
|
|
X = BVSignedUpCast(X_short, n_bits)
|
|
|
|
Y = BVSignedUpCast(Y_short, n_bits)
|
2022-06-03 20:04:16 +00:00
|
|
|
diff = SUB(X, Y)
|
2019-06-14 15:47:54 +00:00
|
|
|
|
|
|
|
# Constants
|
|
|
|
maxValue = BVSignedMax(type_bits, n_bits)
|
|
|
|
minValue = BVSignedMin(type_bits, n_bits)
|
|
|
|
|
|
|
|
# Overflow and underflow checks in YulUtilFunction::overflowCheckedIntSubFunction
|
2022-06-03 20:04:16 +00:00
|
|
|
if type_bits == 256:
|
|
|
|
underflow_check = AND(ISZERO(SLT(Y, 0)), SGT(diff, X))
|
|
|
|
overflow_check = AND(SLT(Y, 0), SLT(diff, X))
|
|
|
|
else:
|
|
|
|
underflow_check = SLT(diff, minValue)
|
|
|
|
overflow_check = SGT(diff, maxValue)
|
|
|
|
|
|
|
|
type_bits += 8
|
2019-06-14 15:47:54 +00:00
|
|
|
|
|
|
|
rule.check(actual_underflow, underflow_check != 0)
|
|
|
|
rule.check(actual_overflow, overflow_check != 0)
|