(syscall-read fd *buf count x86) → (mv * x86)
Function:
(defun syscall-read$notinline (fd *buf count x86) (declare (xargs :stobjs (x86))) (declare (ignorable fd *buf count x86)) (declare (xargs :guard (and (integerp fd) (integerp *buf) (natp count)))) (let ((__function__ 'syscall-read)) (declare (ignorable __function__)) (syscall-read-logic fd *buf count x86)))
Theorem:
(defthm integerp-mv-nth-0-syscall-read (integerp (mv-nth 0 (syscall-read fd *buf count x86))) :rule-classes :type-prescription)
Theorem:
(defthm x86p-mv-nth-1-syscall-read (implies (and (x86p x86) (integerp fd)) (x86p (mv-nth 1 (syscall-read fd *buf count x86)))))