• 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
          • Expression-sizing
          • Occform
          • Oprewrite
          • Expand-functions
          • Delayredux
          • Unparameterization
          • Caseelim
          • Split
          • Selresolve
          • Weirdint-elim
          • Vl-delta
          • Replicate-insts
          • Rangeresolve
          • Propagate
          • Clean-selects
          • Clean-params
          • Blankargs
          • Inline-mods
          • Expr-simp
          • Trunc
          • Always-top
            • Edgesynth
            • Stmtrewrite
            • Cblock
              • Vl-stmt-cblock-p
              • Cblock-path-checking
                • Vl-modulelist-combinational-elim
                • Vl-always-check-cblock
                • Vl-filter-cblocks
                • Vl-check-sensitivity-list
                • Vl-atomicstmt-cblock-varexpr
                • Vl-cblock-synth
                • Vl-cblock-make-assign
                • Vl-module-combinational-elim
                • Vl-cblocks-synth
                • Vl-cblock-make-assigns
                • Vl-cblock-pathcheck
                  • Vl-atomicstmt-cblock-pathcheck1
                  • Vl-stmt-cblock-varexpr
                  • Vl-design-combinational-elim
                  • Vl-stmtlist-cblock-pathcheck1
                  • Vl-stmt-cblock-pathcheck1
                • Cblock-expression-building
                • Vl-stmt-cblock-lvalexprs
                • Vl-stmt-cblock-rvalexprs
                • Vl-classic-control->exprs
                • Vl-classic-control-p
                • Vl-star-control-p
              • Vl-always-convert-regports
              • Vl-always-convert-regs
              • Stmttemps
              • Edgesplit
              • Vl-always-check-reg
              • Vl-convert-regs
              • Latchsynth
              • Vl-always-check-regs
              • Vl-match-always-at-some-edges
              • Unelse
              • Vl-always-convert-reg
              • Vl-design-always-backend
              • Vl-stmt-guts
              • Vl-always-convert-regport
              • Vl-always-scary-regs
              • Eliminitial
              • Ifmerge
              • Vl-edge-control-p
              • Elimalways
            • Gatesplit
            • Gate-elim
            • Expression-optimization
            • Elim-supplies
            • Wildelim
            • Drop-blankports
            • Clean-warnings
            • Addinstnames
            • Custom-transform-hooks
            • Annotate
            • Latchcode
            • Elim-unused-vars
            • Problem-modules
          • Lint
          • Mlib
          • Server
          • Kit
          • Printer
          • Esim-vl
          • Well-formedness
        • Sv
        • Fgl
        • Vwsim
        • Vl
        • X86isa
        • Svl
        • Rtl
      • Software-verification
      • Math
      • Testing-utilities
    • Cblock-path-checking

    Vl-cblock-pathcheck

    Check whether a list of variables are always assigned to in every execution of the always block, i.e., whether this really is a purely combinational block.

    Signature
    (vl-cblock-pathcheck vars stmt) → *
    Arguments
    vars — Guard (string-listp vars).
    stmt — Guard (vl-stmt-p stmt).

    Definitions and Theorems

    Function: vl-cblock-pathcheck

    (defun vl-cblock-pathcheck (vars stmt)
      (declare (xargs :guard (and (string-listp vars)
                                  (vl-stmt-p stmt))))
      (declare (xargs :guard (vl-stmt-cblock-p stmt)))
      (let ((__function__ 'vl-cblock-pathcheck))
        (declare (ignorable __function__))
        (if (atom vars)
            t
          (and (vl-stmt-cblock-pathcheck1 (car vars)
                                          stmt)
               (vl-cblock-pathcheck (cdr vars)
                                    stmt)))))