2002-08-12 21:25:05 +00:00
|
|
|
//===-- SparcRegClassInfo.cpp - Register class def'ns for Sparc -----------===//
|
|
|
|
//
|
|
|
|
// This file defines the register classes used by the Sparc target description.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2002-02-04 05:59:25 +00:00
|
|
|
#include "SparcRegClassInfo.h"
|
2003-07-25 21:12:15 +00:00
|
|
|
#include "SparcInternals.h"
|
2002-02-05 03:52:29 +00:00
|
|
|
#include "llvm/Type.h"
|
2003-01-15 19:50:44 +00:00
|
|
|
#include "../../CodeGen/RegAlloc/RegAllocCommon.h" // FIXME!
|
2001-09-18 22:52:44 +00:00
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
2002-01-07 19:20:28 +00:00
|
|
|
// Int Register Class - method for coloring a node in the interference graph.
|
|
|
|
//
|
|
|
|
// Algorithm:
|
|
|
|
// Record the colors/suggested colors of all neighbors.
|
|
|
|
//
|
|
|
|
// If there is a suggested color, try to allocate it
|
|
|
|
// If there is no call interf, try to allocate volatile, then non volatile
|
|
|
|
// If there is call interf, try to allocate non-volatile. If that fails
|
|
|
|
// try to allocate a volatile and insert save across calls
|
|
|
|
// If both above fail, spill.
|
|
|
|
//
|
2001-09-18 22:52:44 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
2003-05-21 17:59:06 +00:00
|
|
|
void SparcIntRegClass::colorIGNode(IGNode * Node,
|
2003-07-25 21:12:15 +00:00
|
|
|
const std::vector<bool> &IsColorUsedArr) const
|
2003-05-21 17:59:06 +00:00
|
|
|
{
|
2002-02-04 05:59:25 +00:00
|
|
|
LiveRange *LR = Node->getParentLR();
|
2001-09-18 22:52:44 +00:00
|
|
|
|
2003-05-21 18:05:35 +00:00
|
|
|
if (DEBUG_RA) {
|
2003-05-21 17:59:06 +00:00
|
|
|
std::cerr << "\nColoring LR [CallInt=" << LR->isCallInterference() <<"]:";
|
2002-02-05 02:52:05 +00:00
|
|
|
printSet(*LR);
|
2001-10-19 17:23:43 +00:00
|
|
|
}
|
2001-09-18 22:52:44 +00:00
|
|
|
|
2003-05-21 18:05:35 +00:00
|
|
|
if (LR->hasSuggestedColor()) {
|
2001-10-19 17:23:43 +00:00
|
|
|
unsigned SugCol = LR->getSuggestedColor();
|
2002-05-23 15:50:03 +00:00
|
|
|
if (!IsColorUsedArr[SugCol]) {
|
2003-05-21 18:05:35 +00:00
|
|
|
if (LR->isSuggestedColorUsable()) {
|
2001-10-19 17:23:43 +00:00
|
|
|
// if the suggested color is volatile, we should use it only if
|
|
|
|
// there are no call interferences. Otherwise, it will get spilled.
|
|
|
|
if (DEBUG_RA)
|
2003-05-21 17:59:06 +00:00
|
|
|
std::cerr << "\n -Coloring with sug color: " << SugCol;
|
2001-10-19 17:23:43 +00:00
|
|
|
|
2003-05-21 18:05:35 +00:00
|
|
|
LR->setColor(LR->getSuggestedColor());
|
2001-10-19 17:23:43 +00:00
|
|
|
return;
|
2003-05-21 18:05:35 +00:00
|
|
|
} else if(DEBUG_RA) {
|
2003-05-21 19:34:28 +00:00
|
|
|
std::cerr << "\n Couldn't alloc Sug col - LR volatile & calls interf";
|
2001-10-19 17:23:43 +00:00
|
|
|
}
|
2003-05-21 18:05:35 +00:00
|
|
|
} else if (DEBUG_RA) { // can't allocate the suggested col
|
2003-05-21 17:59:06 +00:00
|
|
|
std::cerr << "\n Could NOT allocate the suggested color (already used) ";
|
|
|
|
printSet(*LR); std::cerr << "\n";
|
2001-09-30 23:16:47 +00:00
|
|
|
}
|
|
|
|
}
|
2001-09-18 22:52:44 +00:00
|
|
|
|
|
|
|
unsigned SearchStart; // start pos of color in pref-order
|
|
|
|
bool ColorFound= false; // have we found a color yet?
|
|
|
|
|
|
|
|
//if this Node is between calls
|
2003-05-21 18:05:35 +00:00
|
|
|
if (! LR->isCallInterference()) {
|
2001-09-18 22:52:44 +00:00
|
|
|
// start with volatiles (we can allocate volatiles safely)
|
2002-08-12 21:25:05 +00:00
|
|
|
SearchStart = SparcIntRegClass::StartOfAllRegs;
|
2003-05-21 18:05:35 +00:00
|
|
|
} else {
|
2001-09-18 22:52:44 +00:00
|
|
|
// start with non volatiles (no non-volatiles)
|
2002-08-12 21:25:05 +00:00
|
|
|
SearchStart = SparcIntRegClass::StartOfNonVolatileRegs;
|
2001-09-18 22:52:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
unsigned c=0; // color
|
|
|
|
|
|
|
|
// find first unused color
|
2003-05-21 18:05:35 +00:00
|
|
|
for (c=SearchStart; c < SparcIntRegClass::NumOfAvailRegs; c++) {
|
|
|
|
if (!IsColorUsedArr[c]) {
|
|
|
|
ColorFound = true;
|
|
|
|
break;
|
|
|
|
}
|
2001-09-18 22:52:44 +00:00
|
|
|
}
|
|
|
|
|
2003-05-21 18:05:35 +00:00
|
|
|
if (ColorFound) {
|
2001-09-30 23:16:47 +00:00
|
|
|
LR->setColor(c); // first color found in preffered order
|
2003-05-21 17:59:06 +00:00
|
|
|
if (DEBUG_RA) std::cerr << "\n Colored after first search with col " << c;
|
2001-10-19 17:23:43 +00:00
|
|
|
}
|
2001-09-18 22:52:44 +00:00
|
|
|
|
|
|
|
// if color is not found because of call interference
|
|
|
|
// try even finding a volatile color and insert save across calls
|
2002-01-07 19:20:28 +00:00
|
|
|
//
|
2003-05-21 18:05:35 +00:00
|
|
|
else if (LR->isCallInterference()) {
|
2001-09-18 22:52:44 +00:00
|
|
|
// start from 0 - try to find even a volatile this time
|
2002-08-12 21:25:05 +00:00
|
|
|
SearchStart = SparcIntRegClass::StartOfAllRegs;
|
2001-09-18 22:52:44 +00:00
|
|
|
|
|
|
|
// find first unused volatile color
|
2002-08-12 21:25:05 +00:00
|
|
|
for(c=SearchStart; c < SparcIntRegClass::StartOfNonVolatileRegs; c++) {
|
2003-05-21 18:05:35 +00:00
|
|
|
if (! IsColorUsedArr[c]) {
|
|
|
|
ColorFound = true;
|
|
|
|
break;
|
|
|
|
}
|
2001-09-18 22:52:44 +00:00
|
|
|
}
|
|
|
|
|
2002-02-04 05:59:25 +00:00
|
|
|
if (ColorFound) {
|
2003-05-21 18:05:35 +00:00
|
|
|
LR->setColor(c);
|
|
|
|
// get the live range corresponding to live var
|
|
|
|
// since LR span across calls, must save across calls
|
|
|
|
//
|
|
|
|
LR->markForSaveAcrossCalls();
|
|
|
|
if (DEBUG_RA)
|
|
|
|
std::cerr << "\n Colored after SECOND search with col " << c;
|
2001-09-18 22:52:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-09-30 23:16:47 +00:00
|
|
|
|
2001-09-18 22:52:44 +00:00
|
|
|
// If we couldn't find a color regardless of call interference - i.e., we
|
|
|
|
// don't have either a volatile or non-volatile color left
|
2002-01-07 19:20:28 +00:00
|
|
|
//
|
2002-02-04 05:59:25 +00:00
|
|
|
if (!ColorFound)
|
2001-09-30 23:16:47 +00:00
|
|
|
LR->markForSpill(); // no color found - must spill
|
2001-09-18 22:52:44 +00:00
|
|
|
}
|
|
|
|
|
2003-07-06 20:13:59 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Int CC Register Class - method for coloring a node in the interference graph.
|
|
|
|
//
|
|
|
|
// Algorithm:
|
|
|
|
//
|
2003-07-10 19:42:11 +00:00
|
|
|
// If (node has any interferences)
|
|
|
|
// /* all interference operations can use only one register! */
|
2003-07-06 20:13:59 +00:00
|
|
|
// mark the LR for spilling
|
|
|
|
// else {
|
|
|
|
// if (the LR is a 64-bit comparison) use %xcc
|
|
|
|
// else /*32-bit or smaller*/ use %icc
|
|
|
|
// }
|
|
|
|
//
|
|
|
|
// Note: The third name (%ccr) is essentially an assembly mnemonic and
|
|
|
|
// depends solely on the opcode, so the name can be chosen in EmitAssembly.
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
void SparcIntCCRegClass::colorIGNode(IGNode *Node,
|
2003-07-25 21:12:15 +00:00
|
|
|
const std::vector<bool> &IsColorUsedArr) const
|
2003-07-06 20:13:59 +00:00
|
|
|
{
|
2003-07-10 19:42:11 +00:00
|
|
|
if (Node->getNumOfNeighbors() > 0)
|
2003-07-06 20:13:59 +00:00
|
|
|
Node->getParentLR()->markForSpill();
|
2003-07-10 19:42:11 +00:00
|
|
|
|
|
|
|
// Mark the appropriate register in any case (even if it needs to be spilled)
|
|
|
|
// because there is only one possible register, but more importantly, the
|
|
|
|
// spill algorithm cannot find it. In particular, we have to choose
|
|
|
|
// whether to use %xcc or %icc based on type of value compared
|
|
|
|
//
|
|
|
|
const LiveRange* ccLR = Node->getParentLR();
|
|
|
|
const Type* setCCType = (* ccLR->begin())->getType(); // any Value in LR
|
|
|
|
assert(setCCType->isIntegral() || isa<PointerType>(setCCType));
|
|
|
|
int ccReg = ((isa<PointerType>(setCCType) || setCCType == Type::LongTy)
|
|
|
|
? xcc : icc);
|
2003-07-06 20:13:59 +00:00
|
|
|
|
|
|
|
#ifndef NDEBUG
|
2003-07-10 19:42:11 +00:00
|
|
|
// Let's just make sure values of two different types have not been
|
|
|
|
// coalesced into this LR.
|
|
|
|
for (ValueSet::const_iterator I=ccLR->begin(), E=ccLR->end(); I!=E; ++I) {
|
|
|
|
const Type* ccType = (*I)->getType();
|
|
|
|
assert((ccReg == xcc && (isa<PointerType>(ccType)
|
|
|
|
|| ccType == Type::LongTy)) ||
|
|
|
|
(ccReg == icc && ccType->isIntegral() && ccType != Type::LongTy)
|
|
|
|
&& "Comparisons needing different intCC regs coalesced in LR!");
|
|
|
|
}
|
2003-07-06 20:13:59 +00:00
|
|
|
#endif
|
|
|
|
|
2003-07-10 19:42:11 +00:00
|
|
|
Node->setColor(ccReg); // only one int cc reg is available
|
2003-07-06 20:13:59 +00:00
|
|
|
}
|
|
|
|
|
2001-09-18 22:52:44 +00:00
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
2002-01-07 19:20:28 +00:00
|
|
|
// Float Register Class - method for coloring a node in the interference graph.
|
|
|
|
//
|
|
|
|
// Algorithm:
|
|
|
|
//
|
|
|
|
// If the LR is a double try to allocate f32 - f63
|
|
|
|
// If the above fails or LR is single precision
|
|
|
|
// If the LR does not interfere with a call
|
|
|
|
// start allocating from f0
|
|
|
|
// Else start allocating from f6
|
|
|
|
// If a color is still not found because LR interferes with a call
|
|
|
|
// Search in f0 - f6. If found mark for spill across calls.
|
|
|
|
// If a color is still not fond, mark for spilling
|
|
|
|
//
|
|
|
|
//----------------------------------------------------------------------------
|
2002-05-23 15:50:03 +00:00
|
|
|
void SparcFloatRegClass::colorIGNode(IGNode * Node,
|
2003-07-25 21:12:15 +00:00
|
|
|
const std::vector<bool> &IsColorUsedArr) const
|
2003-05-21 17:59:06 +00:00
|
|
|
{
|
2002-02-05 03:52:29 +00:00
|
|
|
LiveRange *LR = Node->getParentLR();
|
2001-09-18 22:52:44 +00:00
|
|
|
|
2003-07-25 21:12:15 +00:00
|
|
|
#ifndef NDEBUG
|
|
|
|
// Check that the correct colors have been are marked for fp-doubles.
|
|
|
|
//
|
|
|
|
// FIXME: This is old code that is no longer needed. Temporarily converting
|
|
|
|
// it into a big assertion just to check that the replacement logic
|
|
|
|
// (invoking SparcFloatRegClass::markColorsUsed() directly from
|
|
|
|
// RegClass::colorIGNode) works correctly.
|
|
|
|
//
|
|
|
|
// In fact, this entire function should be identical to
|
|
|
|
// SparcIntRegClass::colorIGNode(), and perhaps can be
|
|
|
|
// made into a general case in CodeGen/RegAlloc/RegClass.cpp.
|
2002-05-19 15:25:51 +00:00
|
|
|
//
|
|
|
|
unsigned NumNeighbors = Node->getNumOfNeighbors(); // total # of neighbors
|
2001-09-18 22:52:44 +00:00
|
|
|
for(unsigned n=0; n < NumNeighbors; n++) { // for each neigh
|
|
|
|
IGNode *NeighIGNode = Node->getAdjIGNode(n);
|
2001-09-30 23:16:47 +00:00
|
|
|
LiveRange *NeighLR = NeighIGNode->getParentLR();
|
2002-05-19 15:25:51 +00:00
|
|
|
|
2003-05-21 18:05:35 +00:00
|
|
|
if (NeighLR->hasColor() &&
|
2002-05-19 15:25:51 +00:00
|
|
|
NeighLR->getType() == Type::DoubleTy) {
|
2003-07-25 21:12:15 +00:00
|
|
|
assert(IsColorUsedArr[ NeighLR->getColor() ] &&
|
|
|
|
IsColorUsedArr[ NeighLR->getColor()+1 ]);
|
2002-05-19 15:25:51 +00:00
|
|
|
|
|
|
|
} else if (NeighLR->hasSuggestedColor() &&
|
|
|
|
NeighLR-> isSuggestedColorUsable() ) {
|
|
|
|
|
2003-05-21 18:05:35 +00:00
|
|
|
// if the neighbour can use the suggested color
|
2003-07-25 21:12:15 +00:00
|
|
|
assert(IsColorUsedArr[ NeighLR->getSuggestedColor() ]);
|
2003-05-21 18:05:35 +00:00
|
|
|
if (NeighLR->getType() == Type::DoubleTy)
|
2003-07-25 21:12:15 +00:00
|
|
|
assert(IsColorUsedArr[ NeighLR->getSuggestedColor()+1 ]);
|
2002-05-19 15:25:51 +00:00
|
|
|
}
|
2001-09-30 23:16:47 +00:00
|
|
|
}
|
2003-07-25 21:12:15 +00:00
|
|
|
#endif
|
2001-09-30 23:16:47 +00:00
|
|
|
|
2001-10-19 17:23:43 +00:00
|
|
|
// **NOTE: We don't check for call interferences in allocating suggested
|
|
|
|
// color in this class since ALL registers are volatile. If this fact
|
|
|
|
// changes, we should change the following part
|
|
|
|
//- see SparcIntRegClass::colorIGNode()
|
2002-05-19 15:25:51 +00:00
|
|
|
//
|
2001-09-30 23:16:47 +00:00
|
|
|
if( LR->hasSuggestedColor() ) {
|
|
|
|
if( ! IsColorUsedArr[ LR->getSuggestedColor() ] ) {
|
|
|
|
LR->setColor( LR->getSuggestedColor() );
|
|
|
|
return;
|
2002-02-05 02:52:05 +00:00
|
|
|
} else if (DEBUG_RA) { // can't allocate the suggested col
|
2003-05-21 17:59:06 +00:00
|
|
|
std::cerr << " Could NOT allocate the suggested color for LR ";
|
|
|
|
printSet(*LR); std::cerr << "\n";
|
2001-09-18 22:52:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2001-09-30 23:16:47 +00:00
|
|
|
|
2001-09-18 22:52:44 +00:00
|
|
|
int ColorFound = -1; // have we found a color yet?
|
2001-10-19 17:23:43 +00:00
|
|
|
bool isCallInterf = LR->isCallInterference();
|
2001-09-18 22:52:44 +00:00
|
|
|
|
2002-05-23 15:50:03 +00:00
|
|
|
// if value is a double - search the double only region (f32 - f63)
|
2002-01-07 19:20:28 +00:00
|
|
|
// i.e. we try to allocate f32 - f63 first for doubles since singles
|
|
|
|
// cannot go there. By doing that, we provide more space for singles
|
|
|
|
// in f0 - f31
|
|
|
|
//
|
2002-02-05 03:52:29 +00:00
|
|
|
if (LR->getType() == Type::DoubleTy)
|
2001-09-30 23:16:47 +00:00
|
|
|
ColorFound = findFloatColor( LR, 32, 64, IsColorUsedArr );
|
2001-09-18 22:52:44 +00:00
|
|
|
|
2003-05-21 18:05:35 +00:00
|
|
|
if (ColorFound >= 0) { // if we could find a color
|
2001-09-30 23:16:47 +00:00
|
|
|
LR->setColor(ColorFound);
|
2001-09-18 22:52:44 +00:00
|
|
|
return;
|
2002-02-04 05:59:25 +00:00
|
|
|
} else {
|
2001-09-18 22:52:44 +00:00
|
|
|
|
2002-01-07 19:20:28 +00:00
|
|
|
// if we didn't find a color becuase the LR was single precision or
|
|
|
|
// all f32-f63 range is filled, we try to allocate a register from
|
|
|
|
// the f0 - f31 region
|
2001-09-18 22:52:44 +00:00
|
|
|
|
|
|
|
unsigned SearchStart; // start pos of color in pref-order
|
|
|
|
|
|
|
|
//if this Node is between calls (i.e., no call interferences )
|
2003-05-21 18:05:35 +00:00
|
|
|
if (! isCallInterf) {
|
2001-09-18 22:52:44 +00:00
|
|
|
// start with volatiles (we can allocate volatiles safely)
|
2002-08-12 21:25:05 +00:00
|
|
|
SearchStart = SparcFloatRegClass::StartOfAllRegs;
|
2003-05-21 18:05:35 +00:00
|
|
|
} else {
|
2001-09-18 22:52:44 +00:00
|
|
|
// start with non volatiles (no non-volatiles)
|
2002-08-12 21:25:05 +00:00
|
|
|
SearchStart = SparcFloatRegClass::StartOfNonVolatileRegs;
|
2001-09-18 22:52:44 +00:00
|
|
|
}
|
|
|
|
|
2003-05-21 18:05:35 +00:00
|
|
|
ColorFound = findFloatColor(LR, SearchStart, 32, IsColorUsedArr);
|
2001-09-18 22:52:44 +00:00
|
|
|
}
|
|
|
|
|
2003-05-21 18:05:35 +00:00
|
|
|
if (ColorFound >= 0) { // if we could find a color
|
2001-09-30 23:16:47 +00:00
|
|
|
LR->setColor(ColorFound);
|
2001-09-18 22:52:44 +00:00
|
|
|
return;
|
2003-05-21 18:05:35 +00:00
|
|
|
} else if (isCallInterf) {
|
2001-09-18 22:52:44 +00:00
|
|
|
// We are here because there is a call interference and no non-volatile
|
|
|
|
// color could be found.
|
|
|
|
// Now try to allocate even a volatile color
|
2003-05-21 18:05:35 +00:00
|
|
|
ColorFound = findFloatColor(LR, SparcFloatRegClass::StartOfAllRegs,
|
2002-08-12 21:25:05 +00:00
|
|
|
SparcFloatRegClass::StartOfNonVolatileRegs,
|
2001-09-18 22:52:44 +00:00
|
|
|
IsColorUsedArr);
|
|
|
|
}
|
|
|
|
|
2003-05-21 18:05:35 +00:00
|
|
|
if (ColorFound >= 0) {
|
2002-05-19 15:25:51 +00:00
|
|
|
LR->setColor(ColorFound); // first color found in prefered order
|
2001-09-30 23:16:47 +00:00
|
|
|
LR->markForSaveAcrossCalls();
|
2002-02-04 05:59:25 +00:00
|
|
|
} else {
|
|
|
|
// we are here because no color could be found
|
|
|
|
LR->markForSpill(); // no color found - must spill
|
2001-09-18 22:52:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-07-25 21:12:15 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// This method marks the registers used for a given register number.
|
|
|
|
// This marks a single register for Float regs, but the R,R+1 pair
|
|
|
|
// for double-precision registers.
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void SparcFloatRegClass::markColorsUsed(unsigned RegInClass,
|
|
|
|
int UserRegType,
|
|
|
|
int RegTypeWanted,
|
|
|
|
std::vector<bool> &IsColorUsedArr) const
|
|
|
|
{
|
|
|
|
if (UserRegType == UltraSparcRegInfo::FPDoubleRegType ||
|
|
|
|
RegTypeWanted == UltraSparcRegInfo::FPDoubleRegType) {
|
|
|
|
// This register is used as or is needed as a double-precision reg.
|
|
|
|
// We need to mark the [even,odd] pair corresponding to this reg.
|
|
|
|
// Get the even numbered register corresponding to this reg.
|
|
|
|
unsigned EvenRegInClass = RegInClass & ~1u;
|
|
|
|
assert(EvenRegInClass+1 < NumOfAllRegs &&
|
|
|
|
EvenRegInClass+1 < IsColorUsedArr.size());
|
|
|
|
IsColorUsedArr[EvenRegInClass] = true;
|
|
|
|
IsColorUsedArr[EvenRegInClass+1] = true;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
assert(RegInClass < NumOfAllRegs && RegInClass < IsColorUsedArr.size());
|
|
|
|
assert(UserRegType == RegTypeWanted
|
|
|
|
&& "Something other than FP single/double types share a reg class?");
|
|
|
|
IsColorUsedArr[RegInClass] = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// This method finds unused registers of the specified register type,
|
|
|
|
// using the given "used" flag array IsColorUsedArr. It checks a single
|
|
|
|
// entry in the array directly for float regs, and checks the pair [R,R+1]
|
|
|
|
// for double-precision registers
|
|
|
|
// It returns -1 if no unused color is found.
|
|
|
|
//
|
|
|
|
int SparcFloatRegClass::findUnusedColor(int RegTypeWanted,
|
|
|
|
const std::vector<bool> &IsColorUsedArr) const
|
|
|
|
{
|
|
|
|
if (RegTypeWanted == UltraSparcRegInfo::FPDoubleRegType) {
|
|
|
|
unsigned NC = 2 * this->getNumOfAvailRegs();
|
|
|
|
assert(IsColorUsedArr.size() == NC && "Invalid colors-used array");
|
|
|
|
for (unsigned c = 0; c < NC; c+=2)
|
|
|
|
if (!IsColorUsedArr[c]) {
|
|
|
|
assert(!IsColorUsedArr[c+1] && "Incorrect used regs for FP double!");
|
|
|
|
return c;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return TargetRegClassInfo::findUnusedColor(RegTypeWanted, IsColorUsedArr);
|
|
|
|
}
|
2001-09-18 22:52:44 +00:00
|
|
|
|
2002-01-07 19:20:28 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// Helper method for coloring a node of Float Reg class.
|
|
|
|
// Finds the first available color in the range [Start,End] depending on the
|
|
|
|
// type of the Node (i.e., float/double)
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2003-05-21 18:05:35 +00:00
|
|
|
int SparcFloatRegClass::findFloatColor(const LiveRange *LR,
|
|
|
|
unsigned Start,
|
|
|
|
unsigned End,
|
2003-07-25 21:12:15 +00:00
|
|
|
const std::vector<bool> &IsColorUsedArr) const
|
2003-05-21 17:59:06 +00:00
|
|
|
{
|
2002-02-05 03:52:29 +00:00
|
|
|
if (LR->getType() == Type::DoubleTy) {
|
2002-01-07 19:20:28 +00:00
|
|
|
// find first unused color for a double
|
2003-07-25 21:12:15 +00:00
|
|
|
assert(Start % 2 == 0 && "Odd register number could be used for double!");
|
|
|
|
for (unsigned c=Start; c < End ; c+= 2)
|
|
|
|
if (!IsColorUsedArr[c]) {
|
|
|
|
assert(!IsColorUsedArr[c+1] &&
|
|
|
|
"Incorrect marking of used regs for Sparc FP double!");
|
2002-02-04 05:59:25 +00:00
|
|
|
return c;
|
2003-07-25 21:12:15 +00:00
|
|
|
}
|
2002-01-07 19:20:28 +00:00
|
|
|
} else {
|
|
|
|
// find first unused color for a single
|
2003-07-25 21:12:15 +00:00
|
|
|
for (unsigned c = Start; c < End; c++)
|
2002-02-04 05:59:25 +00:00
|
|
|
if (!IsColorUsedArr[c])
|
|
|
|
return c;
|
2002-01-07 19:20:28 +00:00
|
|
|
}
|
2003-07-25 21:12:15 +00:00
|
|
|
|
2002-02-04 05:59:25 +00:00
|
|
|
return -1;
|
2003-07-25 21:12:15 +00:00
|
|
|
|
2002-01-07 19:20:28 +00:00
|
|
|
}
|