Added support for caller saving

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@847 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Ruchira Sasanka
2001-10-16 01:23:19 +00:00
parent abe959c063
commit c4d4b76efb
15 changed files with 562 additions and 238 deletions

View File

@@ -79,7 +79,7 @@ class MachineRegInfo
// RegClassArr.pushback( new SparcFloatCCRegClass(2) ); // RegClassArr.pushback( new SparcFloatCCRegClass(2) );
if(DEBUG_RA) if(DEBUG_RA)
cerr << "Created machine register classes." << endl; cout << "Created machine register classes." << endl;
} }

View File

@@ -54,7 +54,7 @@ public:
// This method should find a color which is not used by neighbors // This method should find a color which is not used by neighbors
// (i.e., a false position in IsColorUsedArr) and // (i.e., a false position in IsColorUsedArr) and
virtual void colorIGNode(IGNode * Node, bool IsColorUsedArr[] ) const = 0; virtual void colorIGNode(IGNode * Node, bool IsColorUsedArr[] ) const = 0;
virtual bool isRegVolatile(const int Reg) const = 0;
MachineRegClassInfo(const unsigned ID, const unsigned NVR, MachineRegClassInfo(const unsigned ID, const unsigned NVR,
const unsigned NAR): RegClassID(ID), NumOfAvailRegs(NVR), const unsigned NAR): RegClassID(ID), NumOfAvailRegs(NVR),
@@ -138,6 +138,22 @@ public:
virtual MachineInstr *
cpReg2RegMI(const unsigned SrcReg, const unsigned DestReg,
const int RegType) const=0;
virtual MachineInstr *
cpReg2MemMI(const unsigned SrcReg, const unsigned DestPtrReg,
const int Offset, const int RegType) const=0;
virtual MachineInstr *
cpMem2RegMI(const unsigned SrcPtrReg, const int Offset,
const unsigned DestReg, const int RegType) const=0;
virtual bool isRegVolatile(const int RegClassID, const int Reg) const=0;
//virtual bool handleSpecialMInstr(const MachineInstr * MInst, //virtual bool handleSpecialMInstr(const MachineInstr * MInst,
// LiveRangeInfo& LRI, vector<RegClass *> RCL) const = 0; // LiveRangeInfo& LRI, vector<RegClass *> RCL) const = 0;
@@ -153,6 +169,16 @@ public:
virtual const string getUnifiedRegName(int UnifiedRegNum) const = 0; virtual const string getUnifiedRegName(int UnifiedRegNum) const = 0;
virtual int getRegType(const LiveRange *const LR) const=0;
inline virtual unsigned getFramePointer() const=0;
inline virtual unsigned getStackPointer() const=0;
inline virtual int getInvalidRegNum() const=0;
//virtual void printReg(const LiveRange *const LR) const =0; //virtual void printReg(const LiveRange *const LR) const =0;
MachineRegInfo() { } MachineRegInfo() { }

View File

@@ -7,7 +7,7 @@ InterferenceGraph::InterferenceGraph(RegClass *const RC) : RegCl(RC),
IG = NULL; IG = NULL;
Size = 0; Size = 0;
if( DEBUG_RA) { if( DEBUG_RA) {
cerr << "Interference graph created!" << endl; cout << "Interference graph created!" << endl;
} }
} }
@@ -65,7 +65,7 @@ void InterferenceGraph::setInterference(const LiveRange *const LR1,
char *val; char *val;
if( DEBUG_RA > 1) if( DEBUG_RA > 1)
cerr << "setting intf for: [" << row << "][" << col << "]" << endl; cout << "setting intf for: [" << row << "][" << col << "]" << endl;
( row > col) ? val = &IG[row][col]: val = &IG[col][row]; ( row > col) ? val = &IG[row][col]: val = &IG[col][row];
@@ -118,9 +118,9 @@ void InterferenceGraph::mergeIGNodesOfLRs(const LiveRange *const LR1,
assertIGNode( SrcNode ); assertIGNode( SrcNode );
if( DEBUG_RA > 1) { if( DEBUG_RA > 1) {
cerr << "Merging LRs: \""; LR1->printSet(); cout << "Merging LRs: \""; LR1->printSet();
cerr << "\" and \""; LR2->printSet(); cout << "\" and \""; LR2->printSet();
cerr << "\"" << endl; cout << "\"" << endl;
} }
unsigned SrcDegree = SrcNode->getNumOfNeighbors(); unsigned SrcDegree = SrcNode->getNumOfNeighbors();
@@ -147,10 +147,10 @@ void InterferenceGraph::mergeIGNodesOfLRs(const LiveRange *const LR1,
setInterference(LR1, LROfNeigh ); setInterference(LR1, LROfNeigh );
} }
//cerr<< " #Neighs - Neigh: ["<< NeighNode->getIndex()<< "] "; //cout<< " #Neighs - Neigh: ["<< NeighNode->getIndex()<< "] ";
//cerr << NeighNode->getNumOfNeighbors(); //cout << NeighNode->getNumOfNeighbors();
//cerr << " Dest: [" << DestNode->getIndex() << "] "; //cout << " Dest: [" << DestNode->getIndex() << "] ";
//cerr << DestNode->getNumOfNeighbors() << endl; //cout << DestNode->getNumOfNeighbors() << endl;
} }
@@ -193,13 +193,13 @@ void InterferenceGraph::printIG() const
if( ! Node ) if( ! Node )
continue; // skip empty rows continue; // skip empty rows
cerr << " [" << i << "] "; cout << " [" << i << "] ";
for( unsigned int j=0; j < Size; j++) { for( unsigned int j=0; j < Size; j++) {
if( j >= i) break; if( j >= i) break;
if( IG[i][j] ) cerr << "(" << i << "," << j << ") "; if( IG[i][j] ) cout << "(" << i << "," << j << ") ";
} }
cerr << endl; cout << endl;
} }
} }
@@ -215,10 +215,10 @@ void InterferenceGraph::printIGNodeList() const
if( ! Node ) if( ! Node )
continue; continue;
cerr << " [" << Node->getIndex() << "] "; cout << " [" << Node->getIndex() << "] ";
(Node->getParentLR())->printSet(); (Node->getParentLR())->printSet();
//int Deg = Node->getCurDegree(); //int Deg = Node->getCurDegree();
cerr << "\t <# of Neighs: " << Node->getNumOfNeighbors() << ">" << endl; cout << "\t <# of Neighs: " << Node->getNumOfNeighbors() << ">" << endl;
} }
} }

View File

@@ -46,7 +46,7 @@ void LiveRangeInfo::constructLiveRanges()
{ {
if( DEBUG_RA) if( DEBUG_RA)
cerr << "Consturcting Live Ranges ..." << endl; cout << "Consturcting Live Ranges ..." << endl;
// first find the live ranges for all incoming args of the method since // first find the live ranges for all incoming args of the method since
// those LRs start from the start of the method // those LRs start from the start of the method
@@ -75,8 +75,8 @@ void LiveRangeInfo::constructLiveRanges()
if( DEBUG_RA > 1) { if( DEBUG_RA > 1) {
cerr << " adding LiveRange for argument "; cout << " adding LiveRange for argument ";
printValue( (const Value *) *ArgIt); cerr << endl; printValue( (const Value *) *ArgIt); cout << endl;
} }
} }
@@ -124,9 +124,9 @@ void LiveRangeInfo::constructLiveRanges()
OpI.getMachineOperand().getOperandType(); OpI.getMachineOperand().getOperandType();
if ( OpTyp == MachineOperand::MO_CCRegister) { if ( OpTyp == MachineOperand::MO_CCRegister) {
cerr << "\n**CC reg found. Is Def=" << OpI.isDef() << " Val:"; cout << "\n**CC reg found. Is Def=" << OpI.isDef() << " Val:";
printValue( OpI.getMachineOperand().getVRegValue() ); printValue( OpI.getMachineOperand().getVRegValue() );
cerr << endl; cout << endl;
} }
} }
@@ -139,8 +139,8 @@ void LiveRangeInfo::constructLiveRanges()
// Only instruction values are accepted for live ranges here // Only instruction values are accepted for live ranges here
if( Def->getValueType() != Value::InstructionVal ) { if( Def->getValueType() != Value::InstructionVal ) {
cerr << "\n**%%Error: Def is not an instruction val. Def="; cout << "\n**%%Error: Def is not an instruction val. Def=";
printValue( Def ); cerr << endl; printValue( Def ); cout << endl;
continue; continue;
} }
@@ -156,8 +156,8 @@ void LiveRangeInfo::constructLiveRanges()
LiveRangeMap[ Def ] = DefRange; // update the map LiveRangeMap[ Def ] = DefRange; // update the map
if( DEBUG_RA > 1) { if( DEBUG_RA > 1) {
cerr << " creating a LR for def: "; cout << " creating a LR for def: ";
printValue(Def); cerr << endl; printValue(Def); cout << endl;
} }
// set the register class of the new live range // set the register class of the new live range
@@ -171,7 +171,7 @@ void LiveRangeInfo::constructLiveRanges()
if(isCC && DEBUG_RA) { if(isCC && DEBUG_RA) {
cerr << "\a**created a LR for a CC reg:"; cout << "\a**created a LR for a CC reg:";
printValue( OpI.getMachineOperand().getVRegValue() ); printValue( OpI.getMachineOperand().getVRegValue() );
} }
@@ -185,8 +185,8 @@ void LiveRangeInfo::constructLiveRanges()
LiveRangeMap[ Def ] = DefRange; LiveRangeMap[ Def ] = DefRange;
if( DEBUG_RA > 1) { if( DEBUG_RA > 1) {
cerr << " added to an existing LR for def: "; cout << " added to an existing LR for def: ";
printValue( Def ); cerr << endl; printValue( Def ); cout << endl;
} }
} }
@@ -206,7 +206,7 @@ void LiveRangeInfo::constructLiveRanges()
suggestRegs4CallRets(); suggestRegs4CallRets();
if( DEBUG_RA) if( DEBUG_RA)
cerr << "Initial Live Ranges constructed!" << endl; cout << "Initial Live Ranges constructed!" << endl;
} }
@@ -257,7 +257,7 @@ void LiveRangeInfo::coalesceLRs()
*/ */
if( DEBUG_RA) if( DEBUG_RA)
cerr << endl << "Coalscing LRs ..." << endl; cout << endl << "Coalscing LRs ..." << endl;
Method::const_iterator BBI = Meth->begin(); // random iterator for BBs Method::const_iterator BBI = Meth->begin(); // random iterator for BBs
@@ -274,9 +274,9 @@ void LiveRangeInfo::coalesceLRs()
const MachineInstr * MInst = *MInstIterator; const MachineInstr * MInst = *MInstIterator;
if( DEBUG_RA > 1) { if( DEBUG_RA > 1) {
cerr << " *Iterating over machine instr "; cout << " *Iterating over machine instr ";
MInst->dump(); MInst->dump();
cerr << endl; cout << endl;
} }
@@ -298,8 +298,8 @@ void LiveRangeInfo::coalesceLRs()
//don't warn about labels //don't warn about labels
if (!((*UseI)->getType())->isLabelType() && DEBUG_RA) { if (!((*UseI)->getType())->isLabelType() && DEBUG_RA) {
cerr<<" !! Warning: No LR for use "; printValue(*UseI); cout<<" !! Warning: No LR for use "; printValue(*UseI);
cerr << endl; cout << endl;
} }
continue; // ignore and continue continue; // ignore and continue
} }
@@ -345,7 +345,7 @@ void LiveRangeInfo::coalesceLRs()
} // for all BBs } // for all BBs
if( DEBUG_RA) if( DEBUG_RA)
cerr << endl << "Coalscing Done!" << endl; cout << endl << "Coalscing Done!" << endl;
} }
@@ -359,11 +359,11 @@ void LiveRangeInfo::coalesceLRs()
void LiveRangeInfo::printLiveRanges() void LiveRangeInfo::printLiveRanges()
{ {
LiveRangeMapType::iterator HMI = LiveRangeMap.begin(); // hash map iterator LiveRangeMapType::iterator HMI = LiveRangeMap.begin(); // hash map iterator
cerr << endl << "Printing Live Ranges from Hash Map:" << endl; cout << endl << "Printing Live Ranges from Hash Map:" << endl;
for( ; HMI != LiveRangeMap.end() ; HMI ++ ) { for( ; HMI != LiveRangeMap.end() ; HMI ++ ) {
if( (*HMI).first && (*HMI).second ) { if( (*HMI).first && (*HMI).second ) {
cerr <<" "; printValue((*HMI).first); cerr << "\t: "; cout <<" "; printValue((*HMI).first); cout << "\t: ";
((*HMI).second)->printSet(); cerr << endl; ((*HMI).second)->printSet(); cout << endl;
} }
} }
} }

