Home | History | Annotate | Download | only in gcc

Lines Matching defs:father

279    superloop is FATHER.  */
282 establish_preds (class loop *loop, class loop *father)
285 unsigned depth = loop_depth (father) + 1;
290 FOR_EACH_VEC_SAFE_ELT (father->superloops, i, ploop)
292 loop->superloops->quick_push (father);
298 /* Add LOOP to the loop hierarchy tree where FATHER is father of the
306 flow_loop_tree_node_add (class loop *father, class loop *loop,
316 loop->next = father->inner;
317 father->inner = loop;
320 establish_preds (loop, father);
328 class loop *prev, *father;
330 father = loop_outer (loop);
333 if (father->inner == loop)
334 father->inner = loop->next;
337 for (prev = father->inner; prev->next != loop; prev = prev->next)
1397 -- the cached loop depth and loop father of each bb is correct
1453 /* Check the recorded loop father and sizes of loops. */
1494 error ("bb %d has father loop %d, should be loop %d",