• 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
        • Mlib
          • Scopestack
          • Filtering-by-name
          • Vl-namefactory
          • Substitution
          • Allexprs
          • Hid-tools
          • Vl-consteval
          • Range-tools
          • Lvalexprs
          • Hierarchy
          • Finding-by-name
          • Expr-tools
          • Expr-slicing
          • Stripping-functions
          • Stmt-tools
            • Vl-rebuild-caselist
            • Vl-stmt-atomicstmts
            • Vl-compoundstmt->stmts
            • Change-vl-compoundstmt
            • Vl-compoundstmt->vardecls
            • Vl-compoundstmt->paramdecls
            • Vl-compoundstmt->exprs
            • Vl-compoundstmt->ctrl
            • Vl-atomicstmt-p
            • Vl-atomicstmtlist-p
            • Vl-stmt->atts
            • Vl-vardecllist->initvals
            • Vl-assignstmt-p
            • Vl-whilestmt-p
            • Vl-timingstmt-p
            • Vl-repeatstmt-p
            • Vl-foreverstmt-p
            • Vl-enablestmt-p
            • Vl-waitstmt-p
              • Vl-nullstmt-p
              • Vl-ifstmt-p
              • Vl-forstmt-p
              • Vl-casestmt-p
            • Modnamespace
            • Vl-parse-expr-from-str
            • Welltyped
            • Reordering-by-name
            • Flat-warnings
            • Genblob
            • Expr-building
            • Datatype-tools
            • Syscalls
            • Relocate
            • Expr-cleaning
            • Namemangle
            • Caremask
            • Port-tools
            • Lvalues
          • Server
          • Kit
          • Printer
          • Esim-vl
          • Well-formedness
        • Sv
        • Fgl
        • Vwsim
        • Vl
        • X86isa
        • Svl
        • Rtl
      • Software-verification
      • Math
      • Testing-utilities
    • Stmt-tools

    Vl-waitstmt-p

    Signature
    (vl-waitstmt-p x) → *
    Arguments
    x — Guard (vl-stmt-p x).

    Definitions and Theorems

    Function: vl-waitstmt-p$inline

    (defun vl-waitstmt-p$inline (x)
      (declare (xargs :guard (vl-stmt-p x)))
      (let ((__function__ 'vl-waitstmt-p))
        (declare (ignorable __function__))
        (eq (vl-stmt-kind x) :vl-waitstmt)))

    Theorem: vl-waitstmt-p$inline-of-vl-stmt-fix-x

    (defthm vl-waitstmt-p$inline-of-vl-stmt-fix-x
      (equal (vl-waitstmt-p$inline (vl-stmt-fix x))
             (vl-waitstmt-p$inline x)))

    Theorem: vl-waitstmt-p$inline-vl-stmt-equiv-congruence-on-x

    (defthm vl-waitstmt-p$inline-vl-stmt-equiv-congruence-on-x
      (implies (vl-stmt-equiv x x-equiv)
               (equal (vl-waitstmt-p$inline x)
                      (vl-waitstmt-p$inline x-equiv)))
      :rule-classes :congruence)