View File

@@ -36,7 +36,7 @@ PhyRegAlloc::PhyRegAlloc(const Method *const M,
void PhyRegAlloc::createIGNodeListsAndIGs() void PhyRegAlloc::createIGNodeListsAndIGs()
{ {
if(DEBUG_RA ) cerr << "Creating LR lists ..." << endl; if(DEBUG_RA ) cout << "Creating LR lists ..." << endl;
// hash map iterator // hash map iterator
LiveRangeMapType::const_iterator HMI = (LRI.getLiveRangeMap())->begin(); LiveRangeMapType::const_iterator HMI = (LRI.getLiveRangeMap())->begin();
@@ -52,8 +52,8 @@ void PhyRegAlloc::createIGNodeListsAndIGs()
if( !L) { if( !L) {
if( DEBUG_RA) { if( DEBUG_RA) {
cerr << "\n*?!?Warning: Null liver range found for: "; cout << "\n*?!?Warning: Null liver range found for: ";
printValue( (*HMI).first) ; cerr << endl; printValue( (*HMI).first) ; cout << endl;
} }
continue; continue;
} }
@@ -75,7 +75,7 @@ void PhyRegAlloc::createIGNodeListsAndIGs()
RegClassList[ rc ]->createInterferenceGraph(); RegClassList[ rc ]->createInterferenceGraph();
if( DEBUG_RA) if( DEBUG_RA)
cerr << "LRLists Created!" << endl; cout << "LRLists Created!" << endl;
} }
@@ -105,8 +105,8 @@ void PhyRegAlloc::addInterference(const Value *const Def,
for( ; LIt != LVSet->end(); ++LIt) { for( ; LIt != LVSet->end(); ++LIt) {
if( DEBUG_RA > 1) { if( DEBUG_RA > 1) {
cerr << "< Def="; printValue(Def); cout << "< Def="; printValue(Def);
cerr << ", Lvar="; printValue( *LIt); cerr << "> "; cout << ", Lvar="; printValue( *LIt); cout << "> ";
} }
// get the live range corresponding to live var // get the live range corresponding to live var
@@ -126,15 +126,17 @@ void PhyRegAlloc::addInterference(const Value *const Def,
} }
//the live range of this var interferes with this call //the live range of this var interferes with this call
if( isCallInst ) if( isCallInst ) {
LROfVar->addCallInterference( (const Instruction *const) Def ); LROfVar->addCallInterference( (const Instruction *const) Def );
// cout << "\n ++Added Call Interf to set:";
// LROfVar->printSet();
}
} }
else if(DEBUG_RA > 1) { else if(DEBUG_RA > 1) {
// we will not have LRs for values not explicitly allocated in the // we will not have LRs for values not explicitly allocated in the
// instruction stream (e.g., constants) // instruction stream (e.g., constants)
cerr << " warning: no live range for " ; cout << " warning: no live range for " ;
printValue( *LIt); cerr << endl; } printValue( *LIt); cout << endl; }
} }
@@ -148,7 +150,7 @@ void PhyRegAlloc::addInterference(const Value *const Def,
void PhyRegAlloc::buildInterferenceGraphs() void PhyRegAlloc::buildInterferenceGraphs()
{ {
if(DEBUG_RA) cerr << "Creating interference graphs ..." << endl; if(DEBUG_RA) cout << "Creating interference graphs ..." << endl;
Method::const_iterator BBI = Meth->begin(); // random iterator for BBs Method::const_iterator BBI = Meth->begin(); // random iterator for BBs
@@ -170,6 +172,8 @@ void PhyRegAlloc::buildInterferenceGraphs()
const bool isCallInst = TM.getInstrInfo().isCall(MInst->getOpCode()); const bool isCallInst = TM.getInstrInfo().isCall(MInst->getOpCode());
// if( isCallInst) cout << "\n%%% Found call Inst:\n";
// iterate over MI operands to find defs // iterate over MI operands to find defs
for( MachineInstr::val_op_const_iterator OpI(MInst);!OpI.done(); ++OpI) { for( MachineInstr::val_op_const_iterator OpI(MInst);!OpI.done(); ++OpI) {
@@ -181,6 +185,17 @@ void PhyRegAlloc::buildInterferenceGraphs()
} // for all operands } // for all operands
// Also add interference for any implicit definitions in a machine
// instr (currently, only calls have this).
unsigned NumOfImpRefs = MInst->getNumImplicitRefs();
if( NumOfImpRefs > 0 ) {
for(unsigned z=0; z < NumOfImpRefs; z++)
if( MInst->implicitRefIsDefined(z) )
addInterference( MInst->getImplicitRef(z), LVSetAI, isCallInst );
}
} // for all machine instructions in BB } // for all machine instructions in BB
@@ -201,7 +216,7 @@ void PhyRegAlloc::buildInterferenceGraphs()
else if( OpCode == Instruction::Ret ) else if( OpCode == Instruction::Ret )
RetInstrList.push_back( *InstIt ); RetInstrList.push_back( *InstIt );
} }
#endif #endif
@@ -215,7 +230,7 @@ void PhyRegAlloc::buildInterferenceGraphs()
addInterferencesForArgs(); // add interference for method args addInterferencesForArgs(); // add interference for method args
if( DEBUG_RA) if( DEBUG_RA)
cerr << "Interference graphs calculted!" << endl; cout << "Interference graphs calculted!" << endl;
} }
@@ -241,16 +256,17 @@ void PhyRegAlloc::addInterferencesForArgs()
addInterference( *ArgIt, InSet, false ); // add interferences between addInterference( *ArgIt, InSet, false ); // add interferences between
// args and LVars at start // args and LVars at start
if( DEBUG_RA > 1) { if( DEBUG_RA > 1) {
cerr << " - %% adding interference for argument "; cout << " - %% adding interference for argument ";
printValue( (const Value *) *ArgIt); cerr << endl; printValue( (const Value *) *ArgIt); cout << endl;
} }
} }
} }
#if 0
//----------------------------------------------------------------------------
//----------------------------------------------------------------------------
// This method inserts caller saving/restoring instructons before/after
// a call machine instruction.
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
@@ -260,7 +276,7 @@ void PhyRegAlloc::insertCallerSavingCode(const MachineInstr *MInst,
assert( (TM.getInstrInfo()).isCall( MInst->getOpCode() ) ); assert( (TM.getInstrInfo()).isCall( MInst->getOpCode() ) );
int StackOff = 10; // ****TODO : Change int StackOff = 10; // ****TODO : Change
set<unsigned> PushedRegSet(); hash_set<unsigned> PushedRegSet;
// Now find the LR of the return value of the call // Now find the LR of the return value of the call
// The last *implicit operand* is the return value of a call // The last *implicit operand* is the return value of a call
@@ -275,7 +291,7 @@ void PhyRegAlloc::insertCallerSavingCode(const MachineInstr *MInst,
if( MInst->implicitRefIsDefined(NumOfImpRefs-1) ) { if( MInst->implicitRefIsDefined(NumOfImpRefs-1) ) {
const Value *RetVal = CallMI->getImplicitRef(NumOfImpRefs-1); const Value *RetVal = MInst->getImplicitRef(NumOfImpRefs-1);
LiveRange *RetValLR = LRI.getLiveRangeForValue( RetVal ); LiveRange *RetValLR = LRI.getLiveRangeForValue( RetVal );
assert( RetValLR && "No LR for RetValue of call"); assert( RetValLR && "No LR for RetValue of call");
@@ -287,7 +303,7 @@ void PhyRegAlloc::insertCallerSavingCode(const MachineInstr *MInst,
} }
LiveVarSet *LVSetAft = LVI->getLiveVarSetAfterMInst(MInst, BB); const LiveVarSet *LVSetAft = LVI->getLiveVarSetAfterMInst(MInst, BB);
LiveVarSet::const_iterator LIt = LVSetAft->begin(); LiveVarSet::const_iterator LIt = LVSetAft->begin();
@@ -313,20 +329,28 @@ void PhyRegAlloc::insertCallerSavingCode(const MachineInstr *MInst,
unsigned Reg = MRI.getUnifiedRegNum(RCID, Color); unsigned Reg = MRI.getUnifiedRegNum(RCID, Color);
if( PuhsedRegSet.find(Reg) == PhusedRegSet.end() ) { if( PushedRegSet.find(Reg) == PushedRegSet.end() ) {
// if we haven't already pushed that register // if we haven't already pushed that register
unsigned RegType = MRI.getRegType( LR );
// Now get two instructions - to push on stack and pop from stack
// and add them to InstrnsBefore and InstrnsAfter of the
// call instruction
MachineInstr *AdI = MachineInstr *AdIBef =
MRI.saveRegOnStackMI(Reg, MRI.getFPReg(), StackOff ); MRI.cpReg2MemMI(Reg, MRI.getFramePointer(), StackOff, RegType );
((AddedInstrMap[MInst])->InstrnsBefore).push_front(AdI); MachineInstr *AdIAft =
((AddedInstrMap[MInst])->InstrnsAfter).push_back(AdI); MRI.cpMem2RegMI(MRI.getFramePointer(), StackOff, Reg, RegType );
((AddedInstrMap[MInst])->InstrnsBefore).push_front(AdIBef);
((AddedInstrMap[MInst])->InstrnsAfter).push_back(AdIAft);
PushedRegSet.insert( Reg ); PushedRegSet.insert( Reg );
StackOff += 4; // ****TODO: Correct ?????? StackOff += 4; // ****TODO: Correct ??????
cerr << "Inserted caller saving instr"); cout << "\n $$$ Inserted caller saving instr";
} // if not already pushed } // if not already pushed
@@ -340,7 +364,6 @@ void PhyRegAlloc::insertCallerSavingCode(const MachineInstr *MInst,
} }
#endif
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
// This method is called after register allocation is complete to set the // This method is called after register allocation is complete to set the
@@ -364,13 +387,17 @@ void PhyRegAlloc::updateMachineCode()
MachineInstr *MInst = *MInstIterator; MachineInstr *MInst = *MInstIterator;
// if this machine instr is call, insert caller saving code
// If there are instructions before to be added, add them now if( (TM.getInstrInfo()).isCall( MInst->getOpCode()) )
// ***TODO: Add InstrnsAfter as well insertCallerSavingCode(MInst, *BBI );
// If there are instructions to be added, *before* this machine
// instruction, add them now.
if( AddedInstrMap[ MInst ] ) { if( AddedInstrMap[ MInst ] ) {
deque<MachineInstr *> &IBef = deque<MachineInstr *> &IBef = (AddedInstrMap[MInst])->InstrnsBefore;
(AddedInstrMap[MInst])->InstrnsBefore;
if( ! IBef.empty() ) { if( ! IBef.empty() ) {
@@ -378,9 +405,9 @@ void PhyRegAlloc::updateMachineCode()
for( AdIt = IBef.begin(); AdIt != IBef.end() ; ++AdIt ) { for( AdIt = IBef.begin(); AdIt != IBef.end() ; ++AdIt ) {
cerr << "*ADDED instr opcode: "; cout << " *$* PREPENDed instr opcode: ";
cerr << TargetInstrDescriptors[(*AdIt)->getOpCode()].opCodeString; cout << TargetInstrDescriptors[(*AdIt)->getOpCode()].opCodeString;
cerr << endl; cout << endl;
MInstIterator = MIVec.insert( MInstIterator, *AdIt ); MInstIterator = MIVec.insert( MInstIterator, *AdIt );
++MInstIterator; ++MInstIterator;
@@ -388,9 +415,6 @@ void PhyRegAlloc::updateMachineCode()
} }
// restart from the topmost instruction added
//MInst = *MInstIterator;
} }
@@ -409,7 +433,7 @@ void PhyRegAlloc::updateMachineCode()
// delete this condition checking later (must assert if Val is null) // delete this condition checking later (must assert if Val is null)
if( !Val) { if( !Val) {
if (DEBUG_RA) if (DEBUG_RA)
cerr << "Warning: NULL Value found for operand" << endl; cout << "Warning: NULL Value found for operand" << endl;
continue; continue;
} }
assert( Val && "Value is NULL"); assert( Val && "Value is NULL");
@@ -421,12 +445,13 @@ void PhyRegAlloc::updateMachineCode()
// nothing to worry if it's a const or a label // nothing to worry if it's a const or a label
if (DEBUG_RA) { if (DEBUG_RA) {
cerr << "*NO LR for inst opcode: "; cout << "*NO LR for inst opcode: ";
cerr << TargetInstrDescriptors[MInst->getOpCode()].opCodeString; cout << TargetInstrDescriptors[MInst->getOpCode()].opCodeString;
} }
// if register is not allocated, mark register as invalid
if( Op.getAllocatedRegNum() == -1) if( Op.getAllocatedRegNum() == -1)
Op.setRegForValue( 1000 ); // mark register as invalid Op.setRegForValue( MRI.getInvalidRegNum());
#if 0 #if 0
if( ((Val->getType())->isLabelType()) || if( ((Val->getType())->isLabelType()) ||
@@ -442,16 +467,16 @@ void PhyRegAlloc::updateMachineCode()
//TM.getInstrInfo().isReturn(MInst->getOpCode()) //TM.getInstrInfo().isReturn(MInst->getOpCode())
else if(TM.getInstrInfo().isReturn(MInst->getOpCode()) ) { else if(TM.getInstrInfo().isReturn(MInst->getOpCode()) ) {
if (DEBUG_RA) cerr << endl << "RETURN found" << endl; if (DEBUG_RA) cout << endl << "RETURN found" << endl;
Op.setRegForValue( MRI.getReturnAddressReg() ); Op.setRegForValue( MRI.getReturnAddressReg() );
} }
if (Val->getValueType() == Value::InstructionVal) if (Val->getValueType() == Value::InstructionVal)
{ {
cerr << "!Warning: No LiveRange for: "; cout << "!Warning: No LiveRange for: ";
printValue( Val); cerr << " Type: " << Val->getValueType(); printValue( Val); cout << " Type: " << Val->getValueType();
cerr << " RegVal=" << Op.getAllocatedRegNum() << endl; cout << " RegVal=" << Op.getAllocatedRegNum() << endl;
} }
#endif #endif
@@ -467,9 +492,42 @@ void PhyRegAlloc::updateMachineCode()
} }
} // for each operand
// If there are instructions to be added *after* this machine
// instruction, add them now
if( AddedInstrMap[ MInst ] ) {
deque<MachineInstr *> &IAft = (AddedInstrMap[MInst])->InstrnsAfter;
if( ! IAft.empty() ) {
deque<MachineInstr *>::iterator AdIt;
++MInstIterator; // advance to the next instruction
for( AdIt = IAft.begin(); AdIt != IAft.end() ; ++AdIt ) {
cout << " *#* APPENDed instr opcode: ";
cout << TargetInstrDescriptors[(*AdIt)->getOpCode()].opCodeString;
cout << endl;
MInstIterator = MIVec.insert( MInstIterator, *AdIt );
++MInstIterator;
}
// MInsterator already points to the next instr. Since the
// for loop also increments it, decrement it to point to the
// instruction added last
--MInstIterator;
}
} }
} } // for each machine instruction
} }
} }
@@ -483,14 +541,14 @@ void PhyRegAlloc::updateMachineCode()
void PhyRegAlloc::printMachineCode() void PhyRegAlloc::printMachineCode()
{ {
cerr << endl << ";************** Method "; cout << endl << ";************** Method ";
cerr << Meth->getName() << " *****************" << endl; cout << Meth->getName() << " *****************" << endl;
Method::const_iterator BBI = Meth->begin(); // random iterator for BBs Method::const_iterator BBI = Meth->begin(); // random iterator for BBs
for( ; BBI != Meth->end(); ++BBI) { // traverse BBs in random order for( ; BBI != Meth->end(); ++BBI) { // traverse BBs in random order
cerr << endl ; printLabel( *BBI); cerr << ": "; cout << endl ; printLabel( *BBI); cout << ": ";
// get the iterator for machine instructions // get the iterator for machine instructions
MachineCodeForBasicBlock& MIVec = (*BBI)->getMachineInstrVec(); MachineCodeForBasicBlock& MIVec = (*BBI)->getMachineInstrVec();
@@ -502,8 +560,8 @@ void PhyRegAlloc::printMachineCode()
MachineInstr *const MInst = *MInstIterator; MachineInstr *const MInst = *MInstIterator;
cerr << endl << "\t"; cout << endl << "\t";
cerr << TargetInstrDescriptors[MInst->getOpCode()].opCodeString; cout << TargetInstrDescriptors[MInst->getOpCode()].opCodeString;
//for(MachineInstr::val_op_const_iterator OpI(MInst);!OpI.done();++OpI) { //for(MachineInstr::val_op_const_iterator OpI(MInst);!OpI.done();++OpI) {
@@ -519,14 +577,14 @@ void PhyRegAlloc::printMachineCode()
const Value *const Val = Op.getVRegValue () ; const Value *const Val = Op.getVRegValue () ;
// ****this code is temporary till NULL Values are fixed // ****this code is temporary till NULL Values are fixed
if( ! Val ) { if( ! Val ) {
cerr << "\t<*NULL*>"; cout << "\t<*NULL*>";
continue; continue;
} }
// if a label or a constant // if a label or a constant
if( (Val->getValueType() == Value::BasicBlockVal) ) { if( (Val->getValueType() == Value::BasicBlockVal) ) {
cerr << "\t"; printLabel( Op.getVRegValue () ); cout << "\t"; printLabel( Op.getVRegValue () );
} }
else { else {
// else it must be a register value // else it must be a register value
@@ -534,27 +592,42 @@ void PhyRegAlloc::printMachineCode()
//if( RegNum != 1000) //if( RegNum != 1000)
cerr << "\t" << "%" << MRI.getUnifiedRegName( RegNum ); cout << "\t" << "%" << MRI.getUnifiedRegName( RegNum );
// else cerr << "\t<*NoReg*>"; // else cout << "\t<*NoReg*>";
} }
} }
else if(Op.getOperandType() == MachineOperand::MO_MachineRegister) { else if(Op.getOperandType() == MachineOperand::MO_MachineRegister) {
cerr << "\t" << "%" << MRI.getUnifiedRegName(Op.getMachineRegNum()); cout << "\t" << "%" << MRI.getUnifiedRegName(Op.getMachineRegNum());
} }
else else
cerr << "\t" << Op; // use dump field cout << "\t" << Op; // use dump field
} }
}
cerr << endl; unsigned NumOfImpRefs = MInst->getNumImplicitRefs();
if( NumOfImpRefs > 0 ) {
cout << "\tImplicit:";
} for(unsigned z=0; z < NumOfImpRefs; z++) {
printValue( MInst->getImplicitRef(z) );
cout << "\t";
}
}
cerr << endl; } // for all machine instructions
cout << endl;
} // for all BBs
cout << endl;
} }
@@ -617,9 +690,9 @@ void PhyRegAlloc::colorIncomingArgs()
void PhyRegAlloc::printLabel(const Value *const Val) void PhyRegAlloc::printLabel(const Value *const Val)
{ {
if( Val->hasName() ) if( Val->hasName() )
cerr << Val->getName(); cout << Val->getName();
else else
cerr << "Label" << Val; cout << "Label" << Val;
} }

