* elf32-i386.c (elf_i386_relocate_section): Check !DEF_REGULAR
[binutils.git] / gprof / cg_dfn.c
blob02d64e7388865c82bb0c53f87eab2a71596a2742
1 /*
2 * Copyright (c) 1983 Regents of the University of California.
3 * All rights reserved.
5 * Redistribution and use in source and binary forms are permitted
6 * provided that: (1) source distributions retain this entire copyright
7 * notice and comment, and (2) distributions including binaries display
8 * the following acknowledgement: ``This product includes software
9 * developed by the University of California, Berkeley and its contributors''
10 * in the documentation or other materials provided with the distribution
11 * and in all advertising materials mentioning features or use of this
12 * software. Neither the name of the University nor the names of its
13 * contributors may be used to endorse or promote products derived
14 * from this software without specific prior written permission.
15 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
16 * IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
17 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
19 #include <stdio.h>
20 #include "libiberty.h"
21 #include "gprof.h"
22 #include "cg_arcs.h"
23 #include "cg_dfn.h"
24 #include "symtab.h"
25 #include "utils.h"
27 #define DFN_INCR_DEPTH (128)
29 typedef struct
31 Sym *sym;
32 int cycle_top;
34 DFN_Stack;
36 DFN_Stack *dfn_stack = NULL;
37 int dfn_maxdepth = 0;
38 int dfn_depth = 0;
39 int dfn_counter = DFN_NAN;
43 * Is CHILD already numbered?
45 static bool
46 DEFUN (is_numbered, (child), Sym * child)
48 return child->cg.top_order != DFN_NAN && child->cg.top_order != DFN_BUSY;
53 * Is CHILD already busy?
55 static bool
56 DEFUN (is_busy, (child), Sym * child)
58 if (child->cg.top_order == DFN_NAN)
60 return FALSE;
62 return TRUE;
67 * CHILD is part of a cycle. Find the top caller into this cycle
68 * that is not part of the cycle and make all functions in cycle
69 * members of that cycle (top caller == caller with smallest
70 * depth-first number).
72 static void
73 DEFUN (find_cycle, (child), Sym * child)
75 Sym *head = 0;
76 Sym *tail;
77 int cycle_top;
78 int index;
80 for (cycle_top = dfn_depth; cycle_top > 0; --cycle_top)
82 head = dfn_stack[cycle_top].sym;
83 if (child == head)
85 break;
87 if (child->cg.cyc.head != child && child->cg.cyc.head == head)
89 break;
92 if (cycle_top <= 0)
94 fprintf (stderr, "[find_cycle] couldn't find head of cycle\n");
95 done (1);
97 #ifdef DEBUG
98 if (debug_level & DFNDEBUG)
100 printf ("[find_cycle] dfn_depth %d cycle_top %d ",
101 dfn_depth, cycle_top);
102 if (head)
104 print_name (head);
106 else
108 printf ("<unknown>");
110 printf ("\n");
112 #endif
113 if (cycle_top == dfn_depth)
116 * This is previous function, e.g. this calls itself. Sort of
117 * boring.
119 * Since we are taking out self-cycles elsewhere no need for
120 * the special case, here.
122 DBG (DFNDEBUG,
123 printf ("[find_cycle] ");
124 print_name (child);
125 printf ("\n"));
127 else
130 * Glom intervening functions that aren't already glommed into
131 * this cycle. Things have been glommed when their cyclehead
132 * field points to the head of the cycle they are glommed
133 * into.
135 for (tail = head; tail->cg.cyc.next; tail = tail->cg.cyc.next)
137 /* void: chase down to tail of things already glommed */
138 DBG (DFNDEBUG,
139 printf ("[find_cycle] tail ");
140 print_name (tail);
141 printf ("\n"));
144 * If what we think is the top of the cycle has a cyclehead
145 * field, then it's not really the head of the cycle, which is
146 * really what we want.
148 if (head->cg.cyc.head != head)
150 head = head->cg.cyc.head;
151 DBG (DFNDEBUG, printf ("[find_cycle] new cyclehead ");
152 print_name (head);
153 printf ("\n"));
155 for (index = cycle_top + 1; index <= dfn_depth; ++index)
157 child = dfn_stack[index].sym;
158 if (child->cg.cyc.head == child)
161 * Not yet glommed anywhere, glom it and fix any
162 * children it has glommed.
164 tail->cg.cyc.next = child;
165 child->cg.cyc.head = head;
166 DBG (DFNDEBUG, printf ("[find_cycle] glomming ");
167 print_name (child);
168 printf (" onto ");
169 print_name (head);
170 printf ("\n"));
171 for (tail = child; tail->cg.cyc.next; tail = tail->cg.cyc.next)
173 tail->cg.cyc.next->cg.cyc.head = head;
174 DBG (DFNDEBUG, printf ("[find_cycle] and its tail ");
175 print_name (tail->cg.cyc.next);
176 printf (" onto ");
177 print_name (head);
178 printf ("\n"));
181 else if (child->cg.cyc.head != head /* firewall */ )
183 fprintf (stderr, "[find_cycle] glommed, but not to head\n");
184 done (1);
192 * Prepare for visiting the children of PARENT. Push a parent onto
193 * the stack and mark it busy.
195 static void
196 DEFUN (pre_visit, (parent), Sym * parent)
198 ++dfn_depth;
200 if (dfn_depth >= dfn_maxdepth)
202 dfn_maxdepth += DFN_INCR_DEPTH;
203 dfn_stack = xrealloc (dfn_stack, dfn_maxdepth * sizeof *dfn_stack);
206 dfn_stack[dfn_depth].sym = parent;
207 dfn_stack[dfn_depth].cycle_top = dfn_depth;
208 parent->cg.top_order = DFN_BUSY;
209 DBG (DFNDEBUG, printf ("[pre_visit]\t\t%d:", dfn_depth);
210 print_name (parent);
211 printf ("\n"));
216 * Done with visiting node PARENT. Pop PARENT off dfn_stack
217 * and number functions if PARENT is head of a cycle.
219 static void
220 DEFUN (post_visit, (parent), Sym * parent)
222 Sym *member;
224 DBG (DFNDEBUG, printf ("[post_visit]\t%d: ", dfn_depth);
225 print_name (parent);
226 printf ("\n"));
228 * Number functions and things in their cycles unless the function
229 * is itself part of a cycle:
231 if (parent->cg.cyc.head == parent)
233 ++dfn_counter;
234 for (member = parent; member; member = member->cg.cyc.next)
236 member->cg.top_order = dfn_counter;
237 DBG (DFNDEBUG, printf ("[post_visit]\t\tmember ");
238 print_name (member);
239 printf ("-> cg.top_order = %d\n", dfn_counter));
242 else
244 DBG (DFNDEBUG, printf ("[post_visit]\t\tis part of a cycle\n"));
246 --dfn_depth;
251 * Given this PARENT, depth first number its children.
253 void
254 DEFUN (cg_dfn, (parent), Sym * parent)
256 Arc *arc;
258 DBG (DFNDEBUG, printf ("[dfn] dfn( ");
259 print_name (parent);
260 printf (")\n"));
262 * If we're already numbered, no need to look any further:
264 if (is_numbered (parent))
266 return;
269 * If we're already busy, must be a cycle:
271 if (is_busy (parent))
273 find_cycle (parent);
274 return;
276 pre_visit (parent);
278 * Recursively visit children:
280 for (arc = parent->cg.children; arc; arc = arc->next_child)
282 cg_dfn (arc->child);
284 post_visit (parent);