Home
last modified time | relevance | path

Searched refs:current_loop (Results 1 – 7 of 7) sorted by relevance

/openbsd/gnu/gcc/gcc/
H A Dtree-ssa-loop-ivopts.c204 struct loop *current_loop; member
967 struct loop *loop = data->current_loop; in find_bivs()
1003 struct loop *loop = data->current_loop; in mark_bivs()
1035 struct loop *loop = data->current_loop; in find_givs_in_stmt_scev()
1087 struct loop *loop = data->current_loop; in find_givs()
2110 if (ip_normal_pos (data->current_loop)) in add_candidate()
2112 if (ip_end_pos (data->current_loop) in add_candidate()
4116 struct loop *loop = data->current_loop; in iv_elimination_compare()
4139 struct loop *loop = data->current_loop; in may_eliminate_iv()
4414 struct loop *loop = data->current_loop; in determine_set_costs()
[all …]
H A Dloop-iv.c101 static struct loop *current_loop; variable
250 current_loop = loop; in iv_analysis_loop_init()
284 struct df_rd_bb_info *bb_info = DF_RD_BB_INFO (df, current_loop->latch); in latch_dominating_def()
295 if (!just_once_each_iteration_p (current_loop, DF_REF_BB (adef))) in latch_dominating_def()
351 if (just_once_each_iteration_p (current_loop, def_bb)) in iv_get_reaching_def()
/openbsd/gnu/usr.bin/gcc/gcc/java/
H A Dparse.h393 TREE_CHAIN (L) = ctxp->current_loop; \
394 ctxp->current_loop = (L); \
396 #define POP_LOOP() ctxp->current_loop = TREE_CHAIN (ctxp->current_loop)
792 tree current_loop; /* List of the currently nested member
H A Dparse.c15391 nn = ctxp->current_loop;
15424 nn = ctxp->current_loop;
18722 tree to_return = ctxp->current_loop;
18979 && ctxp->current_loop != NULL_TREE
18980 && TREE_CODE (ctxp->current_loop) == LOOP_EXPR)
18981 CAN_COMPLETE_NORMALLY (ctxp->current_loop) = 1;
19928 ggc_mark_tree (pc->current_loop);
H A Dparse.y11826 nn = ctxp->current_loop;
11859 nn = ctxp->current_loop;
15157 tree to_return = ctxp->current_loop;
15414 && ctxp->current_loop != NULL_TREE
15415 && TREE_CODE (ctxp->current_loop) == LOOP_EXPR)
15416 CAN_COMPLETE_NORMALLY (ctxp->current_loop) = 1;
16363 ggc_mark_tree (pc->current_loop);
H A DChangeLog12110 (struct parser_ctxt): New fields current_loop,
/openbsd/gnu/usr.bin/gcc/gcc/
H A Dloop.c2673 struct loop *current_loop; local
2690 current_loop = NULL;
2701 next_loop->outer = current_loop;
2702 current_loop = next_loop;
2706 current_loop->cont = insn;
2710 current_loop->vtop = insn;
2714 if (! current_loop)
2717 current_loop->end = insn;
2718 current_loop = current_loop->outer;
2730 for (loop = current_loop; loop; loop = loop->outer)
[all …]