Commit 4d1bc60a by Paul Koning Committed by Paul Koning

* config/pdp11/pdp11.h (IRA_COVER_CLASSES): Define.

From-SVN: r165858
parent 834d5dce
2010-10-22 Paul Koning <ni1d@arrl.net>
* config/pdp11/pdp11.h (IRA_COVER_CLASSES): Define.
2010-10-22 Richard Henderson <rth@redhat.com> 2010-10-22 Richard Henderson <rth@redhat.com>
* config/i386/i386.c (ix86_builtin_vectorized_function): Add * config/i386/i386.c (ix86_builtin_vectorized_function): Add
...@@ -320,6 +320,16 @@ enum reg_class { NO_REGS, MUL_REGS, GENERAL_REGS, LOAD_FPU_REGS, NO_LOAD_FPU_REG ...@@ -320,6 +320,16 @@ enum reg_class { NO_REGS, MUL_REGS, GENERAL_REGS, LOAD_FPU_REGS, NO_LOAD_FPU_REG
#define INDEX_REG_CLASS GENERAL_REGS #define INDEX_REG_CLASS GENERAL_REGS
#define BASE_REG_CLASS GENERAL_REGS #define BASE_REG_CLASS GENERAL_REGS
/* The following macro defines cover classes for Integrated Register
Allocator. Cover classes is a set of non-intersected register
classes covering all hard registers used for register allocation
purpose. Any move between two registers of a cover class should be
cheaper than load or store of the registers. The macro value is
array of register classes with LIM_REG_CLASSES used as the end
marker. */
#define IRA_COVER_CLASSES { GENERAL_REGS, FPU_REGS, LIM_REG_CLASSES }
/* Given an rtx X being reloaded into a reg required to be /* Given an rtx X being reloaded into a reg required to be
in class CLASS, return the class of reg to actually use. in class CLASS, return the class of reg to actually use.
In general this is just CLASS; but on some machines In general this is just CLASS; but on some machines
......
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