reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/polly/lib/External/isl/isl_tarjan.c
   73 	for (j = g->len - 1; j >= 0; --j) {
   73 	for (j = g->len - 1; j >= 0; --j) {
   73 	for (j = g->len - 1; j >= 0; --j) {
   76 		if (j == i)
   78 		if (g->node[j].index >= 0 &&
   79 			(!g->node[j].on_stack ||
   80 			 g->node[j].index > g->node[i].min_index))
   83 		f = follows(i, j, user);
   89 		if (g->node[j].index < 0) {
   90 			isl_tarjan_components(g, j, follows, user);
   91 			if (g->node[j].min_index < g->node[i].min_index)
   92 				g->node[i].min_index = g->node[j].min_index;
   93 		} else if (g->node[j].index < g->node[i].min_index)
   94 			g->node[i].min_index = g->node[j].index;
  101 		j = g->stack[--g->sp];
  102 		g->node[j].on_stack = 0;
  103 		g->order[g->op++] = j;
  104 	} while (j != i);