HomeSort by: relevance | last modified time | path
    Searched defs:bb1 (Results 1 - 25 of 57) sorted by relevancy

1 2 3

  /src/external/gpl3/gcc/dist/gcc/
domwalk.cc 134 basic_block bb1 = *(const basic_block *)(a); local
138 return bb_postorder[bb2->index] - bb_postorder[bb1->index];
149 basic_block bb0 = bbs[0], bb1 = bbs[1]; local
150 if (bb_postorder[bb0->index] < bb_postorder[bb1->index])
151 bbs[0] = bb1, bbs[1] = bb0;
155 basic_block bb0 = bbs[0], bb1 = bbs[1], bb2 = bbs[2]; local
156 if (bb_postorder[bb0->index] < bb_postorder[bb1->index])
157 std::swap (bb0, bb1);
158 if (bb_postorder[bb1->index] < bb_postorder[bb2->index])
160 std::swap (bb1, bb2)
    [all...]
sched-ebb.cc 232 basic_block bb1 = BLOCK_FOR_INSN (insn1);
235 if (bb1->count > bb2->count)
237 if (bb1->count < bb2->count)
230 basic_block bb1 = BLOCK_FOR_INSN (insn1); local
ipa-icf-gimple.cc 343 int *bb1 = m_label_bb_map.get (t1); local
346 return return_with_debug (bb1 != NULL && bb2 != NULL && *bb1 == *bb2);
515 /* Compare loop information for basic blocks BB1 and BB2. */
518 func_checker::compare_loops (basic_block bb1, basic_block bb2)
520 if ((bb1->loop_father == NULL) != (bb2->loop_father == NULL))
523 class loop *l1 = bb1->loop_father;
528 if ((bb1 == l1->header) != (bb2 == l2->header))
530 if ((bb1 == l1->latch) != (bb2 == l2->latch))
578 basic blocks BB1 and BB2 (from functions FUNC1 and FUNC2) correspond
    [all...]
