True if operand needs a modr/m byte
(operand-needs-modr/m-p operand) → *
Function:
(defun operand-needs-modr/m-p (operand) (declare (xargs :guard (operand-type-p operand))) (let ((__function__ 'operand-needs-modr/m-p)) (declare (ignorable __function__)) (b* (((when (null operand)) nil) (zop (car operand))) (cdr (assoc-equal :modr/m? (cdr (assoc-equal zop *z-addressing-method-info*)))))))