]> www.infradead.org Git - users/dwmw2/qemu.git/commitdiff
Hexagon HVX (target/hexagon) register names
authorTaylor Simpson <tsimpson@quicinc.com>
Fri, 26 Feb 2021 11:30:12 +0000 (03:30 -0800)
committerTaylor Simpson <tsimpson@quicinc.com>
Wed, 3 Nov 2021 21:01:27 +0000 (16:01 -0500)
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Signed-off-by: Taylor Simpson <tsimpson@quicinc.com>
target/hexagon/cpu.c
target/hexagon/hex_regs.h

index 989bd767b5948c9916222cde39fa9f651b651582..3bd3f100ddf504589c5ef79cc393ade8e085b08d 100644 (file)
@@ -59,7 +59,7 @@ const char * const hexagon_regnames[TOTAL_PER_THREAD_REGS] = {
   "r24", "r25", "r26", "r27", "r28",  "r29", "r30", "r31",
   "sa0", "lc0", "sa1", "lc1", "p3_0", "c5",  "m0",  "m1",
   "usr", "pc",  "ugp", "gp",  "cs0",  "cs1", "c14", "c15",
-  "c16", "c17", "c18", "c19", "pkt_cnt",  "insn_cnt", "c22", "c23",
+  "c16", "c17", "c18", "c19", "pkt_cnt",  "insn_cnt", "hvx_cnt", "c23",
   "c24", "c25", "c26", "c27", "c28",  "c29", "c30", "c31",
 };
 
index f291911eefc97850aa4aae42bf6e6870f22a97b5..e1b3149b074e6e5fb8867633ae4fe595e14c76ac 100644 (file)
@@ -76,6 +76,7 @@ enum {
     /* Use reserved control registers for qemu execution counts */
     HEX_REG_QEMU_PKT_CNT      = 52,
     HEX_REG_QEMU_INSN_CNT     = 53,
+    HEX_REG_QEMU_HVX_CNT      = 54,
     HEX_REG_UTIMERLO          = 62,
     HEX_REG_UTIMERHI          = 63,
 };