(vl-modinst-scan-for-ignore x mwtype) → ignorep
Function:
(defun vl-modinst-scan-for-ignore (x mwtype) (declare (xargs :guard (and (vl-modinst-p x) (stringp mwtype)))) (let ((__function__ 'vl-modinst-scan-for-ignore)) (declare (ignorable __function__)) (b* (((vl-modinst x) (vl-modinst-fix x))) (b* ((ignorep (vl-arguments-scan-for-ignore x.portargs mwtype)) (ignorep1 (vl-paramargs-scan-for-ignore x.paramargs mwtype)) (ignorep (or ignorep1 ignorep)) (ignorep1 (vl-maybe-range-scan-for-ignore x.range mwtype)) (ignorep (or ignorep1 ignorep)) (ignorep1 (vl-lint-atts-say-ignore x.atts mwtype)) (ignorep (or ignorep1 ignorep)) (ignorep1 (vl-maybe-gatedelay-scan-for-ignore x.delay mwtype)) (ignorep (or ignorep1 ignorep))) ignorep))))
Theorem:
(defthm booleanp-of-vl-modinst-scan-for-ignore (b* ((ignorep (vl-modinst-scan-for-ignore x mwtype))) (booleanp ignorep)) :rule-classes :type-prescription)
Theorem:
(defthm vl-modinst-scan-for-ignore-of-vl-modinst-fix-x (equal (vl-modinst-scan-for-ignore (vl-modinst-fix x) mwtype) (vl-modinst-scan-for-ignore x mwtype)))
Theorem:
(defthm vl-modinst-scan-for-ignore-vl-modinst-equiv-congruence-on-x (implies (vl-modinst-equiv x x-equiv) (equal (vl-modinst-scan-for-ignore x mwtype) (vl-modinst-scan-for-ignore x-equiv mwtype))) :rule-classes :congruence)
Theorem:
(defthm vl-modinst-scan-for-ignore-of-str-fix-mwtype (equal (vl-modinst-scan-for-ignore x (str-fix mwtype)) (vl-modinst-scan-for-ignore x mwtype)))
Theorem:
(defthm vl-modinst-scan-for-ignore-streqv-congruence-on-mwtype (implies (streqv mwtype mwtype-equiv) (equal (vl-modinst-scan-for-ignore x mwtype) (vl-modinst-scan-for-ignore x mwtype-equiv))) :rule-classes :congruence)