/dflybsd-src/contrib/gcc-4.7/gcc/ |
H A D | cfgloop.h | 195 VEC (loop_p, gc) *larray; 425 return VEC_index (loop_p, current_loops->larray, num); in get_loop() 466 return current_loops->larray; in VEC() 478 return VEC_length (loop_p, current_loops->larray); in number_of_loops() 568 for (i = 0; VEC_iterate (loop_p, current_loops->larray, i, aloop); i++) in fel_init()
|
H A D | cfgloop.c | 206 if (loops->larray) in flow_loops_free() 212 FOR_EACH_VEC_ELT (loop_p, loops->larray, i, loop) in flow_loops_free() 220 VEC_free (loop_p, gc, loops->larray); in flow_loops_free() 355 loops->larray = VEC_alloc (loop_p, gc, num_loops); in init_loops_structure() 365 VEC_quick_push (loop_p, loops->larray, root); in init_loops_structure() 468 VEC_quick_push (loop_p, loops->larray, loop); in flow_loops_find() 503 return VEC_length (loop_p, loops->larray); in flow_loops_find() 1266 VEC_replace (loop_p, current_loops->larray, loop->num, NULL); in delete_loop()
|
H A D | ira-build.c | 154 * VEC_length (loop_p, ira_loops.larray))); in create_loop_tree_nodes() 155 FOR_EACH_VEC_ELT (loop_p, ira_loops.larray, i, loop) in create_loop_tree_nodes() 194 FOR_EACH_VEC_ELT (loop_p, ira_loops.larray, i, loop) in more_one_region_p() 227 FOR_EACH_VEC_ELT (loop_p, ira_loops.larray, i, loop) in finish_loop_tree_nodes() 383 FOR_EACH_VEC_ELT (loop_p, ira_loops.larray, l, loop) in rebuild_regno_allocno_maps() 1910 ira_loops.larray)); in mark_loops_for_removal() 1911 for (n = i = 0; VEC_iterate (loop_p, ira_loops.larray, i, loop); i++) in mark_loops_for_removal() 1955 FOR_EACH_VEC_ELT (loop_p, ira_loops.larray, i, loop) in mark_all_loops_for_removal() 2267 last_basic_block + VEC_length (loop_p, ira_loops.larray)); in remove_unnecessary_regions() 2270 last_basic_block + VEC_length (loop_p, ira_loops.larray)); in remove_unnecessary_regions() [all …]
|
H A D | ira-emit.c | 442 FOR_EACH_VEC_ELT (loop_p, ira_loops.larray, i, loop) in setup_entered_from_non_parent_p()
|
H A D | cfgloopmanip.c | 411 VEC_safe_push (loop_p, gc, current_loops->larray, loop); in place_new_loop()
|
H A D | haifa-sched.c | 5716 add_bb_to_loop (single, VEC_index (loop_p, current_loops->larray, 0)); in init_before_recovery() 5717 add_bb_to_loop (empty, VEC_index (loop_p, current_loops->larray, 0)); in init_before_recovery()
|
/dflybsd-src/contrib/gcc-8.0/gcc/ |
H A D | cfgloop.h | 313 vec<loop_p, va_gc> *larray; member 508 return (*loops_for_fn (fn)->larray)[num]; in get_loop() 550 return loops->larray; in get_loops() 563 return vec_safe_length (loops->larray); in number_of_loops() 701 for (i = 0; vec_safe_iterate (loops_for_fn (fn)->larray, i, &aloop); i++) in loop_iterator()
|
H A D | cfgloop.c | 210 if (loops->larray) in flow_loops_free() 216 FOR_EACH_VEC_SAFE_ELT (loops->larray, i, loop) in flow_loops_free() 224 vec_free (loops->larray); in flow_loops_free() 371 vec_alloc (loops->larray, num_loops); in init_loops_structure() 381 loops->larray->quick_push (root); in init_loops_structure() 457 auto_vec<loop_p> larray (loops->larray->length ()); in flow_loops_find() 481 loop->num = loops->larray->length (); in flow_loops_find() 482 vec_safe_push (loops->larray, loop); in flow_loops_find() 493 larray.safe_push (loop); in flow_loops_find() 504 for (i = 0; i < larray.length (); ++i) in flow_loops_find() [all …]
|
H A D | tree-cfg.c | 7425 vec_safe_push (loops_for_fn (fn2)->larray, loop); in fixup_loop_arrays_after_move() 7679 vec<loop_p, va_gc> *larray = get_loops (saved_cfun)->copy (); in move_sese_region_to_fn() local 7735 = XCNEWVEC (signed char, vec_safe_length (larray)); in move_sese_region_to_fn() 7736 if ((*larray)[dloop->orig_loop_num] != NULL in move_sese_region_to_fn() 7742 dloop->orig_loop_num = (*larray)[dloop->orig_loop_num]->num; in move_sese_region_to_fn() 7762 && (unsigned) orig_loop_num < vec_safe_length (larray)); in move_sese_region_to_fn() 7768 gcc_assert ((*larray)[dloop->orig_loop_num] != NULL in move_sese_region_to_fn() 7772 (*larray)[dloop->orig_loop_num]->num); in move_sese_region_to_fn() 7790 && (unsigned) orig_loop_num < vec_safe_length (larray)); in move_sese_region_to_fn() 7798 ggc_free (larray); in move_sese_region_to_fn() [all …]
|
H A D | cfgloopmanip.c | 434 vec_safe_push (loops_for_fn (fn)->larray, loop); in place_new_loop()
|
H A D | lto-streamer-in.c | 806 loops->larray->quick_push (NULL); in input_cfg()
|
H A D | haifa-sched.c | 8137 add_bb_to_loop (single, (*current_loops->larray)[0]); in init_before_recovery() 8138 add_bb_to_loop (empty, (*current_loops->larray)[0]); in init_before_recovery()
|
/dflybsd-src/sys/dev/drm/radeon/ |
H A D | r600_cs.c | 1480 u32 barray, larray; in r600_check_texture_resource() local 1586 larray = G_038014_LAST_ARRAY(word5); in r600_check_texture_resource() 1588 nfaces = larray - barray + 1; in r600_check_texture_resource()
|
/dflybsd-src/contrib/gcc-4.7/gcc/doc/ |
H A D | loop.texi | 73 the corresponding field of the @code{larray} vector in the loops 75 empty (@code{NULL}) entries in the @code{larray} created by deleting 79 The entries of the @code{larray} field should not be accessed directly.
|