(vl-fundecl-lvaluecheck x warnings) → warnings
Function:
(defun vl-fundecl-lvaluecheck (x warnings) (declare (xargs :guard (and (vl-fundecl-p x) (vl-warninglist-p warnings)))) (let ((__function__ 'vl-fundecl-lvaluecheck)) (declare (ignorable __function__)) (b* (((vl-fundecl x) (vl-fundecl-fix x))) (b* ((warnings (vl-stmt-lvaluecheck x.body warnings)) (warnings (vl-function-specialization-map-lvaluecheck x.function-map warnings))) warnings))))
Theorem:
(defthm vl-warninglist-p-of-vl-fundecl-lvaluecheck (b* ((warnings (vl-fundecl-lvaluecheck x warnings))) (vl-warninglist-p warnings)) :rule-classes :rewrite)
Theorem:
(defthm vl-fundecl-lvaluecheck-of-vl-fundecl-fix-x (equal (vl-fundecl-lvaluecheck (vl-fundecl-fix x) warnings) (vl-fundecl-lvaluecheck x warnings)))
Theorem:
(defthm vl-fundecl-lvaluecheck-vl-fundecl-equiv-congruence-on-x (implies (vl-fundecl-equiv x x-equiv) (equal (vl-fundecl-lvaluecheck x warnings) (vl-fundecl-lvaluecheck x-equiv warnings))) :rule-classes :congruence)
Theorem:
(defthm vl-fundecl-lvaluecheck-of-vl-warninglist-fix-warnings (equal (vl-fundecl-lvaluecheck x (vl-warninglist-fix warnings)) (vl-fundecl-lvaluecheck x warnings)))
Theorem:
(defthm vl-fundecl-lvaluecheck-vl-warninglist-equiv-congruence-on-warnings (implies (vl-warninglist-equiv warnings warnings-equiv) (equal (vl-fundecl-lvaluecheck x warnings) (vl-fundecl-lvaluecheck x warnings-equiv))) :rule-classes :congruence)