Lines Matching refs:use_loop
147 find_sibling_superloop (struct loop *use_loop, struct loop *def_loop) in find_sibling_superloop() argument
149 unsigned ud = loop_depth (use_loop); in find_sibling_superloop()
153 use_loop = superloop_at_depth (use_loop, dd); in find_sibling_superloop()
156 while (loop_outer (use_loop) != loop_outer (def_loop)) in find_sibling_superloop()
158 use_loop = loop_outer (use_loop); in find_sibling_superloop()
160 gcc_assert (use_loop && def_loop); in find_sibling_superloop()
162 return use_loop; in find_sibling_superloop()
198 struct loop *use_loop = use_bb->loop_father; in compute_live_loop_exits() local
199 gcc_checking_assert (def_loop != use_loop in compute_live_loop_exits()
200 && ! flow_loop_nested_p (def_loop, use_loop)); in compute_live_loop_exits()
201 if (! flow_loop_nested_p (use_loop, def_loop)) in compute_live_loop_exits()
202 use_bb = find_sibling_superloop (use_loop, def_loop)->header; in compute_live_loop_exits()