• 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

    Change-vl-lintconfig

    A copying macro that lets you create new vl-lintconfig-p structures, based on existing structures.

    Syntax:

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

    This is a sometimes useful alternative to make-vl-lintconfig. It constructs a new vl-lintconfig-p structure that is a copy of x, except that you can explicitly change some particular fields. Any fields you don't mention just keep their values from x.

    Definition

    This is an ordinary change- macro introduced by defaggregate.

    Macro: change-vl-lintconfig

    (defmacro change-vl-lintconfig (x &rest args)
      (std::change-aggregate
           'vl-lintconfig
           x args
           '((:start-files . vl-lintconfig->start-files)
             (:plusargs . vl-lintconfig->plusargs)
             (:help . vl-lintconfig->help)
             (:readme . vl-lintconfig->readme)
             (:search-path . vl-lintconfig->search-path)
             (:search-exts . vl-lintconfig->search-exts)
             (:include-dirs . vl-lintconfig->include-dirs)
             (:topmods . vl-lintconfig->topmods)
             (:quiet . vl-lintconfig->quiet)
             (:dropmods . vl-lintconfig->dropmods)
             (:ignore . vl-lintconfig->ignore)
             (:ignore-files . vl-lintconfig->ignore-files)
             (:defines . vl-lintconfig->defines)
             (:cclimit . vl-lintconfig->cclimit)
             (:global-packages . vl-lintconfig->global-packages)
             (:elab-limit . vl-lintconfig->elab-limit)
             (:stmt-limit . vl-lintconfig->stmt-limit)
             (:no-typo . vl-lintconfig->no-typo)
             (:no-html . vl-lintconfig->no-html)
             (:no-sv-use-set . vl-lintconfig->no-sv-use-set)
             (:edition . vl-lintconfig->edition)
             (:strict . vl-lintconfig->strict)
             (:mem . vl-lintconfig->mem)
             (:debug . vl-lintconfig->debug)
             (:shell . vl-lintconfig->shell)
             (:post-shell . vl-lintconfig->post-shell))
           'change-vl-lintconfig
           'remake-vl-lintconfig))