Is MOP.R.6 a pure no-op by default?
No. The official Zimop rule says it writes zero to rd by default.
Zimop MOP.R.6; by default writes zero to rd and may be redefined to read rs1 and write rd.
MOP.R.6 is a Zimop may-be-operation with recommended syntax mop.r.6 rd, rs1. If no other extension redefines the encoding, the official default behavior writes 0 to x[rd]. The encoding space allows future extensions to define it as reading x[rs1] and writing x[rd]. Standard software should not execute a MOP unless deliberately targeting an extension that redefines it.
MOP.R.6 is a Zimop compatible encoding reserved for future extensions; when not redefined, its visible result is rd receiving zero.
Understand this scenario with real code like «mop.r.6 t0, t1».
Understand this scenario with real code like «mop.r.6 t0, t1».
No. The official Zimop rule says it writes zero to rd by default.
No, unless the software deliberately targets an extension that redefines that MOP.