+2012-03-07 Andrey Belevantsev <abel@ispras.ru>
+
+ PR rtl-optimization/52203
+ * sel-sched.c (estimate_insn_cost): New parameter pempty. Adjust
+ all callers to pass NULL except ...
+ (reset_sched_cycles_in_current_ebb): ... here, save the value
+ in new variable 'empty'. Increase issue_rate only for
+ non-empty insns.
+
2012-03-07 Ralf Corsépius <ralf.corsepius@rtems.org>
PR target/51417
return issue_more;
}
-/* Estimate the cost of issuing INSN on DFA state STATE. */
+/* Estimate the cost of issuing INSN on DFA state STATE. Write to PEMPTY
+ true when INSN does not change the processor state. */
static int
-estimate_insn_cost (rtx insn, state_t state)
+estimate_insn_cost (rtx insn, state_t state, bool *pempty)
{
static state_t temp = NULL;
int cost;
memcpy (temp, state, dfa_state_size);
cost = state_transition (temp, insn);
+ if (pempty)
+ *pempty = (memcmp (temp, state, dfa_state_size) == 0);
if (cost < 0)
return 0;
return 0;
}
else
- return estimate_insn_cost (insn, FENCE_STATE (fence));
+ return estimate_insn_cost (insn, FENCE_STATE (fence), NULL);
}
/* Find the best insn for scheduling, either via max_issue or just take
{
int cost, haifa_cost;
int sort_p;
- bool asm_p, real_insn, after_stall, all_issued;
+ bool asm_p, real_insn, after_stall, all_issued, empty;
int clock;
if (!INSN_P (insn))
haifa_cost = 0;
}
else
- haifa_cost = estimate_insn_cost (insn, curr_state);
+ haifa_cost = estimate_insn_cost (insn, curr_state, &empty);
/* Stall for whatever cycles we've stalled before. */
after_stall = 0;
if (!after_stall
&& real_insn
&& haifa_cost > 0
- && estimate_insn_cost (insn, curr_state) == 0)
+ && estimate_insn_cost (insn, curr_state, NULL) == 0)
break;
/* When the data dependency stall is longer than the DFA stall,
if ((after_stall || all_issued)
&& real_insn
&& haifa_cost == 0)
- haifa_cost = estimate_insn_cost (insn, curr_state);
+ haifa_cost = estimate_insn_cost (insn, curr_state, NULL);
}
haifa_clock += i;
if (real_insn)
{
cost = state_transition (curr_state, insn);
- issued_insns++;
+ if (!empty)
+ issued_insns++;
if (sched_verbose >= 2)
{