(syscall-write fd *buf count x86) → (mv * x86)
Function:
(defun syscall-write$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-write)) (declare (ignorable __function__)) (syscall-write-logic fd *buf count x86)))
Theorem:
(defthm integerp-mv-nth-0-syscall-write (implies (natp count) (integerp (mv-nth 0 (syscall-write fd *buf count x86)))) :rule-classes :type-prescription)
Theorem:
(defthm x86p-mv-nth-1-syscall-write (implies (and (x86p x86) (integerp fd)) (x86p (mv-nth 1 (syscall-write fd *buf count x86)))))