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