• 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
          • Expression-sizing
          • Occform
          • Oprewrite
          • Expand-functions
          • Delayredux
          • Unparameterization
            • Scopesubst
            • Vl-scopeinfo-resolve-params
            • Vl-make-paramdecloverrides
              • Vl-namedparamvaluelist->names
              • Vl-make-paramdecloverrides-indexed
              • Vl-find-namedparamvalue
              • Vl-paramdecloverride
                • Vl-paramdecloverride-fix
                • Vl-paramdecloverride-equiv
                • Make-vl-paramdecloverride
                  • Vl-paramdecloverride->override
                  • Vl-paramdecloverride->decl
                  • Change-vl-paramdecloverride
                  • Vl-paramdecloverride-p
                • Vl-nonlocal-paramdecls
                • Vl-paramdecloverridelist
              • Vl-unparam-inst
              • Vl-scope-finalize-params
              • Vl-override-parameter-value
              • Vl-unparam-instlist
              • Vl-create-unparameterized-module
              • Vl-module-default-signature
              • Vl-modulelist-default-signatures
              • Vl-gencase-some-match
              • Vl-gencase-match
              • Vl-make-paramdecloverrides-named
              • Vl-unparam-newname
              • Vl-paramdecl-set-default
              • Vl-unparam-signature
              • Vl-genblob-collect-modinst-paramsigs
              • Vl-design-unparameterize
              • Vl-paramdecllist-remove-defaults
              • Vl-unparam-newname-exprstring
              • Vl-paramdecl-remove-default
              • Vl-unparam-sigalist
              • Vl-unparam-signaturelist
            • Caseelim
            • Split
            • Selresolve
            • Weirdint-elim
            • Vl-delta
            • Replicate-insts
            • Rangeresolve
            • Propagate
            • Clean-selects
            • Clean-params
            • Blankargs
            • Inline-mods
            • Expr-simp
            • Trunc
            • Always-top
            • Gatesplit
            • Gate-elim
            • Expression-optimization
            • Elim-supplies
            • Wildelim
            • Drop-blankports
            • Clean-warnings
            • Addinstnames
            • Custom-transform-hooks
            • Annotate
            • Latchcode
            • Elim-unused-vars
            • Problem-modules
          • Lint
          • Mlib
          • Server
          • Kit
          • Printer
          • Esim-vl
          • Well-formedness
        • Sv
        • Fgl
        • Vwsim
        • Vl
        • X86isa
        • Svl
        • Rtl
      • Software-verification
      • Math
      • Testing-utilities
    • Vl-paramdecloverride

    Make-vl-paramdecloverride

    Basic constructor macro for vl-paramdecloverride structures.

    Syntax
    (make-vl-paramdecloverride [:decl <decl>] 
                               [:override <override>]) 
    

    This is the usual way to construct vl-paramdecloverride structures. It simply conses together a structure with the specified fields.

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

    Definition

    This is an ordinary make- macro introduced by defprod.

    Macro: make-vl-paramdecloverride

    (defmacro make-vl-paramdecloverride (&rest args)
      (std::make-aggregate 'vl-paramdecloverride
                           args '((:decl) (:override))
                           'make-vl-paramdecloverride
                           nil))

    Function: vl-paramdecloverride

    (defun vl-paramdecloverride (decl override)
      (declare (xargs :guard (and (vl-paramdecl-p decl)
                                  (vl-maybe-paramvalue-p override))))
      (declare (xargs :guard t))
      (let ((__function__ 'vl-paramdecloverride))
        (declare (ignorable __function__))
        (b* ((decl (mbe :logic (vl-paramdecl-fix decl)
                        :exec decl))
             (override (mbe :logic (vl-maybe-paramvalue-fix override)
                            :exec override)))
          (list (cons 'decl decl)
                (cons 'override override)))))