• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Community
    • Proof-automation
    • ACL2
    • Macro-libraries
    • 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
              • Cblock-expression-building
              • Vl-stmt-cblock-lvalexprs
                • Vl-atomicstmt-cblock-lvalexprs
                • Vl-stmtlist-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

Vl-stmt-cblock-lvalexprs

Collect expressions used in left-hand side positions.

Signature
(vl-stmt-cblock-lvalexprs x) → exprs
Arguments
x — Guard (and (vl-stmt-p x) (vl-stmt-cblock-p x)).
Returns
exprs — Type (and (vl-exprlist-p exprs) (vl-idexprlist-p exprs)), given the guard.

Theorem: return-type-of-vl-stmt-cblock-lvalexprs.exprs

(defthm return-type-of-vl-stmt-cblock-lvalexprs.exprs
  (implies (and (force (vl-stmt-p x))
                (force (vl-stmt-cblock-p x)))
           (b* ((?exprs (vl-stmt-cblock-lvalexprs x)))
             (and (vl-exprlist-p exprs)
                  (vl-idexprlist-p exprs))))
  :rule-classes :rewrite)

Theorem: return-type-of-vl-stmtlist-cblock-lvalexprs.exprs

(defthm return-type-of-vl-stmtlist-cblock-lvalexprs.exprs
  (implies (and (force (vl-stmtlist-p x))
                (force (vl-stmtlist-cblock-p x)))
           (b* ((?exprs (vl-stmtlist-cblock-lvalexprs x)))
             (and (vl-exprlist-p exprs)
                  (vl-idexprlist-p exprs))))
  :rule-classes :rewrite)

Subtopics

Vl-atomicstmt-cblock-lvalexprs
Vl-stmtlist-cblock-lvalexprs