]> git.ipfire.org Git - thirdparty/gcc.git/blame - include/splay-tree.h
longlong.h (__i386__): Remove W_TYPE_SIZE==64 handling.
[thirdparty/gcc.git] / include / splay-tree.h
CommitLineData
52e90c55 1/* A splay-tree datatype.
a9429e29 2 Copyright 1998, 1999, 2000, 2002, 2005, 2007, 2009, 2010
e25ea117 3 Free Software Foundation, Inc.
52e90c55
MM
4 Contributed by Mark Mitchell (mark@markmitchell.com).
5
eb8f7caf 6 This file is part of GCC.
52e90c55 7
eb8f7caf
KT
8 GCC is free software; you can redistribute it and/or modify it
9 under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2, or (at your option)
11 any later version.
916a8c46 12
eb8f7caf
KT
13 GCC is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 General Public License for more details.
916a8c46 17
eb8f7caf
KT
18 You should have received a copy of the GNU General Public License
19 along with GCC; see the file COPYING. If not, write to
20 the Free Software Foundation, 51 Franklin Street - Fifth Floor,
21 Boston, MA 02110-1301, USA. */
916a8c46
JL
22
23/* For an easily readable description of splay-trees, see:
52e90c55
MM
24
25 Lewis, Harry R. and Denenberg, Larry. Data Structures and Their
26 Algorithms. Harper-Collins, Inc. 1991.
27
28 The major feature of splay trees is that all basic tree operations
29 are amortized O(log n) time for a tree with n nodes. */
30
31#ifndef _SPLAY_TREE_H
32#define _SPLAY_TREE_H
33
34#ifdef __cplusplus
35extern "C" {
36#endif /* __cplusplus */
37
8ff82b06 38#include "ansidecl.h"
52e90c55 39
5973ae1a
TG
40#ifdef HAVE_STDINT_H
41#include <stdint.h>
428b80d5 42#endif
5973ae1a
TG
43#ifdef HAVE_INTTYPES_H
44#include <inttypes.h>
eb8f7caf
KT
45#endif
46
17211ab5
GK
47#ifndef GTY
48#define GTY(X)
49#endif
50
52e90c55
MM
51/* Use typedefs for the key and data types to facilitate changing
52 these types, if necessary. These types should be sufficiently wide
53 that any pointer or scalar can be cast to these types, and then
54 cast back, without loss of precision. */
5973ae1a
TG
55typedef uintptr_t splay_tree_key;
56typedef uintptr_t splay_tree_value;
52e90c55
MM
57
58/* Forward declaration for a node in the tree. */
08230f26 59typedef struct splay_tree_node_s *splay_tree_node;
52e90c55
MM
60
61/* The type of a function which compares two splay-tree keys. The
62 function should return values as for qsort. */
885f2199 63typedef int (*splay_tree_compare_fn) (splay_tree_key, splay_tree_key);
52e90c55
MM
64
65/* The type of a function used to deallocate any resources associated
66 with the key. */
885f2199 67typedef void (*splay_tree_delete_key_fn) (splay_tree_key);
52e90c55
MM
68
69/* The type of a function used to deallocate any resources associated
70 with the value. */
885f2199 71typedef void (*splay_tree_delete_value_fn) (splay_tree_value);
52e90c55
MM
72
73/* The type of a function used to iterate over the tree. */
885f2199 74typedef int (*splay_tree_foreach_fn) (splay_tree_node, void*);
52e90c55 75
00c2f96f
JB
76/* The type of a function used to allocate memory for tree root and
77 node structures. The first argument is the number of bytes needed;
78 the second is a data pointer the splay tree functions pass through
79 to the allocator. This function must never return zero. */
8766be86 80typedef void *(*splay_tree_allocate_fn) (int, void *);
00c2f96f
JB
81
82/* The type of a function used to free memory allocated using the
83 corresponding splay_tree_allocate_fn. The first argument is the
84 memory to be freed; the latter is a data pointer the splay tree
85 functions pass through to the freer. */
885f2199 86typedef void (*splay_tree_deallocate_fn) (void *, void *);
00c2f96f 87
52e90c55 88/* The nodes in the splay tree. */
d1b38208 89struct GTY(()) splay_tree_node_s {
52e90c55 90 /* The key. */
cfdfa110 91 splay_tree_key GTY ((use_param1)) key;
52e90c55
MM
92
93 /* The value. */
cfdfa110 94 splay_tree_value GTY ((use_param2)) value;
52e90c55
MM
95
96 /* The left and right children, respectively. */
cfdfa110
ZW
97 splay_tree_node GTY ((use_params)) left;
98 splay_tree_node GTY ((use_params)) right;
52e90c55
MM
99};
100
101/* The splay tree itself. */
d1b38208 102struct GTY(()) splay_tree_s {
52e90c55 103 /* The root of the tree. */
cfdfa110 104 splay_tree_node GTY ((use_params)) root;
52e90c55
MM
105
106 /* The comparision function. */
107 splay_tree_compare_fn comp;
108
109 /* The deallocate-key function. NULL if no cleanup is necessary. */
110 splay_tree_delete_key_fn delete_key;
111
112 /* The deallocate-value function. NULL if no cleanup is necessary. */
113 splay_tree_delete_value_fn delete_value;
00c2f96f 114
a9429e29 115 /* Node allocate function. Takes allocate_data as a parameter. */
00c2f96f 116 splay_tree_allocate_fn allocate;
a9429e29
LB
117
118 /* Free function for nodes and trees. Takes allocate_data as a parameter. */
00c2f96f 119 splay_tree_deallocate_fn deallocate;
a9429e29
LB
120
121 /* Parameter for allocate/free functions. */
8766be86 122 void * GTY((skip)) allocate_data;
17211ab5 123};
2826df06 124
17211ab5 125typedef struct splay_tree_s *splay_tree;
52e90c55 126
2826df06
UB
127extern splay_tree splay_tree_new (splay_tree_compare_fn,
128 splay_tree_delete_key_fn,
129 splay_tree_delete_value_fn);
885f2199 130extern splay_tree splay_tree_new_with_allocator (splay_tree_compare_fn,
2826df06
UB
131 splay_tree_delete_key_fn,
132 splay_tree_delete_value_fn,
133 splay_tree_allocate_fn,
134 splay_tree_deallocate_fn,
135 void *);
a9429e29
LB
136extern splay_tree splay_tree_new_typed_alloc (splay_tree_compare_fn,
137 splay_tree_delete_key_fn,
138 splay_tree_delete_value_fn,
139 splay_tree_allocate_fn,
140 splay_tree_allocate_fn,
141 splay_tree_deallocate_fn,
142 void *);
2826df06 143extern void splay_tree_delete (splay_tree);
885f2199 144extern splay_tree_node splay_tree_insert (splay_tree,
2826df06
UB
145 splay_tree_key,
146 splay_tree_value);
885f2199
GDR
147extern void splay_tree_remove (splay_tree, splay_tree_key);
148extern splay_tree_node splay_tree_lookup (splay_tree, splay_tree_key);
149extern splay_tree_node splay_tree_predecessor (splay_tree, splay_tree_key);
150extern splay_tree_node splay_tree_successor (splay_tree, splay_tree_key);
151extern splay_tree_node splay_tree_max (splay_tree);
152extern splay_tree_node splay_tree_min (splay_tree);
153extern int splay_tree_foreach (splay_tree, splay_tree_foreach_fn, void*);
154extern int splay_tree_compare_ints (splay_tree_key, splay_tree_key);
155extern int splay_tree_compare_pointers (splay_tree_key, splay_tree_key);
2826df06 156
52e90c55
MM
157#ifdef __cplusplus
158}
159#endif /* __cplusplus */
160
161#endif /* _SPLAY_TREE_H */