diff options
author | Yao Qi <yao.qi@linaro.org> | 2017-09-05 09:54:52 +0100 |
---|---|---|
committer | Yao Qi <yao.qi@linaro.org> | 2017-09-05 09:54:52 +0100 |
commit | c9a5e2a5b2b20d83f60026459d3a6b68481566c9 (patch) | |
tree | 4d502a6f87b1e858e92ca8862607dc443a1dd8f9 /COPYING.LIBGLOSS | |
parent | d6b687ac7a2bfd0c3962f45ea5e1a72310f4e07e (diff) | |
download | gdb-c9a5e2a5b2b20d83f60026459d3a6b68481566c9.zip gdb-c9a5e2a5b2b20d83f60026459d3a6b68481566c9.tar.gz gdb-c9a5e2a5b2b20d83f60026459d3a6b68481566c9.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";
...
}
We want GDBserver create target descriptions dynamically in each
init_registers_XXXX functions, so this patch moves all the related code
into function init_registers_XXXX, so that the following patch can easily
change function init_registers_XXXX to create target description
dynamically, rather than using current pre-generated array.
gdb:
2017-09-05 Yao Qi <yao.qi@linaro.org>
* regformats/regdat.sh: Adjust code order.
Diffstat (limited to 'COPYING.LIBGLOSS')
0 files changed, 0 insertions, 0 deletions