• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Community
    • Proof-automation
    • Macro-libraries
    • ACL2
    • Interfacing-tools
    • Hardware-verification
      • Gl
      • Esim
      • Vl2014
        • Warnings
        • Primitives
        • Use-set
        • Syntax
        • Getting-started
        • Utilities
        • Loader
          • Preprocessor
          • Vl-loadconfig
          • Lexer
          • Vl-loadstate
          • Parser
            • Parse-expressions
            • Parse-udps
              • Vl-idtokenlist->names
              • Vl-make-traditional-udp-head
              • Vl-udp-head-p
                • Vl-udp-head
                • Make-vl-udp-head
                • Change-vl-udp-head
                  • Make-honsed-vl-udp-head
                  • Honsed-vl-udp-head
                  • Vl-udp-head->sequentialp
                  • Vl-udp-head->output
                  • Vl-udp-head->inputs
                • Vl-parse-traditional-udp-head
                • Vl-parse-1+-udp-input-declarations-separated-by-commas
                • Vl-parse-udp-output-declaration
                • Vl-parse-integrated-udp-head
                • Vl-parse-udp-declaration
                • Vl-udp-body-p
                • Vl-parse-udp-initial-statement
                • Vl-parse-combinational-entries-until-endtable
                • Vl-parse-udp-port-declaration
                • Vl-parse-udp-input-declaration
                • Vl-parse-sequential-entries-until-endtable
                • Vl-parse-level-symbol
                • Vl-parse-edge-symbol
                • Vl-parse-1+-udp-port-declarations
                • Vl-parse-0+-udp-port-declarations
                • Vl-skip-through-endprimitive
                • Vl-parse-udp-reg-declaration
                • Vl-parse-udp-init-val
                • Vl-parse-sequential-entry
                • Vl-parse-level-input-list
                • Vl-parse-edge-input-list
                • Vl-parse-udp-body
                • Vl-parse-seq-input-list
                • Vl-parse-edge-indicator
                • Vl-parse-combinational-entry
                • Vl-parse-combinational-body
                • Vl-port/vardecllist-p
                • Vl-parse-sequential-table
                • Vl-parse-output-symbol
                • Vl-parse-0+-level-symbols
                • Vl-parse-next-state
                • Vl-parse-current-state
                • Vl-make-udp-with-parse-error
                • Vl-make-udp-portdecls
                • Vl-port/vardecllist->vardecls
                • Vl-port/vardecllist->portdecls
                • Vl-port/vardecl
              • Vl-genelements
              • Parse-paramdecls
              • Parse-blockitems
              • Parse-utils
              • Parse-insts
              • Parse-datatype
              • Parse-functions
              • Parse-datatypes
              • Parse-strengths
              • Vl-parse-genvar-declaration
              • Vl-parse
              • Parse-ports
              • Seq
              • Parse-packages
            • Vl-load-merge-descriptions
            • Scope-of-defines
            • Vl-load-file
            • Vl-flush-out-descriptions
            • Vl-description
            • Vl-loadresult
            • Vl-read-file
            • Vl-find-basename/extension
            • Vl-find-file
            • Vl-read-files
            • Extended-characters
            • Vl-load
            • Vl-load-main
            • Vl-load-description
            • Vl-descriptions-left-to-load
            • Inject-warnings
            • Vl-load-descriptions
            • Vl-load-files
            • Vl-load-summary
            • Vl-collect-modules-from-descriptions
            • Vl-descriptionlist
          • Transforms
          • Lint
          • Mlib
          • Server
          • Kit
          • Printer
          • Esim-vl
          • Well-formedness
        • Sv
        • Fgl
        • Vwsim
        • Vl
        • X86isa
        • Svl
        • Rtl
      • Software-verification
      • Math
      • Testing-utilities
    • Vl-udp-head-p

    Change-vl-udp-head

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

    Syntax:

    (change-vl-udp-head x 
                        [:output <output>] 
                        [:inputs <inputs>] 
                        [:sequentialp <sequentialp>]) 
    

    This is a sometimes useful alternative to make-vl-udp-head. It constructs a new vl-udp-head-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-udp-head

    (defmacro change-vl-udp-head (x &rest args)
     (std::change-aggregate 'vl-udp-head
                            x args
                            '((:output . vl-udp-head->output)
                              (:inputs . vl-udp-head->inputs)
                              (:sequentialp . vl-udp-head->sequentialp))
                            'change-vl-udp-head
                            'remake-vl-udp-head))