• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Community
    • Std
    • 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-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

    Honsed-vl-gather-opts

    Raw constructor for honsed vl-gather-opts-p structures.

    Syntax:

    (honsed-vl-gather-opts help readme output start-files 
                           plusargs search-path include-dirs 
                           search-exts defines edition strict mem)

    This is identical to vl-gather-opts, except that we hons the structure we are creating.

    Definition

    This is an ordinary honsing constructor introduced by defaggregate.

    Function: honsed-vl-gather-opts

    (defun honsed-vl-gather-opts
           (help readme output start-files
                 plusargs search-path include-dirs
                 search-exts defines edition strict mem)
     (declare (xargs :guard (and (booleanp help)
                                 (booleanp readme)
                                 (stringp output)
                                 (string-listp start-files)
                                 (string-listp plusargs)
                                 (string-listp search-path)
                                 (string-listp include-dirs)
                                 (string-listp search-exts)
                                 (string-listp defines)
                                 (vl-edition-p edition)
                                 (booleanp strict)
                                 (posp mem))))
     (mbe
      :logic (vl-gather-opts help readme output start-files
                             plusargs search-path include-dirs
                             search-exts defines edition strict mem)
      :exec
      (hons
       :vl-model-opts
       (hons
        (hons 'help help)
        (hons
         (hons 'readme readme)
         (hons
          (hons 'output output)
          (hons
           (hons 'start-files start-files)
           (hons
            (hons 'plusargs plusargs)
            (hons
             (hons 'search-path search-path)
             (hons
              (hons 'include-dirs include-dirs)
              (hons
               (hons 'search-exts search-exts)
               (hons
                    (hons 'defines defines)
                    (hons (hons 'edition edition)
                          (hons (hons 'strict strict)
                                (hons (hons 'mem mem) nil)))))))))))))))