Pass name cleanups
[official-gcc.git] / gcc / et-forest.c
blobd1063165c7a3e7232e1c66d16e944f2508dd9770
1 /* ET-trees data structure implementation.
2 Contributed by Pavel Nejedly
3 Copyright (C) 2002, 2003, 2004, 2005, 2007, 2008, 2010 Free Software
4 Foundation, Inc.
6 This file is part of the libiberty library.
7 Libiberty is free software; you can redistribute it and/or
8 modify it under the terms of the GNU Library General Public
9 License as published by the Free Software Foundation; either
10 version 3 of the License, or (at your option) any later version.
12 Libiberty is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 Library General Public License for more details.
17 You should have received a copy of the GNU Library General Public
18 License along with libiberty; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>.
21 The ET-forest structure is described in:
22 D. D. Sleator and R. E. Tarjan. A data structure for dynamic trees.
23 J. G'omput. System Sci., 26(3):362 381, 1983.
26 #include "config.h"
27 #include "system.h"
28 #include "coretypes.h"
29 #include "et-forest.h"
30 #include "alloc-pool.h"
32 /* We do not enable this with ENABLE_CHECKING, since it is awfully slow. */
33 #undef DEBUG_ET
35 #ifdef DEBUG_ET
36 #include "basic-block.h"
37 #endif
39 /* The occurrence of a node in the et tree. */
40 struct et_occ
42 struct et_node *of; /* The node. */
44 struct et_occ *parent; /* Parent in the splay-tree. */
45 struct et_occ *prev; /* Left son in the splay-tree. */
46 struct et_occ *next; /* Right son in the splay-tree. */
48 int depth; /* The depth of the node is the sum of depth
49 fields on the path to the root. */
50 int min; /* The minimum value of the depth in the subtree
51 is obtained by adding sum of depth fields
52 on the path to the root. */
53 struct et_occ *min_occ; /* The occurrence in the subtree with the minimal
54 depth. */
57 static alloc_pool et_nodes;
58 static alloc_pool et_occurrences;
60 /* Changes depth of OCC to D. */
62 static inline void
63 set_depth (struct et_occ *occ, int d)
65 if (!occ)
66 return;
68 occ->min += d - occ->depth;
69 occ->depth = d;
72 /* Adds D to the depth of OCC. */
74 static inline void
75 set_depth_add (struct et_occ *occ, int d)
77 if (!occ)
78 return;
80 occ->min += d;
81 occ->depth += d;
84 /* Sets prev field of OCC to P. */
86 static inline void
87 set_prev (struct et_occ *occ, struct et_occ *t)
89 #ifdef DEBUG_ET
90 gcc_assert (occ != t);
91 #endif
93 occ->prev = t;
94 if (t)
95 t->parent = occ;
98 /* Sets next field of OCC to P. */
100 static inline void
101 set_next (struct et_occ *occ, struct et_occ *t)
103 #ifdef DEBUG_ET
104 gcc_assert (occ != t);
105 #endif
107 occ->next = t;
108 if (t)
109 t->parent = occ;
112 /* Recompute minimum for occurrence OCC. */
114 static inline void
115 et_recomp_min (struct et_occ *occ)
117 struct et_occ *mson = occ->prev;
119 if (!mson
120 || (occ->next
121 && mson->min > occ->next->min))
122 mson = occ->next;
124 if (mson && mson->min < 0)
126 occ->min = mson->min + occ->depth;
127 occ->min_occ = mson->min_occ;
129 else
131 occ->min = occ->depth;
132 occ->min_occ = occ;
136 #ifdef DEBUG_ET
137 /* Checks whether neighborhood of OCC seems sane. */
139 static void
140 et_check_occ_sanity (struct et_occ *occ)
142 if (!occ)
143 return;
145 gcc_assert (occ->parent != occ);
146 gcc_assert (occ->prev != occ);
147 gcc_assert (occ->next != occ);
148 gcc_assert (!occ->next || occ->next != occ->prev);
150 if (occ->next)
152 gcc_assert (occ->next != occ->parent);
153 gcc_assert (occ->next->parent == occ);
156 if (occ->prev)
158 gcc_assert (occ->prev != occ->parent);
159 gcc_assert (occ->prev->parent == occ);
162 gcc_assert (!occ->parent
163 || occ->parent->prev == occ
164 || occ->parent->next == occ);
167 /* Checks whether tree rooted at OCC is sane. */
169 static void
170 et_check_sanity (struct et_occ *occ)
172 et_check_occ_sanity (occ);
173 if (occ->prev)
174 et_check_sanity (occ->prev);
175 if (occ->next)
176 et_check_sanity (occ->next);
179 /* Checks whether tree containing OCC is sane. */
181 static void
182 et_check_tree_sanity (struct et_occ *occ)
184 while (occ->parent)
185 occ = occ->parent;
187 et_check_sanity (occ);
190 /* For recording the paths. */
192 /* An ad-hoc constant; if the function has more blocks, this won't work,
193 but since it is used for debugging only, it does not matter. */
194 #define MAX_NODES 100000
196 static int len;
197 static void *datas[MAX_NODES];
198 static int depths[MAX_NODES];
200 /* Records the path represented by OCC, with depth incremented by DEPTH. */
202 static int
203 record_path_before_1 (struct et_occ *occ, int depth)
205 int mn, m;
207 depth += occ->depth;
208 mn = depth;
210 if (occ->prev)
212 m = record_path_before_1 (occ->prev, depth);
213 if (m < mn)
214 mn = m;
217 fprintf (stderr, "%d (%d); ", ((basic_block) occ->of->data)->index, depth);
219 gcc_assert (len < MAX_NODES);
221 depths[len] = depth;
222 datas[len] = occ->of;
223 len++;
225 if (occ->next)
227 m = record_path_before_1 (occ->next, depth);
228 if (m < mn)
229 mn = m;
232 gcc_assert (mn == occ->min + depth - occ->depth);
234 return mn;
237 /* Records the path represented by a tree containing OCC. */
239 static void
240 record_path_before (struct et_occ *occ)
242 while (occ->parent)
243 occ = occ->parent;
245 len = 0;
246 record_path_before_1 (occ, 0);
247 fprintf (stderr, "\n");
250 /* Checks whether the path represented by OCC, with depth incremented by DEPTH,
251 was not changed since the last recording. */
253 static int
254 check_path_after_1 (struct et_occ *occ, int depth)
256 int mn, m;
258 depth += occ->depth;
259 mn = depth;
261 if (occ->next)
263 m = check_path_after_1 (occ->next, depth);
264 if (m < mn)
265 mn = m;
268 len--;
269 gcc_assert (depths[len] == depth && datas[len] == occ->of);
271 if (occ->prev)
273 m = check_path_after_1 (occ->prev, depth);
274 if (m < mn)
275 mn = m;
278 gcc_assert (mn == occ->min + depth - occ->depth);
280 return mn;
283 /* Checks whether the path represented by a tree containing OCC was
284 not changed since the last recording. */
286 static void
287 check_path_after (struct et_occ *occ)
289 while (occ->parent)
290 occ = occ->parent;
292 check_path_after_1 (occ, 0);
293 gcc_assert (!len);
296 #endif
298 /* Splay the occurrence OCC to the root of the tree. */
300 static void
301 et_splay (struct et_occ *occ)
303 struct et_occ *f, *gf, *ggf;
304 int occ_depth, f_depth, gf_depth;
306 #ifdef DEBUG_ET
307 record_path_before (occ);
308 et_check_tree_sanity (occ);
309 #endif
311 while (occ->parent)
313 occ_depth = occ->depth;
315 f = occ->parent;
316 f_depth = f->depth;
318 gf = f->parent;
320 if (!gf)
322 set_depth_add (occ, f_depth);
323 occ->min_occ = f->min_occ;
324 occ->min = f->min;
326 if (f->prev == occ)
328 /* zig */
329 set_prev (f, occ->next);
330 set_next (occ, f);
331 set_depth_add (f->prev, occ_depth);
333 else
335 /* zag */
336 set_next (f, occ->prev);
337 set_prev (occ, f);
338 set_depth_add (f->next, occ_depth);
340 set_depth (f, -occ_depth);
341 occ->parent = NULL;
343 et_recomp_min (f);
344 #ifdef DEBUG_ET
345 et_check_tree_sanity (occ);
346 check_path_after (occ);
347 #endif
348 return;
351 gf_depth = gf->depth;
353 set_depth_add (occ, f_depth + gf_depth);
354 occ->min_occ = gf->min_occ;
355 occ->min = gf->min;
357 ggf = gf->parent;
359 if (gf->prev == f)
361 if (f->prev == occ)
363 /* zig zig */
364 set_prev (gf, f->next);
365 set_prev (f, occ->next);
366 set_next (occ, f);
367 set_next (f, gf);
369 set_depth (f, -occ_depth);
370 set_depth_add (f->prev, occ_depth);
371 set_depth (gf, -f_depth);
372 set_depth_add (gf->prev, f_depth);
374 else
376 /* zag zig */
377 set_prev (gf, occ->next);
378 set_next (f, occ->prev);
379 set_prev (occ, f);
380 set_next (occ, gf);
382 set_depth (f, -occ_depth);
383 set_depth_add (f->next, occ_depth);
384 set_depth (gf, -occ_depth - f_depth);
385 set_depth_add (gf->prev, occ_depth + f_depth);
388 else
390 if (f->prev == occ)
392 /* zig zag */
393 set_next (gf, occ->prev);
394 set_prev (f, occ->next);
395 set_prev (occ, gf);
396 set_next (occ, f);
398 set_depth (f, -occ_depth);
399 set_depth_add (f->prev, occ_depth);
400 set_depth (gf, -occ_depth - f_depth);
401 set_depth_add (gf->next, occ_depth + f_depth);
403 else
405 /* zag zag */
406 set_next (gf, f->prev);
407 set_next (f, occ->prev);
408 set_prev (occ, f);
409 set_prev (f, gf);
411 set_depth (f, -occ_depth);
412 set_depth_add (f->next, occ_depth);
413 set_depth (gf, -f_depth);
414 set_depth_add (gf->next, f_depth);
418 occ->parent = ggf;
419 if (ggf)
421 if (ggf->prev == gf)
422 ggf->prev = occ;
423 else
424 ggf->next = occ;
427 et_recomp_min (gf);
428 et_recomp_min (f);
429 #ifdef DEBUG_ET
430 et_check_tree_sanity (occ);
431 #endif
434 #ifdef DEBUG_ET
435 et_check_sanity (occ);
436 check_path_after (occ);
437 #endif
440 /* Create a new et tree occurrence of NODE. */
442 static struct et_occ *
443 et_new_occ (struct et_node *node)
445 struct et_occ *nw;
447 if (!et_occurrences)
448 et_occurrences = create_alloc_pool ("et_occ pool", sizeof (struct et_occ), 300);
449 nw = (struct et_occ *) pool_alloc (et_occurrences);
451 nw->of = node;
452 nw->parent = NULL;
453 nw->prev = NULL;
454 nw->next = NULL;
456 nw->depth = 0;
457 nw->min_occ = nw;
458 nw->min = 0;
460 return nw;
463 /* Create a new et tree containing DATA. */
465 struct et_node *
466 et_new_tree (void *data)
468 struct et_node *nw;
470 if (!et_nodes)
471 et_nodes = create_alloc_pool ("et_node pool", sizeof (struct et_node), 300);
472 nw = (struct et_node *) pool_alloc (et_nodes);
474 nw->data = data;
475 nw->father = NULL;
476 nw->left = NULL;
477 nw->right = NULL;
478 nw->son = NULL;
480 nw->rightmost_occ = et_new_occ (nw);
481 nw->parent_occ = NULL;
483 return nw;
486 /* Releases et tree T. */
488 void
489 et_free_tree (struct et_node *t)
491 while (t->son)
492 et_split (t->son);
494 if (t->father)
495 et_split (t);
497 pool_free (et_occurrences, t->rightmost_occ);
498 pool_free (et_nodes, t);
501 /* Releases et tree T without maintaining other nodes. */
503 void
504 et_free_tree_force (struct et_node *t)
506 pool_free (et_occurrences, t->rightmost_occ);
507 if (t->parent_occ)
508 pool_free (et_occurrences, t->parent_occ);
509 pool_free (et_nodes, t);
512 /* Release the alloc pools, if they are empty. */
514 void
515 et_free_pools (void)
517 free_alloc_pool_if_empty (&et_occurrences);
518 free_alloc_pool_if_empty (&et_nodes);
521 /* Sets father of et tree T to FATHER. */
523 void
524 et_set_father (struct et_node *t, struct et_node *father)
526 struct et_node *left, *right;
527 struct et_occ *rmost, *left_part, *new_f_occ, *p;
529 /* Update the path represented in the splay tree. */
530 new_f_occ = et_new_occ (father);
532 rmost = father->rightmost_occ;
533 et_splay (rmost);
535 left_part = rmost->prev;
537 p = t->rightmost_occ;
538 et_splay (p);
540 set_prev (new_f_occ, left_part);
541 set_next (new_f_occ, p);
543 p->depth++;
544 p->min++;
545 et_recomp_min (new_f_occ);
547 set_prev (rmost, new_f_occ);
549 if (new_f_occ->min + rmost->depth < rmost->min)
551 rmost->min = new_f_occ->min + rmost->depth;
552 rmost->min_occ = new_f_occ->min_occ;
555 t->parent_occ = new_f_occ;
557 /* Update the tree. */
558 t->father = father;
559 right = father->son;
560 if (right)
561 left = right->left;
562 else
563 left = right = t;
565 left->right = t;
566 right->left = t;
567 t->left = left;
568 t->right = right;
570 father->son = t;
572 #ifdef DEBUG_ET
573 et_check_tree_sanity (rmost);
574 record_path_before (rmost);
575 #endif
578 /* Splits the edge from T to its father. */
580 void
581 et_split (struct et_node *t)
583 struct et_node *father = t->father;
584 struct et_occ *r, *l, *rmost, *p_occ;
586 /* Update the path represented by the splay tree. */
587 rmost = t->rightmost_occ;
588 et_splay (rmost);
590 for (r = rmost->next; r->prev; r = r->prev)
591 continue;
592 et_splay (r);
594 r->prev->parent = NULL;
595 p_occ = t->parent_occ;
596 et_splay (p_occ);
597 t->parent_occ = NULL;
599 l = p_occ->prev;
600 p_occ->next->parent = NULL;
602 set_prev (r, l);
604 et_recomp_min (r);
606 et_splay (rmost);
607 rmost->depth = 0;
608 rmost->min = 0;
610 pool_free (et_occurrences, p_occ);
612 /* Update the tree. */
613 if (father->son == t)
614 father->son = t->right;
615 if (father->son == t)
616 father->son = NULL;
617 else
619 t->left->right = t->right;
620 t->right->left = t->left;
622 t->left = t->right = NULL;
623 t->father = NULL;
625 #ifdef DEBUG_ET
626 et_check_tree_sanity (rmost);
627 record_path_before (rmost);
629 et_check_tree_sanity (r);
630 record_path_before (r);
631 #endif
634 /* Finds the nearest common ancestor of the nodes N1 and N2. */
636 struct et_node *
637 et_nca (struct et_node *n1, struct et_node *n2)
639 struct et_occ *o1 = n1->rightmost_occ, *o2 = n2->rightmost_occ, *om;
640 struct et_occ *l, *r, *ret;
641 int mn;
643 if (n1 == n2)
644 return n1;
646 et_splay (o1);
647 l = o1->prev;
648 r = o1->next;
649 if (l)
650 l->parent = NULL;
651 if (r)
652 r->parent = NULL;
653 et_splay (o2);
655 if (l == o2 || (l && l->parent != NULL))
657 ret = o2->next;
659 set_prev (o1, o2);
660 if (r)
661 r->parent = o1;
663 else if (r == o2 || (r && r->parent != NULL))
665 ret = o2->prev;
667 set_next (o1, o2);
668 if (l)
669 l->parent = o1;
671 else
673 /* O1 and O2 are in different components of the forest. */
674 if (l)
675 l->parent = o1;
676 if (r)
677 r->parent = o1;
678 return NULL;
681 if (0 < o2->depth)
683 om = o1;
684 mn = o1->depth;
686 else
688 om = o2;
689 mn = o2->depth + o1->depth;
692 #ifdef DEBUG_ET
693 et_check_tree_sanity (o2);
694 #endif
696 if (ret && ret->min + o1->depth + o2->depth < mn)
697 return ret->min_occ->of;
698 else
699 return om->of;
702 /* Checks whether the node UP is an ancestor of the node DOWN. */
704 bool
705 et_below (struct et_node *down, struct et_node *up)
707 struct et_occ *u = up->rightmost_occ, *d = down->rightmost_occ;
708 struct et_occ *l, *r;
710 if (up == down)
711 return true;
713 et_splay (u);
714 l = u->prev;
715 r = u->next;
717 if (!l)
718 return false;
720 l->parent = NULL;
722 if (r)
723 r->parent = NULL;
725 et_splay (d);
727 if (l == d || l->parent != NULL)
729 if (r)
730 r->parent = u;
731 set_prev (u, d);
732 #ifdef DEBUG_ET
733 et_check_tree_sanity (u);
734 #endif
736 else
738 l->parent = u;
740 /* In case O1 and O2 are in two different trees, we must just restore the
741 original state. */
742 if (r && r->parent != NULL)
743 set_next (u, d);
744 else
745 set_next (u, r);
747 #ifdef DEBUG_ET
748 et_check_tree_sanity (u);
749 #endif
750 return false;
753 if (0 >= d->depth)
754 return false;
756 return !d->next || d->next->min + d->depth >= 0;
759 /* Returns the root of the tree that contains NODE. */
761 struct et_node *
762 et_root (struct et_node *node)
764 struct et_occ *occ = node->rightmost_occ, *r;
766 /* The root of the tree corresponds to the rightmost occurrence in the
767 represented path. */
768 et_splay (occ);
769 for (r = occ; r->next; r = r->next)
770 continue;
771 et_splay (r);
773 return r->of;