Home
last modified time | relevance | path

Searched refs:threaded_edges (Results 1 – 3 of 3) sorted by relevance

/freebsd-11-stable/contrib/gcc/
HDtree-ssa-threadupdate.c153 static VEC(edge,heap) *threaded_edges; in VEC()
843 for (i = 0; i < VEC_length (edge, threaded_edges); i += 2) in mark_threaded_blocks()
845 edge e = VEC_index (edge, threaded_edges, i); in mark_threaded_blocks()
846 edge e2 = VEC_index (edge, threaded_edges, i + 1); in mark_threaded_blocks()
870 if (threaded_edges == NULL) in thread_through_all_blocks()
892 VEC_free (edge, heap, threaded_edges); in thread_through_all_blocks()
893 threaded_edges = NULL; in thread_through_all_blocks()
908 if (threaded_edges == NULL) in register_jump_thread()
909 threaded_edges = VEC_alloc (edge, heap, 10); in register_jump_thread()
911 VEC_safe_push (edge, heap, threaded_edges, e); in register_jump_thread()
[all …]
HDcfgcleanup.c412 edge e, *threaded_edges = NULL; in try_forward_edges() local
486 if (!threaded_edges) in try_forward_edges()
487 threaded_edges = XNEWVEC (edge, n_basic_blocks); in try_forward_edges()
495 if (threaded_edges[i] == t) in try_forward_edges()
509 threaded_edges[nthreaded_edges++] = t; in try_forward_edges()
574 t = threaded_edges [n++]; in try_forward_edges()
593 && first == threaded_edges [n]->src) in try_forward_edges()
611 if (threaded_edges) in try_forward_edges()
612 free (threaded_edges); in try_forward_edges()
HDChangeLog-200615857 * tree-ssa-threadupdate.c (threaded_edges): New VEC to
15863 bitmap and threaded_edges vector when complete.