• 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
          • Vl-lintconfig-p
            • Parse-vl-lintconfig
            • Vl-lintconfig
            • Make-vl-lintconfig
              • Change-vl-lintconfig
              • Honsed-vl-lintconfig
              • *vl-lintconfig-usage*
              • Make-honsed-vl-lintconfig
              • Vl-lintconfig->topmods
              • Vl-lintconfig->strict
              • Vl-lintconfig->start-files
              • Vl-lintconfig->search-path
              • Vl-lintconfig->search-exts
              • Vl-lintconfig->readme
              • Vl-lintconfig->quiet
              • Vl-lintconfig->mem
              • Vl-lintconfig->include-dirs
              • Vl-lintconfig->ignore
              • Vl-lintconfig->help
              • Vl-lintconfig->edition
              • Vl-lintconfig->dropmods
              • Vl-lintconfig->debug
              • Vl-lintconfig->cclimit
            • Lucid
            • Skip-detection
            • Vl-lintresult-p
            • Lint-warning-suppression
            • Condcheck
            • Selfassigns
            • Leftright-check
            • Dupeinst-check
            • Oddexpr-check
            • Remove-toohard
            • Qmarksize-check
            • Portcheck
            • Duplicate-detect
            • Vl-print-certain-warnings
            • Duperhs-check
            • *vl-lint-help*
            • Lint-stmt-rewrite
            • Drop-missing-submodules
            • Check-case
            • Drop-user-submodules
            • Check-namespace
            • Vl-lint
          • Mlib
          • Server
          • Kit
          • Printer
          • Esim-vl
          • Well-formedness
        • Sv
        • Fgl
        • Vwsim
        • Vl
        • X86isa
        • Svl
        • Rtl
      • Software-verification
      • Math
      • Testing-utilities
    • Vl-lintconfig-p

    Make-vl-lintconfig

    Constructor macro for vl-lintconfig-p structures.

    Syntax:

    (make-vl-lintconfig [:start-files <start-files>] 
                        [:help <help>] 
                        [:readme <readme>] 
                        [:search-path <search-path>] 
                        [:search-exts <search-exts>] 
                        [:include-dirs <include-dirs>] 
                        [:topmods <topmods>] 
                        [:quiet <quiet>] 
                        [:dropmods <dropmods>] 
                        [:ignore <ignore>] 
                        [:cclimit <cclimit>] 
                        [:edition <edition>] 
                        [:strict <strict>] 
                        [:mem <mem>] 
                        [:debug <debug>]) 
    

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

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

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

    Definition

    This is an ordinary make- macro introduced by defaggregate.

    Macro: make-vl-lintconfig

    (defmacro make-vl-lintconfig (&rest args)
      (std::make-aggregate 'vl-lintconfig
                           args
                           '((:start-files)
                             (:help)
                             (:readme)
                             (:search-path)
                             (:search-exts quote ("v"))
                             (:include-dirs quote ("."))
                             (:topmods)
                             (:quiet)
                             (:dropmods)
                             (:ignore)
                             (:cclimit . 0)
                             (:edition . :system-verilog-2012)
                             (:strict)
                             (:mem . 4)
                             (:debug))
                           'make-vl-lintconfig
                           nil))