• 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-merge-branches
              • Svex-alist-merge-branches
              • Svstmt-assign->subst
              • Svstack-merge-branches
              • Svstacks-compatible
              • Svjumpstate-merge-svstate-branches
              • Svjumpstate-svstate-compatible
              • Svstmt-lhs-check-masks
              • Svjumpstate
              • Svjumpstates-compatible
              • Svstmtlist-compile-top
              • Svjumpstate-sequence-svstates
              • Constraintlist-merge-branches
              • Svjumpstate-merge-branches
              • Svex-replace-range
              • Svex-svstmt-ite
              • Svstmt-process-write
              • Svjumpstate-sequence
              • Svstmt-process-writelist
              • Svstack-assign
              • Svstmt-writelist-var-sizes
              • Svstates-compatible
              • 4vec-replace-range
              • Svstmt-write-var-sizes
              • Make-empty-svjumpstate
              • Constraintlist-add-pathcond
              • Svjumpstate-pop-scope
              • Constraintlist-compose-svstack
              • Svstack-to-svex-alist
              • Svstack-filter-global-lhs-vars
              • Svjumpstate-vars
              • Svex-svstmt-or
              • Svex-svstmt-andc1
              • Svstate-push-scope
              • Svstate-pop-scope
              • Svstate-vars
              • Svstack-lookup
              • Svar-subtract-delay
              • Svstmt-initialize-locals
              • Svstack-fork
              • Svstack-clean
              • Svstack-nonempty-fix
              • Svstate-fork
              • Svstate-clean
              • Svstack-globalp
              • Svjumpstate-fork
                • Svar-delayed-member
                • Svjumpstate-levels
                • Svjumpstate-free
                • Svstate-free
                • Svstack-free
                • Svstack
                • Svar-size-alist
              • 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
    • Svstmt-compile.lisp

    Svjumpstate-fork

    Signature
    (svjumpstate-fork x) → new-x
    Arguments
    x — Guard (svjumpstate-p x).
    Returns
    new-x — Type (svjumpstate-p new-x).

    Definitions and Theorems

    Function: svjumpstate-fork

    (defun svjumpstate-fork (x)
      (declare (xargs :guard (svjumpstate-p x)))
      (let ((__function__ 'svjumpstate-fork))
        (declare (ignorable __function__))
        (b* (((svjumpstate x) x))
          (change-svjumpstate x
                              :breakst (svstate-fork x.breakst)
                              :continuest (svstate-fork x.continuest)
                              :returnst (svstate-fork x.returnst)))))

    Theorem: svjumpstate-p-of-svjumpstate-fork

    (defthm svjumpstate-p-of-svjumpstate-fork
      (b* ((new-x (svjumpstate-fork x)))
        (svjumpstate-p new-x))
      :rule-classes :rewrite)

    Theorem: svjumpstate-fork-preserves-compatible

    (defthm svjumpstate-fork-preserves-compatible
      (b* ((?new-x (svjumpstate-fork x)))
        (svjumpstates-compatible new-x (double-rewrite x))))

    Theorem: svjumpstate-fork-of-svjumpstate-fix-x

    (defthm svjumpstate-fork-of-svjumpstate-fix-x
      (equal (svjumpstate-fork (svjumpstate-fix x))
             (svjumpstate-fork x)))

    Theorem: svjumpstate-fork-svjumpstate-equiv-congruence-on-x

    (defthm svjumpstate-fork-svjumpstate-equiv-congruence-on-x
      (implies (svjumpstate-equiv x x-equiv)
               (equal (svjumpstate-fork x)
                      (svjumpstate-fork x-equiv)))
      :rule-classes :congruence)