mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-09-17 05:36:12 +08:00
aarch64-fbsd: Use a static regset for the TLS register set.
This uses custom collect/supply regset handlers which pass the TLS register number from the gdbarch_tdep as the base register number. Approved-By: Simon Marchi <simon.marchi@efficios.com>
This commit is contained in:
@ -92,22 +92,8 @@ aarch64_fbsd_nat_target::fetch_registers (struct regcache *regcache,
|
|||||||
gdbarch *gdbarch = regcache->arch ();
|
gdbarch *gdbarch = regcache->arch ();
|
||||||
aarch64_gdbarch_tdep *tdep = gdbarch_tdep<aarch64_gdbarch_tdep> (gdbarch);
|
aarch64_gdbarch_tdep *tdep = gdbarch_tdep<aarch64_gdbarch_tdep> (gdbarch);
|
||||||
if (tdep->has_tls ())
|
if (tdep->has_tls ())
|
||||||
{
|
|
||||||
const struct regcache_map_entry aarch64_fbsd_tls_regmap[] =
|
|
||||||
{
|
|
||||||
{ 1, tdep->tls_regnum, 8 },
|
|
||||||
{ 0 }
|
|
||||||
};
|
|
||||||
|
|
||||||
const struct regset aarch64_fbsd_tls_regset =
|
|
||||||
{
|
|
||||||
aarch64_fbsd_tls_regmap,
|
|
||||||
regcache_supply_regset, regcache_collect_regset
|
|
||||||
};
|
|
||||||
|
|
||||||
fetch_regset<uint64_t> (regcache, regnum, NT_ARM_TLS,
|
fetch_regset<uint64_t> (regcache, regnum, NT_ARM_TLS,
|
||||||
&aarch64_fbsd_tls_regset);
|
&aarch64_fbsd_tls_regset, tdep->tls_regnum);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Store register REGNUM back into the inferior. If REGNUM is -1, do
|
/* Store register REGNUM back into the inferior. If REGNUM is -1, do
|
||||||
@ -125,22 +111,8 @@ aarch64_fbsd_nat_target::store_registers (struct regcache *regcache,
|
|||||||
gdbarch *gdbarch = regcache->arch ();
|
gdbarch *gdbarch = regcache->arch ();
|
||||||
aarch64_gdbarch_tdep *tdep = gdbarch_tdep<aarch64_gdbarch_tdep> (gdbarch);
|
aarch64_gdbarch_tdep *tdep = gdbarch_tdep<aarch64_gdbarch_tdep> (gdbarch);
|
||||||
if (tdep->has_tls ())
|
if (tdep->has_tls ())
|
||||||
{
|
|
||||||
const struct regcache_map_entry aarch64_fbsd_tls_regmap[] =
|
|
||||||
{
|
|
||||||
{ 1, tdep->tls_regnum, 8 },
|
|
||||||
{ 0 }
|
|
||||||
};
|
|
||||||
|
|
||||||
const struct regset aarch64_fbsd_tls_regset =
|
|
||||||
{
|
|
||||||
aarch64_fbsd_tls_regmap,
|
|
||||||
regcache_supply_regset, regcache_collect_regset
|
|
||||||
};
|
|
||||||
|
|
||||||
store_regset<uint64_t> (regcache, regnum, NT_ARM_TLS,
|
store_regset<uint64_t> (regcache, regnum, NT_ARM_TLS,
|
||||||
&aarch64_fbsd_tls_regset);
|
&aarch64_fbsd_tls_regset, tdep->tls_regnum);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Implement the target read_description method. */
|
/* Implement the target read_description method. */
|
||||||
|
@ -50,6 +50,14 @@ static const struct regcache_map_entry aarch64_fbsd_fpregmap[] =
|
|||||||
{ 0 }
|
{ 0 }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
/* Register numbers are relative to tdep->tls_regnum. */
|
||||||
|
|
||||||
|
static const struct regcache_map_entry aarch64_fbsd_tls_regmap[] =
|
||||||
|
{
|
||||||
|
{ 1, 0, 8 }, /* tpidr */
|
||||||
|
{ 0 }
|
||||||
|
};
|
||||||
|
|
||||||
/* In a signal frame, sp points to a 'struct sigframe' which is
|
/* In a signal frame, sp points to a 'struct sigframe' which is
|
||||||
defined as:
|
defined as:
|
||||||
|
|
||||||
@ -135,6 +143,34 @@ const struct regset aarch64_fbsd_fpregset =
|
|||||||
regcache_supply_regset, regcache_collect_regset
|
regcache_supply_regset, regcache_collect_regset
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static void
|
||||||
|
aarch64_fbsd_supply_tls_regset (const struct regset *regset,
|
||||||
|
struct regcache *regcache,
|
||||||
|
int regnum, const void *buf, size_t size)
|
||||||
|
{
|
||||||
|
struct gdbarch *gdbarch = regcache->arch ();
|
||||||
|
aarch64_gdbarch_tdep *tdep = gdbarch_tdep<aarch64_gdbarch_tdep> (gdbarch);
|
||||||
|
|
||||||
|
regcache->supply_regset (regset, tdep->tls_regnum, regnum, buf, size);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void
|
||||||
|
aarch64_fbsd_collect_tls_regset (const struct regset *regset,
|
||||||
|
const struct regcache *regcache,
|
||||||
|
int regnum, void *buf, size_t size)
|
||||||
|
{
|
||||||
|
struct gdbarch *gdbarch = regcache->arch ();
|
||||||
|
aarch64_gdbarch_tdep *tdep = gdbarch_tdep<aarch64_gdbarch_tdep> (gdbarch);
|
||||||
|
|
||||||
|
regcache->collect_regset (regset, tdep->tls_regnum, regnum, buf, size);
|
||||||
|
}
|
||||||
|
|
||||||
|
const struct regset aarch64_fbsd_tls_regset =
|
||||||
|
{
|
||||||
|
aarch64_fbsd_tls_regmap,
|
||||||
|
aarch64_fbsd_supply_tls_regset, aarch64_fbsd_collect_tls_regset
|
||||||
|
};
|
||||||
|
|
||||||
/* Implement the "iterate_over_regset_sections" gdbarch method. */
|
/* Implement the "iterate_over_regset_sections" gdbarch method. */
|
||||||
|
|
||||||
static void
|
static void
|
||||||
@ -151,23 +187,9 @@ aarch64_fbsd_iterate_over_regset_sections (struct gdbarch *gdbarch,
|
|||||||
&aarch64_fbsd_fpregset, NULL, cb_data);
|
&aarch64_fbsd_fpregset, NULL, cb_data);
|
||||||
|
|
||||||
if (tdep->has_tls ())
|
if (tdep->has_tls ())
|
||||||
{
|
|
||||||
const struct regcache_map_entry aarch64_fbsd_tls_regmap[] =
|
|
||||||
{
|
|
||||||
{ 1, tdep->tls_regnum, 8 },
|
|
||||||
{ 0 }
|
|
||||||
};
|
|
||||||
|
|
||||||
const struct regset aarch64_fbsd_tls_regset =
|
|
||||||
{
|
|
||||||
aarch64_fbsd_tls_regmap,
|
|
||||||
regcache_supply_regset, regcache_collect_regset
|
|
||||||
};
|
|
||||||
|
|
||||||
cb (".reg-aarch-tls", AARCH64_FBSD_SIZEOF_TLSREGSET,
|
cb (".reg-aarch-tls", AARCH64_FBSD_SIZEOF_TLSREGSET,
|
||||||
AARCH64_FBSD_SIZEOF_TLSREGSET, &aarch64_fbsd_tls_regset,
|
AARCH64_FBSD_SIZEOF_TLSREGSET, &aarch64_fbsd_tls_regset,
|
||||||
"TLS register", cb_data);
|
"TLS register", cb_data);
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Implement the "core_read_description" gdbarch method. */
|
/* Implement the "core_read_description" gdbarch method. */
|
||||||
|
@ -37,5 +37,6 @@
|
|||||||
|
|
||||||
extern const struct regset aarch64_fbsd_gregset;
|
extern const struct regset aarch64_fbsd_gregset;
|
||||||
extern const struct regset aarch64_fbsd_fpregset;
|
extern const struct regset aarch64_fbsd_fpregset;
|
||||||
|
extern const struct regset aarch64_fbsd_tls_regset;
|
||||||
|
|
||||||
#endif /* AARCH64_FBSD_TDEP_H */
|
#endif /* AARCH64_FBSD_TDEP_H */
|
||||||
|
Reference in New Issue
Block a user