which goes a long way towards explaining why there are twice as many
Vector instructions in RISC-V as there are in the RV64GC base.
+The question then becomes: with all the duplication of arithmetic
+operations just to make the registers scalar or vector, why not
+leverage the *existing* Scalar ISA with some sort of "context"
+or prefix that augments its behaviour?
+
+Remarkably this is not a new idea. Intel's x86 `REP` instruction
+gives the base concept, but in 1994 it was Peter Hsu, the designer
+of the MIPS R8000, who first came up with the idea of Vector
+prefixing. Relying on a multi-issue Out-of-Order Execution Engine,
+the prefix would mark which of the registers were to be treated as
+Scalar and which as Vector, then perform a `REP`-like loop that
+jammed multiple scalar operations into the Multi-Issue Execution
+Engine. The only reason that the team did not take this forward
+into a commercial product
+was because they could not work out how to cleanly do OoO
+multi-issue at the time.