• 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-server
            • Vls-scannedalist-p
            • Vls-loadedalist-p
            • Vls-commands
            • Vls-data-p
            • Vl-server-opts-p
            • Vl-descriptionlist-summaries
            • Vls-transdb
            • Vl-describe
            • Ts-queue
            • Vls-get-plainsrc
            • Vl-description->warnings
            • Vls-showloc
            • File-layout
              • Vl-zipinfo
                • Vl-zipinfo-fix
                • Vl-zipinfo-equiv
                • Make-vl-zipinfo
                • Vl-zipinfo-p
                • Change-vl-zipinfo
                  • Vl-zipinfo->syntax
                  • Vl-zipinfo->filename
                  • Vl-zipinfo->name
                  • Vl-zipinfo->ltime
                  • Vl-zipinfo->date
                • Vl-scan-for-zipinfos-aux
                • Vl-scan-for-zipinfos
                • Vl-zipinfolist
              • Vls-remove-from-scannedalist
              • Vls-describe
              • Vl-server-top
              • Vls-port-table
              • Vl-find-description-insensitive
              • Vls-get-warnings
              • Vls-get-summary
              • Vls-get-origsrc
              • Vl-ppc-description
              • Vls-get-parents
              • Vls-get-children
              • Vls-data-origname-reportcard
              • Vls-data-from-zip
              • Start
              • Vls-make-scannedalist
              • Vls-get-summaries
              • Vls-get-unloaded-json
              • Vls-get-desctypes
              • Vls-scannedalist-to-json
              • Vls-loadedalist-to-json
              • Vl-description-summary
              • *vl-server-help*
              • Vl-descalist->descriptions/types
              • Stop
            • Vl-gather
            • Vl-zip
            • Vl-main
            • Split-plusargs
            • Vl-shell
            • Vl-json
          • Mlib
          • Transforms
        • X86isa
        • Svl
        • Rtl
      • Software-verification
      • Math
      • Testing-utilities
    • Vl-zipinfo

    Change-vl-zipinfo

    Modifying constructor for vl-zipinfo structures.

    Syntax
    (change-vl-zipinfo x 
                       [:filename <filename>] 
                       [:name <name>] 
                       [:syntax <syntax>] 
                       [:date <date>] 
                       [:ltime <ltime>]) 
    

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

    We construct a new vl-zipinfo 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-zipinfo

    (defmacro change-vl-zipinfo (x &rest args)
      (std::change-aggregate 'vl-zipinfo
                             x args
                             '((:filename . vl-zipinfo->filename)
                               (:name . vl-zipinfo->name)
                               (:syntax . vl-zipinfo->syntax)
                               (:date . vl-zipinfo->date)
                               (:ltime . vl-zipinfo->ltime))
                             'change-vl-zipinfo
                             'nil))