• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Community
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
      • Gl
      • Esim
      • Vl2014
        • Warnings
        • Primitives
        • Use-set
        • Syntax
        • Getting-started
        • Utilities
        • Loader
        • Transforms
        • Lint
          • Vl-lintconfig-p
          • Lucid
          • Skip-detection
          • Vl-lintresult-p
          • Lint-warning-suppression
          • Condcheck
            • Vl-modulelist-condcheck
            • Vl-condcheck-fix
            • Vl-expr-condcheck
            • Vl-condcheck-negate
            • Vl-module-condcheck
            • Vl-exprctxalist-condcheck
              • Vl-design-condcheck
            • Selfassigns
            • Leftright-check
            • Dupeinst-check
            • Oddexpr-check
            • Remove-toohard
            • Qmarksize-check
            • Portcheck
            • Duplicate-detect
            • Vl-print-certain-warnings
            • Duperhs-check
            • *vl-lint-help*
            • Lint-stmt-rewrite
            • Drop-missing-submodules
            • Check-case
            • Drop-user-submodules
            • Check-namespace
            • Vl-lint
          • Mlib
          • Server
          • Kit
          • Printer
          • Esim-vl
          • Well-formedness
        • Sv
        • Fgl
        • Vwsim
        • Vl
        • X86isa
        • Svl
        • Rtl
      • Software-verification
      • Math
      • Testing-utilities
    • Condcheck

    Vl-exprctxalist-condcheck

    (vl-exprctxalist-condcheck x) extends vl-expr-condcheck across an vl-exprctxalist-p.

    Signature
    (vl-exprctxalist-condcheck x) → warnings
    Arguments
    x — Guard (vl-exprctxalist-p x).
    Returns
    warnings — Type (vl-warninglist-p warnings).

    Definitions and Theorems

    Function: vl-exprctxalist-condcheck

    (defun vl-exprctxalist-condcheck (x)
      (declare (xargs :guard (vl-exprctxalist-p x)))
      (let ((__function__ 'vl-exprctxalist-condcheck))
        (declare (ignorable __function__))
        (if (atom x)
            nil
          (append (vl-expr-condcheck (caar x)
                                     nil (cdar x))
                  (vl-exprctxalist-condcheck (cdr x))))))

    Theorem: vl-warninglist-p-of-vl-exprctxalist-condcheck

    (defthm vl-warninglist-p-of-vl-exprctxalist-condcheck
      (b* ((warnings (vl-exprctxalist-condcheck x)))
        (vl-warninglist-p warnings))
      :rule-classes :rewrite)