2015-09-02 Patrick Palka <patrick@parcs.ath.cx>
+ * gdb_obstack.h (obstack_strdup): Declare.
+ * gdb_obstack.c (obstack_strdup): Define.
+ * gdbarch.sh (gdbarch_obstack_strdup): Declare and define.
+ * gdbarch.c: Regenerate.
+ * gdbarch.h: Regenerate.
+ * gdbtypes.c (arch_type): Use gdbarch_obstack_strdup.
+
+2015-09-02 Patrick Palka <patrick@parcs.ath.cx>
+
* gdbtypes.c (copy_type_recursive): Update documentation.
2015-09-01 Sergio Durigan Junior <sergiodj@redhat.com>
return obstack_finish (obstackp);
}
+
+/* See gdb_obstack.h. */
+
+char *
+obstack_strdup (struct obstack *obstackp, const char *string)
+{
+ char *obstring = obstack_alloc (obstackp, strlen (string) + 1);
+ strcpy (obstring, string);
+ return obstring;
+}
extern char *obconcat (struct obstack *obstackp, ...) ATTRIBUTE_SENTINEL;
+/* Duplicate STRING, returning an equivalent string that's allocated on the
+ obstack OBSTACKP. */
+
+extern char *obstack_strdup (struct obstack *obstackp, const char *string);
+
#endif
return data;
}
+/* See gdbarch.h. */
+
+char *
+gdbarch_obstack_strdup (struct gdbarch *arch, const char *string)
+{
+ return obstack_strdup (arch->obstack, string);
+}
+
/* Free a gdbarch struct. This should never happen in normal
operation --- once you've created a gdbarch, you keep it around.
#define GDBARCH_OBSTACK_CALLOC(GDBARCH, NR, TYPE) ((TYPE *) gdbarch_obstack_zalloc ((GDBARCH), (NR) * sizeof (TYPE)))
#define GDBARCH_OBSTACK_ZALLOC(GDBARCH, TYPE) ((TYPE *) gdbarch_obstack_zalloc ((GDBARCH), sizeof (TYPE)))
+/* Duplicate STRING, returning an equivalent string that's allocated on the
+ obstack associated with GDBARCH. The string is freed when the corresponding
+ architecture is also freed. */
+
+extern char *gdbarch_obstack_strdup (struct gdbarch *arch, const char *string);
/* Helper function. Force an update of the current architecture.
#define GDBARCH_OBSTACK_CALLOC(GDBARCH, NR, TYPE) ((TYPE *) gdbarch_obstack_zalloc ((GDBARCH), (NR) * sizeof (TYPE)))
#define GDBARCH_OBSTACK_ZALLOC(GDBARCH, TYPE) ((TYPE *) gdbarch_obstack_zalloc ((GDBARCH), sizeof (TYPE)))
+/* Duplicate STRING, returning an equivalent string that's allocated on the
+ obstack associated with GDBARCH. The string is freed when the corresponding
+ architecture is also freed. */
+
+extern char *gdbarch_obstack_strdup (struct gdbarch *arch, const char *string);
/* Helper function. Force an update of the current architecture.
return data;
}
+/* See gdbarch.h. */
+
+char *
+gdbarch_obstack_strdup (struct gdbarch *arch, const char *string)
+{
+ return obstack_strdup (arch->obstack, string);
+}
+
/* Free a gdbarch struct. This should never happen in normal
operation --- once you've created a gdbarch, you keep it around.
TYPE_LENGTH (type) = length;
if (name)
- TYPE_NAME (type) = xstrdup (name);
+ TYPE_NAME (type) = gdbarch_obstack_strdup (gdbarch, name);
return type;
}