View File

@@ -81,6 +81,9 @@ class PhyRegAlloc
void addInterferencesForArgs(); void addInterferencesForArgs();
void createIGNodeListsAndIGs(); void createIGNodeListsAndIGs();
void buildInterferenceGraphs(); void buildInterferenceGraphs();
void insertCallerSavingCode(const MachineInstr *MInst,
const BasicBlock *BB );
inline void constructLiveRanges() inline void constructLiveRanges()
{ LRI.constructLiveRanges(); } { LRI.constructLiveRanges(); }

View File

@@ -9,7 +9,7 @@ RegClass::RegClass(const Method *const M,
IG(this), IGNodeStack(), ReservedColorList(RCL) IG(this), IGNodeStack(), ReservedColorList(RCL)
{ {
if( DEBUG_RA) if( DEBUG_RA)
cerr << "Created Reg Class: " << RegClassID << endl; cout << "Created Reg Class: " << RegClassID << endl;
// This constructor inits IG. The actual matrix is created by a call to // This constructor inits IG. The actual matrix is created by a call to
// createInterferenceGraph() above. // createInterferenceGraph() above.
@@ -21,7 +21,7 @@ RegClass::RegClass(const Method *const M,
void RegClass::colorAllRegs() void RegClass::colorAllRegs()
{ {
if(DEBUG_RA) cerr << "Coloring IGs ..." << endl; if(DEBUG_RA) cout << "Coloring IGs ..." << endl;
//preColorIGNodes(); // pre-color IGNodes //preColorIGNodes(); // pre-color IGNodes
pushAllIGNodes(); // push all IG Nodes pushAllIGNodes(); // push all IG Nodes
@@ -55,9 +55,9 @@ void RegClass::pushAllIGNodes()
bool PushedAll = pushUnconstrainedIGNodes(); bool PushedAll = pushUnconstrainedIGNodes();
if( DEBUG_RA) { if( DEBUG_RA) {
cerr << " Puhsed all-unconstrained IGNodes. "; cout << " Puhsed all-unconstrained IGNodes. ";
if( PushedAll ) cerr << " No constrained nodes left."; if( PushedAll ) cout << " No constrained nodes left.";
cerr << endl; cout << endl;
} }
if( PushedAll ) // if NO constrained nodes left if( PushedAll ) // if NO constrained nodes left
@@ -112,8 +112,8 @@ bool RegClass::pushUnconstrainedIGNodes()
IGNode->pushOnStack(); // set OnStack and dec deg of neighs IGNode->pushOnStack(); // set OnStack and dec deg of neighs
if (DEBUG_RA > 1) { if (DEBUG_RA > 1) {
cerr << " pushed un-constrained IGNode " << IGNode->getIndex() ; cout << " pushed un-constrained IGNode " << IGNode->getIndex() ;
cerr << " on to stack" << endl; cout << " on to stack" << endl;
} }
} }
else pushedall = false; // we didn't push all live ranges else pushedall = false; // we didn't push all live ranges
@@ -170,16 +170,16 @@ void RegClass::colorIGNode(IGNode *const Node)
} }
else { else {
if( DEBUG_RA ) { if( DEBUG_RA ) {
cerr << " Node " << Node->getIndex(); cout << " Node " << Node->getIndex();
cerr << " already colored with color " << Node->getColor() << endl; cout << " already colored with color " << Node->getColor() << endl;
} }
} }
if( !Node->hasColor() ) { if( !Node->hasColor() ) {
if( DEBUG_RA ) { if( DEBUG_RA ) {
cerr << " Node " << Node->getIndex(); cout << " Node " << Node->getIndex();
cerr << " - could not find a color (needs spilling)" << endl; cout << " - could not find a color (needs spilling)" << endl;
} }
} }

View File

@@ -7,7 +7,7 @@ InterferenceGraph::InterferenceGraph(RegClass *const RC) : RegCl(RC),
IG = NULL; IG = NULL;
Size = 0; Size = 0;
if( DEBUG_RA) { if( DEBUG_RA) {
cerr << "Interference graph created!" << endl; cout << "Interference graph created!" << endl;
} }
} }
@@ -65,7 +65,7 @@ void InterferenceGraph::setInterference(const LiveRange *const LR1,
char *val; char *val;
if( DEBUG_RA > 1) if( DEBUG_RA > 1)
cerr << "setting intf for: [" << row << "][" << col << "]" << endl; cout << "setting intf for: [" << row << "][" << col << "]" << endl;
( row > col) ? val = &IG[row][col]: val = &IG[col][row]; ( row > col) ? val = &IG[row][col]: val = &IG[col][row];
@@ -118,9 +118,9 @@ void InterferenceGraph::mergeIGNodesOfLRs(const LiveRange *const LR1,
assertIGNode( SrcNode ); assertIGNode( SrcNode );
if( DEBUG_RA > 1) { if( DEBUG_RA > 1) {
cerr << "Merging LRs: \""; LR1->printSet(); cout << "Merging LRs: \""; LR1->printSet();
cerr << "\" and \""; LR2->printSet(); cout << "\" and \""; LR2->printSet();
cerr << "\"" << endl; cout << "\"" << endl;
} }
unsigned SrcDegree = SrcNode->getNumOfNeighbors(); unsigned SrcDegree = SrcNode->getNumOfNeighbors();
@@ -147,10 +147,10 @@ void InterferenceGraph::mergeIGNodesOfLRs(const LiveRange *const LR1,
setInterference(LR1, LROfNeigh ); setInterference(LR1, LROfNeigh );
} }
//cerr<< " #Neighs - Neigh: ["<< NeighNode->getIndex()<< "] "; //cout<< " #Neighs - Neigh: ["<< NeighNode->getIndex()<< "] ";
//cerr << NeighNode->getNumOfNeighbors(); //cout << NeighNode->getNumOfNeighbors();
//cerr << " Dest: [" << DestNode->getIndex() << "] "; //cout << " Dest: [" << DestNode->getIndex() << "] ";
//cerr << DestNode->getNumOfNeighbors() << endl; //cout << DestNode->getNumOfNeighbors() << endl;
} }
@@ -193,13 +193,13 @@ void InterferenceGraph::printIG() const
if( ! Node ) if( ! Node )
continue; // skip empty rows continue; // skip empty rows
cerr << " [" << i << "] "; cout << " [" << i << "] ";
for( unsigned int j=0; j < Size; j++) { for( unsigned int j=0; j < Size; j++) {
if( j >= i) break; if( j >= i) break;
if( IG[i][j] ) cerr << "(" << i << "," << j << ") "; if( IG[i][j] ) cout << "(" << i << "," << j << ") ";
} }
cerr << endl; cout << endl;
} }
} }
@@ -215,10 +215,10 @@ void InterferenceGraph::printIGNodeList() const
if( ! Node ) if( ! Node )
continue; continue;
cerr << " [" << Node->getIndex() << "] "; cout << " [" << Node->getIndex() << "] ";
(Node->getParentLR())->printSet(); (Node->getParentLR())->printSet();
//int Deg = Node->getCurDegree(); //int Deg = Node->getCurDegree();
cerr << "\t <# of Neighs: " << Node->getNumOfNeighbors() << ">" << endl; cout << "\t <# of Neighs: " << Node->getNumOfNeighbors() << ">" << endl;
} }
} }

