Get the atts field from a vl-module.
(vl-module->atts x) → atts
This is an ordinary field accessor created by defprod.
Function:
(defun vl-module->atts$inline (x) (declare (xargs :guard (vl-module-p x))) (declare (xargs :guard t)) (let ((__function__ 'vl-module->atts)) (declare (ignorable __function__)) (mbe :logic (b* ((x (and t x))) (vl-atts-fix (cdr (cdr (cdr (car (cdr (cdr x)))))))) :exec (cdr (cdr (cdr (car (cdr (cdr x)))))))))
Theorem:
(defthm vl-atts-p-of-vl-module->atts (b* ((atts (vl-module->atts$inline x))) (vl-atts-p atts)) :rule-classes :rewrite)
Theorem:
(defthm vl-module->atts$inline-of-vl-module-fix-x (equal (vl-module->atts$inline (vl-module-fix x)) (vl-module->atts$inline x)))
Theorem:
(defthm vl-module->atts$inline-vl-module-equiv-congruence-on-x (implies (vl-module-equiv x x-equiv) (equal (vl-module->atts$inline x) (vl-module->atts$inline x-equiv))) :rule-classes :congruence)