aboutsummaryrefslogtreecommitdiff
path: root/sys/sys/arb.h
blob: aa076e4681b96a4e9f99f47550d6349b8fadbe2d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
/*-
 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
 *
 * Copyright 2002 Niels Provos <provos@citi.umich.edu>
 * Copyright 2018-2019 Netflix, Inc.
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions
 * are met:
 * 1. Redistributions of source code must retain the above copyright
 *    notice, this list of conditions and the following disclaimer.
 * 2. Redistributions in binary form must reproduce the above copyright
 *    notice, this list of conditions and the following disclaimer in the
 *    documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 * $FreeBSD$
 */

#ifndef	_SYS_ARB_H_
#define	_SYS_ARB_H_

#include <sys/cdefs.h>

/* Array-based red-black trees. */

#define	ARB_NULLIDX	-1
#define	ARB_NULLCOL	-1

#define ARB_BLACK	0
#define ARB_RED		1

#define ARB_NEGINF	-1
#define ARB_INF		1

#define	ARB_HEAD(name, type, idxbits)					\
struct name {								\
	int##idxbits##_t	arb_curnodes;				\
	int##idxbits##_t	arb_maxnodes;				\
	int##idxbits##_t	arb_root_idx;				\
	int##idxbits##_t	arb_free_idx;				\
	int##idxbits##_t	arb_min_idx;				\
	int##idxbits##_t	arb_max_idx;				\
	struct type		arb_nodes[];				\
}
#define	ARB8_HEAD(name, type)	ARB_HEAD(name, type, 8)
#define	ARB16_HEAD(name, type)	ARB_HEAD(name, type, 16)
#define	ARB32_HEAD(name, type)	ARB_HEAD(name, type, 32)

#define	ARB_ALLOCSIZE(head, maxn, x)					\
	(sizeof(*head) + (maxn) * sizeof(*x))

#define	ARB_INITIALIZER(name, maxn)					\
	((struct name){ 0, maxn, ARB_NULLIDX, ARB_NULLIDX,		\
	    ARB_NULLIDX, ARB_NULLIDX })

#define	ARB_INIT(x, field, head, maxn)					\
	(head)->arb_curnodes = 0;					\
	(head)->arb_maxnodes = (maxn);					\
	(head)->arb_root_idx = (head)->arb_free_idx =			\
	    (head)->arb_min_idx = (head)->arb_max_idx = ARB_NULLIDX;	\
	/* The ARB_RETURNFREE() puts all entries on the free list. */	\
	ARB_ARRFOREACH_REVWCOND(x, field, head,				\
	    ARB_RETURNFREE(head, x, field))

#define	ARB_ENTRY(idxbits)						\
struct {								\
	int##idxbits##_t	arbe_parent_idx;			\
	int##idxbits##_t	arbe_left_idx;				\
	int##idxbits##_t	arbe_right_idx;				\
	int8_t			arbe_color;				\
}
#define	ARB8_ENTRY()		ARB_ENTRY(8)
#define	ARB16_ENTRY()		ARB_ENTRY(16)
#define	ARB32_ENTRY()		ARB_ENTRY(32)

#define	ARB_ENTRYINIT(elm, field) do {					\
	(elm)->field.arbe_parent_idx =					\
	    (elm)->field.arbe_left_idx =				\
	    (elm)->field.arbe_right_idx = ARB_NULLIDX;			\
	    (elm)->field.arbe_color = ARB_NULLCOL;			\
} while (/*CONSTCOND*/ 0)

#define	ARB_ELMTYPE(head)		__typeof(&(head)->arb_nodes[0])
#define	ARB_NODES(head)			(head)->arb_nodes
#define	ARB_MAXNODES(head)		(head)->arb_maxnodes
#define	ARB_CURNODES(head)		(head)->arb_curnodes
#define	ARB_EMPTY(head)			((head)->arb_curnodes == 0)
#define	ARB_FULL(head)			((head)->arb_curnodes >= (head)->arb_maxnodes)
#define	ARB_CNODE(head, idx) \
    ((((intptr_t)(idx) <= ARB_NULLIDX) || ((idx) >= ARB_MAXNODES(head))) ? \
    NULL : ((const ARB_ELMTYPE(head))(ARB_NODES(head) + (idx))))
#define	ARB_NODE(head, idx) \
    (__DECONST(ARB_ELMTYPE(head), ARB_CNODE(head, idx)))
#define	ARB_ROOT(head)			ARB_NODE(head, ARB_ROOTIDX(head))
#define	ARB_LEFT(head, elm, field)	ARB_NODE(head, ARB_LEFTIDX(elm, field))
#define	ARB_RIGHT(head, elm, field)	ARB_NODE(head, ARB_RIGHTIDX(elm, field))
#define	ARB_PARENT(head, elm, field)	ARB_NODE(head, ARB_PARENTIDX(elm, field))
#define	ARB_FREEIDX(head)		(head)->arb_free_idx
#define	ARB_ROOTIDX(head)		(head)->arb_root_idx
#define	ARB_MINIDX(head)		(head)->arb_min_idx
#define	ARB_MAXIDX(head)		(head)->arb_max_idx
#define	ARB_SELFIDX(head, elm)						\
    ((elm) ? ((intptr_t)((((const uint8_t *)(elm)) -			\
    ((const uint8_t *)ARB_NODES(head))) / sizeof(*(elm)))) :		\
    (intptr_t)ARB_NULLIDX)