tree-ssa-threadbackward.cc 905 basic_block bb1 = m_path[m_path.length () - j - 1]; local
908 edge e = find_edge (bb1, bb2);
graphite-scop-detection.cc 1711 poly_bb_p bb1 = *((const poly_bb_p *)pa); local
1713 if (bb_to_rpo[bb1->black_box->bb->index]
1716 else if (bb_to_rpo[bb1->black_box->bb->index]
profile.cc 1635 basic_block group = bb, bb1;
1643 bb1 = (basic_block) bb->aux;
1645 bb = bb1;
1651 union_groups (basic_block bb1, basic_block bb2)
1653 basic_block bb1g = find_group (bb1);
1633 basic_block group = bb, bb1; local
tree-switch-conversion.cc 875 basic_block bb0, bb1, bb2, bbf, bbd;
918 bb1 = bb2;
923 edge e_default = find_edge (bb1, bb2);
934 redirect_immediate_dominators (CDI_DOMINATORS, bb1, bb0);
939 bb1 = e21->dest;
943 e1d = split_block (bb1, m_arr_ref_last);
949 e01 = make_edge (bb0, bb1, EDGE_TRUE_VALUE);
959 e1f = make_edge (bb1, bbf, EDGE_FALLTHRU);
971 bb1->count = e01->count ();
988 set_immediate_dominator (CDI_DOMINATORS, bb1, bb0)
874 basic_block bb0, bb1, bb2, bbf, bbd; local
    [all...]
tree-vrp.cc 113 basic_block bb1 = e1->dest; local
114 bool un1 = EDGE_COUNT (bb1->succs) == 0
115 && gimple_seq_unreachable_p (bb_seq (bb1));
graphite-isl-ast-to-gimple.cc 968 basic_block bb1 = gsi_bb (gsi1); local
972 if (bb1 == bb2)
1000 if (dominated_by_p (CDI_DOMINATORS, bb1, bb2))
1003 gcc_assert (dominated_by_p (CDI_DOMINATORS, bb2, bb1));
regrename.cc 748 basic_block bb1 = BASIC_BLOCK_FOR_FN (cfun, inverse_postorder[i]); local
755 this_info = (class bb_rename_info *) bb1->aux;
760 fprintf (dump_file, "\nprocessing block %d:\n", bb1->index);
762 if (!include_all_block_p && (bb1->flags & BB_DISABLE_SCHEDULE) != 0)
766 bb1->index);
770 init_rename_info (this_info, bb1);
772 success = build_def_use (bb1);
777 bb1->aux = NULL;
785 FOR_BB_INSNS (bb1, insn)
801 FOR_EACH_EDGE (e, ei, bb1->succs
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/
domwalk.cc 134 basic_block bb1 = *(const basic_block *)(a); local
138 return bb_postorder[bb2->index] - bb_postorder[bb1->index];
149 basic_block bb0 = bbs[0], bb1 = bbs[1]; local
150 if (bb_postorder[bb0->index] < bb_postorder[bb1->index])
151 bbs[0] = bb1, bbs[1] = bb0;
155 basic_block bb0 = bbs[0], bb1 = bbs[1], bb2 = bbs[2]; local
156 if (bb_postorder[bb0->index] < bb_postorder[bb1->index])
157 std::swap (bb0, bb1);
158 if (bb_postorder[bb1->index] < bb_postorder[bb2->index])
160 std::swap (bb1, bb2)
    [all...]
sched-ebb.cc 232 basic_block bb1 = BLOCK_FOR_INSN (insn1);
235 if (bb1->count > bb2->count)
237 if (bb1->count < bb2->count)
230 basic_block bb1 = BLOCK_FOR_INSN (insn1); local
ipa-icf-gimple.cc 340 int *bb1 = m_label_bb_map.get (t1); local
343 return return_with_debug (bb1 != NULL && bb2 != NULL && *bb1 == *bb2);
477 /* Compare loop information for basic blocks BB1 and BB2. */
480 func_checker::compare_loops (basic_block bb1, basic_block bb2)
482 if ((bb1->loop_father == NULL) != (bb2->loop_father == NULL))
485 class loop *l1 = bb1->loop_father;
490 if ((bb1 == l1->header) != (bb2 == l2->header))
492 if ((bb1 == l1->latch) != (bb2 == l2->latch))
536 basic blocks BB1 and BB2 (from functions FUNC1 and FUNC2) correspond
    [all...]
tree-ssa-threadbackward.cc 878 basic_block bb1 = m_path[m_path.length () - j - 1]; local
881 edge e = find_edge (bb1, bb2);
graphite-scop-detection.cc 1575 poly_bb_p bb1 = *((const poly_bb_p *)pa); local
1577 if (bb_to_rpo[bb1->black_box->bb->index]
1580 else if (bb_to_rpo[bb1->black_box->bb->index]
profile.cc 1569 basic_block group = bb, bb1;
1577 bb1 = (basic_block) bb->aux;
1579 bb = bb1;
1585 union_groups (basic_block bb1, basic_block bb2)
1587 basic_block bb1g = find_group (bb1);
1567 basic_block group = bb, bb1; local
tree-switch-conversion.cc 830 basic_block bb0, bb1, bb2, bbf, bbd;
873 bb1 = bb2;
878 edge e_default = find_edge (bb1, bb2);
889 redirect_immediate_dominators (CDI_DOMINATORS, bb1, bb0);
894 bb1 = e21->dest;
898 e1d = split_block (bb1, m_arr_ref_last);
904 e01 = make_edge (bb0, bb1, EDGE_TRUE_VALUE);
914 e1f = make_edge (bb1, bbf, EDGE_FALLTHRU);
926 bb1->count = e01->count ();
943 set_immediate_dominator (CDI_DOMINATORS, bb1, bb0)
829 basic_block bb0, bb1, bb2, bbf, bbd; local
    [all...]
  /src/external/gpl3/gdb/dist/gdb/testsuite/gdb.python/
lib-types.cc 65 int bb1; member in union:A::__anon18312::__anon18313
  /src/external/gpl3/gdb.old/dist/gdb/testsuite/gdb.python/
lib-types.cc 65 int bb1; member in union:A::__anon21053::__anon21054
  /src/lib/libc/gdtoa/
strtod.c 106 Bigint *bb = NULL, *bb1, *bd0; local
654 bb1 = mult(bs, bb);
655 if (bb1 == NULL)
658 bb = bb1;
strtodg.c 341 Bigint *ab, *bb, *bb1, *bd, *bd0, *bs, *delta, *rvb, *rvb0; local
762 bb1 = mult(bs, bb);
763 if (bb1 == NULL)
766 bb = bb1;
  /src/external/gpl3/binutils/dist/gas/
ginsn.c 924 const gbbS *bb1 = *(const gbbS **) v1; local
927 if (bb1->first_ginsn->id < bb2->first_ginsn->id)
929 else if (bb1->first_ginsn->id > bb2->first_ginsn->id)
931 else if (bb1->first_ginsn->id == bb2->first_ginsn->id)
  /src/external/gpl3/binutils.old/dist/gas/
ginsn.c 924 const gbbS *bb1 = *(const gbbS **) v1; local
927 if (bb1->first_ginsn->id < bb2->first_ginsn->id)
929 else if (bb1->first_ginsn->id > bb2->first_ginsn->id)
931 else if (bb1->first_ginsn->id == bb2->first_ginsn->id)
  /src/external/gpl3/gcc/dist/gcc/config/sh/
sh_treg_combine.cc 333 basic_block bb1[] = { b, a }; local
338 if (ei_edge (ei)->dest == bb1[i])
  /src/external/gpl3/gcc.old/dist/gcc/config/sh/
sh_treg_combine.cc 333 basic_block bb1[] = { b, a }; local
338 if (ei_edge (ei)->dest == bb1[i])

Completed in 55 milliseconds

1 2 3