• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
      • Gl
      • Esim
      • Vl2014
      • Sv
      • Fgl
      • Vwsim
      • Vl
        • Syntax
        • Loader
        • Warnings
        • Getting-started
        • Utilities
        • Printer
        • Kit
        • Mlib
          • Scopestack
          • Hid-tools
          • Filtering-by-name
          • Vl-interface-mocktype
          • Stripping-functions
          • Genblob
          • Expr-tools
          • Extract-vl-types
          • Hierarchy
          • Range-tools
          • Finding-by-name
          • Stmt-tools
            • Vl-rebuild-caselist
            • Vl-stmt-atomicstmts
            • Vl-compoundstmt->stmts
            • Vl-compoundstmt->exprs
            • Vl-compoundstmt->vardecls
            • Change-vl-compoundstmt
            • Vl-compoundstmt->paramdecls
            • Vl-compoundstmt->ctrl
            • Vl-atomicstmtlist-p
            • Vl-stmt->atts
            • Vl-atomicstmt-p
            • Vl-timingstmt-p
            • Vl-repeatstmt-p
            • Vl-foreverstmt-p
            • Vl-assignstmt-p
            • Vl-whilestmt-p
            • Vl-waitstmt-p
            • Vl-nullstmt-p
            • Vl-ifstmt-p
            • Vl-forstmt-p
            • Vl-dostmt-p
            • Vl-casestmt-p
            • Vl-callstmt-p
              • Vl-exprlistlist
            • Modnamespace
            • Flat-warnings
            • Reordering-by-name
            • Datatype-tools
            • Syscalls
            • Allexprs
            • Lvalues
            • Port-tools
          • Transforms
        • X86isa
        • Svl
        • Rtl
      • Software-verification
      • Math
      • Testing-utilities
    • Stmt-tools

    Vl-callstmt-p

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

    Definitions and Theorems

    Function: vl-callstmt-p$inline

    (defun vl-callstmt-p$inline (x)
      (declare (xargs :guard (vl-stmt-p x)))
      (let ((__function__ 'vl-callstmt-p))
        (declare (ignorable __function__))
        (vl-stmt-case x :vl-callstmt)))

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

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

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

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