Returns a boolean saying whether, in 64-bit mode, the given opcode in the one-byte opcode map expects a ModR/M byte.
Function:
(defun 64-bit-mode-one-byte-opcode-modr/m-p$inline (opcode) (declare (type (unsigned-byte 8) opcode)) (aref1 '64-bit-mode-one-byte-has-modr/m *64-bit-mode-one-byte-has-modr/m-ar* opcode))
Theorem:
(defthm booleanp-of-64-bit-mode-one-byte-opcode-modr/m-p (implies (n08p opcode) (b* ((bool (64-bit-mode-one-byte-opcode-modr/m-p$inline opcode))) (booleanp bool))) :rule-classes :rewrite)