Commit c358412f by Jeffrey A Law Committed by Jeff Law

local-alloc.c (block_alloc): Do not try to avoid false dependencies when…

local-alloc.c (block_alloc): Do not try to avoid false dependencies when SMALL_REGISTER_CLASSES is nonzero.

        * local-alloc.c (block_alloc): Do not try to avoid false dependencies
        when SMALL_REGISTER_CLASSES is nonzero.
Fixes x86 performance regression.

From-SVN: r20704
parent a59fb797
Wed Jun 24 22:44:22 1998 Jeffrey A Law (law@cygnus.com)
* local-alloc.c (block_alloc): Do not try to avoid false dependencies
when SMALL_REGISTER_CLASSES is nonzero.
Wed Jun 24 17:55:15 1998 Klaus Kaempf <kkaempf@progis.de>
* alpha.md (call_vms, call_value_vms): Strip leading * from symbol.
......
......@@ -1448,7 +1448,9 @@ block_alloc (b)
This optimization is only appropriate when we will run
a scheduling pass after reload and we are not optimizing
for code size. */
if (flag_schedule_insns_after_reload && !optimize_size)
if (flag_schedule_insns_after_reload
&& !optimize_size
&& !SMALL_REGISTER_CLASSES)
{
qty_phys_reg[q] = find_free_reg (qty_min_class[q],
......@@ -1467,7 +1469,9 @@ block_alloc (b)
#ifdef INSN_SCHEDULING
/* Similarly, avoid false dependencies. */
if (flag_schedule_insns_after_reload && !optimize_size
if (flag_schedule_insns_after_reload
&& !optimize_size
&& !SMALL_REGISTER_CLASSES
&& qty_alternate_class[q] != NO_REGS)
qty_phys_reg[q] = find_free_reg (qty_alternate_class[q],
qty_mode[q], q, 0, 0,
......
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