+
+ * regcache.c (init_register_cache): Initialize
+ regcache->register_status.
+ (free_register_cache): Release regcache->register_status.
+ (regcache_cpy): Copy register_status.
+ (registers_to_string): Print 'x's for unavailable registers.
+ (supply_register): Mark the register's status valid or
+ unavailable, depending on whether a buffer was passed in or not.
+ (supply_register_zeroed): New.
+ (supply_regblock): Mark the registers' status valid or
+ unavailable, depending on whether a buffer was passed in or not.
+ * regcache.h (REG_UNAVAILABLE, REG_VALID): New defines.
+ (struct regcache): New `register_status' field.
+ (supply_register_zeroed): Declare.
+ * i387-fp.c (i387_xsave_to_cache): Zero out registers using
+ supply_register_zeroed, rather than passing a NULL buffer to
+ supply_register.
+ * tracepoint.c (fetch_traceframe_registers): Update comment.
+
* i387-fp.c (i387_xsave_to_cache): Make passing NULL as register
garbage. */
regcache->registers = xcalloc (1, register_bytes);
regcache->registers_owned = 1;
+ regcache->register_status = xcalloc (1, num_registers);
+ gdb_assert (REG_UNAVAILABLE == 0);
}
else
#else
{
regcache->registers = regbuf;
regcache->registers_owned = 0;
+#ifndef IN_PROCESS_AGENT
+ regcache->register_status = NULL;
+#endif
}
regcache->registers_valid = 0;
{
if (regcache->registers_owned)
free (regcache->registers);
+ free (regcache->register_status);
free (regcache);
}
}
regcache_cpy (struct regcache *dst, struct regcache *src)
{
memcpy (dst->registers, src->registers, register_bytes);
+#ifndef IN_PROCESS_AGENT
+ if (dst->register_status != NULL && src->register_status != NULL)
+ memcpy (dst->register_status, src->register_status, num_registers);
+#endif
dst->registers_valid = src->registers_valid;
}
registers_to_string (struct regcache *regcache, char *buf)
{
unsigned char *registers = regcache->registers;
+ int i;
- convert_int_to_ascii (registers, buf, register_bytes);
+ for (i = 0; i < num_registers; i++)
+ {
+ if (regcache->register_status[i] == REG_VALID)
+ {
+ convert_int_to_ascii (registers, buf, register_size (i));
+ buf += register_size (i) * 2;
+ }
+ else
+ {
+ memset (buf, 'x', register_size (i) * 2);
+ buf += register_size (i) * 2;
+ }
+ registers += register_size (i);
+ }
+ *buf = '\0';
}
void
return regcache->registers + (reg_defs[n].offset / 8);
}
+/* Supply register N, whose contents are stored in BUF, to REGCACHE.
+ If BUF is NULL, the register's value is recorded as
+ unavailable. */
+
void
supply_register (struct regcache *regcache, int n, const void *buf)
{
if (buf)
- memcpy (register_data (regcache, n, 0), buf, register_size (n));
+ {
+ memcpy (register_data (regcache, n, 0), buf, register_size (n));
+#ifndef IN_PROCESS_AGENT
+ if (regcache->register_status != NULL)
+ regcache->register_status[n] = REG_VALID;
+#endif
+ }
else
- memset (register_data (regcache, n, 0), 0, register_size (n));
+ {
+ memset (register_data (regcache, n, 0), 0, register_size (n));
+#ifndef IN_PROCESS_AGENT
+ if (regcache->register_status != NULL)
+ regcache->register_status[n] = REG_UNAVAILABLE;
+#endif
+ }
}
+/* Supply register N with value zero to REGCACHE. */
+
+void
+supply_register_zeroed (struct regcache *regcache, int n)
+{
+ memset (register_data (regcache, n, 0), 0, register_size (n));
+#ifndef IN_PROCESS_AGENT
+ if (regcache->register_status != NULL)
+ regcache->register_status[n] = REG_VALID;
+#endif
+}
+
+/* Supply the whole register set whose contents are stored in BUF, to
+ REGCACHE. If BUF is NULL, all the registers' values are recorded
+ as unavailable. */
+
void
supply_regblock (struct regcache *regcache, const void *buf)
{
if (buf)
- memcpy (regcache->registers, buf, register_bytes);
+ {
+ memcpy (regcache->registers, buf, register_bytes);
+#ifndef IN_PROCESS_AGENT
+ {
+ int i;
+
+ for (i = 0; i < num_registers; i++)
+ regcache->register_status[i] = REG_VALID;
+ }
+#endif
+ }
else
- memset (regcache->registers, 0, register_bytes);
+ {
+ memset (regcache->registers, 0, register_bytes);
+#ifndef IN_PROCESS_AGENT
+ {
+ int i;
+
+ for (i = 0; i < num_registers; i++)
+ regcache->register_status[i] = REG_UNAVAILABLE;
+ }
+#endif
+ }
}
#ifndef IN_PROCESS_AGENT
struct inferior_list_entry;
struct thread_info;
+/* The register exists, it has a value, but we don't know what it is.
+ Used when inspecting traceframes. */
+#define REG_UNAVAILABLE 0
+
+/* We know the register's value (and we have it cached). */
+#define REG_VALID 1
+
/* The data for the register cache. Note that we have one per
inferior; this is primarily for simplicity, as the performance
benefit is minimal. */
struct regcache
{
+ /* Whether the REGISTERS buffer's contents are valid. If false, we
+ haven't fetched the registers from the target yet. Not that this
+ register cache is _not_ pass-through, unlike GDB's. Note that
+ "valid" here is unrelated to whether the registers are available
+ in a traceframe. For that, check REGISTER_STATUS below. */
int registers_valid;
int registers_owned;
unsigned char *registers;
+#ifndef IN_PROCESS_AGENT
+ /* One of REG_UNAVAILBLE or REG_VALID. */
+ unsigned char *register_status;
+#endif
};
struct regcache *init_register_cache (struct regcache *regcache,
void supply_register (struct regcache *regcache, int n, const void *buf);
+void supply_register_zeroed (struct regcache *regcache, int n);
+
void supply_register_by_name (struct regcache *regcache,
const char *name, const void *buf);