Add support for MOPS instructions
The MOPS extension to AArch64 adds support for instructions designed to
accelerate functions like memcpy and memset. Implement these in the assembler,
disassembler and simulator.
diff --git a/src/cpu-features.h b/src/cpu-features.h
index ebd0578..24781da 100644
--- a/src/cpu-features.h
+++ b/src/cpu-features.h
@@ -183,7 +183,9 @@
/* Enhanced Counter Virtualization */ \
V(kECV, "ECV", "ecv") \
/* Increased precision of Reciprocal Estimate and Square Root Estimate */ \
- V(kRPRES, "RPRES", "rpres")
+ V(kRPRES, "RPRES", "rpres") \
+ /* Memory operation instructions, for memcpy, memset */ \
+ V(kMOPS, "Memory ops", NULL)
// clang-format on