• 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
          • Preprocessor
          • Vl-loadconfig
            • Vl-loadconfig-p
            • Vl-loadconfig-fix
            • Make-vl-loadconfig
            • Vl-loadconfig-clean
            • Vl-loadconfig-equiv
            • Change-vl-loadconfig
              • Vl-loadconfig->include-dirs
              • Vl-loadconfig->start-names
              • Vl-loadconfig->start-files
              • Vl-loadconfig->search-path
              • Vl-loadconfig->search-exts
              • Vl-loadconfig->plusargs
              • Vl-loadconfig->flush-tries
              • Vl-loadconfig->strictp
              • Vl-loadconfig->mintime
              • Vl-loadconfig->filemapp
              • Vl-loadconfig->edition
              • Vl-loadconfig->defines
              • Vl-loadconfig->debugp
            • Vl-loadstate
            • Lexer
            • Parser
            • Vl-load-merge-descriptions
            • Vl-find-basename/extension
            • Vl-load-file
            • Vl-loadresult
            • Scope-of-defines
            • Vl-find-file
            • Vl-flush-out-descriptions
            • Vl-description
            • Vl-read-file
            • Vl-includeskips-report-gather
            • Vl-load-main
            • Extended-characters
            • Vl-load
            • Vl-load-description
            • Vl-descriptions-left-to-load
            • Inject-warnings
            • Vl-preprocess-debug
            • Vl-write-preprocessor-debug-file
            • Vl-read-file-report-gather
            • Vl-load-descriptions
            • Vl-load-files
            • Translate-off
            • Vl-load-read-file-hook
            • Vl-read-file-report
            • Vl-loadstate-pad
            • Vl-load-summary
            • Vl-collect-modules-from-descriptions
            • Vl-loadstate->warnings
            • Vl-iskips-report
            • Vl-descriptionlist
          • Warnings
          • Getting-started
          • Utilities
          • Printer
          • Kit
          • Mlib
          • Transforms
        • X86isa
        • Svl
        • Rtl
      • Software-verification
      • Math
      • Testing-utilities
    • Vl-loadconfig

    Change-vl-loadconfig

    Modifying constructor for vl-loadconfig structures.

    Syntax
    (change-vl-loadconfig x 
                          [:edition <edition>] 
                          [:strictp <strictp>] 
                          [:start-files <start-files>] 
                          [:start-names <start-names>] 
                          [:search-path <search-path>] 
                          [:search-exts <search-exts>] 
                          [:include-dirs <include-dirs>] 
                          [:defines <defines>] 
                          [:plusargs <plusargs>] 
                          [:filemapp <filemapp>] 
                          [:debugp <debugp>] 
                          [:flush-tries <flush-tries>] 
                          [:mintime <mintime>]) 
    

    This is an often useful alternative to make-vl-loadconfig.

    We construct a new vl-loadconfig 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 defprod.

    Macro: change-vl-loadconfig

    (defmacro change-vl-loadconfig (x &rest args)
      (std::change-aggregate
           'vl-loadconfig
           x args
           '((:edition . vl-loadconfig->edition)
             (:strictp . vl-loadconfig->strictp)
             (:start-files . vl-loadconfig->start-files)
             (:start-names . vl-loadconfig->start-names)
             (:search-path . vl-loadconfig->search-path)
             (:search-exts . vl-loadconfig->search-exts)
             (:include-dirs . vl-loadconfig->include-dirs)
             (:defines . vl-loadconfig->defines)
             (:plusargs . vl-loadconfig->plusargs)
             (:filemapp . vl-loadconfig->filemapp)
             (:debugp . vl-loadconfig->debugp)
             (:flush-tries . vl-loadconfig->flush-tries)
             (:mintime . vl-loadconfig->mintime))
           'change-vl-loadconfig
           'nil))