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