Re: [llvm-commits] Priority-Based Coloring Approach to Register Allocation

2006-11-17 Thread Evan Cheng
Hi Bill, It's great to have a graph coloring regalloc to compare the current implement against. Thanks! Comments: 1. INode NeighborList is a std::setINode* which is very slow. Please use a more efficient data structure. You may have to wrap LiveIntervals in something else and give each

[llvm-commits] Priority-Based Coloring Approach to Register Allocation

2006-11-15 Thread Bill Wendling
Hi all, This is meant for a code review and NOT for submission (just yet). This is my implementation of Chow Hennesey's Priority-Based Coloring Approach to Register Allocation. It's still in the experimental stages (though it compiles the tests). I'd like people to look at it and let me