Home
last modified time | relevance | path

Searched refs:bbs_to_fix_dom (Results 1 – 5 of 5) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dtree-switch-conversion.c939 vec<basic_block> bbs_to_fix_dom; in gen_inbound_check() local
948 bbs_to_fix_dom.create (3 + (bb2 != bbf)); in gen_inbound_check()
949 bbs_to_fix_dom.quick_push (bb0); in gen_inbound_check()
950 bbs_to_fix_dom.quick_push (bb1); in gen_inbound_check()
952 bbs_to_fix_dom.quick_push (bb2); in gen_inbound_check()
953 bbs_to_fix_dom.quick_push (bbf); in gen_inbound_check()
955 iterate_fix_dominators (CDI_DOMINATORS, bbs_to_fix_dom, true); in gen_inbound_check()
956 bbs_to_fix_dom.release (); in gen_inbound_check()
H A Dtree-cfg.c8649 vec<basic_block> bbs_to_fix_dom = vNULL; in remove_edge_and_dominated_blocks() local
8760 bbs_to_fix_dom.safe_push (dbb); in remove_edge_and_dominated_blocks()
8763 iterate_fix_dominators (CDI_DOMINATORS, bbs_to_fix_dom, true); in remove_edge_and_dominated_blocks()
8766 bbs_to_fix_dom.release (); in remove_edge_and_dominated_blocks()
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dtree-switch-conversion.cc940 vec<basic_block> bbs_to_fix_dom; in gen_inbound_check() local
949 bbs_to_fix_dom.create (3 + (bb2 != bbf)); in gen_inbound_check()
950 bbs_to_fix_dom.quick_push (bb0); in gen_inbound_check()
951 bbs_to_fix_dom.quick_push (bb1); in gen_inbound_check()
953 bbs_to_fix_dom.quick_push (bb2); in gen_inbound_check()
954 bbs_to_fix_dom.quick_push (bbf); in gen_inbound_check()
956 iterate_fix_dominators (CDI_DOMINATORS, bbs_to_fix_dom, true); in gen_inbound_check()
957 bbs_to_fix_dom.release (); in gen_inbound_check()
H A Dtree-cfg.cc8742 vec<basic_block> bbs_to_fix_dom = vNULL; in remove_edge_and_dominated_blocks() local
8854 bbs_to_fix_dom.safe_push (dbb); in remove_edge_and_dominated_blocks()
8857 iterate_fix_dominators (CDI_DOMINATORS, bbs_to_fix_dom, true); in remove_edge_and_dominated_blocks()
8859 bbs_to_fix_dom.release (); in remove_edge_and_dominated_blocks()
H A DChangeLog-200718907 (remove_edge_and_dominated_blocks): Pass vector to bbs_to_fix_dom.