#define	ARB_LEFTIDX(elm, field)		(elm)->field.arbe_left_idx
#define	ARB_RIGHTIDX(elm, field)	(elm)->field.arbe_right_idx
#define	ARB_PARENTIDX(elm, field)	(elm)->field.arbe_parent_idx
#define	ARB_COLOR(elm, field)		(elm)->field.arbe_color
#define	ARB_PREVFREE(head, elm, field) \
    ARB_NODE(head, ARB_PREVFREEIDX(elm, field))
#define	ARB_PREVFREEIDX(elm, field)	ARB_LEFTIDX(elm, field)
#define	ARB_NEXTFREE(head, elm, field) \
    ARB_NODE(head, ARB_NEXTFREEIDX(elm, field))
#define	ARB_NEXTFREEIDX(elm, field)	ARB_RIGHTIDX(elm, field)
#define	ARB_ISFREE(elm, field)		(ARB_COLOR(elm, field) == ARB_NULLCOL)

#define	ARB_SET(head, elm, parent, field) do {				\
	ARB_PARENTIDX(elm, field) =					\
	    parent ? ARB_SELFIDX(head, parent) : ARB_NULLIDX;		\
	ARB_LEFTIDX(elm, field) = ARB_RIGHTIDX(elm, field) = ARB_NULLIDX; \
	ARB_COLOR(elm, field) = ARB_RED;					\
} while (/*CONSTCOND*/ 0)

#define	ARB_SET_BLACKRED(black, red, field) do {			\
	ARB_COLOR(black, field) = ARB_BLACK;				\
	ARB_COLOR(red, field) = ARB_RED;					\
} while (/*CONSTCOND*/ 0)

#ifndef ARB_AUGMENT
#define	ARB_AUGMENT(x)	do {} while (0)
#endif

#define	ARB_ROTATE_LEFT(head, elm, tmp, field) do {			\
	__typeof(ARB_RIGHTIDX(elm, field)) _tmpidx;			\
	(tmp) = ARB_RIGHT(head, elm, field);				\
	_tmpidx = ARB_RIGHTIDX(elm, field);				\
	ARB_RIGHTIDX(elm, field) = ARB_LEFTIDX(tmp, field);		\
	if (ARB_RIGHTIDX(elm, field) != ARB_NULLIDX) {			\
		ARB_PARENTIDX(ARB_LEFT(head, tmp, field), field) =	\
		    ARB_SELFIDX(head, elm);				\
	}								\
	ARB_AUGMENT(elm);						\
	ARB_PARENTIDX(tmp, field) = ARB_PARENTIDX(elm, field);		\
	if (ARB_PARENTIDX(tmp, field) != ARB_NULLIDX) {			\
		if (ARB_SELFIDX(head, elm) ==				\
		    ARB_LEFTIDX(ARB_PARENT(head, elm, field), field))	\
			ARB_LEFTIDX(ARB_PARENT(head, elm, field),	\
			    field) = _tmpidx;				\
		else							\
			ARB_RIGHTIDX(ARB_PARENT(head, elm, field),	\
			    field) = _tmpidx;				\
	} else								\
		ARB_ROOTIDX(head) = _tmpidx;				\
	ARB_LEFTIDX(tmp, field) = ARB_SELFIDX(head, elm);		\
	ARB_PARENTIDX(elm, field) = _tmpidx;				\
	ARB_AUGMENT(tmp);						\
	if (ARB_PARENTIDX(tmp, field) != ARB_NULLIDX)			\
		ARB_AUGMENT(ARB_PARENT(head, tmp, field));		\
} while (/*CONSTCOND*/ 0)

#define	ARB_ROTATE_RIGHT(head, elm, tmp, field) do {			\
	__typeof(ARB_LEFTIDX(elm, field)) _tmpidx;			\
	(tmp) = ARB_LEFT(head, elm, field);				\
	_tmpidx = ARB_LEFTIDX(elm, field);				\
	ARB_LEFTIDX(elm, field) = ARB_RIGHTIDX(tmp, field);		\
	if (ARB_LEFTIDX(elm, field) != ARB_NULLIDX) {			\
		ARB_PARENTIDX(ARB_RIGHT(head, tmp, field), field) =	\
		    ARB_SELFIDX(head, elm);				\
	}								\
	ARB_AUGMENT(elm);						\
	ARB_PARENTIDX(tmp, field) = ARB_PARENTIDX(elm, field);		\
	if (ARB_PARENTIDX(tmp, field) != ARB_NULLIDX) {			\
		if (ARB_SELFIDX(head, elm) ==				\
		    ARB_LEFTIDX(ARB_PARENT(head, elm, field), field))	\
			ARB_LEFTIDX(ARB_PARENT(head, elm, field),	\
			    field) = _tmpidx;				\
		else							\
			ARB_RIGHTIDX(ARB_PARENT(head, elm, field),	\
			    field) = _tmpidx;				\
	} else								\
		ARB_ROOTIDX(head) = _tmpidx;				\
	ARB_RIGHTIDX(tmp, field) = ARB_SELFIDX(head, elm);		\
	ARB_PARENTIDX(elm, field) = _tmpidx;				\
	ARB_AUGMENT(tmp);						\
	if (ARB_PARENTIDX(tmp, field) != ARB_NULLIDX)			\
		ARB_AUGMENT(ARB_PARENT(head, tmp, field));		\
} while (/*CONSTCOND*/ 0)