View File

@@ -46,7 +46,7 @@ void LiveRangeInfo::constructLiveRanges()
{ {
if( DEBUG_RA) if( DEBUG_RA)
cerr << "Consturcting Live Ranges ..." << endl; cout << "Consturcting Live Ranges ..." << endl;
// first find the live ranges for all incoming args of the method since // first find the live ranges for all incoming args of the method since
// those LRs start from the start of the method // those LRs start from the start of the method
@@ -75,8 +75,8 @@ void LiveRangeInfo::constructLiveRanges()
if( DEBUG_RA > 1) { if( DEBUG_RA > 1) {
cerr << " adding LiveRange for argument "; cout << " adding LiveRange for argument ";
printValue( (const Value *) *ArgIt); cerr << endl; printValue( (const Value *) *ArgIt); cout << endl;
} }
} }
@@ -124,9 +124,9 @@ void LiveRangeInfo::constructLiveRanges()
OpI.getMachineOperand().getOperandType(); OpI.getMachineOperand().getOperandType();
if ( OpTyp == MachineOperand::MO_CCRegister) { if ( OpTyp == MachineOperand::MO_CCRegister) {
cerr << "\n**CC reg found. Is Def=" << OpI.isDef() << " Val:"; cout << "\n**CC reg found. Is Def=" << OpI.isDef() << " Val:";
printValue( OpI.getMachineOperand().getVRegValue() ); printValue( OpI.getMachineOperand().getVRegValue() );
cerr << endl; cout << endl;
} }
} }
@@ -139,8 +139,8 @@ void LiveRangeInfo::constructLiveRanges()
// Only instruction values are accepted for live ranges here // Only instruction values are accepted for live ranges here
if( Def->getValueType() != Value::InstructionVal ) { if( Def->getValueType() != Value::InstructionVal ) {
cerr << "\n**%%Error: Def is not an instruction val. Def="; cout << "\n**%%Error: Def is not an instruction val. Def=";
printValue( Def ); cerr << endl; printValue( Def ); cout << endl;
continue; continue;
} }
@@ -156,8 +156,8 @@ void LiveRangeInfo::constructLiveRanges()
LiveRangeMap[ Def ] = DefRange; // update the map LiveRangeMap[ Def ] = DefRange; // update the map
if( DEBUG_RA > 1) { if( DEBUG_RA > 1) {
cerr << " creating a LR for def: "; cout << " creating a LR for def: ";
printValue(Def); cerr << endl; printValue(Def); cout << endl;
} }
// set the register class of the new live range // set the register class of the new live range
@@ -171,7 +171,7 @@ void LiveRangeInfo::constructLiveRanges()
if(isCC && DEBUG_RA) { if(isCC && DEBUG_RA) {
cerr << "\a**created a LR for a CC reg:"; cout << "\a**created a LR for a CC reg:";
printValue( OpI.getMachineOperand().getVRegValue() ); printValue( OpI.getMachineOperand().getVRegValue() );
} }
@@ -185,8 +185,8 @@ void LiveRangeInfo::constructLiveRanges()
LiveRangeMap[ Def ] = DefRange; LiveRangeMap[ Def ] = DefRange;
if( DEBUG_RA > 1) { if( DEBUG_RA > 1) {
cerr << " added to an existing LR for def: "; cout << " added to an existing LR for def: ";
printValue( Def ); cerr << endl; printValue( Def ); cout << endl;
} }
} }
@@ -206,7 +206,7 @@ void LiveRangeInfo::constructLiveRanges()
suggestRegs4CallRets(); suggestRegs4CallRets();
if( DEBUG_RA) if( DEBUG_RA)
cerr << "Initial Live Ranges constructed!" << endl; cout << "Initial Live Ranges constructed!" << endl;
} }
@@ -257,7 +257,7 @@ void LiveRangeInfo::coalesceLRs()
*/ */
if( DEBUG_RA) if( DEBUG_RA)
cerr << endl << "Coalscing LRs ..." << endl; cout << endl << "Coalscing LRs ..." << endl;
Method::const_iterator BBI = Meth->begin(); // random iterator for BBs Method::const_iterator BBI = Meth->begin(); // random iterator for BBs
@@ -274,9 +274,9 @@ void LiveRangeInfo::coalesceLRs()
const MachineInstr * MInst = *MInstIterator; const MachineInstr * MInst = *MInstIterator;
if( DEBUG_RA > 1) { if( DEBUG_RA > 1) {
cerr << " *Iterating over machine instr "; cout << " *Iterating over machine instr ";
MInst->dump(); MInst->dump();
cerr << endl; cout << endl;
} }
@@ -298,8 +298,8 @@ void LiveRangeInfo::coalesceLRs()
//don't warn about labels //don't warn about labels
if (!((*UseI)->getType())->isLabelType() && DEBUG_RA) { if (!((*UseI)->getType())->isLabelType() && DEBUG_RA) {
cerr<<" !! Warning: No LR for use "; printValue(*UseI); cout<<" !! Warning: No LR for use "; printValue(*UseI);
cerr << endl; cout << endl;
} }
continue; // ignore and continue continue; // ignore and continue
} }
@@ -345,7 +345,7 @@ void LiveRangeInfo::coalesceLRs()
} // for all BBs } // for all BBs
if( DEBUG_RA) if( DEBUG_RA)
cerr << endl << "Coalscing Done!" << endl; cout << endl << "Coalscing Done!" << endl;
} }
@@ -359,11 +359,11 @@ void LiveRangeInfo::coalesceLRs()
void LiveRangeInfo::printLiveRanges() void LiveRangeInfo::printLiveRanges()
{ {
LiveRangeMapType::iterator HMI = LiveRangeMap.begin(); // hash map iterator LiveRangeMapType::iterator HMI = LiveRangeMap.begin(); // hash map iterator
cerr << endl << "Printing Live Ranges from Hash Map:" << endl; cout << endl << "Printing Live Ranges from Hash Map:" << endl;
for( ; HMI != LiveRangeMap.end() ; HMI ++ ) { for( ; HMI != LiveRangeMap.end() ; HMI ++ ) {
if( (*HMI).first && (*HMI).second ) { if( (*HMI).first && (*HMI).second ) {
cerr <<" "; printValue((*HMI).first); cerr << "\t: "; cout <<" "; printValue((*HMI).first); cout << "\t: ";
((*HMI).second)->printSet(); cerr << endl; ((*HMI).second)->printSet(); cout << endl;
} }
} }
} }

