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