Recognizer for sib bit structures.
(sib-p x) → *
Function:
(defun sib-p$inline (x) (declare (xargs :guard t)) (mbe :logic (unsigned-byte-p 8 x) :exec (and (natp x) (< x 256))))
Theorem:
(defthm sib-p-when-unsigned-byte-p (implies (unsigned-byte-p 8 x) (sib-p x)))
Theorem:
(defthm unsigned-byte-p-when-sib-p (implies (sib-p x) (unsigned-byte-p 8 x)))
Theorem:
(defthm sib-p-compound-recognizer (implies (sib-p x) (natp x)) :rule-classes :compound-recognizer)