• 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

    Honsed-vl-zip-opts

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

    Syntax:

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

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

    Definition

    This is an ordinary honsing constructor introduced by defaggregate.

    Function: honsed-vl-zip-opts

    (defun honsed-vl-zip-opts
           (help readme name output start-files
                 plusargs search-path include-dirs
                 search-exts defines edition strict mem)
     (declare (xargs :guard (and (booleanp help)
                                 (booleanp readme)
                                 (stringp name)
                                 (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-zip-opts help readme name 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 'name name)
          (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))))))))))))))))