• 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

    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>] 
                          [: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 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)
             (: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)
             (:cclimit . vl-lintconfig->cclimit)
             (:edition . vl-lintconfig->edition)
             (:strict . vl-lintconfig->strict)
             (:mem . vl-lintconfig->mem)
             (:debug . vl-lintconfig->debug))
           'change-vl-lintconfig
           'nil))