diff options
author | Yao Qi <yao.qi@linaro.org> | 2017-05-23 09:06:55 +0100 |
---|---|---|
committer | Yao Qi <yao.qi@linaro.org> | 2017-06-20 11:34:12 +0100 |
commit | fdaa7052f666655b3e0b1c64957fbff5a3358294 (patch) | |
tree | 90ec496328cac93493d84ba15d9f03cd1218f0e7 | |
parent | 73fa9c98e14d6edc57a1cc0a9b428cb6c090c2e9 (diff) | |
download | gdb-fdaa7052f666655b3e0b1c64957fbff5a3358294.zip gdb-fdaa7052f666655b3e0b1c64957fbff5a3358294.tar.gz gdb-fdaa7052f666655b3e0b1c64957fbff5a3358294.tar.bz2 |
Adjust code generated by regformats/regdat.sh
regformats/regdat.sh generate some *-generated.c files when GDBserver
is built. Each .c file has some static variables, which are only used
within function init_registers_XXX, like this,
static struct reg regs_i386_linux[] = {
{ "eax", 0, 32 },
{ "ecx", 32, 32 },
...
};
static const char *expedite_regs_i386_linux[] = { "ebp", "esp", "eip", 0 };
static const char *xmltarget_i386_linux = "i386-linux.xml";
void
init_registers_i386_linux (void)
{
...
}
This patch moves these static variables' definitions to function
init_registers_XXX, so the generated files look like this,
void
init_registers_i386_linux (void)
{
static struct target_desc tdesc_i386_linux_s;
struct target_desc *result = &tdesc_i386_linux_s;
static struct reg regs_i386_linux[] = {
...
};
static const char *expedite_regs_i386_linux[] = { "ebp", "esp", "eip", 0 };
static const char *xmltarget_i386_linux = "i386-linux.xml";
...
}
gdb:
2017-06-06 Yao Qi <yao.qi@linaro.org>
* regformats/regdat.sh: Adjust code order.
-rwxr-xr-x | gdb/regformats/regdat.sh | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/gdb/regformats/regdat.sh b/gdb/regformats/regdat.sh index 651f703..2c764cd 100755 --- a/gdb/regformats/regdat.sh +++ b/gdb/regformats/regdat.sh @@ -123,6 +123,15 @@ while do_read do if test "${type}" = "name"; then name="${entry}" + + echo "const struct target_desc *tdesc_${name};" + echo "" + echo "void" + echo "init_registers_${name} (void)" + echo "{" + echo " static struct target_desc tdesc_${name}_s;" + echo " struct target_desc *result = &tdesc_${name}_s;" + echo "static struct reg regs_${name}[] = {" continue elif test "${type}" = "xmltarget"; then @@ -169,14 +178,6 @@ fi echo cat <<EOF -const struct target_desc *tdesc_${name}; - -void -init_registers_${name} (void) -{ - static struct target_desc tdesc_${name}_s; - struct target_desc *result = &tdesc_${name}_s; - result->reg_defs = regs_${name}; result->num_registers = sizeof (regs_${name}) / sizeof (regs_${name}[0]); |