1 /* Set operations on pointers
2 Copyright (C) 2004-2014 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
24 /* A pointer set is represented as a simple open-addressing hash
25 table. Simplifications: The hash code is based on the value of the
26 pointer, not what it points to. The number of buckets is always a
27 power of 2. Null pointers are a reserved value. Deletion is not
28 supported (yet). There is no mechanism for user control of hash
29 function, equality comparison, initial size, or resizing policy. */
34 size_t n_slots
; /* n_slots = 2^log_slots */
39 struct pointer_set_t
*pointer_set_create (void);
40 void pointer_set_destroy (struct pointer_set_t
*pset
);
41 int pointer_set_contains (const struct pointer_set_t
*pset
, const void *p
);
42 int pointer_set_insert (struct pointer_set_t
*pset
, const void *p
);
43 void pointer_set_traverse (const struct pointer_set_t
*,
44 bool (*) (const void *, void *),
46 bool pointer_set_lookup (const pointer_set_t
*, const void *, size_t *);
50 pointer_map_t
*pointer_map_create (void);
51 void pointer_map_destroy (pointer_map_t
*pmap
);
53 void **pointer_map_contains (const pointer_map_t
*pmap
, const void *p
);
54 void **pointer_map_insert (pointer_map_t
*pmap
, const void *p
);
55 void pointer_map_traverse (const pointer_map_t
*,
56 bool (*) (const void *, void **, void *), void *);
59 #endif /* POINTER_SET_H */