#define	ARB_RETURNFREE(head, elm, field)				\
({									\
	ARB_COLOR(elm, field) = ARB_NULLCOL;				\
	ARB_NEXTFREEIDX(elm, field) = ARB_FREEIDX(head);		\
	ARB_FREEIDX(head) = ARB_SELFIDX(head, elm);			\
	elm;								\
})

#define	ARB_GETFREEAT(head, field, fidx)				\
({									\
	__typeof(ARB_NODE(head, 0)) _elm, _prevelm;			\
	int _idx = fidx;							\
	if (ARB_FREEIDX(head) == ARB_NULLIDX && !ARB_FULL(head)) {	\
		/* Populate the free list. */				\
		ARB_ARRFOREACH_REVERSE(_elm, field, head) {		\
			if (ARB_ISFREE(_elm, field))			\
				ARB_RETURNFREE(head, _elm, field);	\
		}							\
	}								\
	_elm = _prevelm = ARB_NODE(head, ARB_FREEIDX(head));		\
	for (; _idx > 0 && _elm != NULL; _idx--, _prevelm = _elm)	\
		_elm = ARB_NODE(head, ARB_NEXTFREEIDX(_elm, field));	\
	if (_elm) {							\
		if (fidx == 0)						\
			ARB_FREEIDX(head) =				\
			    ARB_NEXTFREEIDX(_elm, field);		\
		else							\
			ARB_NEXTFREEIDX(_prevelm, field) =		\
			    ARB_NEXTFREEIDX(_elm, field);		\
	}								\
	_elm;								\
})
#define	ARB_GETFREE(head, field) ARB_GETFREEAT(head, field, 0)

/* Generates prototypes and inline functions */
#define	ARB_PROTOTYPE(name, type, field, cmp)				\
	ARB_PROTOTYPE_INTERNAL(name, type, field, cmp,)
#define	ARB_PROTOTYPE_STATIC(name, type, field, cmp)			\
	ARB_PROTOTYPE_INTERNAL(name, type, field, cmp, __unused static)
#define	ARB_PROTOTYPE_INTERNAL(name, type, field, cmp, attr)		\
	ARB_PROTOTYPE_INSERT_COLOR(name, type, attr);			\
	ARB_PROTOTYPE_REMOVE_COLOR(name, type, attr);			\
	ARB_PROTOTYPE_INSERT(name, type, attr);				\
	ARB_PROTOTYPE_REMOVE(name, type, attr);				\
	ARB_PROTOTYPE_CFIND(name, type, attr);				\
	ARB_PROTOTYPE_FIND(name, type, attr);				\
	ARB_PROTOTYPE_NFIND(name, type, attr);				\
	ARB_PROTOTYPE_CNEXT(name, type, attr);				\
	ARB_PROTOTYPE_NEXT(name, type, attr);				\
	ARB_PROTOTYPE_CPREV(name, type, attr);				\
	ARB_PROTOTYPE_PREV(name, type, attr);				\
	ARB_PROTOTYPE_CMINMAX(name, type, attr);			\
	ARB_PROTOTYPE_MINMAX(name, type, attr);				\
	ARB_PROTOTYPE_REINSERT(name, type, attr);
#define	ARB_PROTOTYPE_INSERT_COLOR(name, type, attr)			\
	attr void name##_ARB_INSERT_COLOR(struct name *, struct type *)
#define	ARB_PROTOTYPE_REMOVE_COLOR(name, type, attr)			\
	attr void name##_ARB_REMOVE_COLOR(struct name *, struct type *, struct type *)
#define	ARB_PROTOTYPE_REMOVE(name, type, attr)				\
	attr struct type *name##_ARB_REMOVE(struct name *, struct type *)
#define	ARB_PROTOTYPE_INSERT(name, type, attr)				\
	attr struct type *name##_ARB_INSERT(struct name *, struct type *)
#define	ARB_PROTOTYPE_CFIND(name, type, attr)				\
	attr const struct type *name##_ARB_CFIND(const struct name *,	\
	    const struct type *)
#define	ARB_PROTOTYPE_FIND(name, type, attr)				\
	attr struct type *name##_ARB_FIND(const struct name *,		\
	    const struct type *)
#define ARB_PROTOTYPE_NFIND(name, type, attr)				\
	attr struct type *name##_ARB_NFIND(struct name *, struct type *)
#define	ARB_PROTOTYPE_CNFIND(name, type, attr)				\
	attr const struct type *name##_ARB_CNFIND(const struct name *,	\
	    const struct type *)
