• 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
          • Lucid
          • Skip-detection
            • Sd-problem-p
            • Sd-keylist-find-skipped
            • Sd-keylist->indicies
            • Sd-key-p
              • Sd-key
              • Make-sd-key
              • Change-sd-key
                • Make-honsed-sd-key
                • Honsed-sd-key
                • Sd-key->index
                • Sd-key->pat
                • Sd-key->orig
              • Sd-patalist-compare
              • Sd-analyze-ctxexprs
              • Sd-problemlist-p
              • Sd-patalist-p
              • Sd-keygen
              • Sd-patalist
              • Sd-keylist-p
              • Sd-analyze-modulelist
              • Sd-analyze-module-aux
              • Sd-analyze-module
              • Sd-pp-problem-long
              • Sd-analyze-modulelist-aux
              • Sd-problem-score
              • Sd-pp-problem-header
              • Sd-analyze-design
              • Sd-problem->
              • Sd-pp-problem-brief
              • Sd-pp-problemlist-long
              • Sd-pp-problemlist-brief
              • Sd-natlist-linear-increments-p
              • Sd-keylist-linear-increments-p
            • 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
    • Sd-key-p

    Change-sd-key

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

    Syntax:

    (change-sd-key x 
                   [:pat <pat>] 
                   [:index <index>] 
                   [:orig <orig>]) 
    

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

    (defmacro change-sd-key (x &rest args)
      (std::change-aggregate 'sd-key
                             x args
                             '((:pat . sd-key->pat)
                               (:index . sd-key->index)
                               (:orig . sd-key->orig))
                             'change-sd-key
                             'remake-sd-key))