This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Re: regclass FLOAT_INT_REGS on x86/graph coloring allocator
- To: Daniel Berlin <dberlin at redhat dot com>
- Subject: Re: regclass FLOAT_INT_REGS on x86/graph coloring allocator
- From: Michael Matz <matzmich at cs dot tu-berlin dot de>
- Date: Sun, 4 Feb 2001 01:23:41 +0100 (MET)
- cc: gcc at gcc dot gnu dot org
Hi,
On Sat, 3 Feb 2001, Daniel Berlin wrote:
>
> Actually, the only thing that ties mine to registers is that we use
> FIRST_PSEUDO_REGISTER in a few places, max_reg as a size limit in some
> places, etc. I'll move it to do it allocation based on defs (as
> opposed to registers) tonight.
You can't use defs as base for the conflicting nodes, you really need
webs. Or you use SSA form, where of course defs and webs are the same.
Ciao,
Michael.