• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • 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
          • 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
            • Stv2c-opts-p
              • Parse-stv2c-opts
              • Stv2c-opts
              • Make-stv2c-opts
              • Change-stv2c-opts
                • Honsed-stv2c-opts
                • Make-honsed-stv2c-opts
                • *stv2c-opts-usage*
                • Stv2c-opts->stv
                • Stv2c-opts->strict
                • Stv2c-opts->start-files
                • Stv2c-opts->search-path
                • Stv2c-opts->search-exts
                • Stv2c-opts->readme
                • Stv2c-opts->mem
                • Stv2c-opts->help
                • Stv2c-opts->edition
                • Stv2c-opts->defines
              • Stv2c-c-symbol-names
              • Stv2c-outs-structdef
              • Stv2c-ins-structdef
              • Stv2c-c-symbol-name
              • Stv2c-header
              • Stv2c-main
            • 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
    • Stv2c-opts-p

    Change-stv2c-opts

    A copying macro that lets you create new stv2c-opts-p structures, based on existing structures.

    Syntax:

    (change-stv2c-opts x 
                       [:help <help>] 
                       [:readme <readme>] 
                       [:stv <stv>] 
                       [:start-files <start-files>] 
                       [:search-path <search-path>] 
                       [:search-exts <search-exts>] 
                       [:defines <defines>] 
                       [:edition <edition>] 
                       [:strict <strict>] 
                       [:mem <mem>]) 
    

    This is a sometimes useful alternative to make-stv2c-opts. It constructs a new stv2c-opts-p structure that is a copy of x, except that you can explicitly change some particular fields. Any fields you don't mention just keep their values from x.

    Definition

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

    Macro: change-stv2c-opts

    (defmacro change-stv2c-opts (x &rest args)
      (std::change-aggregate 'stv2c-opts
                             x args
                             '((:help . stv2c-opts->help)
                               (:readme . stv2c-opts->readme)
                               (:stv . stv2c-opts->stv)
                               (:start-files . stv2c-opts->start-files)
                               (:search-path . stv2c-opts->search-path)
                               (:search-exts . stv2c-opts->search-exts)
                               (:defines . stv2c-opts->defines)
                               (:edition . stv2c-opts->edition)
                               (:strict . stv2c-opts->strict)
                               (:mem . stv2c-opts->mem))
                             'change-stv2c-opts
                             'nil))