• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
      • Gl
      • Esim
        • Symbolic-test-vectors
          • Defstv
            • Defstv-fn
            • Defstv-main
            • Stv-autohyps
            • Stv-autobinds
              • Stv-autobinds-aux
            • Stv-autoins
          • Stv-compile
          • Symbolic-test-vector-format
          • Stv-implementation-details
          • Compiled-stv-p
          • 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-number-of-phases
          • Stv->outs
          • 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
      • Vwsim
      • Vl
      • X86isa
      • Svl
      • Rtl
    • Software-verification
    • Math
    • Testing-utilities
  • Defstv

Stv-autobinds

Generate the body for an STV's autobinds macro.

Signature
(stv-autobinds stv) → *
Arguments
stv — Guard (processed-stv-p stv).

Definitions and Theorems

Function: stv-autobinds

(defun stv-autobinds (stv)
  (declare (xargs :guard (processed-stv-p stv)))
  (let ((__function__ 'stv-autobinds))
    (declare (ignorable __function__))
    (b* ((ins (stv->ins stv))
         ((unless (symbol-listp ins))
          (raise "Non-symbol inputs?")))
      (cons 'gl::auto-bindings
            (stv-autobinds-aux ins stv)))))

Subtopics

Stv-autobinds-aux