• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • 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-server
          • Vl-pp
            • Vl-pp-opts-p
              • Parse-vl-pp-opts
              • Vl-pp-opts
              • Make-vl-pp-opts
              • Change-vl-pp-opts
              • Honsed-vl-pp-opts
                • Make-honsed-vl-pp-opts
                • *vl-pp-opts-usage*
                • Vl-pp-opts->strict
                • Vl-pp-opts->start-files
                • Vl-pp-opts->readme
                • Vl-pp-opts->output
                • Vl-pp-opts->outdefs
                • Vl-pp-opts->mem
                • Vl-pp-opts->include-dirs
                • Vl-pp-opts->help
                • Vl-pp-opts->edition
                • Vl-pp-opts->defines
            • 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-pp-opts-p

    Honsed-vl-pp-opts

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

    Syntax:

    (honsed-vl-pp-opts help readme output outdefs start-files 
                       include-dirs defines edition strict mem)

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

    Definition

    This is an ordinary honsing constructor introduced by defaggregate.

    Function: honsed-vl-pp-opts

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