• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Community
    • Proof-automation
    • ACL2
    • Macro-libraries
    • 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-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->plusargs
                • 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-modulelist-original-sources
              • Vl-module-original-source
              • Vl-gather-top
              • *vl-gather-help*
              • Vl-gather-main
              • Vl-design-original-source
            • Vl-zip
            • Vl-main
            • Split-plusargs
            • Vl-shell
            • Vl-json
          • Mlib
          • Transforms
        • X86isa
        • Svl
        • Rtl
      • Software-verification
      • Math
      • Testing-utilities
    • Vl-gather-opts-p

    Make-honsed-vl-gather-opts

    Constructor macro for honsed vl-gather-opts-p structures.

    Syntax:

    (make-honsed-vl-gather-opts [:help <help>] 
                                [:readme <readme>] 
                                [: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 identical to make-vl-gather-opts, except that we hons the structure we are creating.

    Definition

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

    Macro: make-honsed-vl-gather-opts

    (defmacro make-honsed-vl-gather-opts (&rest args)
      (std::make-aggregate 'vl-gather-opts
                           args
                           '((:help)
                             (:readme)
                             (:output . "vl_gather.v")
                             (:start-files)
                             (:plusargs)
                             (:search-path)
                             (:include-dirs quote ("."))
                             (:search-exts quote ("v"))
                             (:defines)
                             (:edition . :system-verilog-2012)
                             (:strict)
                             (:mem . 4))
                           'make-honsed-vl-gather-opts
                           t))