Commit 8a519095 by Eric Botcazou Committed by Eric Botcazou

tree-ssa-loop-im.c (SET_ALWAYS_EXECUTED_IN): New macro.

	* tree-ssa-loop-im.c (SET_ALWAYS_EXECUTED_IN): New macro.
	(fill_always_executed_in): Use [SET_]ALWAYS_EXECUTED_IN.
	(tree_ssa_lim_finalize): Likewise.

From-SVN: r173762
parent 486d481b
2011-05-14 Eric Botcazou <ebotcazou@adacore.com>
* tree-ssa-loop-im.c (SET_ALWAYS_EXECUTED_IN): New macro.
(fill_always_executed_in): Use [SET_]ALWAYS_EXECUTED_IN.
(tree_ssa_lim_finalize): Likewise.
2011-05-14 Uros Bizjak <ubizjak@gmail.com> 2011-05-14 Uros Bizjak <ubizjak@gmail.com>
* config/i386/constraint.md (Yd, Yx): New register constraints. * config/i386/constraint.md (Yd, Yx): New register constraints.
......
...@@ -197,9 +197,10 @@ static bool ref_indep_loop_p (struct loop *, mem_ref_p); ...@@ -197,9 +197,10 @@ static bool ref_indep_loop_p (struct loop *, mem_ref_p);
/* Minimum cost of an expensive expression. */ /* Minimum cost of an expensive expression. */
#define LIM_EXPENSIVE ((unsigned) PARAM_VALUE (PARAM_LIM_EXPENSIVE)) #define LIM_EXPENSIVE ((unsigned) PARAM_VALUE (PARAM_LIM_EXPENSIVE))
/* The outermost loop for that execution of the header guarantees that the /* The outermost loop for which execution of the header guarantees that the
block will be executed. */ block will be executed. */
#define ALWAYS_EXECUTED_IN(BB) ((struct loop *) (BB)->aux) #define ALWAYS_EXECUTED_IN(BB) ((struct loop *) (BB)->aux)
#define SET_ALWAYS_EXECUTED_IN(BB, VAL) ((BB)->aux = (void *) (VAL))
static struct lim_aux_data * static struct lim_aux_data *
init_lim_data (gimple stmt) init_lim_data (gimple stmt)
...@@ -2440,7 +2441,7 @@ fill_always_executed_in (struct loop *loop, sbitmap contains_call) ...@@ -2440,7 +2441,7 @@ fill_always_executed_in (struct loop *loop, sbitmap contains_call)
edge e; edge e;
struct loop *inn_loop = loop; struct loop *inn_loop = loop;
if (!loop->header->aux) if (ALWAYS_EXECUTED_IN (loop->header) == NULL)
{ {
bbs = get_loop_body_in_dom_order (loop); bbs = get_loop_body_in_dom_order (loop);
...@@ -2482,7 +2483,7 @@ fill_always_executed_in (struct loop *loop, sbitmap contains_call) ...@@ -2482,7 +2483,7 @@ fill_always_executed_in (struct loop *loop, sbitmap contains_call)
while (1) while (1)
{ {
last->aux = loop; SET_ALWAYS_EXECUTED_IN (last, loop);
if (last == loop->header) if (last == loop->header)
break; break;
last = get_immediate_dominator (CDI_DOMINATORS, last); last = get_immediate_dominator (CDI_DOMINATORS, last);
...@@ -2537,9 +2538,7 @@ tree_ssa_lim_finalize (void) ...@@ -2537,9 +2538,7 @@ tree_ssa_lim_finalize (void)
htab_t h; htab_t h;
FOR_EACH_BB (bb) FOR_EACH_BB (bb)
{ SET_ALWAYS_EXECUTED_IN (bb, NULL);
bb->aux = NULL;
}
pointer_map_destroy (lim_aux_data_map); pointer_map_destroy (lim_aux_data_map);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment