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