• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Community
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
      • Gl
      • Esim
      • Vl2014
      • Sv
      • Fgl
      • Vwsim
      • Vl
        • Syntax
        • Loader
        • Warnings
        • Getting-started
        • Utilities
        • Printer
        • Kit
          • Vl-lint
          • Vl-server
          • Vl-gather
          • Vl-zip
            • Vl-zip-opts-p
              • Parse-vl-zip-opts
              • Vl-zip-opts
              • Make-vl-zip-opts
              • Change-vl-zip-opts
                • Honsed-vl-zip-opts
                • Make-honsed-vl-zip-opts
                • *vl-zip-opts-usage*
                • Vl-zip-opts->strict
                • Vl-zip-opts->start-files
                • Vl-zip-opts->search-path
                • Vl-zip-opts->search-exts
                • Vl-zip-opts->readme
                • Vl-zip-opts->plusargs
                • Vl-zip-opts->output
                • Vl-zip-opts->name
                • Vl-zip-opts->mem
                • Vl-zip-opts->include-dirs
                • Vl-zip-opts->help
                • Vl-zip-opts->edition
                • Vl-zip-opts->defines
              • Vl-zipfile
              • *vl-zip-help*
              • Vl-zip-top
              • Vl-zip-main
            • Vl-main
            • Split-plusargs
            • Vl-shell
            • Vl-json
          • Mlib
          • Transforms
        • X86isa
        • Svl
        • Rtl
      • Software-verification
      • Math
      • Testing-utilities
    • Vl-zip-opts-p

    Change-vl-zip-opts

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

    Syntax:

    (change-vl-zip-opts x 
                        [:help <help>] 
                        [:readme <readme>] 
                        [:name <name>] 
                        [:output <output>] 
                        [:start-files <start-files>] 
                        [:plusargs <plusargs>] 
                        [: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-zip-opts. It constructs a new vl-zip-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-zip-opts

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