View File

@@ -36,7 +36,7 @@ PhyRegAlloc::PhyRegAlloc(const Method *const M,
void PhyRegAlloc::createIGNodeListsAndIGs() void PhyRegAlloc::createIGNodeListsAndIGs()
{ {
if(DEBUG_RA ) cerr << "Creating LR lists ..." << endl; if(DEBUG_RA ) cout << "Creating LR lists ..." << endl;
// hash map iterator // hash map iterator
LiveRangeMapType::const_iterator HMI = (LRI.getLiveRangeMap())->begin(); LiveRangeMapType::const_iterator HMI = (LRI.getLiveRangeMap())->begin();
@@ -52,8 +52,8 @@ void PhyRegAlloc::createIGNodeListsAndIGs()
if( !L) { if( !L) {
if( DEBUG_RA) { if( DEBUG_RA) {
cerr << "\n*?!?Warning: Null liver range found for: "; cout << "\n*?!?Warning: Null liver range found for: ";
printValue( (*HMI).first) ; cerr << endl; printValue( (*HMI).first) ; cout << endl;
} }
continue; continue;
} }
@@ -75,7 +75,7 @@ void PhyRegAlloc::createIGNodeListsAndIGs()
RegClassList[ rc ]->createInterferenceGraph(); RegClassList[ rc ]->createInterferenceGraph();
if( DEBUG_RA) if( DEBUG_RA)
cerr << "LRLists Created!" << endl; cout << "LRLists Created!" << endl;
} }
@@ -105,8 +105,8 @@ void PhyRegAlloc::addInterference(const Value *const Def,
for( ; LIt != LVSet->end(); ++LIt) { for( ; LIt != LVSet->end(); ++LIt) {
if( DEBUG_RA > 1) { if( DEBUG_RA > 1) {
cerr << "< Def="; printValue(Def); cout << "< Def="; printValue(Def);
cerr << ", Lvar="; printValue( *LIt); cerr << "> "; cout << ", Lvar="; printValue( *LIt); cout << "> ";
} }
// get the live range corresponding to live var // get the live range corresponding to live var
@@ -126,15 +126,17 @@ void PhyRegAlloc::addInterference(const Value *const Def,
} }
//the live range of this var interferes with this call //the live range of this var interferes with this call
if( isCallInst ) if( isCallInst ) {
LROfVar->addCallInterference( (const Instruction *const) Def ); LROfVar->addCallInterference( (const Instruction *const) Def );
// cout << "\n ++Added Call Interf to set:";
// LROfVar->printSet();
}
} }
else if(DEBUG_RA > 1) { else if(DEBUG_RA > 1) {
// we will not have LRs for values not explicitly allocated in the // we will not have LRs for values not explicitly allocated in the
// instruction stream (e.g., constants) // instruction stream (e.g., constants)
cerr << " warning: no live range for " ; cout << " warning: no live range for " ;
printValue( *LIt); cerr << endl; } printValue( *LIt); cout << endl; }
} }
@@ -148,7 +150,7 @@ void PhyRegAlloc::addInterference(const Value *const Def,
void PhyRegAlloc::buildInterferenceGraphs() void PhyRegAlloc::buildInterferenceGraphs()
{ {
if(DEBUG_RA) cerr << "Creating interference graphs ..." << endl; if(DEBUG_RA) cout << "Creating interference graphs ..." << endl;
Method::const_iterator BBI = Meth->begin(); // random iterator for BBs Method::const_iterator BBI = Meth->begin(); // random iterator for BBs
@@ -170,6 +172,8 @@ void PhyRegAlloc::buildInterferenceGraphs()
const bool isCallInst = TM.getInstrInfo().isCall(MInst->getOpCode()); const bool isCallInst = TM.getInstrInfo().isCall(MInst->getOpCode());
// if( isCallInst) cout << "\n%%% Found call Inst:\n";
// iterate over MI operands to find defs // iterate over MI operands to find defs
for( MachineInstr::val_op_const_iterator OpI(MInst);!OpI.done(); ++OpI) { for( MachineInstr::val_op_const_iterator OpI(MInst);!OpI.done(); ++OpI) {
@@ -181,6 +185,17 @@ void PhyRegAlloc::buildInterferenceGraphs()
} // for all operands } // for all operands
// Also add interference for any implicit definitions in a machine
// instr (currently, only calls have this).
unsigned NumOfImpRefs = MInst->getNumImplicitRefs();
if( NumOfImpRefs > 0 ) {
for(unsigned z=0; z < NumOfImpRefs; z++)
if( MInst->implicitRefIsDefined(z) )
addInterference( MInst->getImplicitRef(z), LVSetAI, isCallInst );
}
} // for all machine instructions in BB } // for all machine instructions in BB
@@ -201,7 +216,7 @@ void PhyRegAlloc::buildInterferenceGraphs()
else if( OpCode == Instruction::Ret ) else if( OpCode == Instruction::Ret )
RetInstrList.push_back( *InstIt ); RetInstrList.push_back( *InstIt );
} }
#endif #endif
@@ -215,7 +230,7 @@ void PhyRegAlloc::buildInterferenceGraphs()
addInterferencesForArgs(); // add interference for method args addInterferencesForArgs(); // add interference for method args
if( DEBUG_RA) if( DEBUG_RA)
cerr << "Interference graphs calculted!" << endl; cout << "Interference graphs calculted!" << endl;
} }
@@ -241,16 +256,17 @@ void PhyRegAlloc::addInterferencesForArgs()
addInterference( *ArgIt, InSet, false ); // add interferences between addInterference( *ArgIt, InSet, false ); // add interferences between
// args and LVars at start // args and LVars at start
if( DEBUG_RA > 1) { if( DEBUG_RA > 1) {
cerr << " - %% adding interference for argument "; cout << " - %% adding interference for argument ";
printValue( (const Value *) *ArgIt); cerr << endl; printValue( (const Value *) *ArgIt); cout << endl;
} }
} }
} }
#if 0
//----------------------------------------------------------------------------
//----------------------------------------------------------------------------
// This method inserts caller saving/restoring instructons before/after
// a call machine instruction.
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
@@ -260,7 +276,7 @@ void PhyRegAlloc::insertCallerSavingCode(const MachineInstr *MInst,
assert( (TM.getInstrInfo()).isCall( MInst->getOpCode() ) ); assert( (TM.getInstrInfo()).isCall( MInst->getOpCode() ) );
int StackOff = 10; // ****TODO : Change int StackOff = 10; // ****TODO : Change
set<unsigned> PushedRegSet(); hash_set<unsigned> PushedRegSet;
// Now find the LR of the return value of the call // Now find the LR of the return value of the call
// The last *implicit operand* is the return value of a call // The last *implicit operand* is the return value of a call
@@ -275,7 +291,7 @@ void PhyRegAlloc::insertCallerSavingCode(const MachineInstr *MInst,
if( MInst->implicitRefIsDefined(NumOfImpRefs-1) ) { if( MInst->implicitRefIsDefined(NumOfImpRefs-1) ) {
const Value *RetVal = CallMI->getImplicitRef(NumOfImpRefs-1); const Value *RetVal = MInst->getImplicitRef(NumOfImpRefs-1);
LiveRange *RetValLR = LRI.getLiveRangeForValue( RetVal ); LiveRange *RetValLR = LRI.getLiveRangeForValue( RetVal );
assert( RetValLR && "No LR for RetValue of call"); assert( RetValLR && "No LR for RetValue of call");
@@ -287,7 +303,7 @@ void PhyRegAlloc::insertCallerSavingCode(const MachineInstr *MInst,
} }
LiveVarSet *LVSetAft = LVI->getLiveVarSetAfterMInst(MInst, BB); const LiveVarSet *LVSetAft = LVI->getLiveVarSetAfterMInst(MInst, BB);
LiveVarSet::const_iterator LIt = LVSetAft->begin(); LiveVarSet::const_iterator LIt = LVSetAft->begin();
@@ -313,20 +329,28 @@ void PhyRegAlloc::insertCallerSavingCode(const MachineInstr *MInst,
unsigned Reg = MRI.getUnifiedRegNum(RCID, Color); unsigned Reg = MRI.getUnifiedRegNum(RCID, Color);
if( PuhsedRegSet.find(Reg) == PhusedRegSet.end() ) { if( PushedRegSet.find(Reg) == PushedRegSet.end() ) {
// if we haven't already pushed that register // if we haven't already pushed that register
unsigned RegType = MRI.getRegType( LR );
// Now get two instructions - to push on stack and pop from stack
// and add them to InstrnsBefore and InstrnsAfter of the
// call instruction
MachineInstr *AdI = MachineInstr *AdIBef =
MRI.saveRegOnStackMI(Reg, MRI.getFPReg(), StackOff ); MRI.cpReg2MemMI(Reg, MRI.getFramePointer(), StackOff, RegType );
((AddedInstrMap[MInst])->InstrnsBefore).push_front(AdI); MachineInstr *AdIAft =
((AddedInstrMap[MInst])->InstrnsAfter).push_back(AdI); MRI.cpMem2RegMI(MRI.getFramePointer(), StackOff, Reg, RegType );
((AddedInstrMap[MInst])->InstrnsBefore).push_front(AdIBef);
((AddedInstrMap[MInst])->InstrnsAfter).push_back(AdIAft);
PushedRegSet.insert( Reg ); PushedRegSet.insert( Reg );
StackOff += 4; // ****TODO: Correct ?????? StackOff += 4; // ****TODO: Correct ??????
cerr << "Inserted caller saving instr"); cout << "\n $$$ Inserted caller saving instr";
} // if not already pushed } // if not already pushed
@@ -340,7 +364,6 @@ void PhyRegAlloc::insertCallerSavingCode(const MachineInstr *MInst,
} }
#endif
//---------------------------------------------------------------------------- //----------------------------------------------------------------------------
// This method is called after register allocation is complete to set the // This method is called after register allocation is complete to set the
@@ -364,13 +387,17 @@ void PhyRegAlloc::updateMachineCode()
MachineInstr *MInst = *MInstIterator; MachineInstr *MInst = *MInstIterator;
// if this machine instr is call, insert caller saving code
// If there are instructions before to be added, add them now if( (TM.getInstrInfo()).isCall( MInst->getOpCode()) )
// ***TODO: Add InstrnsAfter as well insertCallerSavingCode(MInst, *BBI );
// If there are instructions to be added, *before* this machine
// instruction, add them now.
if( AddedInstrMap[ MInst ] ) { if( AddedInstrMap[ MInst ] ) {
deque<MachineInstr *> &IBef = deque<MachineInstr *> &IBef = (AddedInstrMap[MInst])->InstrnsBefore;
(AddedInstrMap[MInst])->InstrnsBefore;
if( ! IBef.empty() ) { if( ! IBef.empty() ) {
@@ -378,9 +405,9 @@ void PhyRegAlloc::updateMachineCode()
for( AdIt = IBef.begin(); AdIt != IBef.end() ; ++AdIt ) { for( AdIt = IBef.begin(); AdIt != IBef.end() ; ++AdIt ) {
cerr << "*ADDED instr opcode: "; cout << " *$* PREPENDed instr opcode: ";
cerr << TargetInstrDescriptors[(*AdIt)->getOpCode()].opCodeString; cout << TargetInstrDescriptors[(*AdIt)->getOpCode()].opCodeString;
cerr << endl; cout << endl;
MInstIterator = MIVec.insert( MInstIterator, *AdIt ); MInstIterator = MIVec.insert( MInstIterator, *AdIt );
++MInstIterator; ++MInstIterator;
@@ -388,9 +415,6 @@ void PhyRegAlloc::updateMachineCode()
} }
// restart from the topmost instruction added
//MInst = *MInstIterator;
} }
@@ -409,7 +433,7 @@ void PhyRegAlloc::updateMachineCode()
// delete this condition checking later (must assert if Val is null) // delete this condition checking later (must assert if Val is null)
if( !Val) { if( !Val) {
if (DEBUG_RA) if (DEBUG_RA)
cerr << "Warning: NULL Value found for operand" << endl; cout << "Warning: NULL Value found for operand" << endl;
continue; continue;
} }
assert( Val && "Value is NULL"); assert( Val && "Value is NULL");
@@ -421,12 +445,13 @@ void PhyRegAlloc::updateMachineCode()
// nothing to worry if it's a const or a label // nothing to worry if it's a const or a label
if (DEBUG_RA) { if (DEBUG_RA) {
cerr << "*NO LR for inst opcode: "; cout << "*NO LR for inst opcode: ";
cerr << TargetInstrDescriptors[MInst->getOpCode()].opCodeString; cout << TargetInstrDescriptors[MInst->getOpCode()].opCodeString;
} }
// if register is not allocated, mark register as invalid
if( Op.getAllocatedRegNum() == -1) if( Op.getAllocatedRegNum() == -1)
Op.setRegForValue( 1000 ); // mark register as invalid Op.setRegForValue( MRI.getInvalidRegNum());
#if 0 #if 0
if( ((Val->getType())->isLabelType()) || if( ((Val->getType())->isLabelType()) ||
@@ -442,16 +467,16 @@ void PhyRegAlloc::updateMachineCode()
//TM.getInstrInfo().isReturn(MInst->getOpCode()) //TM.getInstrInfo().isReturn(MInst->getOpCode())
else if(TM.getInstrInfo().isReturn(MInst->getOpCode()) ) { else if(TM.getInstrInfo().isReturn(MInst->getOpCode()) ) {
if (DEBUG_RA) cerr << endl << "RETURN found" << endl; if (DEBUG_RA) cout << endl << "RETURN found" << endl;
Op.setRegForValue( MRI.getReturnAddressReg() ); Op.setRegForValue( MRI.getReturnAddressReg() );
} }
if (Val->getValueType() == Value::InstructionVal) if (Val->getValueType() == Value::InstructionVal)
{ {
cerr << "!Warning: No LiveRange for: "; cout << "!Warning: No LiveRange for: ";
printValue( Val); cerr << " Type: " << Val->getValueType(); printValue( Val); cout << " Type: " << Val->getValueType();
cerr << " RegVal=" << Op.getAllocatedRegNum() << endl; cout << " RegVal=" << Op.getAllocatedRegNum() << endl;
} }
#endif #endif
@@ -467,9 +492,42 @@ void PhyRegAlloc::updateMachineCode()
} }
} // for each operand
// If there are instructions to be added *after* this machine
// instruction, add them now
if( AddedInstrMap[ MInst ] ) {
deque<MachineInstr *> &IAft = (AddedInstrMap[MInst])->InstrnsAfter;
if( ! IAft.empty() ) {
deque<MachineInstr *>::iterator AdIt;
++MInstIterator; // advance to the next instruction
for( AdIt = IAft.begin(); AdIt != IAft.end() ; ++AdIt ) {
cout << " *#* APPENDed instr opcode: ";
cout << TargetInstrDescriptors[(*AdIt)->getOpCode()].opCodeString;
cout << endl;
MInstIterator = MIVec.insert( MInstIterator, *AdIt );
++MInstIterator;
}
// MInsterator already points to the next instr. Since the
// for loop also increments it, decrement it to point to the
// instruction added last
--MInstIterator;
}
} }
} } // for each machine instruction
} }
} }
@@ -483,14 +541,14 @@ void PhyRegAlloc::updateMachineCode()
void PhyRegAlloc::printMachineCode() void PhyRegAlloc::printMachineCode()
{ {
cerr << endl << ";************** Method "; cout << endl << ";************** Method ";
cerr << Meth->getName() << " *****************" << endl; cout << Meth->getName() << " *****************" << endl;
Method::const_iterator BBI = Meth->begin(); // random iterator for BBs Method::const_iterator BBI = Meth->begin(); // random iterator for BBs
for( ; BBI != Meth->end(); ++BBI) { // traverse BBs in random order for( ; BBI != Meth->end(); ++BBI) { // traverse BBs in random order
cerr << endl ; printLabel( *BBI); cerr << ": "; cout << endl ; printLabel( *BBI); cout << ": ";
// get the iterator for machine instructions // get the iterator for machine instructions
MachineCodeForBasicBlock& MIVec = (*BBI)->getMachineInstrVec(); MachineCodeForBasicBlock& MIVec = (*BBI)->getMachineInstrVec();
@@ -502,8 +560,8 @@ void PhyRegAlloc::printMachineCode()
MachineInstr *const MInst = *MInstIterator; MachineInstr *const MInst = *MInstIterator;
cerr << endl << "\t"; cout << endl << "\t";
cerr << TargetInstrDescriptors[MInst->getOpCode()].opCodeString; cout << TargetInstrDescriptors[MInst->getOpCode()].opCodeString;
//for(MachineInstr::val_op_const_iterator OpI(MInst);!OpI.done();++OpI) { //for(MachineInstr::val_op_const_iterator OpI(MInst);!OpI.done();++OpI) {
@@ -519,14 +577,14 @@ void PhyRegAlloc::printMachineCode()
const Value *const Val = Op.getVRegValue () ; const Value *const Val = Op.getVRegValue () ;
// ****this code is temporary till NULL Values are fixed // ****this code is temporary till NULL Values are fixed
if( ! Val ) { if( ! Val ) {
cerr << "\t<*NULL*>"; cout << "\t<*NULL*>";
continue; continue;
} }
// if a label or a constant // if a label or a constant
if( (Val->getValueType() == Value::BasicBlockVal) ) { if( (Val->getValueType() == Value::BasicBlockVal) ) {
cerr << "\t"; printLabel( Op.getVRegValue () ); cout << "\t"; printLabel( Op.getVRegValue () );
} }
else { else {
// else it must be a register value // else it must be a register value
@@ -534,27 +592,42 @@ void PhyRegAlloc::printMachineCode()
//if( RegNum != 1000) //if( RegNum != 1000)
cerr << "\t" << "%" << MRI.getUnifiedRegName( RegNum ); cout << "\t" << "%" << MRI.getUnifiedRegName( RegNum );
// else cerr << "\t<*NoReg*>"; // else cout << "\t<*NoReg*>";
} }
} }
else if(Op.getOperandType() == MachineOperand::MO_MachineRegister) { else if(Op.getOperandType() == MachineOperand::MO_MachineRegister) {
cerr << "\t" << "%" << MRI.getUnifiedRegName(Op.getMachineRegNum()); cout << "\t" << "%" << MRI.getUnifiedRegName(Op.getMachineRegNum());
} }
else else
cerr << "\t" << Op; // use dump field cout << "\t" << Op; // use dump field
} }
}
cerr << endl; unsigned NumOfImpRefs = MInst->getNumImplicitRefs();
if( NumOfImpRefs > 0 ) {
cout << "\tImplicit:";
} for(unsigned z=0; z < NumOfImpRefs; z++) {
printValue( MInst->getImplicitRef(z) );
cout << "\t";
}
}
cerr << endl; } // for all machine instructions
cout << endl;
} // for all BBs
cout << endl;
} }
@@ -617,9 +690,9 @@ void PhyRegAlloc::colorIncomingArgs()
void PhyRegAlloc::printLabel(const Value *const Val) void PhyRegAlloc::printLabel(const Value *const Val)
{ {
if( Val->hasName() ) if( Val->hasName() )
cerr << Val->getName(); cout << Val->getName();
else else
cerr << "Label" << Val; cout << "Label" << Val;
} }

