• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
      • Gl
      • Esim
      • Vl2014
      • Sv
        • Svex-stvs
        • Svex-decomposition-methodology
        • Sv-versus-esim
        • Svex-decomp
        • Svex-compose-dfs
        • Svex-compilation
        • Moddb
        • Svmods
        • Svstmt
          • Svstmt-case
          • Svstmt-while
          • Svstmt-p
          • Svstmt-if
          • Svstmt-equiv
          • Svstmt-xcond
          • Svstmt-scope
          • Svstmt-assign
          • Svstmt-compile
            • Svstmt-compile.lisp
            • Svstate
              • Svstate-p
              • Svstate-fix
              • Svstate-equiv
              • Make-svstate
              • Svstate->nonblkst
                • Svstate->blkst
                • Change-svstate
            • Svstmt-constraints
            • Svstmt-jump
            • Svstmtlist
            • Svstmt-kind
            • Svstmt.lisp
            • Svstmt-fix
            • Svstmt-count
          • Sv-tutorial
          • Expressions
          • Symbolic-test-vector
          • Vl-to-svex
        • Fgl
        • Vwsim
        • Vl
        • X86isa
        • Svl
        • Rtl
      • Software-verification
      • Math
      • Testing-utilities
    • Svstate

    Svstate->nonblkst

    Get the nonblkst field from a svstate.

    Signature
    (svstate->nonblkst x) → nonblkst
    Arguments
    x — Guard (svstate-p x).
    Returns
    nonblkst — Type (svex-alist-p nonblkst).

    This is an ordinary field accessor created by defprod.

    Definitions and Theorems

    Function: svstate->nonblkst$inline

    (defun svstate->nonblkst$inline (x)
      (declare (xargs :guard (svstate-p x)))
      (declare (xargs :guard t))
      (let ((__function__ 'svstate->nonblkst))
        (declare (ignorable __function__))
        (mbe :logic
             (b* ((x (and t x)))
               (svex-alist-fix (std::prod-cdr x)))
             :exec (std::prod-cdr x))))

    Theorem: svex-alist-p-of-svstate->nonblkst

    (defthm svex-alist-p-of-svstate->nonblkst
      (b* ((nonblkst (svstate->nonblkst$inline x)))
        (svex-alist-p nonblkst))
      :rule-classes :rewrite)

    Theorem: svstate->nonblkst$inline-of-svstate-fix-x

    (defthm svstate->nonblkst$inline-of-svstate-fix-x
      (equal (svstate->nonblkst$inline (svstate-fix x))
             (svstate->nonblkst$inline x)))

    Theorem: svstate->nonblkst$inline-svstate-equiv-congruence-on-x

    (defthm svstate->nonblkst$inline-svstate-equiv-congruence-on-x
      (implies (svstate-equiv x x-equiv)
               (equal (svstate->nonblkst$inline x)
                      (svstate->nonblkst$inline x-equiv)))
      :rule-classes :congruence)