Get the clobbers field from a asm-stmt.
(asm-stmt->clobbers x) → clobbers
This is an ordinary field accessor created by fty::defprod.
Function:
(defun asm-stmt->clobbers$inline (x) (declare (xargs :guard (asm-stmtp x))) (declare (xargs :guard t)) (mbe :logic (b* ((x (and t x))) (asm-clobber-list-fix (car (cdr (cdr x))))) :exec (car (cdr (cdr x)))))
Theorem:
(defthm asm-clobber-listp-of-asm-stmt->clobbers (b* ((clobbers (asm-stmt->clobbers$inline x))) (asm-clobber-listp clobbers)) :rule-classes :rewrite)
Theorem:
(defthm asm-stmt->clobbers$inline-of-asm-stmt-fix-x (equal (asm-stmt->clobbers$inline (asm-stmt-fix x)) (asm-stmt->clobbers$inline x)))
Theorem:
(defthm asm-stmt->clobbers$inline-asm-stmt-equiv-congruence-on-x (implies (asm-stmt-equiv x x-equiv) (equal (asm-stmt->clobbers$inline x) (asm-stmt->clobbers$inline x-equiv))) :rule-classes :congruence)