Subtraction
(int-sub operand-left operand-right) → result
Function:
(defun int-sub (operand-left operand-right) (declare (xargs :guard (and (int-valuep operand-left) (int-valuep operand-right)))) (b* ((x (int-value->int operand-left)) (y (int-value->int operand-right))) (int-value (logext 32 (- x y)))))
Theorem:
(defthm int-valuep-of-int-sub (b* ((result (int-sub operand-left operand-right))) (int-valuep result)) :rule-classes :rewrite)
Theorem:
(defthm int-sub-of-int-value-fix-operand-left (equal (int-sub (int-value-fix operand-left) operand-right) (int-sub operand-left operand-right)))
Theorem:
(defthm int-sub-int-value-equiv-congruence-on-operand-left (implies (int-value-equiv operand-left operand-left-equiv) (equal (int-sub operand-left operand-right) (int-sub operand-left-equiv operand-right))) :rule-classes :congruence)
Theorem:
(defthm int-sub-of-int-value-fix-operand-right (equal (int-sub operand-left (int-value-fix operand-right)) (int-sub operand-left operand-right)))
Theorem:
(defthm int-sub-int-value-equiv-congruence-on-operand-right (implies (int-value-equiv operand-right operand-right-equiv) (equal (int-sub operand-left operand-right) (int-sub operand-left operand-right-equiv))) :rule-classes :congruence)