#define	ARB_PROTOTYPE_CNEXT(name, type, attr)				\
	attr const struct type *name##_ARB_CNEXT(const struct name *head,\
	    const struct type *)
#define	ARB_PROTOTYPE_NEXT(name, type, attr)				\
	attr struct type *name##_ARB_NEXT(const struct name *,		\
	    const struct type *)
#define	ARB_PROTOTYPE_CPREV(name, type, attr)				\
	attr const struct type *name##_ARB_CPREV(const struct name *,	\
	    const struct type *)
#define	ARB_PROTOTYPE_PREV(name, type, attr)				\
	attr struct type *name##_ARB_PREV(const struct name *,		\
	    const struct type *)
#define	ARB_PROTOTYPE_CMINMAX(name, type, attr)				\
	attr const struct type *name##_ARB_CMINMAX(const struct name *, int)
#define	ARB_PROTOTYPE_MINMAX(name, type, attr)				\
	attr struct type *name##_ARB_MINMAX(const struct name *, int)
#define ARB_PROTOTYPE_REINSERT(name, type, attr)			\
	attr struct type *name##_ARB_REINSERT(struct name *, struct type *)

#define	ARB_GENERATE(name, type, field, cmp)				\
	ARB_GENERATE_INTERNAL(name, type, field, cmp,)
#define	ARB_GENERATE_STATIC(name, type, field, cmp)			\
	ARB_GENERATE_INTERNAL(name, type, field, cmp, __unused static)
#define	ARB_GENERATE_INTERNAL(name, type, field, cmp, attr)		\
	ARB_GENERATE_INSERT_COLOR(name, type, field, attr)		\
	ARB_GENERATE_REMOVE_COLOR(name, type, field, attr)		\
	ARB_GENERATE_INSERT(name, type, field, cmp, attr)		\
	ARB_GENERATE_REMOVE(name, type, field, attr)			\
	ARB_GENERATE_CFIND(name, type, field, cmp, attr)		\
	ARB_GENERATE_FIND(name, type, field, cmp, attr)			\
	ARB_GENERATE_CNEXT(name, type, field, attr)			\
	ARB_GENERATE_NEXT(name, type, field, attr)			\
	ARB_GENERATE_CPREV(name, type, field, attr)			\
	ARB_GENERATE_PREV(name, type, field, attr)			\
	ARB_GENERATE_CMINMAX(name, type, field, attr)			\
	ARB_GENERATE_MINMAX(name, type, field, attr)			\
	ARB_GENERATE_REINSERT(name, type, field, cmp, attr)

#define ARB_GENERATE_INSERT_COLOR(name, type, field, attr)		\
attr void								\
name##_ARB_INSERT_COLOR(struct name *head, struct type *elm)		\
{									\
	struct type *parent, *gparent, *tmp;				\
	while ((parent = ARB_PARENT(head, elm, field)) != NULL &&	\
	    ARB_COLOR(parent, field) == ARB_RED) {			\
		gparent = ARB_PARENT(head, parent, field);		\
		if (parent == ARB_LEFT(head, gparent, field)) {		\
			tmp = ARB_RIGHT(head, gparent, field);		\
			if (tmp && ARB_COLOR(tmp, field) == ARB_RED) {	\
				ARB_COLOR(tmp, field) = ARB_BLACK;	\
				ARB_SET_BLACKRED(parent, gparent, field); \
				elm = gparent;				\
				continue;				\
			}						\
			if (ARB_RIGHT(head, parent, field) == elm) {	\
				ARB_ROTATE_LEFT(head, parent, tmp, field); \
				tmp = parent;				\
				parent = elm;				\
				elm = tmp;				\
			}						\
			ARB_SET_BLACKRED(parent, gparent, field);	\
			ARB_ROTATE_RIGHT(head, gparent, tmp, field);	\
		} else {						\
			tmp = ARB_LEFT(head, gparent, field);		\
			if (tmp && ARB_COLOR(tmp, field) == ARB_RED) {	\
				ARB_COLOR(tmp, field) = ARB_BLACK;	\
				ARB_SET_BLACKRED(parent, gparent, field); \
				elm = gparent;				\
				continue;				\
			}						\
			if (ARB_LEFT(head, parent, field) == elm) {	\
				ARB_ROTATE_RIGHT(head, parent, tmp, field); \
				tmp = parent;				\
				parent = elm;				\
				elm = tmp;				\
			}						\
			ARB_SET_BLACKRED(parent, gparent, field);	\
			ARB_ROTATE_LEFT(head, gparent, tmp, field);	\
		}							\
	}								\
	ARB_COLOR(ARB_ROOT(head), field) = ARB_BLACK;			\
}

