(vl-delaycontrol-condcheck x tests-above) → warnings
Function:
(defun vl-delaycontrol-condcheck (x tests-above) (declare (xargs :guard (and (vl-delaycontrol-p x) (vl-exprlist-p tests-above)))) (let ((__function__ 'vl-delaycontrol-condcheck)) (declare (ignorable __function__)) (b* (((vl-delaycontrol x) (vl-delaycontrol-fix x))) (b* ((warnings (vl-expr-condcheck x.value tests-above))) warnings))))
Theorem:
(defthm vl-warningtree-p-of-vl-delaycontrol-condcheck (b* ((warnings (vl-delaycontrol-condcheck x tests-above))) (vl-warningtree-p warnings)) :rule-classes :rewrite)
Theorem:
(defthm vl-delaycontrol-condcheck-of-vl-delaycontrol-fix-x (equal (vl-delaycontrol-condcheck (vl-delaycontrol-fix x) tests-above) (vl-delaycontrol-condcheck x tests-above)))
Theorem:
(defthm vl-delaycontrol-condcheck-vl-delaycontrol-equiv-congruence-on-x (implies (vl-delaycontrol-equiv x x-equiv) (equal (vl-delaycontrol-condcheck x tests-above) (vl-delaycontrol-condcheck x-equiv tests-above))) :rule-classes :congruence)
Theorem:
(defthm vl-delaycontrol-condcheck-of-vl-exprlist-fix-tests-above (equal (vl-delaycontrol-condcheck x (vl-exprlist-fix tests-above)) (vl-delaycontrol-condcheck x tests-above)))
Theorem:
(defthm vl-delaycontrol-condcheck-vl-exprlist-equiv-congruence-on-tests-above (implies (vl-exprlist-equiv tests-above tests-above-equiv) (equal (vl-delaycontrol-condcheck x tests-above) (vl-delaycontrol-condcheck x tests-above-equiv))) :rule-classes :congruence)