• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • 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
            • Sd-problem-p
            • Sd-keylist-find-skipped
            • Sd-keylist->indicies
            • Sd-key-p
            • Sd-patalist-compare
            • Sd-analyze-ctxexprs
            • Sd-problemlist-p
            • Sd-patalist-p
            • Sd-keygen
            • Sd-patalist
            • Sd-keylist-p
            • Sd-analyze-modulelist
            • Sd-analyze-module-aux
            • Sd-analyze-module
              • Sd-pp-problem-long
              • Sd-analyze-modulelist-aux
              • Sd-problem-score
              • Sd-pp-problem-header
              • Sd-analyze-design
              • Sd-problem->
              • Sd-pp-problem-brief
              • Sd-pp-problemlist-long
              • Sd-pp-problemlist-brief
              • Sd-natlist-linear-increments-p
              • Sd-keylist-linear-increments-p
            • Vl-lintresult-p
            • Lint-warning-suppression
            • 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
    • Skip-detection

    Sd-analyze-module

    Perform skip-detection on a module.

    Signature
    (sd-analyze-module x) → probs
    Arguments
    x — Guard (vl-module-p x).
    Returns
    probs — Sorted in priority order.
        Type (sd-problemlist-p probs), given the guard.

    Definitions and Theorems

    Function: sd-analyze-module

    (defun sd-analyze-module (x)
      (declare (xargs :guard (vl-module-p x)))
      (let ((__function__ 'sd-analyze-module))
        (declare (ignorable __function__))
        (sd-problem-sort (sd-analyze-module-aux x))))

    Theorem: sd-problemlist-p-of-sd-analyze-module

    (defthm sd-problemlist-p-of-sd-analyze-module
      (implies (and (force (vl-module-p x)))
               (b* ((probs (sd-analyze-module x)))
                 (sd-problemlist-p probs)))
      :rule-classes :rewrite)

    Theorem: true-listp-of-sd-analyze-module

    (defthm true-listp-of-sd-analyze-module
      (true-listp (sd-analyze-module x))
      :rule-classes :type-prescription)