Home
last modified time | relevance | path

Searched refs:fallthru (Results 1 – 25 of 73) sorted by relevance

123

/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dblockexit.d40 fallthru = 1, enumerator
48 any = (fallthru | throw_ | return_ | goto_ | halt),
94 result = BE.fallthru; in blockExit()
120 result = BE.fallthru; in blockExit()
126 result = BE.fallthru; in blockExit()
134 if (result & BE.fallthru && slast) in blockExit()
161 if (!(result & BE.fallthru) && !s.comeFrom()) in blockExit()
169 result &= ~BE.fallthru; in blockExit()
179 result = BE.fallthru; in blockExit()
185 result |= r & ~(BE.break_ | BE.continue_ | BE.fallthru); in blockExit()
[all …]
H A Dsemantic3.d784 if (blockexit & BE.fallthru) in visit()
795 if (blockexit & BE.fallthru) in visit()
807 if (blockexit & BE.fallthru) in visit()
816 … if ((blockexit & BE.fallthru) && f.next.ty != Tvoid && !inlineAsm && !(sc.flags & SCOPE.Cfile)) in visit()
1169 if (sbody.blockExit(funcdecl, f.isnothrow) == BE.fallthru) in visit()
/netbsd-src/external/bsd/byacc/dist/
H A Dvmsbuild.com156 $! fallthru
165 $! fallthru
175 $! fallthru
/netbsd-src/external/gpl3/gcc.old/dist/gcc/
H A Dcfgbuild.c446 edge fallthru = NULL; in find_bb_boundaries() local
547 fallthru = split_block (bb, prev); in find_bb_boundaries()
555 x != BB_HEAD (fallthru->dest); in find_bb_boundaries()
568 bb = fallthru->dest; in find_bb_boundaries()
569 remove_edge (fallthru); in find_bb_boundaries()
H A Dcfgcleanup.c1312 edge fallthru; in walk_to_nondebug_insn() local
1328 fallthru = find_fallthru_edge ((*bb1)->preds); in walk_to_nondebug_insn()
1329 if (!fallthru || fallthru->src == ENTRY_BLOCK_PTR_FOR_FN (cfun) in walk_to_nondebug_insn()
1330 || !single_succ_p (fallthru->src)) in walk_to_nondebug_insn()
1333 *bb1 = fallthru->src; in walk_to_nondebug_insn()
2183 edge e, e2, fallthru; in try_crossjump_bb() local
2216 fallthru = NULL; in try_crossjump_bb()
2222 fallthru = find_fallthru_edge (bb->preds); in try_crossjump_bb()
2232 if (fallthru) in try_crossjump_bb()
2236 if (e == fallthru) in try_crossjump_bb()
[all …]
H A Dcfghooks.c870 edge e, fallthru; in make_forwarder_block() local
879 fallthru = split_block_after_labels (bb); in make_forwarder_block()
880 dummy = fallthru->src; in make_forwarder_block()
882 bb = fallthru->dest; in make_forwarder_block()
953 cfg_hooks->make_forwarder_block (fallthru); in make_forwarder_block()
955 return fallthru; in make_forwarder_block()
H A Dtree-cfgcleanup.c1030 edge fallthru = make_forwarder_block (bb, mfb_keep_latches, in cleanup_tree_cfg_noloop() local
1032 loop->header = fallthru->dest; in cleanup_tree_cfg_noloop()
1037 remove_bb_from_loops (fallthru->src); in cleanup_tree_cfg_noloop()
1039 FOR_EACH_EDGE (e, ei, fallthru->src->preds) in cleanup_tree_cfg_noloop()
1041 add_bb_to_loop (fallthru->src, cloop); in cleanup_tree_cfg_noloop()
H A Dtree-cfg.c852 bool fallthru = false; in make_edges_bb() local
863 fallthru = false; in make_edges_bb()
869 fallthru = false; in make_edges_bb()
874 fallthru = false; in make_edges_bb()
878 fallthru = false; in make_edges_bb()
882 fallthru = false; in make_edges_bb()
885 fallthru = make_eh_dispatch_edges (as_a <geh_dispatch *> (last)); in make_edges_bb()
903 fallthru = false; in make_edges_bb()
907 fallthru = !gimple_call_noreturn_p (last); in make_edges_bb()
915 fallthru = true; in make_edges_bb()
[all …]
H A Dlower-subreg.c1701 edge fallthru; in decompose_multiword_subregs() local
1714 fallthru = split_block (bb, insn); in decompose_multiword_subregs()
1716 bb = fallthru->dest; in decompose_multiword_subregs()
H A Dcfgloopmanip.c1533 edge fallthru = make_forwarder_block (loop->header, mfb_keep_just, NULL); in create_preheader() local
1534 dummy = fallthru->src; in create_preheader()
1535 loop->header = fallthru->dest; in create_preheader()
H A Dcfgrtl.c1047 int fallthru = 0; in try_redirect_by_replacing_jump() local
1094 fallthru = 1; in try_redirect_by_replacing_jump()
1184 if (fallthru) in try_redirect_by_replacing_jump()
2554 edge e, fallthru = NULL; in rtl_verify_edges() local
2589 n_fallthru++, fallthru = e; in rtl_verify_edges()
2688 && JUMP_LABEL (BB_END (bb)) != BB_HEAD (fallthru->dest)) in rtl_verify_edges()
4849 rtl_make_forwarder_block (edge fallthru ATTRIBUTE_UNUSED) in rtl_make_forwarder_block()
H A Domp-simd-clone.c1332 edge fallthru = FALLTHRU_EDGE (loop->header); in simd_clone_adjust() local
1333 fallthru->flags = EDGE_FALSE_VALUE; in simd_clone_adjust()
1334 fallthru->probability = profile_probability::likely ().guessed (); in simd_clone_adjust()
/netbsd-src/external/gpl3/gcc/dist/gcc/
H A Dcfgbuild.cc446 edge fallthru = NULL; in find_bb_boundaries() local
547 fallthru = split_block (bb, prev); in find_bb_boundaries()
555 x != BB_HEAD (fallthru->dest); in find_bb_boundaries()
568 bb = fallthru->dest; in find_bb_boundaries()
569 remove_edge (fallthru); in find_bb_boundaries()
H A Dcfgcleanup.cc1311 edge fallthru; in walk_to_nondebug_insn() local
1327 fallthru = find_fallthru_edge ((*bb1)->preds); in walk_to_nondebug_insn()
1328 if (!fallthru || fallthru->src == ENTRY_BLOCK_PTR_FOR_FN (cfun) in walk_to_nondebug_insn()
1329 || !single_succ_p (fallthru->src)) in walk_to_nondebug_insn()
1332 *bb1 = fallthru->src; in walk_to_nondebug_insn()
2174 edge e, e2, fallthru; in try_crossjump_bb() local
2207 fallthru = NULL; in try_crossjump_bb()
2213 fallthru = find_fallthru_edge (bb->preds); in try_crossjump_bb()
2223 if (fallthru) in try_crossjump_bb()
2227 if (e == fallthru) in try_crossjump_bb()
[all …]
H A Dcfghooks.cc892 edge e, fallthru; in make_forwarder_block() local
901 fallthru = split_block_after_labels (bb); in make_forwarder_block()
902 dummy = fallthru->src; in make_forwarder_block()
904 bb = fallthru->dest; in make_forwarder_block()
975 cfg_hooks->make_forwarder_block (fallthru); in make_forwarder_block()
977 return fallthru; in make_forwarder_block()
H A Dtree-cfgcleanup.cc1048 edge fallthru = make_forwarder_block (bb, mfb_keep_latches, in cleanup_tree_cfg_noloop() local
1050 loop->header = fallthru->dest; in cleanup_tree_cfg_noloop()
1055 remove_bb_from_loops (fallthru->src); in cleanup_tree_cfg_noloop()
1057 FOR_EACH_EDGE (e, ei, fallthru->src->preds) in cleanup_tree_cfg_noloop()
1059 add_bb_to_loop (fallthru->src, cloop); in cleanup_tree_cfg_noloop()
H A Dtree-cfg.cc849 bool fallthru = false; in make_edges_bb() local
860 fallthru = false; in make_edges_bb()
866 fallthru = false; in make_edges_bb()
871 fallthru = false; in make_edges_bb()
875 fallthru = false; in make_edges_bb()
879 fallthru = false; in make_edges_bb()
882 fallthru = make_eh_dispatch_edges (as_a <geh_dispatch *> (last)); in make_edges_bb()
900 fallthru = false; in make_edges_bb()
904 fallthru = !gimple_call_noreturn_p (last); in make_edges_bb()
912 fallthru = true; in make_edges_bb()
[all …]
H A Dlower-subreg.cc1712 edge fallthru; in decompose_multiword_subregs() local
1725 fallthru = split_block (bb, insn); in decompose_multiword_subregs()
1727 bb = fallthru->dest; in decompose_multiword_subregs()
H A Dcfgloopmanip.cc1464 edge fallthru = make_forwarder_block (loop->header, mfb_keep_just, NULL); in create_preheader() local
1465 dummy = fallthru->src; in create_preheader()
1466 loop->header = fallthru->dest; in create_preheader()
H A Dcfgrtl.cc1059 int fallthru = 0; in try_redirect_by_replacing_jump() local
1099 fallthru = 1; in try_redirect_by_replacing_jump()
1188 if (fallthru) in try_redirect_by_replacing_jump()
2574 edge e, fallthru = NULL; in rtl_verify_edges() local
2609 n_fallthru++, fallthru = e; in rtl_verify_edges()
2708 && JUMP_LABEL (BB_END (bb)) != BB_HEAD (fallthru->dest)) in rtl_verify_edges()
4958 rtl_make_forwarder_block (edge fallthru ATTRIBUTE_UNUSED) in rtl_make_forwarder_block()
H A Domp-simd-clone.cc1344 edge fallthru = FALLTHRU_EDGE (loop->header); in simd_clone_adjust() local
1345 fallthru->flags = EDGE_FALSE_VALUE; in simd_clone_adjust()
1346 fallthru->probability = profile_probability::likely ().guessed (); in simd_clone_adjust()
H A Dcfg-flags.def109 edges are fallthru edges. In cfgrtl mode, this flag really means
/netbsd-src/external/gpl3/gdb/dist/gdb/testsuite/gdb.arch/
H A Damd64-stap-three-arg-disp.S9 # PRED: ENTRY (fallthru)
/netbsd-src/external/gpl3/gcc.old/dist/gcc/config/aarch64/
H A Datomics.md277 /* fallthru */
305 /* fallthru */
435 /* fallthru */
463 /* fallthru */
/netbsd-src/external/gpl3/gcc/dist/gcc/config/aarch64/
H A Datomics.md277 /* fallthru */
305 /* fallthru */
435 /* fallthru */
463 /* fallthru */

123