• 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

    Make-vl-gather-opts

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

    Syntax:

    (make-vl-gather-opts [: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 our preferred way to construct vl-gather-opts-p structures. It simply conses together a structure with the specified fields.

    This macro generates a new vl-gather-opts-p structure from scratch. See also change-vl-gather-opts, which can "change" an existing structure, instead.

    The vl-gather-opts-p structures we create here are just constructed with ordinary cons. If you want to create honsed structures, see make-honsed-vl-gather-opts instead.

    Definition

    This is an ordinary make- macro introduced by defaggregate.

    Macro: make-vl-gather-opts

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