(rotate-right-64 x places) → *
Function:
(defun rotate-right-64$inline (x places) (declare (type (unsigned-byte 64) x) (type (unsigned-byte 64) places)) (let ((__function__ 'rotate-right-64)) (declare (ignorable __function__)) (mbe :logic (rotate-right x 64 places) :exec (let* ((x (mbe :logic (loghead 64 x) :exec x)) (places (mbe :logic (lnfix places) :exec places)) (places (if (< places 64) (the (integer 0 63) places) (the (integer 0 63) (rem places 64)))) (mask (the (unsigned-byte 64) (1- (the (unsigned-byte 64) (ash 1 places))))) (xl (the (unsigned-byte 64) (logand x mask))) (xh-shift (the (unsigned-byte 64) (ash x (the (integer -64 0) (- places))))) (high-num (the (integer 0 64) (- 64 places))) (xl-shift (the (unsigned-byte 64) (ash xl high-num))) (ans (the (unsigned-byte 64) (logior xl-shift xh-shift)))) ans))))