#define ARB_GENERATE_REMOVE_COLOR(name, type, field, attr)		\
attr void								\
name##_ARB_REMOVE_COLOR(struct name *head, struct type *parent, struct type *elm) \
{									\
	struct type *tmp;						\
	while ((elm == NULL || ARB_COLOR(elm, field) == ARB_BLACK) &&	\
	    elm != ARB_ROOT(head)) {					\
		if (ARB_LEFT(head, parent, field) == elm) {		\
			tmp = ARB_RIGHT(head, parent, field);		\
			if (ARB_COLOR(tmp, field) == ARB_RED) {		\
				ARB_SET_BLACKRED(tmp, parent, field);	\
				ARB_ROTATE_LEFT(head, parent, tmp, field); \
				tmp = ARB_RIGHT(head, parent, field);	\
			}						\
			if ((ARB_LEFT(head, tmp, field) == NULL ||	\
			    ARB_COLOR(ARB_LEFT(head, tmp, field), field) == ARB_BLACK) && \
			    (ARB_RIGHT(head, tmp, field) == NULL ||	\
			    ARB_COLOR(ARB_RIGHT(head, tmp, field), field) == ARB_BLACK)) { \
				ARB_COLOR(tmp, field) = ARB_RED;		\
				elm = parent;				\
				parent = ARB_PARENT(head, elm, field);	\
			} else {					\
				if (ARB_RIGHT(head, tmp, field) == NULL || \
				    ARB_COLOR(ARB_RIGHT(head, tmp, field), field) == ARB_BLACK) { \
					struct type *oleft;		\
					if ((oleft = ARB_LEFT(head, tmp, field)) \
					    != NULL)			\
						ARB_COLOR(oleft, field) = ARB_BLACK; \
					ARB_COLOR(tmp, field) = ARB_RED;	\
					ARB_ROTATE_RIGHT(head, tmp, oleft, field); \
					tmp = ARB_RIGHT(head, parent, field); \
				}					\
				ARB_COLOR(tmp, field) = ARB_COLOR(parent, field); \
				ARB_COLOR(parent, field) = ARB_BLACK;	\
				if (ARB_RIGHT(head, tmp, field))	\
					ARB_COLOR(ARB_RIGHT(head, tmp, field), field) = ARB_BLACK; \
				ARB_ROTATE_LEFT(head, parent, tmp, field); \
				elm = ARB_ROOT(head);			\
				break;					\
			}						\
		} else {						\
			tmp = ARB_LEFT(head, parent, field);		\
			if (ARB_COLOR(tmp, field) == ARB_RED) {		\
				ARB_SET_BLACKRED(tmp, parent, field);	\
				ARB_ROTATE_RIGHT(head, parent, tmp, field); \
				tmp = ARB_LEFT(head, parent, field);	\
			}						\
			if ((ARB_LEFT(head, tmp, field) == NULL ||	\
			    ARB_COLOR(ARB_LEFT(head, tmp, field), field) == ARB_BLACK) && \
			    (ARB_RIGHT(head, tmp, field) == NULL ||	\
			    ARB_COLOR(ARB_RIGHT(head, tmp, field), field) == ARB_BLACK)) { \
				ARB_COLOR(tmp, field) = ARB_RED;		\
				elm = parent;				\
				parent = ARB_PARENT(head, elm, field);	\
			} else {					\
				if (ARB_LEFT(head, tmp, field) == NULL || \
				    ARB_COLOR(ARB_LEFT(head, tmp, field), field) == ARB_BLACK) { \
					struct type *oright;		\
					if ((oright = ARB_RIGHT(head, tmp, field)) \
					    != NULL)			\
						ARB_COLOR(oright, field) = ARB_BLACK; \
					ARB_COLOR(tmp, field) = ARB_RED;	\
					ARB_ROTATE_LEFT(head, tmp, oright, field); \
					tmp = ARB_LEFT(head, parent, field); \
				}					\
				ARB_COLOR(tmp, field) = ARB_COLOR(parent, field); \
				ARB_COLOR(parent, field) = ARB_BLACK;	\
				if (ARB_LEFT(head, tmp, field))		\
					ARB_COLOR(ARB_LEFT(head, tmp, field), field) = ARB_BLACK; \
				ARB_ROTATE_RIGHT(head, parent, tmp, field); \
				elm = ARB_ROOT(head);			\
				break;					\
			}						\
		}							\
	}								\
	if (elm)							\
		ARB_COLOR(elm, field) = ARB_BLACK;			\
}

