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