With Scalar shift and rotate operations in the Power ISA already being
complex and very comprehensive, it is hard to justify creating complex
3-in 2-out variants when a sequence of 3 simple instructions will suffice.
+However it is reasonably justifiable to have a 3-in 1-out instruction
+with an implicit source, based around the inner operation:
+
+```
+ # r[i] = (un[i] >> s) | (un[i + 1] << (64 - s));
+ t <- ROT128(RA || RA1, RB[58:63])
+ RT <- t[64:127]
+``
+
+RA1 is implicitly (or explicitly, RC) greater than RA by one
+scalar register number, and like the other operations below,
+a 128/64 shift is performed, truncating to take the lower
+64 bits. By taking a Vector source RA and assuming lower-numbered
+registers are lower-significant digits in the biginteger operation
+the entire biginteger source may be shifted by a scalar.
For larger shift amounts beyond an element bitwidth standard register move
operations may be used, or, if the shift amount is static,