#define	ARB_GENERATE_REMOVE(name, type, field, attr)			\
attr struct type *							\
name##_ARB_REMOVE(struct name *head, struct type *elm)			\
{									\
	struct type *child, *parent, *old = elm;			\
	int color;							\
	if (ARB_LEFT(head, elm, field) == NULL)				\
		child = ARB_RIGHT(head, elm, field);			\
	else if (ARB_RIGHT(head, elm, field) == NULL)			\
		child = ARB_LEFT(head, elm, field);			\
	else {								\
		struct type *left;					\
		elm = ARB_RIGHT(head, elm, field);			\
		while ((left = ARB_LEFT(head, elm, field)) != NULL)	\
			elm = left;					\
		child = ARB_RIGHT(head, elm, field);			\
		parent = ARB_PARENT(head, elm, field);			\
		color = ARB_COLOR(elm, field);				\
		if (child)						\
			ARB_PARENTIDX(child, field) =			\
			    ARB_SELFIDX(head, parent);			\
		if (parent) {						\
			if (ARB_LEFT(head, parent, field) == elm)	\
				ARB_LEFTIDX(parent, field) =		\
				    ARB_SELFIDX(head, child);		\
			else						\
				ARB_RIGHTIDX(parent, field) =		\
				    ARB_SELFIDX(head, child);		\
			ARB_AUGMENT(parent);				\
		} else							\
			ARB_ROOTIDX(head) = ARB_SELFIDX(head, child);	\
		if (ARB_PARENT(head, elm, field) == old)		\
			parent = elm;					\
		(elm)->field = (old)->field;				\
		if (ARB_PARENT(head, old, field)) {			\
			if (ARB_LEFT(head, ARB_PARENT(head, old, field), \
			    field) == old)				\
				ARB_LEFTIDX(ARB_PARENT(head, old, field), \
				    field) = ARB_SELFIDX(head, elm);	\
			else						\
				ARB_RIGHTIDX(ARB_PARENT(head, old, field),\
				    field) = ARB_SELFIDX(head, elm);	\
			ARB_AUGMENT(ARB_PARENT(head, old, field));	\
		} else							\
			ARB_ROOTIDX(head) = ARB_SELFIDX(head, elm);	\
		ARB_PARENTIDX(ARB_LEFT(head, old, field), field) =	\
		    ARB_SELFIDX(head, elm);				\
		if (ARB_RIGHT(head, old, field))			\
			ARB_PARENTIDX(ARB_RIGHT(head, old, field),	\
			    field) = ARB_SELFIDX(head, elm);		\
		if (parent) {						\
			left = parent;					\
			do {						\
				ARB_AUGMENT(left);			\
			} while ((left = ARB_PARENT(head, left, field))	\
			    != NULL);					\
		}							\
		goto color;						\
	}								\
	parent = ARB_PARENT(head, elm, field);				\
	color = ARB_COLOR(elm, field);					\
	if (child)							\
		ARB_PARENTIDX(child, field) = ARB_SELFIDX(head, parent);\
	if (parent) {							\
		if (ARB_LEFT(head, parent, field) == elm)		\
			ARB_LEFTIDX(parent, field) =			\
			    ARB_SELFIDX(head, child);			\
		else							\
			ARB_RIGHTIDX(parent, field) =			\
			    ARB_SELFIDX(head, child);			\
		ARB_AUGMENT(parent);					\
	} else								\
		ARB_ROOTIDX(head) = ARB_SELFIDX(head, child);		\
color:									\
	if (color == ARB_BLACK)						\
		name##_ARB_REMOVE_COLOR(head, parent, child);		\
	ARB_CURNODES(head) -= 1;					\
	if (ARB_MINIDX(head) == ARB_SELFIDX(head, old))			\
		ARB_MINIDX(head) = ARB_PARENTIDX(old, field);		\
	if (ARB_MAXIDX(head) == ARB_SELFIDX(head, old))			\
		ARB_MAXIDX(head) = ARB_PARENTIDX(old, field);		\
	ARB_RETURNFREE(head, old, field);				\
	return (old);							\
}									\

#define ARB_GENERATE_INSERT(name, type, field, cmp, attr)		\
/* Inserts a node into the RB tree */					\
attr struct type *							\
name##_ARB_INSERT(struct name *head, struct type *elm)			\
{									\
	struct type *tmp;						\
	struct type *parent = NULL;					\
	int comp = 0;							\
	tmp = ARB_ROOT(head);						\
	while (tmp) {							\
		parent = tmp;						\
		comp = (cmp)(elm, parent);				\
		if (comp < 0)						\
			tmp = ARB_LEFT(head, tmp, field);		\
		else if (comp > 0)					\
			tmp = ARB_RIGHT(head, tmp, field);		\
		else							\
			return (tmp);					\
	}								\
	ARB_SET(head, elm, parent, field);				\
	if (parent != NULL) {						\
		if (comp < 0)						\
			ARB_LEFTIDX(parent, field) =			\
			    ARB_SELFIDX(head, elm);			\
		else							\
			ARB_RIGHTIDX(parent, field) =			\
			    ARB_SELFIDX(head, elm);			\
		ARB_AUGMENT(parent);					\
	} else								\
		ARB_ROOTIDX(head) = ARB_SELFIDX(head, elm);		\
	name##_ARB_INSERT_COLOR(head, elm);				\
	ARB_CURNODES(head) += 1;					\
	if (ARB_MINIDX(head) == ARB_NULLIDX ||				\
	    (ARB_PARENTIDX(elm, field) == ARB_MINIDX(head) &&		\
	    ARB_LEFTIDX(parent, field) == ARB_SELFIDX(head, elm)))	\
		ARB_MINIDX(head) = ARB_SELFIDX(head, elm);		\
	if (ARB_MAXIDX(head) == ARB_NULLIDX ||				\
	    (ARB_PARENTIDX(elm, field) == ARB_MAXIDX(head) &&		\
	    ARB_RIGHTIDX(parent, field) == ARB_SELFIDX(head, elm)))	\
		ARB_MAXIDX(head) = ARB_SELFIDX(head, elm);	\
	return (NULL);							\
}

