Bitwise exclusive disjunction
(int-xor operand-left operand-right) → result
Function:
(defun int-xor (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 (logxor x y)))))
Theorem:
(defthm int-valuep-of-int-xor (b* ((result (int-xor operand-left operand-right))) (int-valuep result)) :rule-classes :rewrite)
Theorem:
(defthm int-xor-commutative (equal (int-xor x y) (int-xor y x)))
Theorem:
(defthm int-xor-of-int-value-fix-operand-left (equal (int-xor (int-value-fix operand-left) operand-right) (int-xor operand-left operand-right)))
Theorem:
(defthm int-xor-int-value-equiv-congruence-on-operand-left (implies (int-value-equiv operand-left operand-left-equiv) (equal (int-xor operand-left operand-right) (int-xor operand-left-equiv operand-right))) :rule-classes :congruence)
Theorem:
(defthm int-xor-of-int-value-fix-operand-right (equal (int-xor operand-left (int-value-fix operand-right)) (int-xor operand-left operand-right)))
Theorem:
(defthm int-xor-int-value-equiv-congruence-on-operand-right (implies (int-value-equiv operand-right operand-right-equiv) (equal (int-xor operand-left operand-right) (int-xor operand-left operand-right-equiv))) :rule-classes :congruence)