• Top
    • Documentation
    • Books
    • Recursion-and-induction
    • Boolean-reasoning
    • Debugging
    • Projects
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
      • Gl
      • Esim
        • Symbolic-test-vectors
          • Defstv
          • Stv-compile
          • Symbolic-test-vector-format
          • Stv-implementation-details
          • Compiled-stv-p
            • Compiled-stv
            • Make-compiled-stv
            • Change-compiled-stv
            • Honsed-compiled-stv
            • Make-honsed-compiled-stv
              • Compiled-stv->restrict-alist
              • Compiled-stv->override-paths
              • Compiled-stv->override-bits
              • Compiled-stv->out-usersyms
              • Compiled-stv->out-extract-alists
              • Compiled-stv->nst-extract-alists
              • Compiled-stv->nphases
              • Compiled-stv->int-extract-alists
              • Compiled-stv->in-usersyms
              • Compiled-stv->expanded-ins
            • Stv-run-for-all-dontcares
            • Stv-run
            • Stv-process
            • Stv-run-check-dontcares
            • Symbolic-test-vector-composition
            • Stv-expand
            • Stv-easy-bindings
            • Stv-debug
            • Stv-run-squash-dontcares
            • Stvdata-p
            • Stv-doc
            • Stv2c
            • Stv-widen
            • Stv-out->width
            • Stv-in->width
            • Stv->outs
            • Stv-number-of-phases
            • Stv->ins
            • Stv-suffix-signals
            • Stv->vars
          • Esim-primitives
          • E-conversion
          • Esim-steps
          • Patterns
          • Mod-internal-paths
          • Defmodules
          • Esim-simplify-update-fns
          • Esim-tutorial
          • Esim-vl
        • Vl2014
        • Sv
        • Fgl
        • Vl
        • X86isa
        • Svl
        • Rtl
      • Software-verification
      • Testing-utilities
      • Math
    • Compiled-stv-p

    Make-honsed-compiled-stv

    Constructor macro for honsed compiled-stv-p structures.

    Syntax:

    (make-honsed-compiled-stv [:nphases <nphases>] 
                              [:nst-extract-alists <nst-extract-alists>] 
                              [:out-extract-alists <out-extract-alists>] 
                              [:int-extract-alists <int-extract-alists>] 
                              [:override-bits <override-bits>] 
                              [:restrict-alist <restrict-alist>] 
                              [:in-usersyms <in-usersyms>] 
                              [:out-usersyms <out-usersyms>] 
                              [:expanded-ins <expanded-ins>] 
                              [:override-paths <override-paths>]) 
    

    This is identical to make-compiled-stv, except that we hons the structure we are creating.

    Definition

    This is an ordinary honsing make- macro introduced by std::defaggregate.

    Macro: make-honsed-compiled-stv

    (defmacro make-honsed-compiled-stv (&rest args)
              (std::make-aggregate 'compiled-stv
                                   args
                                   '((:nphases)
                                     (:nst-extract-alists)
                                     (:out-extract-alists)
                                     (:int-extract-alists)
                                     (:override-bits)
                                     (:restrict-alist)
                                     (:in-usersyms)
                                     (:out-usersyms)
                                     (:expanded-ins)
                                     (:override-paths))
                                   'make-honsed-compiled-stv
                                   t))