Displaying 2 results from an estimated 2 matches for "thgere".
Did you mean:
there
2007 Jul 09
2
[LLVMdev] Pluggable Register Coalescers
Ok, I'm at a point now where I can implement plyggable register coalescers as
we originally wanted when I started the refactoring work.
I'm in the midst of finishing up an implementation following the model of how
register allocators are selected. Thgere may be some more refactoring/code
sharing work to be done with this, but I want to get it working first.
createRegisterAllocator() is called by addPassesToEmit.* to instantiate the
register allocator.
Coalescing is a bit different. Typically, the register allocator is the
client of the coalesce...
2007 Jul 09
0
[LLVMdev] Pluggable Register Coalescers
...id Greene wrote:
> Ok, I'm at a point now where I can implement plyggable register coalescers as
> we originally wanted when I started the refactoring work.
>
> I'm in the midst of finishing up an implementation following the model of how
> register allocators are selected. Thgere may be some more refactoring/code
> sharing work to be done with this, but I want to get it working first.
>
> createRegisterAllocator() is called by addPassesToEmit.* to instantiate the
> register allocator.
>
> Coalescing is a bit different. Typically, the register allocator...