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