• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Community
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
      • Gl
      • Esim
      • Vl2014
        • Warnings
        • Primitives
        • Use-set
        • Syntax
        • Getting-started
        • Utilities
        • Loader
        • Transforms
        • Lint
        • Mlib
        • Server
        • Kit
          • Vl-model
          • Vl-json
          • Vl-gather
            • Vl-gather-opts-p
              • Parse-vl-gather-opts
              • Vl-gather-opts
              • Make-vl-gather-opts
              • Change-vl-gather-opts
                • Honsed-vl-gather-opts
                • Make-honsed-vl-gather-opts
                • *vl-gather-opts-usage*
                • Vl-gather-opts->strict
                • Vl-gather-opts->start-files
                • Vl-gather-opts->search-path
                • Vl-gather-opts->search-exts
                • Vl-gather-opts->readme
                • Vl-gather-opts->output
                • Vl-gather-opts->mem
                • Vl-gather-opts->include-dirs
                • Vl-gather-opts->help
                • Vl-gather-opts->edition
                • Vl-gather-opts->defines
            • Vl-server
            • Vl-pp
            • Vl-lint
            • Vl-main
            • Vl-toolkit-other-command
            • Vl-help
          • Printer
          • Esim-vl
          • Well-formedness
        • Sv
        • Fgl
        • Vwsim
        • Vl
        • X86isa
        • Svl
        • Rtl
      • Software-verification
      • Math
      • Testing-utilities
    • Vl-gather-opts-p

    Change-vl-gather-opts

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

    Syntax:

    (change-vl-gather-opts x 
                           [:help <help>] 
                           [:readme <readme>] 
                           [:output <output>] 
                           [:start-files <start-files>] 
                           [:search-path <search-path>] 
                           [:include-dirs <include-dirs>] 
                           [:search-exts <search-exts>] 
                           [:defines <defines>] 
                           [:edition <edition>] 
                           [:strict <strict>] 
                           [:mem <mem>]) 
    

    This is a sometimes useful alternative to make-vl-gather-opts. It constructs a new vl-gather-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 defaggregate.

    Macro: change-vl-gather-opts

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