Basic constructor macro for finalize-input structures.
(make-finalize-input [:reg <reg>]
[:type <type>])
This is the usual way to construct finalize-input structures. It simply conses together a structure with the specified fields.
This macro generates a new finalize-input structure from scratch. See also change-finalize-input, which can "change" an existing structure, instead.
This is an ordinary
Macro:
(defmacro make-finalize-input (&rest args) (std::make-aggregate 'finalize-input args '((:reg) (:type)) 'make-finalize-input nil))
Function:
(defun finalize-input (reg type) (declare (xargs :guard (and (registerp reg) (finalize-typep type)))) (declare (xargs :guard t)) (let ((__function__ 'finalize-input)) (declare (ignorable __function__)) (b* ((reg (mbe :logic (register-fix reg) :exec reg)) (type (mbe :logic (finalize-type-fix type) :exec type))) (cons :finalize-input (list (cons 'reg reg) (cons 'type type))))))