aboutsummaryrefslogtreecommitdiff
path: root/gdbsupport/gdb-hashtab.cc
diff options
context:
space:
mode:
authorTom Tromey <tromey@adacore.com>2024-06-05 09:51:08 -0600
committerTom Tromey <tromey@adacore.com>2024-06-24 09:11:30 -0600
commit9f71296fda412c315a8dde05b51d5163e3e2e53c (patch)
tree3793c2a6efba6c4c9baa84d93eb217ff2d15a303 /gdbsupport/gdb-hashtab.cc
parent4122e647d571b35b4aba73ec481bc2d72d193e54 (diff)
downloadbinutils-9f71296fda412c315a8dde05b51d5163e3e2e53c.zip
binutils-9f71296fda412c315a8dde05b51d5163e3e2e53c.tar.gz
binutils-9f71296fda412c315a8dde05b51d5163e3e2e53c.tar.bz2
Remove hashtab_obstack_allocate
I think that hashtabs should never be obstack-allocated. In the past this was convenient sometimes, because any new data structure needed a corresponding cleanup. However, with the switch to C++, resource management has become much simpler; for example, a local variable can simply be of type htab_up rather than hashtab_t, and the problem is solved. This patch removes hashtab_obstack_allocate to try to prevent this anti-pattern from being used again.
Diffstat (limited to 'gdbsupport/gdb-hashtab.cc')
-rw-r--r--gdbsupport/gdb-hashtab.cc43
1 files changed, 0 insertions, 43 deletions
diff --git a/gdbsupport/gdb-hashtab.cc b/gdbsupport/gdb-hashtab.cc
deleted file mode 100644
index 42f80fa..0000000
--- a/gdbsupport/gdb-hashtab.cc
+++ /dev/null
@@ -1,43 +0,0 @@
-/* Hash table wrappers for gdb.
- Copyright (C) 2021-2024 Free Software Foundation, Inc.
-
- This file is part of GDB.
-
- This program is free software; you can redistribute it and/or modify
- it under the terms of the GNU General Public License as published by
- the Free Software Foundation; either version 3 of the License, or
- (at your option) any later version.
-
- This program is distributed in the hope that it will be useful,
- but WITHOUT ANY WARRANTY; without even the implied warranty of
- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- GNU General Public License for more details.
-
- You should have received a copy of the GNU General Public License
- along with this program. If not, see <http://www.gnu.org/licenses/>. */
-
-#include "gdb-hashtab.h"
-
-/* Allocation function for the libiberty hash table which uses an
- obstack. The obstack is passed as DATA. */
-
-void *
-hashtab_obstack_allocate (void *data, size_t size, size_t count)
-{
- size_t total = size * count;
- void *ptr = obstack_alloc ((struct obstack *) data, total);
-
- memset (ptr, 0, total);
- return ptr;
-}
-
-/* Trivial deallocation function for the libiberty splay tree and hash
- table - don't deallocate anything. Rely on later deletion of the
- obstack. DATA will be the obstack, although it is not needed
- here. */
-
-void
-dummy_obstack_deallocate (void *object, void *data)
-{
- return;
-}