Searched refs:son (Results 1 - 17 of 17) sorted by relevance

/haiku-buildtools/gcc/gcc/
H A Ddominance.c608 struct et_node *son; local
612 if (node->son)
614 assign_dfs_numbers (node->son, num);
615 for (son = node->son->right; son != node->son; son = son->right)
616 assign_dfs_numbers (son, nu
766 struct et_node *node = bb->dom[dir_index], *son = node->son, *ason; local
825 basic_block son; local
856 struct et_node *bb_node, *to_node, *son; local
1180 determine_dominators_for_sons(struct graph *g, vec<basic_block> bbs, int y, int *son, int *brother) argument
1271 int *parent, *son, *brother; local
1458 struct et_node *son = bb->dom[dir_index]->son; local
1534 basic_block son; local
[all...]
H A Det-forest.h63 struct et_node *son; /* The first of the sons of the node. */ member in struct:et_node
H A Dtree-ssa-sink.c491 basic_block son; local
567 for (son = first_dom_son (CDI_POST_DOMINATORS, bb);
568 son;
569 son = next_dom_son (CDI_POST_DOMINATORS, son))
571 sink_code_in_bb (son);
H A Det-forest.c52 struct et_occ *prev; /* Left son in the splay-tree. */
53 struct et_occ *next; /* Right son in the splay-tree. */
485 nw->son = NULL;
498 while (t->son)
499 et_split (t->son);
566 right = father->son;
577 father->son = t;
620 if (father->son == t)
621 father->son = t->right;
622 if (father->son
[all...]
H A Dsanopt.c556 basic_block son; local
624 for (son = first_dom_son (CDI_DOMINATORS, bb);
625 son;
626 son = next_dom_son (CDI_DOMINATORS, son))
627 sanopt_optimize_walker (son, ctx);
H A Dgraphds.c388 int *parent, int *son, int *brother)
417 son[i] = -1;
455 brother[i] = son[parent[i]];
456 son[parent[i]] = i;
387 graphds_domtree(struct graph *g, int entry, int *parent, int *son, int *brother) argument
H A Dcfgloop.c868 basic_block son, postpone = NULL;
871 for (son = first_dom_son (CDI_DOMINATORS, bb);
872 son;
873 son = next_dom_son (CDI_DOMINATORS, son))
875 if (!flow_bb_inside_loop_p (loop, son))
878 if (dominated_by_p (CDI_DOMINATORS, loop->latch, son))
880 postpone = son;
883 fill_sons_in_loop (loop, son, tovisit, tv);
867 basic_block son, postpone = NULL; local
H A Dtree-ssa-loop-manip.c962 basic_block son; local
967 for (son = first_dom_son (CDI_DOMINATORS, bb);
968 son;
969 son = next_dom_son (CDI_DOMINATORS, son))
971 if (!flow_bb_inside_loop_p (loop, son))
973 scale_bbs_frequencies_int (&son, 1, num, den);
974 scale_dominated_blocks_in_loop (loop, son, num, den);
H A Dtree-ssa-pre.c3552 basic_block son; local
3585 for (son = first_dom_son (CDI_DOMINATORS, block);
3586 son;
3587 son = next_dom_son (CDI_DOMINATORS, son))
3589 new_stuff |= insert_aux (son);
3638 basic_block block, son; local
3675 for (son = first_dom_son (CDI_DOMINATORS, ENTRY_BLOCK_PTR_FOR_FN (cfun));
3676 son;
3677 son
[all...]
H A Dtree-ssa-reassoc.c4374 basic_block son; local
4405 for (son = first_dom_son (CDI_DOMINATORS, bb);
4406 son;
4407 son = next_dom_son (CDI_DOMINATORS, son))
4408 break_up_subtract_bb (son);
4809 basic_block son; local
4966 for (son = first_dom_son (CDI_POST_DOMINATORS, bb);
4967 son;
4968 son
[all...]
H A Dcfgrtl.c2372 basic_block son;
2373 for (son = first_dom_son (CDI_DOMINATORS, bb);
2374 son;
2375 son = next_dom_son (CDI_DOMINATORS, son))
2377 /* If son is not yet cold, then mark it cold here and
2379 if ((BB_PARTITION (son) != BB_COLD_PARTITION))
2383 "by a block in the cold partition (%d)", son->index, bb->index);
2385 BB_SET_PARTITION (son, BB_COLD_PARTITION);
2386 bbs_to_fix.safe_push (son);
2360 basic_block son; local
[all...]
H A Dpredict.c2404 basic_block son;
2444 for (son = first_dom_son (CDI_POST_DOMINATORS, cur);
2445 son;
2446 son = next_dom_son (CDI_POST_DOMINATORS, son))
2447 predict_paths_for_bb (son, bb, pred, taken, visited);
2401 basic_block son; local
H A Dtree-into-ssa.c2542 basic_block son; local
2625 for (son = first_dom_son (CDI_DOMINATORS, bb);
2626 son;
2627 son = next_dom_son (CDI_DOMINATORS, son))
2628 prepare_block_for_update (son, insert_phi_p);
H A Dtree-ssa-dom.c3097 basic_block son; local
3107 for (son = first_dom_son (CDI_DOMINATORS, bb);
3108 son;
3109 son = next_dom_son (CDI_DOMINATORS, son))
3110 eliminate_degenerate_phis_1 (son, interesting_names);
H A Dtrans-mem.c4513 basic_block son;
4514 for (son = first_dom_son (CDI_DOMINATORS, bb);
4515 son;
4516 son = next_dom_son (CDI_DOMINATORS, son))
4520 if ((!old_irr || !bitmap_bit_p (old_irr, son->index))
4521 && bitmap_bit_p (all_region_blocks, son->index))
4522 bitmap_set_bit (new_irr, son->index);
H A Dtree-cfg.c6327 basic_block son; local
6329 for (son = first_dom_son (CDI_DOMINATORS, entry);
6330 son;
6331 son = next_dom_son (CDI_DOMINATORS, son))
6333 bbs_p->safe_push (son);
6334 if (son != exit)
6335 gather_blocks_in_sese_region (son, exit, bbs_p);
H A Domp-low.c9377 basic_block son;
9451 for (son = first_dom_son (CDI_DOMINATORS, bb);
9452 son;
9453 son = next_dom_son (CDI_DOMINATORS, son))
9454 build_omp_regions_1 (son, parent, single_tree);
9376 basic_block son; local

Completed in 427 milliseconds