View File

@@ -81,6 +81,9 @@ class PhyRegAlloc
void addInterferencesForArgs(); void addInterferencesForArgs();
void createIGNodeListsAndIGs(); void createIGNodeListsAndIGs();
void buildInterferenceGraphs(); void buildInterferenceGraphs();
void insertCallerSavingCode(const MachineInstr *MInst,
const BasicBlock *BB );
inline void constructLiveRanges() inline void constructLiveRanges()
{ LRI.constructLiveRanges(); } { LRI.constructLiveRanges(); }

View File

@@ -9,7 +9,7 @@ RegClass::RegClass(const Method *const M,
IG(this), IGNodeStack(), ReservedColorList(RCL) IG(this), IGNodeStack(), ReservedColorList(RCL)
{ {
if( DEBUG_RA) if( DEBUG_RA)
cerr << "Created Reg Class: " << RegClassID << endl; cout << "Created Reg Class: " << RegClassID << endl;
// This constructor inits IG. The actual matrix is created by a call to // This constructor inits IG. The actual matrix is created by a call to
// createInterferenceGraph() above. // createInterferenceGraph() above.
@@ -21,7 +21,7 @@ RegClass::RegClass(const Method *const M,
void RegClass::colorAllRegs() void RegClass::colorAllRegs()
{ {
if(DEBUG_RA) cerr << "Coloring IGs ..." << endl; if(DEBUG_RA) cout << "Coloring IGs ..." << endl;
//preColorIGNodes(); // pre-color IGNodes //preColorIGNodes(); // pre-color IGNodes
pushAllIGNodes(); // push all IG Nodes pushAllIGNodes(); // push all IG Nodes
@@ -55,9 +55,9 @@ void RegClass::pushAllIGNodes()
bool PushedAll = pushUnconstrainedIGNodes(); bool PushedAll = pushUnconstrainedIGNodes();
if( DEBUG_RA) { if( DEBUG_RA) {
cerr << " Puhsed all-unconstrained IGNodes. "; cout << " Puhsed all-unconstrained IGNodes. ";
if( PushedAll ) cerr << " No constrained nodes left."; if( PushedAll ) cout << " No constrained nodes left.";
cerr << endl; cout << endl;
} }
if( PushedAll ) // if NO constrained nodes left if( PushedAll ) // if NO constrained nodes left
@@ -112,8 +112,8 @@ bool RegClass::pushUnconstrainedIGNodes()
IGNode->pushOnStack(); // set OnStack and dec deg of neighs IGNode->pushOnStack(); // set OnStack and dec deg of neighs
if (DEBUG_RA > 1) { if (DEBUG_RA > 1) {
cerr << " pushed un-constrained IGNode " << IGNode->getIndex() ; cout << " pushed un-constrained IGNode " << IGNode->getIndex() ;
cerr << " on to stack" << endl; cout << " on to stack" << endl;
} }
} }
else pushedall = false; // we didn't push all live ranges else pushedall = false; // we didn't push all live ranges
@@ -170,16 +170,16 @@ void RegClass::colorIGNode(IGNode *const Node)
} }
else { else {
if( DEBUG_RA ) { if( DEBUG_RA ) {
cerr << " Node " << Node->getIndex(); cout << " Node " << Node->getIndex();
cerr << " already colored with color " << Node->getColor() << endl; cout << " already colored with color " << Node->getColor() << endl;
} }
} }
if( !Node->hasColor() ) { if( !Node->hasColor() ) {
if( DEBUG_RA ) { if( DEBUG_RA ) {
cerr << " Node " << Node->getIndex(); cout << " Node " << Node->getIndex();
cerr << " - could not find a color (needs spilling)" << endl; cout << " - could not find a color (needs spilling)" << endl;
} }
} }

View File

@@ -148,7 +148,7 @@ class UltraSparcRegInfo : public MachineRegInfo
// %o0 to %o5 (cannot be changed) // %o0 to %o5 (cannot be changed)
unsigned const NumOfIntArgRegs; unsigned const NumOfIntArgRegs;
unsigned const NumOfFloatArgRegs; unsigned const NumOfFloatArgRegs;
unsigned const InvalidRegNum; int const InvalidRegNum;
//void setCallArgColor(LiveRange *const LR, const unsigned RegNo) const; //void setCallArgColor(LiveRange *const LR, const unsigned RegNo) const;
@@ -221,9 +221,7 @@ class UltraSparcRegInfo : public MachineRegInfo
// ***TODO: See this method is necessary
MachineInstr * cpReg2RegMI(const unsigned SrcReg, const unsigned DestReg,
const int RegType) const;
MachineInstr * cpValue2RegMI(Value * Val, const unsigned DestReg, MachineInstr * cpValue2RegMI(Value * Val, const unsigned DestReg,
const int RegType) const; const int RegType) const;
@@ -329,8 +327,8 @@ class UltraSparcRegInfo : public MachineRegInfo
return reg + 32 + 64; // 32 int, 64 float return reg + 32 + 64; // 32 int, 64 float
else if( RegClassID == IntCCRegClassID ) else if( RegClassID == IntCCRegClassID )
return 4+ 32 + 64; // only int cc reg return 4+ 32 + 64; // only int cc reg
else if (reg==1000) //****** TODO: Remove else if (reg==InvalidRegNum)
return 1000; return InvalidRegNum;
else else
assert(0 && "Invalid register class or reg number"); assert(0 && "Invalid register class or reg number");
@@ -347,13 +345,39 @@ class UltraSparcRegInfo : public MachineRegInfo
else if ( reg == 64+32+4) else if ( reg == 64+32+4)
return "xcc"; // only integer cc reg return "xcc"; // only integer cc reg
else if (reg==1000) //****** TODO: Remove else if (reg== InvalidRegNum) //****** TODO: Remove
return "<*NoReg*>"; return "<*NoReg*>";
else else
assert(0 && "Invalid register number"); assert(0 && "Invalid register number");
} }
MachineInstr * cpReg2RegMI(const unsigned SrcReg, const unsigned DestReg,
const int RegType) const;
MachineInstr * cpReg2MemMI(const unsigned SrcReg, const unsigned DestPtrReg,
const int Offset, const int RegType) const;
MachineInstr * cpMem2RegMI(const unsigned SrcPtrReg, const int Offset,
const unsigned DestReg, const int RegType) const;
inline bool isRegVolatile(const int RegClassID, const int Reg) const {
return (MachineRegClassArr[RegClassID])->isRegVolatile(Reg);
}
inline unsigned getFramePointer() const {
return SparcIntRegOrder::i6;
}
inline unsigned getStackPointer() const {
return SparcIntRegOrder::o6;
}
inline int getInvalidRegNum() const {
return InvalidRegNum;
}
}; };
@@ -495,7 +519,7 @@ const InstrClassRUsage NoneClassRUsage = {
/*numEntries*/ 0, /*numEntries*/ 0,
/* V[] */ { /* V[] */ {
/*Cycle G */ /*Cycle G */
/*Cycle E */ /*Ccle E */
/*Cycle C */ /*Cycle C */
/*Cycle N1*/ /*Cycle N1*/
/*Cycle N1*/ /*Cycle N1*/

View File

@@ -58,6 +58,8 @@ class SparcIntRegOrder{
g0, g1, g2, g3, g4, g5, g6, g7, i6, i7, o6 g0, g1, g2, g3, g4, g5, g6, g7, i6, i7, o6
//*** NOTE: If we decide to use globals, some of them are volatile
//**** see sparc64ABI (change isRegVloatile method below)
}; };
@@ -91,6 +93,10 @@ class SparcIntRegClass : public MachineRegClassInfo
void colorIGNode(IGNode * Node, bool IsColorUsedArr[] ) const; void colorIGNode(IGNode * Node, bool IsColorUsedArr[] ) const;
inline bool isRegVolatile(const int Reg) const {
return (Reg < (int) SparcIntRegOrder::StartOfNonVolatileRegs);
}
}; };
//----------------------------------------------------------------------------- //-----------------------------------------------------------------------------
@@ -163,6 +169,10 @@ class SparcFloatRegClass : public MachineRegClassInfo
void colorIGNode(IGNode * Node, bool IsColorUsedArr[] ) const; void colorIGNode(IGNode * Node, bool IsColorUsedArr[] ) const;
// according to Sparc 64 ABI, all %fp regs are volatile
inline bool isRegVolatile(const int Reg) const { return true; }
}; };
@@ -185,6 +195,9 @@ public:
Node->setColor(0); // only one int cc reg is available Node->setColor(0); // only one int cc reg is available
} }
// *** TODO: Check this
inline bool isRegVolatile(const int Reg) const { return true; }
}; };
@@ -215,6 +228,10 @@ class SparcFloatCCRegOrder{
return FloatCCRegNames[reg]; return FloatCCRegNames[reg];
} }
// according to Sparc 64 ABI, all %fp regs are volatile
inline bool isRegVolatile(const int Reg) const { return true; }
}; };
@@ -233,6 +250,10 @@ public:
Node->setColor(c); Node->setColor(c);
} }
// *** TODO: Check this
inline bool isRegVolatile(const int Reg) const { return true; }
}; };

