| /netbsd/src/external/gpl3/gdb/dist/sim/common/ |
| D | hw-ports.c | 99 struct hw_port_edge *new_edge = HW_ZALLOC (me, struct hw_port_edge); in attach_hw_port_edge() local 100 new_edge->my_port = my_port; in attach_hw_port_edge() 101 new_edge->dest = dest; in attach_hw_port_edge() 102 new_edge->dest_port = dest_port; in attach_hw_port_edge() 103 new_edge->next = *list; in attach_hw_port_edge() 104 new_edge->disposition = disposition; in attach_hw_port_edge() 105 *list = new_edge; in attach_hw_port_edge()
|
| /netbsd/src/external/gpl3/gcc/dist/gcc/ |
| D | cgraphclones.cc | 99 cgraph_edge *new_edge; in clone() local 114 new_edge = n->create_edge (callee, call_stmt, prof_count, true); in clone() 118 new_edge = n->create_indirect_edge (call_stmt, in clone() 121 *new_edge->indirect_info = *indirect_info; in clone() 126 new_edge = n->create_edge (callee, call_stmt, prof_count, true); in clone() 129 new_edge->indirect_info in clone() 131 *new_edge->indirect_info = *indirect_info; in clone() 135 new_edge->inline_failed = inline_failed; in clone() 136 new_edge->indirect_inlining_edge = indirect_inlining_edge; in clone() 138 new_edge->lto_stmt_uid = stmt_uid; in clone() [all …]
|
| D | tree-ssa-loop-unswitch.cc | 825 edge te, fe, e, new_edge; in hoist_guard() local 886 new_edge = make_edge (pre_header, exit->dest, flags); in hoist_guard() 890 new_edge->probability = guard->probability; in hoist_guard() 894 : guard->count ().apply_probability (new_edge->probability); in hoist_guard() 904 new_edge->probability.dump (buffer); in hoist_guard() 915 e->probability = new_edge->probability.invert (); in hoist_guard() 956 add_phi_arg (phi, arg, new_edge, UNKNOWN_LOCATION); in hoist_guard() 962 add_phi_arg (phi, arg, new_edge, UNKNOWN_LOCATION); in hoist_guard()
|
| D | auto-profile.cc | 1067 struct cgraph_edge *new_edge in afdo_indirect_call() local 1070 cgraph_edge::redirect_call_stmt_to_callee (new_edge); in afdo_indirect_call() 1072 inline_call (new_edge, true, NULL, NULL, false); in afdo_indirect_call()
|
| D | tree-inline.cc | 2555 edge new_edge; in copy_edges_for_bb() local 2565 new_edge in copy_edges_for_bb() 2567 new_edge->probability = old_edge->probability; in copy_edges_for_bb() 2569 new_edge->goto_locus = remap_location (locus, id); in copy_edges_for_bb() 2720 edge new_edge; in copy_phis_for_bb() local 2744 FOR_EACH_EDGE (new_edge, ei, new_bb->preds) in copy_phis_for_bb() 2746 edge old_edge = find_edge ((basic_block) new_edge->src->aux, in copy_phis_for_bb() 2774 gsi_insert_seq_on_edge (new_edge, stmts); in copy_phis_for_bb() 2782 add_phi_arg (new_phi, new_arg, new_edge, locus); in copy_phis_for_bb() 2790 FOR_EACH_EDGE (new_edge, ei, new_bb->preds) in copy_phis_for_bb() [all …]
|
| D | cfgrtl.cc | 1513 edge new_edge; in force_nonfallthru_and_redirect() local 1674 new_edge = make_edge (e->src, jump_block, EDGE_FALLTHRU); in force_nonfallthru_and_redirect() 1675 new_edge->probability = probability; in force_nonfallthru_and_redirect() 1683 fixup_partition_crossing (new_edge); in force_nonfallthru_and_redirect() 1689 new_edge->probability = new_edge->probability.apply_scale (1, 2); in force_nonfallthru_and_redirect() 1691 edge new_edge2 = make_edge (new_edge->src, target, in force_nonfallthru_and_redirect() 1693 new_edge2->probability = probability - new_edge->probability; in force_nonfallthru_and_redirect()
|
| D | bb-reorder.cc | 2108 edge new_edge; in fix_crossing_conditional_branches() local 2222 new_edge = make_single_succ_edge (new_bb, dest, 0); in fix_crossing_conditional_branches() 2224 new_edge = EDGE_SUCC (new_bb, 0); in fix_crossing_conditional_branches() 2227 new_edge->flags |= EDGE_CROSSING; in fix_crossing_conditional_branches()
|
| D | tree-ssa-threadupdate.cc | 2266 edge new_edge = find_edge (src_copy, e->dest); in rewire_first_differing_edge() local 2269 if (new_edge == NULL) in rewire_first_differing_edge() 2275 e = new_edge; in rewire_first_differing_edge()
|
| D | cfgloop.cc | 1079 rescan_loop_exit (edge e, bool new_edge, bool removed) in rescan_loop_exit() argument 1110 if (!exits && new_edge) in rescan_loop_exit()
|
| D | gimple-ssa-store-merging.cc | 4748 edge new_edge = find_edge (gimple_bb (stmt), lp_bb); in output_merged_store() local 4760 add_phi_arg (phi, new_def, new_edge, UNKNOWN_LOCATION); in output_merged_store()
|
| D | tree-cfg.cc | 2957 edge new_edge, e; in gimple_split_edge() local 2982 new_edge = make_single_succ_edge (new_bb, dest, EDGE_FALLTHRU); in gimple_split_edge() 2984 gcc_assert (e == edge_in && new_edge->dest_idx == old_dest_idx); in gimple_split_edge()
|
| D | ChangeLog-2000 | 1728 new_edge, bb_deps, BITSET_UNION, BITSET_INTER, BITSET_DIFFER,
|
| D | ChangeLog-2009 | 7314 Update new_edge->lto_stmt_uid.
|
| D | ChangeLog-2010 | 13588 * tree-inline.c (copy_phis_for_bb): Fixup new_edge when we splitted it.
|
| D | ChangeLog-2004 | 10516 build_control_flow, new_edge): Remove.
|
| /netbsd/src/external/gpl3/gdb/dist/sim/ppc/ |
| D | device.c | 71 device_interrupt_edge *new_edge = ZALLOC(device_interrupt_edge); in attach_device_interrupt_edge() local 72 new_edge->my_port = my_port; in attach_device_interrupt_edge() 73 new_edge->dest = dest; in attach_device_interrupt_edge() 74 new_edge->dest_port = dest_port; in attach_device_interrupt_edge() 75 new_edge->next = *list; in attach_device_interrupt_edge() 76 new_edge->disposition = disposition; in attach_device_interrupt_edge() 77 *list = new_edge; in attach_device_interrupt_edge()
|