[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 6/6] disas/cris: Improve output of register names
|
From: |
Richard Henderson |
|
Subject: |
[PATCH 6/6] disas/cris: Improve output of register names |
|
Date: |
Fri, 12 Apr 2024 22:23:33 -0700 |
Add REGISTER_PREFIX as a string literal that may be concatenated
with other string literals. Use a table of the 16 register names
instead of using g_string_append_printf.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
disas/cris.c | 45 +++++++++++++++++++++++++--------------------
1 file changed, 25 insertions(+), 20 deletions(-)
diff --git a/disas/cris.c b/disas/cris.c
index 71c292188a..01ea63c428 100644
--- a/disas/cris.c
+++ b/disas/cris.c
@@ -1234,6 +1234,7 @@ cris_cc_strings[] =
#endif
/* Sometimes we prefix all registers with this character. */
+#define REGISTER_PREFIX "$"
#define REGISTER_PREFIX_CHAR '$'
enum cris_disass_family
@@ -1669,26 +1670,31 @@ format_dec(long number, GString *str, int signedp)
static void
format_reg(enum cris_disass_family distype, int regno, GString *str)
{
- g_string_append_c(str, REGISTER_PREFIX_CHAR);
+ static const char reg_names[16][5] = {
+ REGISTER_PREFIX "r0",
+ REGISTER_PREFIX "r1",
+ REGISTER_PREFIX "r2",
+ REGISTER_PREFIX "r3",
+ REGISTER_PREFIX "r4",
+ REGISTER_PREFIX "r5",
+ REGISTER_PREFIX "r6",
+ REGISTER_PREFIX "r7",
+ REGISTER_PREFIX "r8",
+ REGISTER_PREFIX "r9",
+ REGISTER_PREFIX "r10",
+ REGISTER_PREFIX "r11",
+ REGISTER_PREFIX "r12",
+ REGISTER_PREFIX "r13",
+ REGISTER_PREFIX "sp",
+ REGISTER_PREFIX "pc",
+ };
+ const char *name = reg_names[regno];
- switch (regno)
- {
- case 15:
- /* For v32, there is no context in which we output PC. */
- if (distype == cris_dis_v32)
- g_string_append(str, "acr");
- else
- g_string_append(str, "pc");
- break;
+ /* For v32, there is no context in which we output PC. */
+ if (regno == 15 && distype == cris_dis_v32)
+ name = REGISTER_PREFIX "acr";
- case 14:
- g_string_append(str, "sp");
- break;
-
- default:
- g_string_append_printf(str, "r%d", regno);
- break;
- }
+ g_string_append(str, name);
}
/* Format the name of a support register into outbuffer. */
@@ -1861,8 +1867,7 @@ print_with_operands(const struct cris_opcode *opcodep,
break;
case 'A':
- g_string_append_c(str, REGISTER_PREFIX_CHAR);
- g_string_append(str, "acr");
+ g_string_append(str, REGISTER_PREFIX "acr");
break;
case '[':
--
2.34.1
- [PATCH 0/6] disas/cris: Use GString instead of sprintf, Richard Henderson, 2024/04/13
- [PATCH 2/6] disas/cris: Remove TRACE_CASE and related code, Richard Henderson, 2024/04/13
- [PATCH 3/6] disas/cris: Drop with_reg_prefix, Richard Henderson, 2024/04/13
- [PATCH 1/6] disas/cris: Untabify, Richard Henderson, 2024/04/13
- [PATCH 4/6] disas/cris: Use GString in print_with_operands and subroutines, Richard Henderson, 2024/04/13
- [PATCH 6/6] disas/cris: Improve output of register names,
Richard Henderson <=
- [PATCH 5/6] disas/cris: Remove struct cris_disasm_data, Richard Henderson, 2024/04/13
- Re: [PATCH 0/6] disas/cris: Use GString instead of sprintf, Peter Maydell, 2024/04/13
- Re: [PATCH 0/6] disas/cris: Use GString instead of sprintf, Edgar E. Iglesias, 2024/04/16