diff options
author | Tom Tromey <tom@tromey.com> | 2021-12-21 16:48:38 -0700 |
---|---|---|
committer | Tom Tromey <tom@tromey.com> | 2022-01-18 10:14:43 -0700 |
commit | 0589ca4e7ba9b8d60599706b57be22c007c1f4fa (patch) | |
tree | 7fdde22953de4f48839190426acf158768445dc4 /gdbsupport/gdb-hashtab.h | |
parent | bf31fd38f02ca9b1a7d75e2d00ee0af665fd3efd (diff) | |
download | gdb-0589ca4e7ba9b8d60599706b57be22c007c1f4fa.zip gdb-0589ca4e7ba9b8d60599706b57be22c007c1f4fa.tar.gz gdb-0589ca4e7ba9b8d60599706b57be22c007c1f4fa.tar.bz2 |
Introduce gdb-hashtab module in gdbsupport
gdb has some extensions and helpers for working with the libiberty
hash table. This patch consolidates these and moves them to
gdbsupport.
Diffstat (limited to 'gdbsupport/gdb-hashtab.h')
-rw-r--r-- | gdbsupport/gdb-hashtab.h | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/gdbsupport/gdb-hashtab.h b/gdbsupport/gdb-hashtab.h new file mode 100644 index 0000000..65c2dc5 --- /dev/null +++ b/gdbsupport/gdb-hashtab.h @@ -0,0 +1,50 @@ +/* Hash table wrappers for gdb. + Copyright (C) 2021 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/>. */ + +#ifndef GDBSUPPORT_GDB_HASHTAB_H +#define GDBSUPPORT_GDB_HASHTAB_H + +#include "hashtab.h" + +/* A deleter for a hash table. */ +struct htab_deleter +{ + void operator() (htab *ptr) const + { + htab_delete (ptr); + } +}; + +/* A unique_ptr wrapper for htab_t. */ +typedef std::unique_ptr<htab, htab_deleter> htab_up; + +/* A wrapper for 'delete' that can used as a hash table entry deletion + function. */ +template<typename T> +void +htab_delete_entry (void *ptr) +{ + delete (T *) ptr; +} + +/* Allocation and deallocation functions for the libiberty hash table + which use obstacks. */ +void *hashtab_obstack_allocate (void *data, size_t size, size_t count); +void dummy_obstack_deallocate (void *object, void *data); + +#endif /* GDBSUPPORT_GDB_HASHTAB_H */ |