#define	ARB_GENERATE_CFIND(name, type, field, cmp, attr)		\
/* Finds the node with the same key as elm */				\
attr const struct type *						\
name##_ARB_CFIND(const struct name *head, const struct type *elm)	\
{									\
	const struct type *tmp = ARB_ROOT(head);			\
	int comp;							\
	while (tmp) {							\
		comp = cmp(elm, tmp);					\
		if (comp < 0)						\
			tmp = ARB_LEFT(head, tmp, field);		\
		else if (comp > 0)					\
			tmp = ARB_RIGHT(head, tmp, field);		\
		else							\
			return (tmp);					\
	}								\
	return (NULL);							\
}

#define	ARB_GENERATE_FIND(name, type, field, cmp, attr)			\
attr struct type *							\
name##_ARB_FIND(const struct name *head, const struct type *elm)	\
{ return (__DECONST(struct type *, name##_ARB_CFIND(head, elm))); }

#define	ARB_GENERATE_CNFIND(name, type, field, cmp, attr)		\
/* Finds the first node greater than or equal to the search key */	\
attr const struct type *						\
name##_ARB_CNFIND(const struct name *head, const struct type *elm)	\
{									\
	const struct type *tmp = ARB_ROOT(head);			\
	const struct type *res = NULL;					\
	int comp;							\
	while (tmp) {							\
		comp = cmp(elm, tmp);					\
		if (comp < 0) {						\
			res = tmp;					\
			tmp = ARB_LEFT(head, tmp, field);		\
		}							\
		else if (comp > 0)					\
			tmp = ARB_RIGHT(head, tmp, field);		\
		else							\
			return (tmp);					\
	}								\
	return (res);							\
}

#define	ARB_GENERATE_NFIND(name, type, field, cmp, attr)		\
attr struct type *							\
name##_ARB_NFIND(const struct name *head, const struct type *elm)	\
{ return (__DECONST(struct type *, name##_ARB_CNFIND(head, elm))); }

#define	ARB_GENERATE_CNEXT(name, type, field, attr)			\
/* ARGSUSED */								\
attr const struct type *						\
name##_ARB_CNEXT(const struct name *head, const struct type *elm)	\
{									\
	if (ARB_RIGHT(head, elm, field)) {				\
		elm = ARB_RIGHT(head, elm, field);			\
		while (ARB_LEFT(head, elm, field))			\
			elm = ARB_LEFT(head, elm, field);		\
	} else {							\
		if (ARB_PARENT(head, elm, field) &&			\
		    (elm == ARB_LEFT(head, ARB_PARENT(head, elm, field),\
		    field)))						\
			elm = ARB_PARENT(head, elm, field);		\
		else {							\
			while (ARB_PARENT(head, elm, field) &&		\
			    (elm == ARB_RIGHT(head, ARB_PARENT(head,	\
			    elm, field), field)))			\
				elm = ARB_PARENT(head, elm, field);	\
			elm = ARB_PARENT(head, elm, field);		\
		}							\
	}								\
	return (elm);							\
}

#define	ARB_GENERATE_NEXT(name, type, field, attr)			\
attr struct type *							\
name##_ARB_NEXT(const struct name *head, const struct type *elm)	\
{ return (__DECONST(struct type *, name##_ARB_CNEXT(head, elm))); }

#define	ARB_GENERATE_CPREV(name, type, field, attr)			\
/* ARGSUSED */								\
attr const struct type *						\
name##_ARB_CPREV(const struct name *head, const struct type *elm)	\
{									\
	if (ARB_LEFT(head, elm, field)) {				\
		elm = ARB_LEFT(head, elm, field);			\
		while (ARB_RIGHT(head, elm, field))			\
			elm = ARB_RIGHT(head, elm, field);		\
	} else {							\
		if (ARB_PARENT(head, elm, field) &&			\
		    (elm == ARB_RIGHT(head, ARB_PARENT(head, elm,	\
		    field), field)))					\
			elm = ARB_PARENT(head, elm, field);		\
		else {							\
			while (ARB_PARENT(head, elm, field) &&		\
			    (elm == ARB_LEFT(head, ARB_PARENT(head, elm,\
			    field), field)))				\
				elm = ARB_PARENT(head, elm, field);	\
			elm = ARB_PARENT(head, elm, field);		\
		}							\
	}								\
	return (elm);							\
}

#define	ARB_GENERATE_PREV(name, type, field, attr)			\
attr struct type *							\
name##_ARB_PREV(const struct name *head, const struct type *elm)	\
{ return (__DECONST(struct type *, name##_ARB_CPREV(head, elm))); }

#define	ARB_GENERATE_CMINMAX(name, type, field, attr)			\
attr const struct type *						\
name##_ARB_CMINMAX(const struct name *head, int val)			\
{									\
	const struct type *tmp = ARB_EMPTY(head) ? NULL : ARB_ROOT(head);\
	const struct type *parent = NULL;				\
	while (tmp) {							\
		parent = tmp;						\
		if (val < 0)						\
			tmp = ARB_LEFT(head, tmp, field);		\
		else							\
			tmp = ARB_RIGHT(head, tmp, field);		\
	}								\
	return (__DECONST(struct type *, parent));			\
}

#define	ARB_GENERATE_MINMAX(name, type, field, attr)			\
attr struct type *							\
name##_ARB_MINMAX(const struct name *head, int val)			\
{ return (__DECONST(struct type *, name##_ARB_CMINMAX(head, val))); }

#define	ARB_GENERATE_REINSERT(name, type, field, cmp, attr)		\
attr struct type *							\
name##_ARB_REINSERT(struct name *head, struct type *elm)		\
{									\
	struct type *cmpelm;						\
	if (((cmpelm = ARB_PREV(name, head, elm)) != NULL &&		\
	    (cmp)(cmpelm, elm) >= 0) ||					\
	    ((cmpelm = ARB_NEXT(name, head, elm)) != NULL &&		\
	    (cmp)(elm, cmpelm) >= 0)) {					\
		/* XXXLAS: Remove/insert is heavy handed. */		\
		ARB_REMOVE(name, head, elm);				\
		/* Remove puts elm on the free list. */			\
		elm = ARB_GETFREE(head, field);				\
		return (ARB_INSERT(name, head, elm));			\
	}								\
	return (NULL);							\
}									\

#define	ARB_INSERT(name, x, y)	name##_ARB_INSERT(x, y)
#define	ARB_REMOVE(name, x, y)	name##_ARB_REMOVE(x, y)
#define	ARB_CFIND(name, x, y)	name##_ARB_CFIND(x, y)
#define	ARB_FIND(name, x, y)	name##_ARB_FIND(x, y)
#define	ARB_CNFIND(name, x, y)	name##_ARB_CNFIND(x, y)
#define	ARB_NFIND(name, x, y)	name##_ARB_NFIND(x, y)
#define	ARB_CNEXT(name, x, y)	name##_ARB_CNEXT(x, y)
#define	ARB_NEXT(name, x, y)	name##_ARB_NEXT(x, y)
#define	ARB_CPREV(name, x, y)	name##_ARB_CPREV(x, y)
#define	ARB_PREV(name, x, y)	name##_ARB_PREV(x, y)
#define	ARB_CMIN(name, x)	(ARB_MINIDX(x) == ARB_NULLIDX ? \
	name##_ARB_CMINMAX(x, ARB_NEGINF) : ARB_CNODE(x, ARB_MINIDX(x)))
#define	ARB_MIN(name, x)	(ARB_MINIDX(x) == ARB_NULLIDX ? \
	name##_ARB_MINMAX(x, ARB_NEGINF) : ARB_NODE(x, ARB_MINIDX(x)))
#define	ARB_CMAX(name, x)	(ARB_MAXIDX(x) == ARB_NULLIDX ? \
	name##_ARB_CMINMAX(x, ARB_INF) : ARB_CNODE(x, ARB_MAXIDX(x)))
#define	ARB_MAX(name, x)	(ARB_MAXIDX(x) == ARB_NULLIDX ? \
	name##_ARB_MINMAX(x, ARB_INF) : ARB_NODE(x, ARB_MAXIDX(x)))
#define	ARB_REINSERT(name, x, y) name##_ARB_REINSERT(x, y)

#define	ARB_FOREACH(x, name, head)					\
	for ((x) = ARB_MIN(name, head);					\
	     (x) != NULL;						\
	     (x) = name##_ARB_NEXT(head, x))

#define	ARB_FOREACH_FROM(x, name, y)					\
	for ((x) = (y);							\
	    ((x) != NULL) && ((y) = name##_ARB_NEXT(x), (x) != NULL);	\
	     (x) = (y))

#define	ARB_FOREACH_SAFE(x, name, head, y)				\
	for ((x) = ARB_MIN(name, head);					\
	    ((x) != NULL) && ((y) = name##_ARB_NEXT(x), (x) != NULL);	\
	     (x) = (y))

#define	ARB_FOREACH_REVERSE(x, name, head)				\
	for ((x) = ARB_MAX(name, head);					\
	     (x) != NULL;						\
	     (x) = name##_ARB_PREV(x))

#define	ARB_FOREACH_REVERSE_FROM(x, name, y)				\
	for ((x) = (y);							\
	    ((x) != NULL) && ((y) = name##_ARB_PREV(x), (x) != NULL);	\
	     (x) = (y))

#define	ARB_FOREACH_REVERSE_SAFE(x, name, head, y)			\
	for ((x) = ARB_MAX(name, head);					\
	    ((x) != NULL) && ((y) = name##_ARB_PREV(x), (x) != NULL);	\
	     (x) = (y))

#define	ARB_ARRFOREACH(x, field, head)					\
	for ((x) = ARB_NODES(head);					\
	    ARB_SELFIDX(head, x) < ARB_MAXNODES(head);			\
	    (x)++)

#define	ARB_ARRFOREACH_REVWCOND(x, field, head, extracond)		\
	for ((x) = ARB_NODES(head) + (ARB_MAXNODES(head) - 1);		\
	    (x) >= ARB_NODES(head) && (extracond);			\
	    (x)--)

#define	ARB_ARRFOREACH_REVERSE(x, field, head) \
	ARB_ARRFOREACH_REVWCOND(x, field, head, 1)

#define	ARB_RESET_TREE(head, name, maxn)				\
	*(head) = ARB_INITIALIZER(name, maxn)

#endif	/* _SYS_ARB_H_ */