aboutsummaryrefslogtreecommitdiff
path: root/target/mips
diff options
context:
space:
mode:
authorPhilippe Mathieu-Daudé <f4bug@amsat.org>2021-02-14 18:58:35 +0100
committerPhilippe Mathieu-Daudé <f4bug@amsat.org>2021-02-21 19:42:34 +0100
commitb5b63d43a0d2b3c3a914a30b0443ce3f04c0db5c (patch)
tree305ae3d68983aa1ad2af030cd64b6a3b2ee7f66a /target/mips
parentcefd68f6b1e20639ba95d4eb8b4a99b5e00d93d3 (diff)
downloadqemu-b5b63d43a0d2b3c3a914a30b0443ce3f04c0db5c.zip
qemu-b5b63d43a0d2b3c3a914a30b0443ce3f04c0db5c.tar.gz
qemu-b5b63d43a0d2b3c3a914a30b0443ce3f04c0db5c.tar.bz2
target/mips: Rename 128-bit upper halve GPR registers
TCG displays the upper halve registers with the same name as their lower halves. Rename the upper halves with the '[hi]' suffix. Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20210214175912.732946-6-f4bug@amsat.org> Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Diffstat (limited to 'target/mips')
-rw-r--r--target/mips/translate.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/target/mips/translate.c b/target/mips/translate.c
index 2df7659..5228e04 100644
--- a/target/mips/translate.c
+++ b/target/mips/translate.c
@@ -29289,10 +29289,12 @@ void mips_tcg_init(void)
cpu_gpr_hi[0] = NULL;
for (unsigned i = 1; i < 32; i++) {
+ g_autofree char *rname = g_strdup_printf("%s[hi]", regnames[i]);
+
cpu_gpr_hi[i] = tcg_global_mem_new_i64(cpu_env,
offsetof(CPUMIPSState,
active_tc.gpr_hi[i]),
- regnames[i]);
+ rname);
}
#endif /* !TARGET_MIPS64 */
for (i = 0; i < 32; i++) {