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