(vl-propspec-condcheck x tests-above) → warnings
Function:
(defun vl-propspec-condcheck (x tests-above) (declare (xargs :guard (and (vl-propspec-p x) (vl-exprlist-p tests-above)))) (let ((__function__ 'vl-propspec-condcheck)) (declare (ignorable __function__)) (b* (((vl-propspec x) (vl-propspec-fix x))) (b* ((warnings (vl-evatomlist-condcheck x.evatoms tests-above)) (warnings1 (vl-maybe-exprdist-condcheck x.disable tests-above)) (warnings (vl-warningtree-cons warnings1 warnings)) (warnings1 (vl-propexpr-condcheck x.prop tests-above)) (warnings (vl-warningtree-cons warnings1 warnings))) warnings))))
Theorem:
(defthm vl-warningtree-p-of-vl-propspec-condcheck (b* ((warnings (vl-propspec-condcheck x tests-above))) (vl-warningtree-p warnings)) :rule-classes :rewrite)
Theorem:
(defthm vl-propspec-condcheck-of-vl-propspec-fix-x (equal (vl-propspec-condcheck (vl-propspec-fix x) tests-above) (vl-propspec-condcheck x tests-above)))
Theorem:
(defthm vl-propspec-condcheck-vl-propspec-equiv-congruence-on-x (implies (vl-propspec-equiv x x-equiv) (equal (vl-propspec-condcheck x tests-above) (vl-propspec-condcheck x-equiv tests-above))) :rule-classes :congruence)
Theorem:
(defthm vl-propspec-condcheck-of-vl-exprlist-fix-tests-above (equal (vl-propspec-condcheck x (vl-exprlist-fix tests-above)) (vl-propspec-condcheck x tests-above)))
Theorem:
(defthm vl-propspec-condcheck-vl-exprlist-equiv-congruence-on-tests-above (implies (vl-exprlist-equiv tests-above tests-above-equiv) (equal (vl-propspec-condcheck x tests-above) (vl-propspec-condcheck x tests-above-equiv))) :rule-classes :congruence)