• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • 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-lintconfig-p
              • Parse-vl-lintconfig
              • Vl-lintconfig
                • *vl-lintconfig-usage*
                • Make-vl-lintconfig
                • Change-vl-lintconfig
                • Honsed-vl-lintconfig
                • Make-honsed-vl-lintconfig
                • Vl-lintconfig->topmods
                • Vl-lintconfig->strict
                • Vl-lintconfig->stmt-limit
                • Vl-lintconfig->start-files
                • Vl-lintconfig->shell
                • Vl-lintconfig->search-path
                • Vl-lintconfig->search-exts
                • Vl-lintconfig->readme
                • Vl-lintconfig->quiet
                • Vl-lintconfig->post-shell
                • Vl-lintconfig->plusargs
                • Vl-lintconfig->no-typo
                • Vl-lintconfig->no-sv-use-set
                • Vl-lintconfig->no-html
                • Vl-lintconfig->mem
                • Vl-lintconfig->include-dirs
                • Vl-lintconfig->ignore-files
                • Vl-lintconfig->ignore
                • Vl-lintconfig->help
                • Vl-lintconfig->global-packages
                • Vl-lintconfig->elab-limit
                • Vl-lintconfig->edition
                • Vl-lintconfig->dropmods
                • Vl-lintconfig->defines
                • Vl-lintconfig->debug
                • Vl-lintconfig->cclimit
              • Condcheck
              • Lint-warning-suppression
              • Lucid
              • Lvaluecheck
              • Vl-interfacelist-alwaysstyle
              • Truncation-warnings
              • Vl-modulelist-alwaysstyle
              • Skip-detection
              • Vl-lint-report
              • Vl-lintresult
              • Vl::vl-design-sv-use-set
              • Oddexpr-check
              • Leftright-check
              • Duplicate-detect
              • Selfassigns
              • *vl-lint-help*
              • Arith-compare-check
              • Dupeinst-check
              • Qmarksize-check
              • Lint-whole-file-suppression
              • Run-vl-lint-main
              • Logicassign
              • Run-vl-lint
              • Vl-print-certain-warnings
              • Duperhs-check
              • Vl-lint-top
              • Sd-filter-problems
              • Vl-modulelist-add-svbad-warnings
              • Vl-module-add-svbad-warnings
              • Check-case
              • Vl-lint-extra-actions
              • Drop-lint-stubs
              • Vl-lint-print-warnings
              • Drop-user-submodules
              • Check-namespace
              • Vl-lintconfig-loadconfig
              • Vl-lint-design->svex-modalist-wrapper
              • Vl-delete-sd-problems-for-modnames-aux
              • Vl-collect-new-names-from-orignames
              • Vl-lint-print-all-warnings
              • Vl-design-remove-unnecessary-modules
              • Vl-delete-sd-problems-for-modnames
              • Vl-always-check-style
              • Vl-vardecllist-svbad-warnings
              • Vl-vardecl-svbad-warnings
              • Vl-reportcard-remove-suppressed
              • Vl-reportcard-keep-suppressed
              • Vl-alwayslist-check-style
              • Vl-remove-nameless-descriptions
              • Vl-lint-apply-quiet
              • Vl-warninglist-remove-suppressed
              • Vl-warninglist-keep-suppressed
              • Vl-print-eliminated-descs
              • Vl-module-alwaysstyle
              • Vl-jp-reportcard-aux
              • Vl-interface-alwaysstyle
              • Vl-design-alwaysstyle
              • Vl-jp-description-locations
              • Vl-jp-reportcard
              • Vl-pp-stringlist-lines
              • Vl-jp-design-locations
              • Vl-datatype-svbad-p
              • Unpacked-range-check
              • Sd-problem-major-p
              • Vl-alwaysstyle
            • Vl-server
            • Vl-gather
            • Vl-zip
            • Vl-main
            • Split-plusargs
            • Vl-shell
            • Vl-json
          • Mlib
          • Transforms
        • X86isa
        • Svl
        • Rtl
      • Software-verification
      • Math
      • Testing-utilities
    • Vl-lintconfig-p

    Vl-lintconfig

    Raw constructor for vl-lintconfig-p structures.

    Syntax:

    (vl-lintconfig start-files plusargs 
                   help readme search-path search-exts 
                   include-dirs topmods quiet dropmods 
                   ignore ignore-files defines cclimit 
                   global-packages elab-limit stmt-limit 
                   no-typo no-html no-sv-use-set edition 
                   strict mem debug shell post-shell)

    This is the lowest-level constructor for vl-lintconfig-p structures. It simply conses together a structure with the specified fields.

    Note: It's generally better to use macros like make-vl-lintconfig or change-vl-lintconfig instead. These macros lead to more readable and robust code, because you don't have to remember the order of the fields.

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

    Definition

    This is an ordinary constructor function introduced by defaggregate.

    Function: vl-lintconfig

    (defun vl-lintconfig
           (start-files plusargs
                        help readme search-path search-exts
                        include-dirs topmods quiet dropmods
                        ignore ignore-files defines cclimit
                        global-packages elab-limit stmt-limit
                        no-typo no-html no-sv-use-set edition
                        strict mem debug shell post-shell)
     (declare (xargs :guard (and (string-listp start-files)
                                 (string-listp plusargs)
                                 (booleanp help)
                                 (booleanp readme)
                                 (string-listp search-path)
                                 (string-listp search-exts)
                                 (string-listp include-dirs)
                                 (string-listp topmods)
                                 (string-listp quiet)
                                 (string-listp dropmods)
                                 (string-listp ignore)
                                 (string-listp ignore-files)
                                 (string-listp defines)
                                 (natp cclimit)
                                 (string-listp global-packages)
                                 (natp elab-limit)
                                 (natp stmt-limit)
                                 (booleanp no-typo)
                                 (booleanp no-html)
                                 (booleanp no-sv-use-set)
                                 (vl-edition-p edition)
                                 (booleanp strict)
                                 (posp mem)
                                 (booleanp debug)
                                 (booleanp shell)
                                 (booleanp post-shell))))
     (cons
         :vl-lint-opts
         (cons (cons (cons (cons start-files (cons plusargs help))
                           (cons readme (cons search-path search-exts)))
                     (cons (cons include-dirs (cons topmods quiet))
                           (cons (cons dropmods ignore)
                                 (cons ignore-files defines))))
               (cons (cons (cons cclimit
                                 (cons global-packages elab-limit))
                           (cons stmt-limit (cons no-typo no-html)))
                     (cons (cons no-sv-use-set (cons edition strict))
                           (cons (cons mem debug)
                                 (cons shell post-shell)))))))