]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - include/splay-tree.h
2009-10-23 Kai Tietz <kai.tietz@onevision.com>
[thirdparty/binutils-gdb.git] / include / splay-tree.h
CommitLineData
252b5132 1/* A splay-tree datatype.
8139c7d4
AM
2 Copyright 1998, 1999, 2000, 2002, 2005, 2007, 2009
3 Free Software Foundation, Inc.
252b5132
RH
4 Contributed by Mark Mitchell (mark@markmitchell.com).
5
d2df793a 6 This file is part of GCC.
252b5132 7
d2df793a
NC
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.
252b5132 12
d2df793a
NC
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.
252b5132 17
d2df793a
NC
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. */
252b5132
RH
22
23/* For an easily readable description of splay-trees, see:
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
007425f1 38#include "ansidecl.h"
252b5132 39
d2df793a 40#ifndef _WIN64
31a55cbe
DD
41 typedef unsigned long int libi_uhostptr_t;
42 typedef long int libi_shostptr_t;
d2df793a 43#else
31a55cbe
DD
44 typedef unsigned long long libi_uhostptr_t;
45 typedef long long libi_shostptr_t;
d2df793a
NC
46#endif
47
32b5d301
DD
48#ifndef GTY
49#define GTY(X)
50#endif
51
252b5132
RH
52/* Use typedefs for the key and data types to facilitate changing
53 these types, if necessary. These types should be sufficiently wide
54 that any pointer or scalar can be cast to these types, and then
55 cast back, without loss of precision. */
d2df793a
NC
56typedef libi_uhostptr_t splay_tree_key;
57typedef libi_uhostptr_t splay_tree_value;
252b5132
RH
58
59/* Forward declaration for a node in the tree. */
cc89ffe6 60typedef struct splay_tree_node_s *splay_tree_node;
252b5132
RH
61
62/* The type of a function which compares two splay-tree keys. The
63 function should return values as for qsort. */
1e45deed 64typedef int (*splay_tree_compare_fn) (splay_tree_key, splay_tree_key);
252b5132
RH
65
66/* The type of a function used to deallocate any resources associated
67 with the key. */
1e45deed 68typedef void (*splay_tree_delete_key_fn) (splay_tree_key);
252b5132
RH
69
70/* The type of a function used to deallocate any resources associated
71 with the value. */
1e45deed 72typedef void (*splay_tree_delete_value_fn) (splay_tree_value);
252b5132
RH
73
74/* The type of a function used to iterate over the tree. */
1e45deed 75typedef int (*splay_tree_foreach_fn) (splay_tree_node, void*);
252b5132 76
2bbcdae9
JB
77/* The type of a function used to allocate memory for tree root and
78 node structures. The first argument is the number of bytes needed;
79 the second is a data pointer the splay tree functions pass through
80 to the allocator. This function must never return zero. */
a288642d 81typedef void *(*splay_tree_allocate_fn) (int, void *);
2bbcdae9
JB
82
83/* The type of a function used to free memory allocated using the
84 corresponding splay_tree_allocate_fn. The first argument is the
85 memory to be freed; the latter is a data pointer the splay tree
86 functions pass through to the freer. */
1e45deed 87typedef void (*splay_tree_deallocate_fn) (void *, void *);
2bbcdae9 88
252b5132 89/* The nodes in the splay tree. */
167bdac1 90struct GTY(()) splay_tree_node_s {
252b5132 91 /* The key. */
f29d4bb8 92 splay_tree_key GTY ((use_param1)) key;
252b5132
RH
93
94 /* The value. */
f29d4bb8 95 splay_tree_value GTY ((use_param2)) value;
252b5132
RH
96
97 /* The left and right children, respectively. */
f29d4bb8
DD
98 splay_tree_node GTY ((use_params)) left;
99 splay_tree_node GTY ((use_params)) right;
252b5132
RH
100};
101
102/* The splay tree itself. */
167bdac1 103struct GTY(()) splay_tree_s {
252b5132 104 /* The root of the tree. */
f29d4bb8 105 splay_tree_node GTY ((use_params)) root;
252b5132
RH
106
107 /* The comparision function. */
108 splay_tree_compare_fn comp;
109
110 /* The deallocate-key function. NULL if no cleanup is necessary. */
111 splay_tree_delete_key_fn delete_key;
112
113 /* The deallocate-value function. NULL if no cleanup is necessary. */
114 splay_tree_delete_value_fn delete_value;
2bbcdae9
JB
115
116 /* Allocate/free functions, and a data pointer to pass to them. */
117 splay_tree_allocate_fn allocate;
118 splay_tree_deallocate_fn deallocate;
a288642d 119 void * GTY((skip)) allocate_data;
32b5d301 120};
31a55cbe 121
32b5d301 122typedef struct splay_tree_s *splay_tree;
252b5132 123
31a55cbe
DD
124extern splay_tree splay_tree_new (splay_tree_compare_fn,
125 splay_tree_delete_key_fn,
126 splay_tree_delete_value_fn);
1e45deed 127extern splay_tree splay_tree_new_with_allocator (splay_tree_compare_fn,
31a55cbe
DD
128 splay_tree_delete_key_fn,
129 splay_tree_delete_value_fn,
130 splay_tree_allocate_fn,
131 splay_tree_deallocate_fn,
132 void *);
133extern void splay_tree_delete (splay_tree);
1e45deed 134extern splay_tree_node splay_tree_insert (splay_tree,
31a55cbe
DD
135 splay_tree_key,
136 splay_tree_value);
1e45deed
DD
137extern void splay_tree_remove (splay_tree, splay_tree_key);
138extern splay_tree_node splay_tree_lookup (splay_tree, splay_tree_key);
139extern splay_tree_node splay_tree_predecessor (splay_tree, splay_tree_key);
140extern splay_tree_node splay_tree_successor (splay_tree, splay_tree_key);
141extern splay_tree_node splay_tree_max (splay_tree);
142extern splay_tree_node splay_tree_min (splay_tree);
143extern int splay_tree_foreach (splay_tree, splay_tree_foreach_fn, void*);
144extern int splay_tree_compare_ints (splay_tree_key, splay_tree_key);
145extern int splay_tree_compare_pointers (splay_tree_key, splay_tree_key);
31a55cbe 146
252b5132
RH
147#ifdef __cplusplus
148}
149#endif /* __cplusplus */
150
151#endif /* _SPLAY_TREE_H */