View File

@@ -29,7 +29,7 @@ void UltraSparcRegInfo::suggestReg4RetAddr(const MachineInstr * RetMI,
// TODO (Optimize): // TODO (Optimize):
//Instead of setting the color, we can suggest one. In that case, // Instead of setting the color, we can suggest one. In that case,
// we have to test later whether it received the suggested color. // we have to test later whether it received the suggested color.
// In that case, a LR has to be created at the start of method. // In that case, a LR has to be created at the start of method.
// It has to be done as follows (remove the setRegVal above): // It has to be done as follows (remove the setRegVal above):
@@ -393,7 +393,7 @@ void UltraSparcRegInfo::colorCallArgs(const MachineInstr *const CallMI,
UniRetReg = getUnifiedRegNum( RegClassID, SparcFloatRegOrder::f0); UniRetReg = getUnifiedRegNum( RegClassID, SparcFloatRegOrder::f0);
AdMI = cpReg2RegMI(UniRetLRReg, UniRetReg, RegType ); AdMI = cpReg2RegMI(UniRetReg, UniRetLRReg, RegType );
CallAI->InstrnsAfter.push_back( AdMI ); CallAI->InstrnsAfter.push_back( AdMI );
@@ -613,7 +613,7 @@ MachineInstr * UltraSparcRegInfo::cpReg2RegMI(const unsigned SrcReg,
const unsigned DestReg, const unsigned DestReg,
const int RegType) const { const int RegType) const {
assert( (SrcReg != InvalidRegNum) && (DestReg != InvalidRegNum) && assert( ((int)SrcReg != InvalidRegNum) && ((int)DestReg != InvalidRegNum) &&
"Invalid Register"); "Invalid Register");
MachineInstr * MI = NULL; MachineInstr * MI = NULL;
@@ -647,6 +647,107 @@ MachineInstr * UltraSparcRegInfo::cpReg2RegMI(const unsigned SrcReg,
} }
//---------------------------------------------------------------------------
// Copy from a register to memory. Register number must be the unified
// register number
//---------------------------------------------------------------------------
MachineInstr * UltraSparcRegInfo::cpReg2MemMI(const unsigned SrcReg,
const unsigned DestPtrReg,
const int Offset,
const int RegType) const {
MachineInstr * MI = NULL;
switch( RegType ) {
case IntRegType:
MI = new MachineInstr(STX, 3);
MI->SetMachineOperand(0, DestPtrReg, false);
MI->SetMachineOperand(1, SrcReg, false);
MI->SetMachineOperand(2, MachineOperand:: MO_SignExtendedImmed,
(int64_t) Offset, false);
break;
case FPSingleRegType:
MI = new MachineInstr(ST, 3);
MI->SetMachineOperand(0, DestPtrReg, false);
MI->SetMachineOperand(1, SrcReg, false);
MI->SetMachineOperand(2, MachineOperand:: MO_SignExtendedImmed,
(int64_t) Offset, false);
break;
case FPDoubleRegType:
MI = new MachineInstr(STD, 3);
MI->SetMachineOperand(0, DestPtrReg, false);
MI->SetMachineOperand(1, SrcReg, false);
MI->SetMachineOperand(2, MachineOperand:: MO_SignExtendedImmed,
(int64_t) Offset, false);
break;
default:
assert(0 && "Unknow RegType");
}
return MI;
}
//---------------------------------------------------------------------------
// Copy from memory to a reg. Register number must be the unified
// register number
//---------------------------------------------------------------------------
MachineInstr * UltraSparcRegInfo::cpMem2RegMI(const unsigned SrcPtrReg,
const int Offset,
const unsigned DestReg,
const int RegType) const {
MachineInstr * MI = NULL;
switch( RegType ) {
case IntRegType:
MI = new MachineInstr(LDX, 3);
MI->SetMachineOperand(0, SrcPtrReg, false);
MI->SetMachineOperand(1, MachineOperand:: MO_SignExtendedImmed,
(int64_t) Offset, false);
MI->SetMachineOperand(2, DestReg, false);
break;
case FPSingleRegType:
MI = new MachineInstr(LD, 3);
MI->SetMachineOperand(0, SrcPtrReg, false);
MI->SetMachineOperand(1, MachineOperand:: MO_SignExtendedImmed,
(int64_t) Offset, false);
MI->SetMachineOperand(2, DestReg, false);
break;
case FPDoubleRegType:
MI = new MachineInstr(LDD, 3);
MI->SetMachineOperand(0, SrcPtrReg, false);
MI->SetMachineOperand(1, MachineOperand:: MO_SignExtendedImmed,
(int64_t) Offset, false);
MI->SetMachineOperand(2, DestReg, false);
break;
default:
assert(0 && "Unknow RegType");
}
return MI;
}
//--------------------------------------------------------------------------- //---------------------------------------------------------------------------
@@ -659,7 +760,7 @@ MachineInstr * UltraSparcRegInfo::cpValue2RegMI(Value * Val,
const unsigned DestReg, const unsigned DestReg,
const int RegType) const { const int RegType) const {
assert( (DestReg != InvalidRegNum) && "Invalid Register"); assert( ((int)DestReg != InvalidRegNum) && "Invalid Register");
/* /*
unsigned MReg; unsigned MReg;