• 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

    Make-vl-pp-opts

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

    Syntax:

    (make-vl-pp-opts [:help <help>] 
                     [:readme <readme>] 
                     [:output <output>] 
                     [:outdefs <outdefs>] 
                     [:start-files <start-files>] 
                     [:include-dirs <include-dirs>] 
                     [:defines <defines>] 
                     [:edition <edition>] 
                     [:strict <strict>] 
                     [:mem <mem>]) 
    

    This is our preferred way to construct vl-pp-opts-p structures. It simply conses together a structure with the specified fields.

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

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

    Definition

    This is an ordinary make- macro introduced by defaggregate.

    Macro: make-vl-pp-opts

    (defmacro make-vl-pp-opts (&rest args)
      (std::make-aggregate 'vl-pp-opts
                           args
                           '((:help)
                             (:readme)
                             (:output . "vl-pp.out")
                             (:outdefs . "vl-pp.defs")
                             (:start-files)
                             (:include-dirs)
                             (:defines)
                             (:edition . :system-verilog-2012)
                             (:strict)
                             (:mem . 4))
                           'make-vl-pp-opts
                           nil))