• Top
    • Documentation
    • Books
    • Boolean-reasoning
    • Projects
    • Debugging
    • Std
    • Community
    • Proof-automation
    • ACL2
    • Macro-libraries
    • Interfacing-tools
    • Hardware-verification
      • Gl
      • Esim
      • Vl2014
        • Warnings
        • Primitives
        • Use-set
        • Syntax
        • Getting-started
        • Utilities
        • Loader
        • Transforms
        • Lint
          • Vl-lintconfig-p
          • Lucid
          • Skip-detection
          • Vl-lintresult-p
          • Lint-warning-suppression
          • Condcheck
          • Selfassigns
          • Leftright-check
          • Dupeinst-check
            • Vl-dupeinst-alistp
            • Vl-modulelist-dupeinst-check
            • Vl-dupeinst-key-p
              • Vl-dupeinst-key
              • Make-vl-dupeinst-key
                • Change-vl-dupeinst-key
                • Make-honsed-vl-dupeinst-key
                • Honsed-vl-dupeinst-key
                • Vl-dupeinst-key->modname
                • Vl-dupeinst-key->inputs
              • Vl-maybe-warn-dupeinst
              • Vl-warnings-for-dupeinst-alist
              • Vl-make-dupeinst-alist
              • Vl-module-dupeinst-check
              • Vl-dupeinst-trivial-p
              • Vl-design-dupeinst-check
              • Vl-pp-dupeinst-key
              • Vl-pp-dupeinst-alist
            • 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-dupeinst-key-p

    Make-vl-dupeinst-key

    Constructor macro for vl-dupeinst-key-p structures.

    Syntax:

    (make-vl-dupeinst-key [:modname <modname>] 
                          [:inputs <inputs>]) 
    

    This is our preferred way to construct vl-dupeinst-key-p structures. It simply conses together a structure with the specified fields.

    This macro generates a new vl-dupeinst-key-p structure from scratch. See also change-vl-dupeinst-key, which can "change" an existing structure, instead.

    Note that we always use hons when creating vl-dupeinst-key-p structures.

    Definition

    This is an ordinary make- macro introduced by defaggregate.

    Macro: make-vl-dupeinst-key

    (defmacro make-vl-dupeinst-key (&rest args)
      (std::make-aggregate 'vl-dupeinst-key
                           args '((:modname) (:inputs))
                           'make-vl-dupeinst-key
                           nil))