diff options
author | Tom Tromey <tromey@adacore.com> | 2024-03-20 13:24:33 -0600 |
---|---|---|
committer | Tom Tromey <tromey@adacore.com> | 2024-06-04 10:13:17 -0600 |
commit | 7149dfe819b16c0238fb67f55a47e9295c20ff1b (patch) | |
tree | 3d6e0285ec95cfd5ca444fb077deb6d17ac884ca /gdb/macrotab.c | |
parent | 56fefe83f7e607842fa95f6bb7d71f1645ce6c15 (diff) | |
download | binutils-7149dfe819b16c0238fb67f55a47e9295c20ff1b.zip binutils-7149dfe819b16c0238fb67f55a47e9295c20ff1b.tar.gz binutils-7149dfe819b16c0238fb67f55a47e9295c20ff1b.tar.bz2 |
Make bcache more type-safe
The bcache uses memcpy to make copies of the data passed to it. In
C++, this is only safe for trivially-copyable types.
This patch changes bcache to require this property, and slightly
changes the API to make it easier to use when copying a single object.
It also makes the new 'insert' template methods return the correct
type.
Diffstat (limited to 'gdb/macrotab.c')
-rw-r--r-- | gdb/macrotab.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/gdb/macrotab.c b/gdb/macrotab.c index f2012da..3a7f792 100644 --- a/gdb/macrotab.c +++ b/gdb/macrotab.c @@ -109,8 +109,9 @@ macro_free (void *object, struct macro_table *t) /* If the macro table T has a bcache, then cache the LEN bytes at ADDR there, and return the cached copy. Otherwise, just xmalloc a copy of the bytes, and return a pointer to that. */ -static const void * -macro_bcache (struct macro_table *t, const void *addr, int len) +template<typename U> +static const U * +macro_bcache (struct macro_table *t, const U *addr, int len) { if (t->bcache) return t->bcache->insert (addr, len); @@ -119,7 +120,7 @@ macro_bcache (struct macro_table *t, const void *addr, int len) void *copy = xmalloc (len); memcpy (copy, addr, len); - return copy; + return (const U *) copy; } } @@ -130,7 +131,7 @@ macro_bcache (struct macro_table *t, const void *addr, int len) static const char * macro_bcache_str (struct macro_table *t, const char *s) { - return (const char *) macro_bcache (t, s, strlen (s) + 1); + return macro_bcache (t, s, strlen (s) + 1); } @@ -571,8 +572,7 @@ new_macro_definition (struct macro_table *t, cached_argv[i] = macro_bcache_str (t, argv[i]); /* Now bcache the array of argument pointers itself. */ - d->argv = ((const char * const *) - macro_bcache (t, cached_argv, cached_argv_size)); + d->argv = macro_bcache (t, cached_argv, cached_argv_size); } /* We don't bcache the entire definition structure because it's got |