• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
      • Gl
      • Esim
      • Vl2014
      • Sv
        • Svex-stvs
          • Svtv-data
          • Defsvtv$
          • Svtv-run
          • Defsvtv-phasewise
          • Svtv
          • Svtv-spec
          • Defsvtv
          • Process.lisp
          • Svtv-doc
          • Svtv-chase$
          • Svtv-versus-stv
          • Svtv-debug-fsm
          • Structure.lisp
          • Svtv-debug
            • Vcd.lisp
            • Debug.lisp
              • Svtv-debug-writephases
              • Svtv-debug-fsm-writephases
              • Svtv-debug-set-ios-logic
              • Svtv-debug-run-fsm
              • Svtv-debug-fsm-core
              • Svtv-debug-run-logic
              • Svtv-debug-init
              • Svtv-debug-eval-aliases-track
              • Svtv-debug-core
              • Svtv-debug-set-svtv
              • Svtv-debug-lhs-eval
              • Svtv-debug-eval-aliases
              • Svtv-debug-set-ios
              • Svtv-debug-run
                • Debugdata-status-p
            • Def-pipeline-thm
            • Expand.lisp
            • Def-cycle-thm
            • Svtv-utilities
            • Svtv-debug$
            • Defsvtv$-phasewise
          • Svex-decomposition-methodology
          • Sv-versus-esim
          • Svex-decomp
          • Svex-compose-dfs
          • Svex-compilation
          • Moddb
          • Svmods
          • Svstmt
          • Sv-tutorial
          • Expressions
          • Symbolic-test-vector
          • Vl-to-svex
        • Fgl
        • Vwsim
        • Vl
        • X86isa
        • Svl
        • Rtl
      • Software-verification
      • Math
      • Testing-utilities
    • Debug.lisp

    Svtv-debug-run

    Signature
    (svtv-debug-run inalist 
                    &key (filename '"svtv-debug.vcd") 
                    (moddb 'moddb) 
                    (aliases 'aliases) 
                    (debugdata 'debugdata) 
                    (vcd-wiremap 'vcd-wiremap) 
                    (vcd-vals 'vcd-vals) 
                    (state 'state)) 
     
      → 
    (mv vcd-wiremap vcd-vals state)
    Arguments
    inalist — Guard (svex-env-p inalist).
    filename — Guard (stringp filename).

    Definitions and Theorems

    Function: svtv-debug-run-fn

    (defun svtv-debug-run-fn
           (inalist filename moddb aliases
                    debugdata vcd-wiremap vcd-vals state)
      (declare
           (xargs :stobjs (moddb aliases
                                 debugdata vcd-wiremap vcd-vals state)))
      (declare (xargs :guard (and (svex-env-p inalist)
                                  (stringp filename))))
      (let ((__function__ 'svtv-debug-run))
        (declare (ignorable __function__))
        (svtv-debug-run-logic inalist
                              :filename filename
                              :moddb moddb
                              :aliases aliases
                              :debugdata debugdata
                              :vcd-wiremap vcd-wiremap
                              :vcd-vals vcd-vals)))