(mul-spec-8 dst src) → (mv * * *)
Function:
(defun mul-spec-8 (dst src) (declare (type (unsigned-byte 8) dst) (type (unsigned-byte 8) src)) (let ((__function__ 'mul-spec-8)) (declare (ignorable __function__)) (b* ((dst (mbe :logic (n-size 8 dst) :exec dst)) (src (mbe :logic (n-size 8 src) :exec src)) (product (the (unsigned-byte 16) (* dst src))) (product-high (mbe :logic (part-select product :low 8 :width 8) :exec (the (unsigned-byte 8) (ash (the (unsigned-byte 16) product) -8)))) (product-low (mbe :logic (part-select product :low 0 :width 8) :exec (the (unsigned-byte 8) (logand 255 product))))) (mv product-high product-low product))))
Theorem:
(defthm n08-mv-nth-0-mul-spec-8 (unsigned-byte-p 8 (mv-nth 0 (mul-spec-8 dst src))) :rule-classes (:rewrite (:type-prescription :corollary (natp (mv-nth 0 (mul-spec-8 dst src))) :hints (("Goal" :in-theory '(unsigned-byte-p integer-range-p natp)))) (:linear :corollary (and (<= 0 (mv-nth 0 (mul-spec-8 dst src))) (< (mv-nth 0 (mul-spec-8 dst src)) 256)) :hints (("Goal" :in-theory '(unsigned-byte-p integer-range-p (:e expt)))))))
Theorem:
(defthm mv-nth-1-mul-spec-8 (unsigned-byte-p 8 (mv-nth 1 (mul-spec-8 dst src))) :rule-classes (:rewrite (:type-prescription :corollary (natp (mv-nth 1 (mul-spec-8 dst src))) :hints (("Goal" :in-theory '(unsigned-byte-p integer-range-p natp)))) (:linear :corollary (and (<= 0 (mv-nth 1 (mul-spec-8 dst src))) (< (mv-nth 1 (mul-spec-8 dst src)) 256)) :hints (("Goal" :in-theory '(unsigned-byte-p integer-range-p (:e expt)))))))
Theorem:
(defthm mv-nth-2-mul-spec-8 (unsigned-byte-p 16 (mv-nth 2 (mul-spec-8 dst src))) :rule-classes (:rewrite (:type-prescription :corollary (natp (mv-nth 2 (mul-spec-8 dst src))) :hints (("Goal" :in-theory '(unsigned-byte-p integer-range-p natp)))) (:linear :corollary (and (<= 0 (mv-nth 2 (mul-spec-8 dst src))) (< (mv-nth 2 (mul-spec-8 dst src)) 65536)) :hints (("Goal" :in-theory '(unsigned-byte-p integer-range-p (:e expt)))))))