• 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
              • Elab-mod->vcd-wires
              • Vcd-scope
              • Vcd-wire
              • Vcd-print-4vec-aux
              • Vcd-dump-delta
              • Vcd-wirelist-add-to-wiremap
              • Vcd-print-header
              • Vcd-dump-first-snapshot-aux
              • Vcd-dump-delta-aux
              • Vcd-wiremap
                • Set-vcdwire
                • Resize-vcdwires
                • Get-vcdwire
                • Vcdwires-length
              • 4vecarr
              • Vcd-print-wiredecls
              • Vcd-4vec-bitstr
              • Vcd-index->codechars
              • Vcd-wire->width
              • Vcd-index->codestr
              • Vcd-dump-first-snapshot
              • Vcd-wirelist
            • Debug.lisp
          • 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
  • Vcd.lisp

Vcd-wiremap

Abstract stobj: logically this just represents a list of |SV|::|VCD-WIRE-P|s, but it is implemented as an array.

This is a simple abstract stobj array, introduced by ACL2::def-1d-arr.

Definition: vcd-wiremap

(defabsstobj vcd-wiremap
  :foundation vcd-wiremap$c
  :recognizer (vcd-wiremapp :exec vcd-wiremap$cp
                            :logic vcd-wiremap$ap)
  :creator (create-vcd-wiremap :exec create-vcd-wiremap$c
                               :logic create-vcd-wiremap$a)
  :corr-fn vcd-wiremap$corr
  :exports ((vcdwires-length :exec vcdwires$c-length
                             :logic vcdwires$a-length)
            (get-vcdwire :exec vcdwires$ci
                         :logic vcdwires$ai)
            (set-vcdwire :exec update-vcdwires$ci
                         :logic update-vcdwires$ai)
            (resize-vcdwires :exec resize-vcdwires$c
                             :logic resize-vcdwires$a)))

Subtopics

Set-vcdwire
Modify the nth element of the vcd-wiremap array.
Resize-vcdwires
Change the length of the vcd-wiremap array.
Get-vcdwire
Read the nth element of the vcd-wiremap array.
Vcdwires-length
Get the length of the vcd-wiremap array.