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