2002-08-09 20:08:03 +00:00
|
|
|
//===-- PhyRegAlloc.cpp ---------------------------------------------------===//
|
2001-11-08 04:48:50 +00:00
|
|
|
//
|
2002-08-09 20:08:03 +00:00
|
|
|
// Register allocation for LLVM.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2001-11-08 04:48:50 +00:00
|
|
|
|
2002-02-04 00:33:08 +00:00
|
|
|
#include "llvm/CodeGen/RegisterAllocation.h"
|
2003-01-15 19:57:07 +00:00
|
|
|
#include "RegAllocCommon.h"
|
2003-01-15 21:14:01 +00:00
|
|
|
#include "RegClass.h"
|
2002-10-29 16:51:05 +00:00
|
|
|
#include "llvm/CodeGen/IGNode.h"
|
2001-09-14 21:18:34 +00:00
|
|
|
#include "llvm/CodeGen/PhyRegAlloc.h"
|
2003-01-15 18:08:07 +00:00
|
|
|
#include "llvm/CodeGen/MachineInstrBuilder.h"
|
2002-05-19 15:29:31 +00:00
|
|
|
#include "llvm/CodeGen/MachineInstrAnnot.h"
|
2002-10-28 00:28:31 +00:00
|
|
|
#include "llvm/CodeGen/MachineFunction.h"
|
2002-12-28 20:35:34 +00:00
|
|
|
#include "llvm/CodeGen/MachineFunctionInfo.h"
|
2003-01-14 23:05:08 +00:00
|
|
|
#include "llvm/CodeGen/FunctionLiveVarInfo.h"
|
2003-07-29 19:49:21 +00:00
|
|
|
#include "llvm/CodeGen/InstrSelection.h"
|
2002-02-04 17:48:00 +00:00
|
|
|
#include "llvm/Analysis/LoopInfo.h"
|
2001-11-08 04:48:50 +00:00
|
|
|
#include "llvm/Target/TargetMachine.h"
|
2002-12-28 21:00:25 +00:00
|
|
|
#include "llvm/Target/TargetFrameInfo.h"
|
2003-01-14 22:00:31 +00:00
|
|
|
#include "llvm/Target/TargetInstrInfo.h"
|
2003-07-25 21:06:09 +00:00
|
|
|
#include "llvm/Target/TargetRegInfo.h"
|
2002-04-07 20:49:59 +00:00
|
|
|
#include "llvm/Function.h"
|
2002-02-05 03:52:29 +00:00
|
|
|
#include "llvm/Type.h"
|
2002-05-19 15:29:31 +00:00
|
|
|
#include "llvm/iOther.h"
|
2002-07-08 23:15:32 +00:00
|
|
|
#include "Support/STLExtras.h"
|
2002-09-15 07:07:55 +00:00
|
|
|
#include "Support/CommandLine.h"
|
2002-01-07 19:19:18 +00:00
|
|
|
#include <math.h>
|
2002-01-20 22:54:45 +00:00
|
|
|
using std::cerr;
|
2002-06-25 20:55:50 +00:00
|
|
|
using std::vector;
|
2001-11-08 04:48:50 +00:00
|
|
|
|
2002-05-22 17:08:27 +00:00
|
|
|
RegAllocDebugLevel_t DEBUG_RA;
|
2002-09-14 23:05:33 +00:00
|
|
|
|
2002-07-22 02:10:13 +00:00
|
|
|
static cl::opt<RegAllocDebugLevel_t, true>
|
|
|
|
DRA_opt("dregalloc", cl::Hidden, cl::location(DEBUG_RA),
|
|
|
|
cl::desc("enable register allocation debugging information"),
|
|
|
|
cl::values(
|
2002-09-14 23:05:33 +00:00
|
|
|
clEnumValN(RA_DEBUG_None , "n", "disable debug output"),
|
|
|
|
clEnumValN(RA_DEBUG_Results, "y", "debug output for allocation results"),
|
|
|
|
clEnumValN(RA_DEBUG_Coloring, "c", "debug output for graph coloring step"),
|
|
|
|
clEnumValN(RA_DEBUG_Interference,"ig","debug output for interference graphs"),
|
|
|
|
clEnumValN(RA_DEBUG_LiveRanges , "lr","debug output for live ranges"),
|
|
|
|
clEnumValN(RA_DEBUG_Verbose, "v", "extra debug output"),
|
2002-07-22 02:10:13 +00:00
|
|
|
0));
|
2001-09-15 21:11:11 +00:00
|
|
|
|
2002-02-04 15:54:09 +00:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
// RegisterAllocation pass front end...
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
namespace {
|
2002-04-27 06:56:12 +00:00
|
|
|
class RegisterAllocator : public FunctionPass {
|
2002-02-04 15:54:09 +00:00
|
|
|
TargetMachine &Target;
|
|
|
|
public:
|
|
|
|
inline RegisterAllocator(TargetMachine &T) : Target(T) {}
|
2002-04-29 14:57:45 +00:00
|
|
|
|
|
|
|
const char *getPassName() const { return "Register Allocation"; }
|
2002-02-04 00:33:08 +00:00
|
|
|
|
2002-06-25 16:13:24 +00:00
|
|
|
bool runOnFunction(Function &F) {
|
2002-02-04 15:54:09 +00:00
|
|
|
if (DEBUG_RA)
|
2002-06-25 16:13:24 +00:00
|
|
|
cerr << "\n********* Function "<< F.getName() << " ***********\n";
|
2002-02-04 15:54:09 +00:00
|
|
|
|
2002-06-25 16:13:24 +00:00
|
|
|
PhyRegAlloc PRA(&F, Target, &getAnalysis<FunctionLiveVarInfo>(),
|
2002-04-28 16:21:30 +00:00
|
|
|
&getAnalysis<LoopInfo>());
|
2002-02-04 15:54:09 +00:00
|
|
|
PRA.allocateRegisters();
|
|
|
|
|
|
|
|
if (DEBUG_RA) cerr << "\nRegister allocation complete!\n";
|
|
|
|
return false;
|
|
|
|
}
|
2002-02-04 17:39:42 +00:00
|
|
|
|
2002-04-27 06:56:12 +00:00
|
|
|
virtual void getAnalysisUsage(AnalysisUsage &AU) const {
|
2002-08-08 19:01:28 +00:00
|
|
|
AU.addRequired<LoopInfo>();
|
|
|
|
AU.addRequired<FunctionLiveVarInfo>();
|
2002-02-04 17:39:42 +00:00
|
|
|
}
|
2002-02-04 15:54:09 +00:00
|
|
|
};
|
2002-02-04 00:33:08 +00:00
|
|
|
}
|
|
|
|
|
2002-04-27 06:56:12 +00:00
|
|
|
Pass *getRegisterAllocator(TargetMachine &T) {
|
2002-02-04 15:54:09 +00:00
|
|
|
return new RegisterAllocator(T);
|
|
|
|
}
|
2002-02-04 00:33:08 +00:00
|
|
|
|
2001-09-15 21:11:11 +00:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
// Constructor: Init local composite objects and create register classes.
|
|
|
|
//----------------------------------------------------------------------------
|
2002-04-28 16:21:30 +00:00
|
|
|
PhyRegAlloc::PhyRegAlloc(Function *F, const TargetMachine& tm,
|
|
|
|
FunctionLiveVarInfo *Lvi, LoopInfo *LDC)
|
2002-10-28 19:22:04 +00:00
|
|
|
: TM(tm), Fn(F), MF(MachineFunction::get(F)), LVI(Lvi),
|
|
|
|
LRI(F, tm, RegClassList), MRI(tm.getRegInfo()),
|
|
|
|
NumOfRegClasses(MRI.getNumOfRegClasses()), LoopDepthCalc(LDC) {
|
2001-09-14 21:18:34 +00:00
|
|
|
|
|
|
|
// create each RegisterClass and put in RegClassList
|
2002-01-07 19:19:18 +00:00
|
|
|
//
|
2002-10-28 19:22:04 +00:00
|
|
|
for (unsigned rc=0; rc != NumOfRegClasses; rc++)
|
2003-07-25 21:06:09 +00:00
|
|
|
RegClassList.push_back(new RegClass(F, &tm.getRegInfo(),
|
|
|
|
MRI.getMachineRegClass(rc)));
|
2001-09-14 21:18:34 +00:00
|
|
|
}
|
|
|
|
|
2002-01-07 19:19:18 +00:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
// Destructor: Deletes register classes
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
PhyRegAlloc::~PhyRegAlloc() {
|
2002-06-25 16:13:24 +00:00
|
|
|
for ( unsigned rc=0; rc < NumOfRegClasses; rc++)
|
2002-02-03 07:46:34 +00:00
|
|
|
delete RegClassList[rc];
|
2002-04-09 05:13:04 +00:00
|
|
|
|
|
|
|
AddedInstrMap.clear();
|
2002-01-07 19:19:18 +00:00
|
|
|
}
|
|
|
|
|
2001-09-15 21:11:11 +00:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
// This method initally creates interference graphs (one in each reg class)
|
|
|
|
// and IGNodeList (one in each IG). The actual nodes will be pushed later.
|
|
|
|
//----------------------------------------------------------------------------
|
2002-02-03 07:46:34 +00:00
|
|
|
void PhyRegAlloc::createIGNodeListsAndIGs() {
|
2002-09-14 23:05:33 +00:00
|
|
|
if (DEBUG_RA >= RA_DEBUG_LiveRanges) cerr << "Creating LR lists ...\n";
|
2001-09-14 21:18:34 +00:00
|
|
|
|
|
|
|
// hash map iterator
|
2002-02-03 07:46:34 +00:00
|
|
|
LiveRangeMapType::const_iterator HMI = LRI.getLiveRangeMap()->begin();
|
2001-09-14 21:18:34 +00:00
|
|
|
|
|
|
|
// hash map end
|
2002-02-03 07:46:34 +00:00
|
|
|
LiveRangeMapType::const_iterator HMIEnd = LRI.getLiveRangeMap()->end();
|
|
|
|
|
|
|
|
for (; HMI != HMIEnd ; ++HMI ) {
|
|
|
|
if (HMI->first) {
|
|
|
|
LiveRange *L = HMI->second; // get the LiveRange
|
|
|
|
if (!L) {
|
2002-09-14 23:05:33 +00:00
|
|
|
if (DEBUG_RA)
|
|
|
|
cerr << "\n**** ?!?WARNING: NULL LIVE RANGE FOUND FOR: "
|
|
|
|
<< RAV(HMI->first) << "****\n";
|
2002-02-03 07:46:34 +00:00
|
|
|
continue;
|
|
|
|
}
|
2002-09-14 23:05:33 +00:00
|
|
|
|
|
|
|
// if the Value * is not null, and LR is not yet written to the IGNodeList
|
2002-06-25 16:13:24 +00:00
|
|
|
if (!(L->getUserIGNode()) ) {
|
2002-02-03 07:46:34 +00:00
|
|
|
RegClass *const RC = // RegClass of first value in the LR
|
|
|
|
RegClassList[ L->getRegClass()->getID() ];
|
|
|
|
RC->addLRToIG(L); // add this LR to an IG
|
|
|
|
}
|
2001-09-14 21:18:34 +00:00
|
|
|
}
|
|
|
|
}
|
2002-02-03 07:46:34 +00:00
|
|
|
|
|
|
|
// init RegClassList
|
2002-06-25 16:13:24 +00:00
|
|
|
for ( unsigned rc=0; rc < NumOfRegClasses ; rc++)
|
2002-02-03 07:46:34 +00:00
|
|
|
RegClassList[rc]->createInterferenceGraph();
|
2001-09-14 21:18:34 +00:00
|
|
|
|
2002-09-14 23:05:33 +00:00
|
|
|
if (DEBUG_RA >= RA_DEBUG_LiveRanges) cerr << "LRLists Created!\n";
|
2001-09-14 21:18:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-09-15 21:11:11 +00:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
// This method will add all interferences at for a given instruction.
|
2001-09-14 21:18:34 +00:00
|
|
|
// Interence occurs only if the LR of Def (Inst or Arg) is of the same reg
|
|
|
|
// class as that of live var. The live var passed to this function is the
|
|
|
|
// LVset AFTER the instruction
|
2001-09-15 21:11:11 +00:00
|
|
|
//----------------------------------------------------------------------------
|
2002-09-14 23:05:33 +00:00
|
|
|
|
2002-02-05 02:52:05 +00:00
|
|
|
void PhyRegAlloc::addInterference(const Value *Def,
|
|
|
|
const ValueSet *LVSet,
|
|
|
|
bool isCallInst) {
|
2001-09-14 21:18:34 +00:00
|
|
|
|
2002-02-05 02:52:05 +00:00
|
|
|
ValueSet::const_iterator LIt = LVSet->begin();
|
2001-09-14 21:18:34 +00:00
|
|
|
|
|
|
|
// get the live range of instruction
|
2002-01-07 19:19:18 +00:00
|
|
|
//
|
2001-09-14 21:18:34 +00:00
|
|
|
const LiveRange *const LROfDef = LRI.getLiveRangeForValue( Def );
|
|
|
|
|
|
|
|
IGNode *const IGNodeOfDef = LROfDef->getUserIGNode();
|
|
|
|
assert( IGNodeOfDef );
|
|
|
|
|
|
|
|
RegClass *const RCOfDef = LROfDef->getRegClass();
|
|
|
|
|
|
|
|
// for each live var in live variable set
|
2002-01-07 19:19:18 +00:00
|
|
|
//
|
2002-06-25 16:13:24 +00:00
|
|
|
for ( ; LIt != LVSet->end(); ++LIt) {
|
2001-09-14 21:18:34 +00:00
|
|
|
|
2002-07-08 23:15:32 +00:00
|
|
|
if (DEBUG_RA >= RA_DEBUG_Verbose)
|
2002-02-05 01:43:49 +00:00
|
|
|
cerr << "< Def=" << RAV(Def) << ", Lvar=" << RAV(*LIt) << "> ";
|
2001-09-14 21:18:34 +00:00
|
|
|
|
|
|
|
// get the live range corresponding to live var
|
2002-09-14 23:05:33 +00:00
|
|
|
//
|
2002-02-05 01:43:49 +00:00
|
|
|
LiveRange *LROfVar = LRI.getLiveRangeForValue(*LIt);
|
2001-09-14 21:18:34 +00:00
|
|
|
|
|
|
|
// LROfVar can be null if it is a const since a const
|
|
|
|
// doesn't have a dominating def - see Assumptions above
|
2002-01-07 19:19:18 +00:00
|
|
|
//
|
2002-09-14 23:05:33 +00:00
|
|
|
if (LROfVar)
|
|
|
|
if (LROfDef != LROfVar) // do not set interf for same LR
|
|
|
|
if (RCOfDef == LROfVar->getRegClass()) // 2 reg classes are the same
|
|
|
|
RCOfDef->setInterference( LROfDef, LROfVar);
|
2001-10-19 17:21:03 +00:00
|
|
|
}
|
2001-09-14 21:18:34 +00:00
|
|
|
}
|
|
|
|
|
2001-10-19 17:21:03 +00:00
|
|
|
|
2002-01-07 19:19:18 +00:00
|
|
|
|
2001-10-19 17:21:03 +00:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
// For a call instruction, this method sets the CallInterference flag in
|
|
|
|
// the LR of each variable live int the Live Variable Set live after the
|
|
|
|
// call instruction (except the return value of the call instruction - since
|
|
|
|
// the return value does not interfere with that call itself).
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void PhyRegAlloc::setCallInterferences(const MachineInstr *MInst,
|
2002-02-05 02:52:05 +00:00
|
|
|
const ValueSet *LVSetAft) {
|
2001-10-19 17:21:03 +00:00
|
|
|
|
2002-09-14 23:05:33 +00:00
|
|
|
if (DEBUG_RA >= RA_DEBUG_Interference)
|
2002-01-20 22:54:45 +00:00
|
|
|
cerr << "\n For call inst: " << *MInst;
|
2001-10-19 17:21:03 +00:00
|
|
|
|
|
|
|
// for each live var in live variable set after machine inst
|
2002-01-07 19:19:18 +00:00
|
|
|
//
|
2003-07-02 01:24:00 +00:00
|
|
|
for (ValueSet::const_iterator LIt = LVSetAft->begin(), LEnd = LVSetAft->end();
|
|
|
|
LIt != LEnd; ++LIt) {
|
2001-10-19 17:21:03 +00:00
|
|
|
|
2002-01-07 19:19:18 +00:00
|
|
|
// get the live range corresponding to live var
|
|
|
|
//
|
2001-10-19 17:21:03 +00:00
|
|
|
LiveRange *const LR = LRI.getLiveRangeForValue(*LIt );
|
|
|
|
|
|
|
|
// LR can be null if it is a const since a const
|
|
|
|
// doesn't have a dominating def - see Assumptions above
|
2002-01-07 19:19:18 +00:00
|
|
|
//
|
2002-09-14 23:05:33 +00:00
|
|
|
if (LR ) {
|
|
|
|
if (DEBUG_RA >= RA_DEBUG_Interference) {
|
|
|
|
cerr << "\n\tLR after Call: ";
|
|
|
|
printSet(*LR);
|
|
|
|
}
|
2001-10-19 17:21:03 +00:00
|
|
|
LR->setCallInterference();
|
2002-09-14 23:05:33 +00:00
|
|
|
if (DEBUG_RA >= RA_DEBUG_Interference) {
|
|
|
|
cerr << "\n ++After adding call interference for LR: " ;
|
2002-02-05 02:52:05 +00:00
|
|
|
printSet(*LR);
|
2001-10-19 17:21:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2002-03-31 18:54:37 +00:00
|
|
|
// Now find the LR of the return value of the call
|
|
|
|
// We do this because, we look at the LV set *after* the instruction
|
|
|
|
// to determine, which LRs must be saved across calls. The return value
|
|
|
|
// of the call is live in this set - but it does not interfere with call
|
|
|
|
// (i.e., we can allocate a volatile register to the return value)
|
|
|
|
//
|
2002-05-19 15:29:31 +00:00
|
|
|
CallArgsDescriptor* argDesc = CallArgsDescriptor::get(MInst);
|
|
|
|
|
|
|
|
if (const Value *RetVal = argDesc->getReturnValue()) {
|
2002-03-31 18:54:37 +00:00
|
|
|
LiveRange *RetValLR = LRI.getLiveRangeForValue( RetVal );
|
|
|
|
assert( RetValLR && "No LR for RetValue of call");
|
|
|
|
RetValLR->clearCallInterference();
|
|
|
|
}
|
|
|
|
|
|
|
|
// If the CALL is an indirect call, find the LR of the function pointer.
|
|
|
|
// That has a call interference because it conflicts with outgoing args.
|
2002-06-25 16:13:24 +00:00
|
|
|
if (const Value *AddrVal = argDesc->getIndirectFuncPtr()) {
|
2002-03-31 18:54:37 +00:00
|
|
|
LiveRange *AddrValLR = LRI.getLiveRangeForValue( AddrVal );
|
|
|
|
assert( AddrValLR && "No LR for indirect addr val of call");
|
|
|
|
AddrValLR->setCallInterference();
|
|
|
|
}
|
|
|
|
|
2001-10-19 17:21:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-01-07 19:19:18 +00:00
|
|
|
|
|
|
|
|
2001-09-15 21:11:11 +00:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
// This method will walk thru code and create interferences in the IG of
|
2002-01-07 19:19:18 +00:00
|
|
|
// each RegClass. Also, this method calculates the spill cost of each
|
|
|
|
// Live Range (it is done in this method to save another pass over the code).
|
2001-09-15 21:11:11 +00:00
|
|
|
//----------------------------------------------------------------------------
|
2001-09-14 21:18:34 +00:00
|
|
|
void PhyRegAlloc::buildInterferenceGraphs()
|
|
|
|
{
|
|
|
|
|
2002-09-14 23:05:33 +00:00
|
|
|
if (DEBUG_RA >= RA_DEBUG_Interference)
|
|
|
|
cerr << "Creating interference graphs ...\n";
|
2001-09-14 21:18:34 +00:00
|
|
|
|
2002-01-07 19:19:18 +00:00
|
|
|
unsigned BBLoopDepthCost;
|
2002-10-28 19:22:04 +00:00
|
|
|
for (MachineFunction::iterator BBI = MF.begin(), BBE = MF.end();
|
2002-04-07 20:49:59 +00:00
|
|
|
BBI != BBE; ++BBI) {
|
2002-10-28 19:22:04 +00:00
|
|
|
const MachineBasicBlock &MBB = *BBI;
|
|
|
|
const BasicBlock *BB = MBB.getBasicBlock();
|
2001-09-14 21:18:34 +00:00
|
|
|
|
2002-01-07 19:19:18 +00:00
|
|
|
// find the 10^(loop_depth) of this BB
|
|
|
|
//
|
2002-10-28 19:22:04 +00:00
|
|
|
BBLoopDepthCost = (unsigned)pow(10.0, LoopDepthCalc->getLoopDepth(BB));
|
2002-01-07 19:19:18 +00:00
|
|
|
|
2001-09-14 21:18:34 +00:00
|
|
|
// get the iterator for machine instructions
|
2002-01-07 19:19:18 +00:00
|
|
|
//
|
2002-10-28 19:22:04 +00:00
|
|
|
MachineBasicBlock::const_iterator MII = MBB.begin();
|
2001-09-14 21:18:34 +00:00
|
|
|
|
|
|
|
// iterate over all the machine instructions in BB
|
2002-01-07 19:19:18 +00:00
|
|
|
//
|
2002-10-28 19:22:04 +00:00
|
|
|
for ( ; MII != MBB.end(); ++MII) {
|
|
|
|
const MachineInstr *MInst = *MII;
|
2001-09-14 21:18:34 +00:00
|
|
|
|
|
|
|
// get the LV set after the instruction
|
2002-01-07 19:19:18 +00:00
|
|
|
//
|
2002-10-28 19:22:04 +00:00
|
|
|
const ValueSet &LVSetAI = LVI->getLiveVarSetAfterMInst(MInst, BB);
|
|
|
|
bool isCallInst = TM.getInstrInfo().isCall(MInst->getOpCode());
|
2001-09-14 21:18:34 +00:00
|
|
|
|
2002-06-25 16:13:24 +00:00
|
|
|
if (isCallInst ) {
|
2001-10-19 17:21:03 +00:00
|
|
|
// set the isCallInterference flag of each live range wich extends
|
|
|
|
// accross this call instruction. This information is used by graph
|
|
|
|
// coloring algo to avoid allocating volatile colors to live ranges
|
|
|
|
// that span across calls (since they have to be saved/restored)
|
2002-01-07 19:19:18 +00:00
|
|
|
//
|
2002-02-05 04:20:12 +00:00
|
|
|
setCallInterferences(MInst, &LVSetAI);
|
2001-10-19 17:21:03 +00:00
|
|
|
}
|
|
|
|
|
2002-01-07 19:19:18 +00:00
|
|
|
// iterate over all MI operands to find defs
|
|
|
|
//
|
2002-02-05 06:02:59 +00:00
|
|
|
for (MachineInstr::const_val_op_iterator OpI = MInst->begin(),
|
|
|
|
OpE = MInst->end(); OpI != OpE; ++OpI) {
|
2003-05-27 00:05:23 +00:00
|
|
|
if (OpI.isDefOnly() || OpI.isDefAndUse()) // create a new LR since def
|
2002-02-05 04:20:12 +00:00
|
|
|
addInterference(*OpI, &LVSetAI, isCallInst);
|
2002-01-07 19:19:18 +00:00
|
|
|
|
|
|
|
// Calculate the spill cost of each live range
|
|
|
|
//
|
2002-02-05 06:02:59 +00:00
|
|
|
LiveRange *LR = LRI.getLiveRangeForValue(*OpI);
|
|
|
|
if (LR) LR->addSpillCost(BBLoopDepthCost);
|
2002-01-07 19:19:18 +00:00
|
|
|
}
|
2001-09-14 21:18:34 +00:00
|
|
|
|
2001-10-16 01:23:19 +00:00
|
|
|
|
2001-11-14 15:33:58 +00:00
|
|
|
// if there are multiple defs in this instruction e.g. in SETX
|
|
|
|
//
|
2002-02-03 07:46:34 +00:00
|
|
|
if (TM.getInstrInfo().isPseudoInstr(MInst->getOpCode()))
|
2001-11-14 15:33:58 +00:00
|
|
|
addInterf4PseudoInstr(MInst);
|
|
|
|
|
|
|
|
|
2001-10-16 01:23:19 +00:00
|
|
|
// Also add interference for any implicit definitions in a machine
|
|
|
|
// instr (currently, only calls have this).
|
2002-01-07 19:19:18 +00:00
|
|
|
//
|
2001-10-16 01:23:19 +00:00
|
|
|
unsigned NumOfImpRefs = MInst->getNumImplicitRefs();
|
2003-05-27 00:05:23 +00:00
|
|
|
for (unsigned z=0; z < NumOfImpRefs; z++)
|
|
|
|
if (MInst->getImplicitOp(z).opIsDefOnly() ||
|
|
|
|
MInst->getImplicitOp(z).opIsDefAndUse())
|
|
|
|
addInterference( MInst->getImplicitRef(z), &LVSetAI, isCallInst );
|
2001-11-03 17:13:27 +00:00
|
|
|
|
2001-09-14 21:18:34 +00:00
|
|
|
} // for all machine instructions in BB
|
2002-04-07 20:49:59 +00:00
|
|
|
} // for all BBs in function
|
2001-09-14 21:18:34 +00:00
|
|
|
|
|
|
|
|
2002-04-07 20:49:59 +00:00
|
|
|
// add interferences for function arguments. Since there are no explict
|
|
|
|
// defs in the function for args, we have to add them manually
|
2002-01-07 19:19:18 +00:00
|
|
|
//
|
|
|
|
addInterferencesForArgs();
|
2001-09-14 21:18:34 +00:00
|
|
|
|
2002-09-14 23:05:33 +00:00
|
|
|
if (DEBUG_RA >= RA_DEBUG_Interference)
|
|
|
|
cerr << "Interference graphs calculated!\n";
|
2001-09-14 21:18:34 +00:00
|
|
|
}
|
|
|
|
|
2002-01-07 19:19:18 +00:00
|
|
|
|
|
|
|
|
2001-11-14 15:33:58 +00:00
|
|
|
//--------------------------------------------------------------------------
|
|
|
|
// Pseudo instructions will be exapnded to multiple instructions by the
|
2002-01-07 19:19:18 +00:00
|
|
|
// assembler. Consequently, all the opernds must get distinct registers.
|
|
|
|
// Therefore, we mark all operands of a pseudo instruction as they interfere
|
|
|
|
// with one another.
|
2001-11-14 15:33:58 +00:00
|
|
|
//--------------------------------------------------------------------------
|
|
|
|
void PhyRegAlloc::addInterf4PseudoInstr(const MachineInstr *MInst) {
|
|
|
|
|
2001-11-15 15:00:53 +00:00
|
|
|
bool setInterf = false;
|
|
|
|
|
2001-11-14 15:33:58 +00:00
|
|
|
// iterate over MI operands to find defs
|
2002-01-07 19:19:18 +00:00
|
|
|
//
|
2002-02-05 06:02:59 +00:00
|
|
|
for (MachineInstr::const_val_op_iterator It1 = MInst->begin(),
|
|
|
|
ItE = MInst->end(); It1 != ItE; ++It1) {
|
|
|
|
const LiveRange *LROfOp1 = LRI.getLiveRangeForValue(*It1);
|
2003-05-27 00:05:23 +00:00
|
|
|
assert((LROfOp1 || !It1.isUseOnly())&& "No LR for Def in PSEUDO insruction");
|
2002-02-05 06:02:59 +00:00
|
|
|
|
|
|
|
MachineInstr::const_val_op_iterator It2 = It1;
|
2002-06-25 16:13:24 +00:00
|
|
|
for (++It2; It2 != ItE; ++It2) {
|
2002-02-05 06:02:59 +00:00
|
|
|
const LiveRange *LROfOp2 = LRI.getLiveRangeForValue(*It2);
|
|
|
|
|
|
|
|
if (LROfOp2) {
|
|
|
|
RegClass *RCOfOp1 = LROfOp1->getRegClass();
|
|
|
|
RegClass *RCOfOp2 = LROfOp2->getRegClass();
|
2001-11-14 15:33:58 +00:00
|
|
|
|
2002-06-25 16:13:24 +00:00
|
|
|
if (RCOfOp1 == RCOfOp2 ){
|
2001-11-14 15:33:58 +00:00
|
|
|
RCOfOp1->setInterference( LROfOp1, LROfOp2 );
|
2001-11-15 15:00:53 +00:00
|
|
|
setInterf = true;
|
2001-11-14 15:33:58 +00:00
|
|
|
}
|
|
|
|
} // if Op2 has a LR
|
|
|
|
} // for all other defs in machine instr
|
|
|
|
} // for all operands in an instruction
|
|
|
|
|
2002-02-05 06:02:59 +00:00
|
|
|
if (!setInterf && MInst->getNumOperands() > 2) {
|
2001-11-15 15:00:53 +00:00
|
|
|
cerr << "\nInterf not set for any operand in pseudo instr:\n";
|
|
|
|
cerr << *MInst;
|
|
|
|
assert(0 && "Interf not set for pseudo instr with > 2 operands" );
|
|
|
|
}
|
2001-11-14 15:33:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-09-14 21:18:34 +00:00
|
|
|
|
2001-09-15 21:11:11 +00:00
|
|
|
//----------------------------------------------------------------------------
|
2002-04-07 20:49:59 +00:00
|
|
|
// This method will add interferences for incoming arguments to a function.
|
2001-09-15 21:11:11 +00:00
|
|
|
//----------------------------------------------------------------------------
|
2002-09-14 23:05:33 +00:00
|
|
|
|
2002-02-05 02:52:05 +00:00
|
|
|
void PhyRegAlloc::addInterferencesForArgs() {
|
|
|
|
// get the InSet of root BB
|
2002-10-28 19:22:04 +00:00
|
|
|
const ValueSet &InSet = LVI->getInSetOfBB(&Fn->front());
|
2001-09-14 21:18:34 +00:00
|
|
|
|
2002-10-28 19:22:04 +00:00
|
|
|
for (Function::const_aiterator AI = Fn->abegin(); AI != Fn->aend(); ++AI) {
|
2002-06-25 16:13:24 +00:00
|
|
|
// add interferences between args and LVars at start
|
|
|
|
addInterference(AI, &InSet, false);
|
|
|
|
|
2002-09-14 23:05:33 +00:00
|
|
|
if (DEBUG_RA >= RA_DEBUG_Interference)
|
2002-06-25 16:13:24 +00:00
|
|
|
cerr << " - %% adding interference for argument " << RAV(AI) << "\n";
|
2001-09-14 21:18:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-09-15 21:11:11 +00:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
// This method is called after register allocation is complete to set the
|
|
|
|
// allocated reisters in the machine code. This code will add register numbers
|
2002-01-07 19:19:18 +00:00
|
|
|
// to MachineOperands that contain a Value. Also it calls target specific
|
|
|
|
// methods to produce caller saving instructions. At the end, it adds all
|
|
|
|
// additional instructions produced by the register allocator to the
|
|
|
|
// instruction stream.
|
2001-09-15 21:11:11 +00:00
|
|
|
//----------------------------------------------------------------------------
|
2002-04-25 04:34:15 +00:00
|
|
|
|
|
|
|
//-----------------------------
|
|
|
|
// Utility functions used below
|
|
|
|
//-----------------------------
|
2002-10-11 16:12:40 +00:00
|
|
|
inline void
|
|
|
|
InsertBefore(MachineInstr* newMI,
|
2002-10-28 19:22:04 +00:00
|
|
|
MachineBasicBlock& MBB,
|
2002-10-28 01:41:27 +00:00
|
|
|
MachineBasicBlock::iterator& MII)
|
2002-10-11 16:12:40 +00:00
|
|
|
{
|
2002-10-28 19:22:04 +00:00
|
|
|
MII = MBB.insert(MII, newMI);
|
2002-10-11 16:12:40 +00:00
|
|
|
++MII;
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void
|
|
|
|
InsertAfter(MachineInstr* newMI,
|
2002-10-28 19:22:04 +00:00
|
|
|
MachineBasicBlock& MBB,
|
2002-10-28 01:41:27 +00:00
|
|
|
MachineBasicBlock::iterator& MII)
|
2002-10-11 16:12:40 +00:00
|
|
|
{
|
|
|
|
++MII; // insert before the next instruction
|
2002-10-28 19:22:04 +00:00
|
|
|
MII = MBB.insert(MII, newMI);
|
2002-10-11 16:12:40 +00:00
|
|
|
}
|
|
|
|
|
2003-05-31 07:32:01 +00:00
|
|
|
inline void
|
|
|
|
DeleteInstruction(MachineBasicBlock& MBB,
|
|
|
|
MachineBasicBlock::iterator& MII)
|
|
|
|
{
|
|
|
|
MII = MBB.erase(MII);
|
|
|
|
}
|
|
|
|
|
2002-10-11 16:12:40 +00:00
|
|
|
inline void
|
|
|
|
SubstituteInPlace(MachineInstr* newMI,
|
2002-10-28 19:22:04 +00:00
|
|
|
MachineBasicBlock& MBB,
|
2002-10-28 01:41:27 +00:00
|
|
|
MachineBasicBlock::iterator MII)
|
2002-10-11 16:12:40 +00:00
|
|
|
{
|
|
|
|
*MII = newMI;
|
|
|
|
}
|
|
|
|
|
2002-04-25 04:34:15 +00:00
|
|
|
inline void
|
2002-05-19 15:29:31 +00:00
|
|
|
PrependInstructions(vector<MachineInstr *> &IBef,
|
2002-10-28 19:22:04 +00:00
|
|
|
MachineBasicBlock& MBB,
|
2002-10-28 01:41:27 +00:00
|
|
|
MachineBasicBlock::iterator& MII,
|
2002-04-25 04:34:15 +00:00
|
|
|
const std::string& msg)
|
|
|
|
{
|
|
|
|
if (!IBef.empty())
|
|
|
|
{
|
|
|
|
MachineInstr* OrigMI = *MII;
|
2002-05-19 15:29:31 +00:00
|
|
|
std::vector<MachineInstr *>::iterator AdIt;
|
2002-04-25 04:34:15 +00:00
|
|
|
for (AdIt = IBef.begin(); AdIt != IBef.end() ; ++AdIt)
|
|
|
|
{
|
|
|
|
if (DEBUG_RA) {
|
2002-09-14 23:05:33 +00:00
|
|
|
if (OrigMI) cerr << "For MInst:\n " << *OrigMI;
|
|
|
|
cerr << msg << "PREPENDed instr:\n " << **AdIt << "\n";
|
2002-04-25 04:34:15 +00:00
|
|
|
}
|
2002-10-28 19:22:04 +00:00
|
|
|
InsertBefore(*AdIt, MBB, MII);
|
2002-04-25 04:34:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
inline void
|
2002-05-19 15:29:31 +00:00
|
|
|
AppendInstructions(std::vector<MachineInstr *> &IAft,
|
2002-10-28 19:22:04 +00:00
|
|
|
MachineBasicBlock& MBB,
|
2002-10-28 01:41:27 +00:00
|
|
|
MachineBasicBlock::iterator& MII,
|
2002-04-25 04:34:15 +00:00
|
|
|
const std::string& msg)
|
2001-09-14 21:18:34 +00:00
|
|
|
{
|
2002-04-25 04:34:15 +00:00
|
|
|
if (!IAft.empty())
|
|
|
|
{
|
|
|
|
MachineInstr* OrigMI = *MII;
|
2002-05-19 15:29:31 +00:00
|
|
|
std::vector<MachineInstr *>::iterator AdIt;
|
2002-06-25 16:13:24 +00:00
|
|
|
for ( AdIt = IAft.begin(); AdIt != IAft.end() ; ++AdIt )
|
2002-04-25 04:34:15 +00:00
|
|
|
{
|
2002-06-25 16:13:24 +00:00
|
|
|
if (DEBUG_RA) {
|
2002-09-14 23:05:33 +00:00
|
|
|
if (OrigMI) cerr << "For MInst:\n " << *OrigMI;
|
|
|
|
cerr << msg << "APPENDed instr:\n " << **AdIt << "\n";
|
2002-04-25 04:34:15 +00:00
|
|
|
}
|
2002-10-28 19:22:04 +00:00
|
|
|
InsertAfter(*AdIt, MBB, MII);
|
2002-04-25 04:34:15 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2003-07-29 19:49:21 +00:00
|
|
|
static bool MarkAllocatedRegs(MachineInstr* MInst,
|
|
|
|
LiveRangeInfo& LRI,
|
|
|
|
const TargetRegInfo& MRI)
|
2003-05-31 07:32:01 +00:00
|
|
|
{
|
2003-07-29 19:49:21 +00:00
|
|
|
bool instrNeedsSpills = false;
|
|
|
|
|
2003-05-31 07:32:01 +00:00
|
|
|
// First, set the registers for operands in the machine instruction
|
|
|
|
// if a register was successfully allocated. Do this first because we
|
|
|
|
// will need to know which registers are already used by this instr'n.
|
|
|
|
//
|
|
|
|
for (unsigned OpNum=0; OpNum < MInst->getNumOperands(); ++OpNum)
|
|
|
|
{
|
|
|
|
MachineOperand& Op = MInst->getOperand(OpNum);
|
|
|
|
if (Op.getType() == MachineOperand::MO_VirtualRegister ||
|
|
|
|
Op.getType() == MachineOperand::MO_CCRegister)
|
|
|
|
{
|
|
|
|
const Value *const Val = Op.getVRegValue();
|
2003-07-29 19:49:21 +00:00
|
|
|
if (const LiveRange* LR = LRI.getLiveRangeForValue(Val)) {
|
|
|
|
// Remember if any operand needs spilling
|
|
|
|
instrNeedsSpills |= LR->isMarkedForSpill();
|
|
|
|
|
|
|
|
// An operand may have a color whether or not it needs spilling
|
2003-05-31 07:32:01 +00:00
|
|
|
if (LR->hasColor())
|
|
|
|
MInst->SetRegForOperand(OpNum,
|
|
|
|
MRI.getUnifiedRegNum(LR->getRegClass()->getID(),
|
|
|
|
LR->getColor()));
|
2003-07-29 19:49:21 +00:00
|
|
|
}
|
2003-05-31 07:32:01 +00:00
|
|
|
}
|
|
|
|
} // for each operand
|
2003-07-29 19:49:21 +00:00
|
|
|
|
|
|
|
return instrNeedsSpills;
|
|
|
|
}
|
|
|
|
|
|
|
|
void PhyRegAlloc::updateInstruction(MachineBasicBlock::iterator& MII,
|
|
|
|
MachineBasicBlock &MBB)
|
|
|
|
{
|
|
|
|
MachineInstr* MInst = *MII;
|
|
|
|
unsigned Opcode = MInst->getOpCode();
|
|
|
|
|
|
|
|
// Reset tmp stack positions so they can be reused for each machine instr.
|
|
|
|
MF.getInfo()->popAllTempValues();
|
|
|
|
|
|
|
|
// Mark the operands for which regs have been allocated.
|
|
|
|
bool instrNeedsSpills = MarkAllocatedRegs(*MII, LRI, MRI);
|
|
|
|
|
|
|
|
#ifndef NDEBUG
|
|
|
|
// Mark that the operands have been updated. Later,
|
|
|
|
// setRelRegsUsedByThisInst() is called to find registers used by each
|
|
|
|
// MachineInst, and it should not be used for an instruction until
|
|
|
|
// this is done. This flag just serves as a sanity check.
|
2003-05-31 07:32:01 +00:00
|
|
|
OperandsColoredMap[MInst] = true;
|
2003-07-29 19:49:21 +00:00
|
|
|
#endif
|
2003-05-31 07:32:01 +00:00
|
|
|
|
2003-07-25 21:06:09 +00:00
|
|
|
// Now insert caller-saving code before/after the call.
|
|
|
|
// Do this before inserting spill code since some registers must be
|
|
|
|
// used by save/restore and spill code should not use those registers.
|
2003-05-31 07:32:01 +00:00
|
|
|
//
|
2003-07-25 21:06:09 +00:00
|
|
|
if (TM.getInstrInfo().isCall(Opcode)) {
|
2003-05-31 07:32:01 +00:00
|
|
|
AddedInstrns &AI = AddedInstrMap[MInst];
|
2003-07-29 19:49:21 +00:00
|
|
|
insertCallerSavingCode(AI.InstrnsBefore, AI.InstrnsAfter, MInst,
|
|
|
|
MBB.getBasicBlock());
|
2003-05-31 07:32:01 +00:00
|
|
|
}
|
2003-07-25 21:06:09 +00:00
|
|
|
|
2003-05-31 07:32:01 +00:00
|
|
|
// Now insert spill code for remaining operands not allocated to
|
|
|
|
// registers. This must be done even for call return instructions
|
|
|
|
// since those are not handled by the special code above.
|
2003-07-29 19:49:21 +00:00
|
|
|
if (instrNeedsSpills)
|
|
|
|
for (unsigned OpNum=0; OpNum < MInst->getNumOperands(); ++OpNum)
|
|
|
|
{
|
|
|
|
MachineOperand& Op = MInst->getOperand(OpNum);
|
|
|
|
if (Op.getType() == MachineOperand::MO_VirtualRegister ||
|
|
|
|
Op.getType() == MachineOperand::MO_CCRegister)
|
|
|
|
{
|
|
|
|
const Value* Val = Op.getVRegValue();
|
|
|
|
if (const LiveRange *LR = LRI.getLiveRangeForValue(Val))
|
|
|
|
if (LR->isMarkedForSpill())
|
|
|
|
insertCode4SpilledLR(LR, MII, MBB, OpNum);
|
|
|
|
}
|
|
|
|
} // for each operand
|
2003-05-31 07:32:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void PhyRegAlloc::updateMachineCode()
|
|
|
|
{
|
2002-06-25 16:13:24 +00:00
|
|
|
// Insert any instructions needed at method entry
|
2002-10-28 19:22:04 +00:00
|
|
|
MachineBasicBlock::iterator MII = MF.front().begin();
|
|
|
|
PrependInstructions(AddedInstrAtEntry.InstrnsBefore, MF.front(), MII,
|
2002-06-25 16:13:24 +00:00
|
|
|
"At function entry: \n");
|
|
|
|
assert(AddedInstrAtEntry.InstrnsAfter.empty() &&
|
|
|
|
"InstrsAfter should be unnecessary since we are just inserting at "
|
|
|
|
"the function entry point here.");
|
2002-04-25 04:34:15 +00:00
|
|
|
|
2002-10-28 19:22:04 +00:00
|
|
|
for (MachineFunction::iterator BBI = MF.begin(), BBE = MF.end();
|
2002-04-07 20:49:59 +00:00
|
|
|
BBI != BBE; ++BBI) {
|
2002-10-11 16:12:40 +00:00
|
|
|
|
2002-10-28 19:22:04 +00:00
|
|
|
MachineBasicBlock &MBB = *BBI;
|
2003-05-31 07:32:01 +00:00
|
|
|
|
|
|
|
// Iterate over all machine instructions in BB and mark operands with
|
|
|
|
// their assigned registers or insert spill code, as appropriate.
|
|
|
|
// Also, fix operands of call/return instructions.
|
|
|
|
for (MachineBasicBlock::iterator MII = MBB.begin(); MII != MBB.end(); ++MII)
|
2003-07-29 19:49:21 +00:00
|
|
|
if (! TM.getInstrInfo().isDummyPhiInstr((*MII)->getOpCode()))
|
|
|
|
updateInstruction(MII, MBB);
|
2003-05-31 07:32:01 +00:00
|
|
|
|
|
|
|
// Now, move code out of delay slots of branches and returns if needed.
|
|
|
|
// (Also, move "after" code from calls to the last delay slot instruction.)
|
|
|
|
// Moving code out of delay slots is needed in 2 situations:
|
|
|
|
// (1) If this is a branch and it needs instructions inserted after it,
|
|
|
|
// move any existing instructions out of the delay slot so that the
|
|
|
|
// instructions can go into the delay slot. This only supports the
|
|
|
|
// case that #instrsAfter <= #delay slots.
|
|
|
|
//
|
|
|
|
// (2) If any instruction in the delay slot needs
|
|
|
|
// instructions inserted, move it out of the delay slot and before the
|
|
|
|
// branch because putting code before or after it would be VERY BAD!
|
|
|
|
//
|
|
|
|
// If the annul bit of the branch is set, neither of these is legal!
|
|
|
|
// If so, we need to handle spill differently but annulling is not yet used.
|
|
|
|
//
|
|
|
|
for (MachineBasicBlock::iterator MII = MBB.begin();
|
|
|
|
MII != MBB.end(); ++MII)
|
|
|
|
if (unsigned delaySlots =
|
|
|
|
TM.getInstrInfo().getNumDelaySlots((*MII)->getOpCode()))
|
|
|
|
{
|
2003-07-29 19:49:21 +00:00
|
|
|
MachineInstr *MInst = *MII, *DelaySlotMI = *(MII+1);
|
|
|
|
|
2003-05-31 07:32:01 +00:00
|
|
|
// Check the 2 conditions above:
|
|
|
|
// (1) Does a branch need instructions added after it?
|
|
|
|
// (2) O/w does delay slot instr. need instrns before or after?
|
2003-07-29 19:49:21 +00:00
|
|
|
bool isBranch = (TM.getInstrInfo().isBranch(MInst->getOpCode()) ||
|
|
|
|
TM.getInstrInfo().isReturn(MInst->getOpCode()));
|
|
|
|
bool cond1 = (isBranch &&
|
|
|
|
AddedInstrMap.count(MInst) &&
|
|
|
|
AddedInstrMap[MInst].InstrnsAfter.size() > 0);
|
|
|
|
bool cond2 = (AddedInstrMap.count(DelaySlotMI) &&
|
|
|
|
(AddedInstrMap[DelaySlotMI].InstrnsBefore.size() > 0 ||
|
|
|
|
AddedInstrMap[DelaySlotMI].InstrnsAfter.size() > 0));
|
2003-05-31 07:32:01 +00:00
|
|
|
|
|
|
|
if (cond1 || cond2)
|
|
|
|
{
|
2003-07-29 19:49:21 +00:00
|
|
|
assert((MInst->getOpCodeFlags() & AnnulFlag) == 0 &&
|
|
|
|
"FIXME: Moving an annulled delay slot instruction!");
|
|
|
|
assert(delaySlots==1 &&
|
|
|
|
"InsertBefore does not yet handle >1 delay slots!");
|
|
|
|
InsertBefore(DelaySlotMI, MBB, MII); // MII pts back to branch
|
2003-05-31 07:32:01 +00:00
|
|
|
|
|
|
|
// In case (1), delete it and don't replace with anything!
|
|
|
|
// Otherwise (i.e., case (2) only) replace it with a NOP.
|
|
|
|
if (cond1) {
|
2003-07-29 19:49:21 +00:00
|
|
|
DeleteInstruction(MBB, ++MII); // MII now points to next inst.
|
|
|
|
--MII; // reset MII for ++MII of loop
|
2003-05-31 07:32:01 +00:00
|
|
|
}
|
2003-07-29 19:49:21 +00:00
|
|
|
else
|
|
|
|
SubstituteInPlace(BuildMI(TM.getInstrInfo().getNOPOpCode(),1),
|
|
|
|
MBB, MII+1); // replace with NOP
|
|
|
|
|
|
|
|
if (DEBUG_RA) {
|
|
|
|
cerr << "\nRegAlloc: Moved instr. with added code: "
|
|
|
|
<< *DelaySlotMI
|
|
|
|
<< " out of delay slots of instr: " << *MInst;
|
2003-05-31 07:32:01 +00:00
|
|
|
}
|
|
|
|
}
|
2003-07-29 19:49:21 +00:00
|
|
|
else
|
|
|
|
// For non-branch instr with delay slots (probably a call), move
|
|
|
|
// InstrAfter to the instr. in the last delay slot.
|
|
|
|
move2DelayedInstr(*MII, *(MII+delaySlots));
|
2003-05-31 07:32:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Finally iterate over all instructions in BB and insert before/after
|
|
|
|
//
|
2003-07-25 21:06:09 +00:00
|
|
|
for (MachineBasicBlock::iterator MII=MBB.begin(); MII != MBB.end(); ++MII) {
|
2002-04-25 04:34:15 +00:00
|
|
|
MachineInstr *MInst = *MII;
|
2003-07-25 21:06:09 +00:00
|
|
|
|
2001-11-10 21:21:36 +00:00
|
|
|
// do not process Phis
|
2003-07-25 21:06:09 +00:00
|
|
|
if (TM.getInstrInfo().isDummyPhiInstr(MInst->getOpCode()))
|
2001-11-10 21:21:36 +00:00
|
|
|
continue;
|
|
|
|
|
2003-07-25 21:06:09 +00:00
|
|
|
// if there are any added instructions...
|
2002-06-25 16:13:24 +00:00
|
|
|
if (AddedInstrMap.count(MInst)) {
|
2003-07-25 21:06:09 +00:00
|
|
|
AddedInstrns &CallAI = AddedInstrMap[MInst];
|
|
|
|
|
2003-07-29 19:49:21 +00:00
|
|
|
#ifndef NDEBUG
|
|
|
|
bool isBranch = (TM.getInstrInfo().isBranch(MInst->getOpCode()) ||
|
|
|
|
TM.getInstrInfo().isReturn(MInst->getOpCode()));
|
|
|
|
assert((!isBranch ||
|
|
|
|
AddedInstrMap[MInst].InstrnsAfter.size() <=
|
|
|
|
TM.getInstrInfo().getNumDelaySlots(MInst->getOpCode())) &&
|
|
|
|
"Cannot put more than #delaySlots instrns after "
|
|
|
|
"branch or return! Need to handle temps differently.");
|
|
|
|
#endif
|
|
|
|
|
2003-07-25 21:06:09 +00:00
|
|
|
#ifndef NDEBUG
|
|
|
|
// Temporary sanity checking code to detect whether the same machine
|
|
|
|
// instruction is ever inserted twice before/after a call.
|
|
|
|
// I suspect this is happening but am not sure. --Vikram, 7/1/03.
|
|
|
|
//
|
|
|
|
std::set<const MachineInstr*> instrsSeen;
|
|
|
|
for (int i = 0, N = CallAI.InstrnsBefore.size(); i < N; ++i) {
|
|
|
|
assert(instrsSeen.count(CallAI.InstrnsBefore[i]) == 0 &&
|
|
|
|
"Duplicate machine instruction in InstrnsBefore!");
|
|
|
|
instrsSeen.insert(CallAI.InstrnsBefore[i]);
|
|
|
|
}
|
|
|
|
for (int i = 0, N = CallAI.InstrnsAfter.size(); i < N; ++i) {
|
|
|
|
assert(instrsSeen.count(CallAI.InstrnsAfter[i]) == 0 &&
|
|
|
|
"Duplicate machine instruction in InstrnsBefore/After!");
|
|
|
|
instrsSeen.insert(CallAI.InstrnsAfter[i]);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Now add the instructions before/after this MI.
|
|
|
|
// We do this here to ensure that spill for an instruction is inserted
|
|
|
|
// as close as possible to an instruction (see above insertCode4Spill)
|
|
|
|
//
|
|
|
|
if (! CallAI.InstrnsBefore.empty())
|
|
|
|
PrependInstructions(CallAI.InstrnsBefore, MBB, MII,"");
|
|
|
|
|
|
|
|
if (! CallAI.InstrnsAfter.empty())
|
|
|
|
AppendInstructions(CallAI.InstrnsAfter, MBB, MII,"");
|
|
|
|
|
|
|
|
} // if there are any added instructions
|
2002-10-11 16:12:40 +00:00
|
|
|
|
2001-10-23 21:38:00 +00:00
|
|
|
} // for each machine instruction
|
2003-07-29 19:49:21 +00:00
|
|
|
|
2001-10-23 21:38:00 +00:00
|
|
|
}
|
|
|
|
}
|
2001-10-16 01:23:19 +00:00
|
|
|
|
2001-10-18 22:36:26 +00:00
|
|
|
|
2001-11-08 16:43:25 +00:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
// This method inserts spill code for AN operand whose LR was spilled.
|
|
|
|
// This method may be called several times for a single machine instruction
|
|
|
|
// if it contains many spilled operands. Each time it is called, it finds
|
|
|
|
// a register which is not live at that instruction and also which is not
|
|
|
|
// used by other spilled operands of the same instruction. Then it uses
|
|
|
|
// this register temporarily to accomodate the spilled value.
|
|
|
|
//----------------------------------------------------------------------------
|
2003-07-25 21:06:09 +00:00
|
|
|
|
2001-11-08 16:43:25 +00:00
|
|
|
void PhyRegAlloc::insertCode4SpilledLR(const LiveRange *LR,
|
2003-07-29 19:49:21 +00:00
|
|
|
MachineBasicBlock::iterator& MII,
|
|
|
|
MachineBasicBlock &MBB,
|
2001-11-08 16:43:25 +00:00
|
|
|
const unsigned OpNum) {
|
|
|
|
|
2003-07-29 19:49:21 +00:00
|
|
|
MachineInstr *MInst = *MII;
|
|
|
|
const BasicBlock *BB = MBB.getBasicBlock();
|
|
|
|
|
2002-09-28 17:02:40 +00:00
|
|
|
assert((! TM.getInstrInfo().isCall(MInst->getOpCode()) || OpNum == 0) &&
|
|
|
|
"Outgoing arg of a call must be handled elsewhere (func arg ok)");
|
|
|
|
assert(! TM.getInstrInfo().isReturn(MInst->getOpCode()) &&
|
|
|
|
"Return value of a ret must be handled elsewhere");
|
2001-11-15 20:23:19 +00:00
|
|
|
|
2001-11-08 16:43:25 +00:00
|
|
|
MachineOperand& Op = MInst->getOperand(OpNum);
|
2003-05-27 00:05:23 +00:00
|
|
|
bool isDef = Op.opIsDefOnly();
|
|
|
|
bool isDefAndUse = Op.opIsDefAndUse();
|
2003-07-25 21:06:09 +00:00
|
|
|
unsigned RegType = MRI.getRegTypeForLR(LR);
|
2001-11-08 16:43:25 +00:00
|
|
|
int SpillOff = LR->getSpillOffFromFP();
|
|
|
|
RegClass *RC = LR->getRegClass();
|
2003-07-29 19:49:21 +00:00
|
|
|
|
|
|
|
// Get the live-variable set to find registers free before this instr.
|
|
|
|
// If this instr. is in the delay slot of a branch or return, use the live
|
|
|
|
// var set before that branch or return -- we don't want to trample those!
|
|
|
|
//
|
|
|
|
MachineInstr *LiveBeforeThisMI = MInst;
|
|
|
|
if (MII != MBB.begin()) {
|
|
|
|
MachineInstr *PredMI = *(MII-1);
|
|
|
|
if (unsigned DS = TM.getInstrInfo().getNumDelaySlots(PredMI->getOpCode())) {
|
|
|
|
assert(DS == 1 && "Only checking immediate pred. for delay slots!");
|
|
|
|
LiveBeforeThisMI = PredMI;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
const ValueSet &LVSetBef = LVI->getLiveVarSetBeforeMInst(LiveBeforeThisMI,BB);
|
2001-11-12 23:26:35 +00:00
|
|
|
|
2002-12-28 20:35:34 +00:00
|
|
|
MF.getInfo()->pushTempValue(MRI.getSpilledRegSize(RegType) );
|
2001-11-08 16:43:25 +00:00
|
|
|
|
2002-07-08 23:15:32 +00:00
|
|
|
vector<MachineInstr*> MIBef, MIAft;
|
2002-05-19 15:29:31 +00:00
|
|
|
vector<MachineInstr*> AdIMid;
|
2001-11-15 20:23:19 +00:00
|
|
|
|
2003-07-10 19:42:55 +00:00
|
|
|
// Choose a register to hold the spilled value, if one was not preallocated.
|
|
|
|
// This may insert code before and after MInst to free up the value. If so,
|
|
|
|
// this code should be first/last in the spill sequence before/after MInst.
|
|
|
|
int TmpRegU=(LR->hasColor()
|
|
|
|
? MRI.getUnifiedRegNum(LR->getRegClass()->getID(),LR->getColor())
|
|
|
|
: getUsableUniRegAtMI(RegType, &LVSetBef, MInst, MIBef,MIAft));
|
2001-11-15 20:23:19 +00:00
|
|
|
|
2002-07-08 23:15:32 +00:00
|
|
|
// Set the operand first so that it this register does not get used
|
|
|
|
// as a scratch register for later calls to getUsableUniRegAtMI below
|
|
|
|
MInst->SetRegForOperand(OpNum, TmpRegU);
|
|
|
|
|
|
|
|
// get the added instructions for this instruction
|
2002-04-09 05:13:04 +00:00
|
|
|
AddedInstrns &AI = AddedInstrMap[MInst];
|
2002-07-08 23:15:32 +00:00
|
|
|
|
|
|
|
// We may need a scratch register to copy the spilled value to/from memory.
|
|
|
|
// This may itself have to insert code to free up a scratch register.
|
|
|
|
// Any such code should go before (after) the spill code for a load (store).
|
2003-05-31 07:32:01 +00:00
|
|
|
// The scratch reg is not marked as used because it is only used
|
|
|
|
// for the copy and not used across MInst.
|
2002-07-08 23:15:32 +00:00
|
|
|
int scratchRegType = -1;
|
|
|
|
int scratchReg = -1;
|
|
|
|
if (MRI.regTypeNeedsScratchReg(RegType, scratchRegType))
|
|
|
|
{
|
2002-10-22 23:16:21 +00:00
|
|
|
scratchReg = getUsableUniRegAtMI(scratchRegType, &LVSetBef,
|
|
|
|
MInst, MIBef, MIAft);
|
2002-07-08 23:15:32 +00:00
|
|
|
assert(scratchReg != MRI.getInvalidRegNum());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!isDef || isDefAndUse) {
|
2001-11-08 16:43:25 +00:00
|
|
|
// for a USE, we have to load the value of LR from stack to a TmpReg
|
|
|
|
// and use the TmpReg as one operand of instruction
|
2002-05-19 15:29:31 +00:00
|
|
|
|
2002-07-08 23:15:32 +00:00
|
|
|
// actual loading instruction(s)
|
2003-07-29 19:49:21 +00:00
|
|
|
MRI.cpMem2RegMI(AdIMid, MRI.getFramePointer(), SpillOff, TmpRegU,
|
|
|
|
RegType, scratchReg);
|
2001-11-08 19:11:30 +00:00
|
|
|
|
2002-07-08 23:15:32 +00:00
|
|
|
// the actual load should be after the instructions to free up TmpRegU
|
|
|
|
MIBef.insert(MIBef.end(), AdIMid.begin(), AdIMid.end());
|
|
|
|
AdIMid.clear();
|
|
|
|
}
|
|
|
|
|
2003-07-10 19:42:55 +00:00
|
|
|
if (isDef || isDefAndUse) { // if this is a Def
|
2001-11-08 16:43:25 +00:00
|
|
|
// for a DEF, we have to store the value produced by this instruction
|
|
|
|
// on the stack position allocated for this LR
|
2002-05-19 15:29:31 +00:00
|
|
|
|
2002-07-08 23:15:32 +00:00
|
|
|
// actual storing instruction(s)
|
2003-07-29 19:49:21 +00:00
|
|
|
MRI.cpReg2MemMI(AdIMid, TmpRegU, MRI.getFramePointer(), SpillOff,
|
|
|
|
RegType, scratchReg);
|
2002-05-19 15:29:31 +00:00
|
|
|
|
2002-07-08 23:15:32 +00:00
|
|
|
MIAft.insert(MIAft.begin(), AdIMid.begin(), AdIMid.end());
|
2001-11-08 16:43:25 +00:00
|
|
|
} // if !DEF
|
2002-05-19 15:29:31 +00:00
|
|
|
|
2002-07-08 23:15:32 +00:00
|
|
|
// Finally, insert the entire spill code sequences before/after MInst
|
|
|
|
AI.InstrnsBefore.insert(AI.InstrnsBefore.end(), MIBef.begin(), MIBef.end());
|
|
|
|
AI.InstrnsAfter.insert(AI.InstrnsAfter.begin(), MIAft.begin(), MIAft.end());
|
|
|
|
|
2002-06-25 16:13:24 +00:00
|
|
|
if (DEBUG_RA) {
|
2002-09-14 23:05:33 +00:00
|
|
|
cerr << "\nFor Inst:\n " << *MInst;
|
|
|
|
cerr << "SPILLED LR# " << LR->getUserIGNode()->getIndex();
|
|
|
|
cerr << "; added Instructions:";
|
2002-07-09 19:18:56 +00:00
|
|
|
for_each(MIBef.begin(), MIBef.end(), std::mem_fun(&MachineInstr::dump));
|
|
|
|
for_each(MIAft.begin(), MIAft.end(), std::mem_fun(&MachineInstr::dump));
|
2002-06-25 16:13:24 +00:00
|
|
|
}
|
2001-11-08 16:43:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2003-07-29 19:49:21 +00:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
// This method inserts caller saving/restoring instructons before/after
|
|
|
|
// a call machine instruction. The caller saving/restoring instructions are
|
|
|
|
// inserted like:
|
|
|
|
// ** caller saving instructions
|
|
|
|
// other instructions inserted for the call by ColorCallArg
|
|
|
|
// CALL instruction
|
|
|
|
// other instructions inserted for the call ColorCallArg
|
|
|
|
// ** caller restoring instructions
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void
|
|
|
|
PhyRegAlloc::insertCallerSavingCode(std::vector<MachineInstr*> &instrnsBefore,
|
|
|
|
std::vector<MachineInstr*> &instrnsAfter,
|
|
|
|
MachineInstr *CallMI,
|
|
|
|
const BasicBlock *BB)
|
|
|
|
{
|
|
|
|
assert(TM.getInstrInfo().isCall(CallMI->getOpCode()));
|
|
|
|
|
|
|
|
// has set to record which registers were saved/restored
|
|
|
|
//
|
|
|
|
hash_set<unsigned> PushedRegSet;
|
|
|
|
|
|
|
|
CallArgsDescriptor* argDesc = CallArgsDescriptor::get(CallMI);
|
|
|
|
|
|
|
|
// if the call is to a instrumentation function, do not insert save and
|
|
|
|
// restore instructions the instrumentation function takes care of save
|
|
|
|
// restore for volatile regs.
|
|
|
|
//
|
|
|
|
// FIXME: this should be made general, not specific to the reoptimizer!
|
|
|
|
//
|
|
|
|
const Function *Callee = argDesc->getCallInst()->getCalledFunction();
|
|
|
|
bool isLLVMFirstTrigger = Callee && Callee->getName() == "llvm_first_trigger";
|
|
|
|
|
|
|
|
// Now check if the call has a return value (using argDesc) and if so,
|
|
|
|
// find the LR of the TmpInstruction representing the return value register.
|
|
|
|
// (using the last or second-last *implicit operand* of the call MI).
|
|
|
|
// Insert it to to the PushedRegSet since we must not save that register
|
|
|
|
// and restore it after the call.
|
|
|
|
// We do this because, we look at the LV set *after* the instruction
|
|
|
|
// to determine, which LRs must be saved across calls. The return value
|
|
|
|
// of the call is live in this set - but we must not save/restore it.
|
|
|
|
//
|
|
|
|
if (const Value *origRetVal = argDesc->getReturnValue()) {
|
|
|
|
unsigned retValRefNum = (CallMI->getNumImplicitRefs() -
|
|
|
|
(argDesc->getIndirectFuncPtr()? 1 : 2));
|
|
|
|
const TmpInstruction* tmpRetVal =
|
|
|
|
cast<TmpInstruction>(CallMI->getImplicitRef(retValRefNum));
|
|
|
|
assert(tmpRetVal->getOperand(0) == origRetVal &&
|
|
|
|
tmpRetVal->getType() == origRetVal->getType() &&
|
|
|
|
"Wrong implicit ref?");
|
|
|
|
LiveRange *RetValLR = LRI.getLiveRangeForValue(tmpRetVal);
|
|
|
|
assert(RetValLR && "No LR for RetValue of call");
|
|
|
|
|
|
|
|
if (! RetValLR->isMarkedForSpill())
|
|
|
|
PushedRegSet.insert(MRI.getUnifiedRegNum(RetValLR->getRegClassID(),
|
|
|
|
RetValLR->getColor()));
|
|
|
|
}
|
|
|
|
|
|
|
|
const ValueSet &LVSetAft = LVI->getLiveVarSetAfterMInst(CallMI, BB);
|
|
|
|
ValueSet::const_iterator LIt = LVSetAft.begin();
|
|
|
|
|
|
|
|
// for each live var in live variable set after machine inst
|
|
|
|
for( ; LIt != LVSetAft.end(); ++LIt) {
|
|
|
|
|
|
|
|
// get the live range corresponding to live var
|
|
|
|
LiveRange *const LR = LRI.getLiveRangeForValue(*LIt);
|
|
|
|
|
|
|
|
// LR can be null if it is a const since a const
|
|
|
|
// doesn't have a dominating def - see Assumptions above
|
|
|
|
if( LR ) {
|
|
|
|
|
|
|
|
if(! LR->isMarkedForSpill()) {
|
|
|
|
|
|
|
|
assert(LR->hasColor() && "LR is neither spilled nor colored?");
|
|
|
|
unsigned RCID = LR->getRegClassID();
|
|
|
|
unsigned Color = LR->getColor();
|
|
|
|
|
|
|
|
if (MRI.isRegVolatile(RCID, Color) ) {
|
|
|
|
|
|
|
|
//if the function is special LLVM function,
|
|
|
|
//And the register is not modified by call, don't save and restore
|
|
|
|
if (isLLVMFirstTrigger && !MRI.modifiedByCall(RCID, Color))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// if the value is in both LV sets (i.e., live before and after
|
|
|
|
// the call machine instruction)
|
|
|
|
|
|
|
|
unsigned Reg = MRI.getUnifiedRegNum(RCID, Color);
|
|
|
|
|
|
|
|
if( PushedRegSet.find(Reg) == PushedRegSet.end() ) {
|
|
|
|
|
|
|
|
// if we haven't already pushed that register
|
|
|
|
|
|
|
|
unsigned RegType = MRI.getRegTypeForLR(LR);
|
|
|
|
|
|
|
|
// Now get two instructions - to push on stack and pop from stack
|
|
|
|
// and add them to InstrnsBefore and InstrnsAfter of the
|
|
|
|
// call instruction
|
|
|
|
//
|
|
|
|
int StackOff =
|
|
|
|
MF.getInfo()->pushTempValue(MRI.getSpilledRegSize(RegType));
|
|
|
|
|
|
|
|
//---- Insert code for pushing the reg on stack ----------
|
|
|
|
|
|
|
|
std::vector<MachineInstr*> AdIBef, AdIAft;
|
|
|
|
|
|
|
|
// We may need a scratch register to copy the saved value
|
|
|
|
// to/from memory. This may itself have to insert code to
|
|
|
|
// free up a scratch register. Any such code should go before
|
|
|
|
// the save code. The scratch register, if any, is by default
|
|
|
|
// temporary and not "used" by the instruction unless the
|
|
|
|
// copy code itself decides to keep the value in the scratch reg.
|
|
|
|
int scratchRegType = -1;
|
|
|
|
int scratchReg = -1;
|
|
|
|
if (MRI.regTypeNeedsScratchReg(RegType, scratchRegType))
|
|
|
|
{ // Find a register not live in the LVSet before CallMI
|
|
|
|
const ValueSet &LVSetBef =
|
|
|
|
LVI->getLiveVarSetBeforeMInst(CallMI, BB);
|
|
|
|
scratchReg = getUsableUniRegAtMI(scratchRegType, &LVSetBef,
|
|
|
|
CallMI, AdIBef, AdIAft);
|
|
|
|
assert(scratchReg != MRI.getInvalidRegNum());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (AdIBef.size() > 0)
|
|
|
|
instrnsBefore.insert(instrnsBefore.end(),
|
|
|
|
AdIBef.begin(), AdIBef.end());
|
|
|
|
|
|
|
|
MRI.cpReg2MemMI(instrnsBefore, Reg, MRI.getFramePointer(),
|
|
|
|
StackOff, RegType, scratchReg);
|
|
|
|
|
|
|
|
if (AdIAft.size() > 0)
|
|
|
|
instrnsBefore.insert(instrnsBefore.end(),
|
|
|
|
AdIAft.begin(), AdIAft.end());
|
|
|
|
|
|
|
|
//---- Insert code for popping the reg from the stack ----------
|
|
|
|
|
|
|
|
AdIBef.clear();
|
|
|
|
AdIAft.clear();
|
|
|
|
|
|
|
|
// We may need a scratch register to copy the saved value
|
|
|
|
// from memory. This may itself have to insert code to
|
|
|
|
// free up a scratch register. Any such code should go
|
|
|
|
// after the save code. As above, scratch is not marked "used".
|
|
|
|
//
|
|
|
|
scratchRegType = -1;
|
|
|
|
scratchReg = -1;
|
|
|
|
if (MRI.regTypeNeedsScratchReg(RegType, scratchRegType))
|
|
|
|
{ // Find a register not live in the LVSet after CallMI
|
|
|
|
scratchReg = getUsableUniRegAtMI(scratchRegType, &LVSetAft,
|
|
|
|
CallMI, AdIBef, AdIAft);
|
|
|
|
assert(scratchReg != MRI.getInvalidRegNum());
|
|
|
|
}
|
|
|
|
|
|
|
|
if (AdIBef.size() > 0)
|
|
|
|
instrnsAfter.insert(instrnsAfter.end(),
|
|
|
|
AdIBef.begin(), AdIBef.end());
|
|
|
|
|
|
|
|
MRI.cpMem2RegMI(instrnsAfter, MRI.getFramePointer(), StackOff,
|
|
|
|
Reg, RegType, scratchReg);
|
|
|
|
|
|
|
|
if (AdIAft.size() > 0)
|
|
|
|
instrnsAfter.insert(instrnsAfter.end(),
|
|
|
|
AdIAft.begin(), AdIAft.end());
|
|
|
|
|
|
|
|
PushedRegSet.insert(Reg);
|
|
|
|
|
|
|
|
if(DEBUG_RA) {
|
|
|
|
std::cerr << "\nFor call inst:" << *CallMI;
|
|
|
|
std::cerr << " -inserted caller saving instrs: Before:\n\t ";
|
|
|
|
for_each(instrnsBefore.begin(), instrnsBefore.end(),
|
|
|
|
std::mem_fun(&MachineInstr::dump));
|
|
|
|
std::cerr << " -and After:\n\t ";
|
|
|
|
for_each(instrnsAfter.begin(), instrnsAfter.end(),
|
|
|
|
std::mem_fun(&MachineInstr::dump));
|
|
|
|
}
|
|
|
|
} // if not already pushed
|
|
|
|
|
|
|
|
} // if LR has a volatile color
|
|
|
|
|
|
|
|
} // if LR has color
|
|
|
|
|
|
|
|
} // if there is a LR for Var
|
|
|
|
|
|
|
|
} // for each value in the LV set after instruction
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-10-28 18:12:02 +00:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
// We can use the following method to get a temporary register to be used
|
|
|
|
// BEFORE any given machine instruction. If there is a register available,
|
|
|
|
// this method will simply return that register and set MIBef = MIAft = NULL.
|
|
|
|
// Otherwise, it will return a register and MIAft and MIBef will contain
|
|
|
|
// two instructions used to free up this returned register.
|
2001-11-03 20:41:22 +00:00
|
|
|
// Returned register number is the UNIFIED register number
|
2001-10-28 18:12:02 +00:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
2002-07-08 23:15:32 +00:00
|
|
|
int PhyRegAlloc::getUsableUniRegAtMI(const int RegType,
|
|
|
|
const ValueSet *LVSetBef,
|
|
|
|
MachineInstr *MInst,
|
|
|
|
std::vector<MachineInstr*>& MIBef,
|
|
|
|
std::vector<MachineInstr*>& MIAft) {
|
|
|
|
|
2002-10-28 04:45:29 +00:00
|
|
|
RegClass* RC = getRegClassByID(MRI.getRegClassIDOfRegType(RegType));
|
2002-07-08 23:15:32 +00:00
|
|
|
|
2003-07-25 21:06:09 +00:00
|
|
|
int RegU = getUnusedUniRegAtMI(RC, RegType, MInst, LVSetBef);
|
2002-07-08 23:15:32 +00:00
|
|
|
|
|
|
|
if (RegU == -1) {
|
2001-11-03 20:41:22 +00:00
|
|
|
// we couldn't find an unused register. Generate code to free up a reg by
|
2001-10-28 18:12:02 +00:00
|
|
|
// saving it on stack and restoring after the instruction
|
2002-07-08 23:15:32 +00:00
|
|
|
|
2002-12-28 20:35:34 +00:00
|
|
|
int TmpOff = MF.getInfo()->pushTempValue(MRI.getSpilledRegSize(RegType));
|
2001-11-08 04:48:50 +00:00
|
|
|
|
2003-07-25 21:06:09 +00:00
|
|
|
RegU = getUniRegNotUsedByThisInst(RC, RegType, MInst);
|
2002-05-19 15:29:31 +00:00
|
|
|
|
2002-07-08 23:15:32 +00:00
|
|
|
// Check if we need a scratch register to copy this register to memory.
|
|
|
|
int scratchRegType = -1;
|
|
|
|
if (MRI.regTypeNeedsScratchReg(RegType, scratchRegType))
|
|
|
|
{
|
2002-10-28 04:45:29 +00:00
|
|
|
int scratchReg = getUsableUniRegAtMI(scratchRegType, LVSetBef,
|
|
|
|
MInst, MIBef, MIAft);
|
2002-07-08 23:15:32 +00:00
|
|
|
assert(scratchReg != MRI.getInvalidRegNum());
|
|
|
|
|
|
|
|
// We may as well hold the value in the scratch register instead
|
|
|
|
// of copying it to memory and back. But we have to mark the
|
|
|
|
// register as used by this instruction, so it does not get used
|
|
|
|
// as a scratch reg. by another operand or anyone else.
|
2002-10-22 23:16:21 +00:00
|
|
|
MInst->insertUsedReg(scratchReg);
|
2002-07-08 23:15:32 +00:00
|
|
|
MRI.cpReg2RegMI(MIBef, RegU, scratchReg, RegType);
|
|
|
|
MRI.cpReg2RegMI(MIAft, scratchReg, RegU, RegType);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{ // the register can be copied directly to/from memory so do it.
|
|
|
|
MRI.cpReg2MemMI(MIBef, RegU, MRI.getFramePointer(), TmpOff, RegType);
|
|
|
|
MRI.cpMem2RegMI(MIAft, MRI.getFramePointer(), TmpOff, RegU, RegType);
|
|
|
|
}
|
2001-10-28 18:12:02 +00:00
|
|
|
}
|
2002-07-08 23:15:32 +00:00
|
|
|
|
2001-11-15 20:23:19 +00:00
|
|
|
return RegU;
|
2001-10-28 18:12:02 +00:00
|
|
|
}
|
|
|
|
|
2003-07-29 19:49:21 +00:00
|
|
|
|
2001-10-28 18:12:02 +00:00
|
|
|
//----------------------------------------------------------------------------
|
2003-07-29 19:49:21 +00:00
|
|
|
// This method is called to get a new unused register that can be used
|
|
|
|
// to accomodate a temporary value. This method may be called several times
|
|
|
|
// for a single machine instruction. Each time it is called, it finds a
|
|
|
|
// register which is not live at that instruction and also which is not used
|
|
|
|
// by other spilled operands of the same instruction. Return register number
|
|
|
|
// is relative to the register class, NOT the unified number.
|
2001-10-28 18:12:02 +00:00
|
|
|
//----------------------------------------------------------------------------
|
2003-05-31 07:32:01 +00:00
|
|
|
|
2001-11-15 20:23:19 +00:00
|
|
|
int PhyRegAlloc::getUnusedUniRegAtMI(RegClass *RC,
|
2003-07-25 21:06:09 +00:00
|
|
|
const int RegType,
|
2003-07-29 19:49:21 +00:00
|
|
|
const MachineInstr *MInst,
|
|
|
|
const ValueSet* LVSetBef) {
|
2001-10-28 18:12:02 +00:00
|
|
|
|
2003-07-25 21:06:09 +00:00
|
|
|
RC->clearColorsUsed(); // Reset array
|
2003-07-29 19:49:21 +00:00
|
|
|
|
|
|
|
if (LVSetBef == NULL) {
|
|
|
|
LVSetBef = &LVI->getLiveVarSetBeforeMInst(MInst);
|
|
|
|
assert(LVSetBef != NULL && "Unable to get live-var set before MInst?");
|
|
|
|
}
|
|
|
|
|
2002-02-05 02:52:05 +00:00
|
|
|
ValueSet::const_iterator LIt = LVSetBef->begin();
|
2001-10-28 18:12:02 +00:00
|
|
|
|
|
|
|
// for each live var in live variable set after machine inst
|
2002-06-25 16:13:24 +00:00
|
|
|
for ( ; LIt != LVSetBef->end(); ++LIt) {
|
2001-10-28 18:12:02 +00:00
|
|
|
|
2003-07-25 21:06:09 +00:00
|
|
|
// get the live range corresponding to live var, and its RegClass
|
2001-10-28 18:12:02 +00:00
|
|
|
LiveRange *const LRofLV = LRI.getLiveRangeForValue(*LIt );
|
|
|
|
|
|
|
|
// LR can be null if it is a const since a const
|
|
|
|
// doesn't have a dominating def - see Assumptions above
|
2003-07-25 21:06:09 +00:00
|
|
|
if (LRofLV && LRofLV->getRegClass() == RC && LRofLV->hasColor())
|
|
|
|
RC->markColorsUsed(LRofLV->getColor(),
|
|
|
|
MRI.getRegTypeForLR(LRofLV), RegType);
|
2001-10-28 18:12:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// It is possible that one operand of this MInst was already spilled
|
|
|
|
// and it received some register temporarily. If that's the case,
|
|
|
|
// it is recorded in machine operand. We must skip such registers.
|
2003-05-31 07:32:01 +00:00
|
|
|
//
|
2003-07-25 21:06:09 +00:00
|
|
|
setRelRegsUsedByThisInst(RC, RegType, MInst);
|
|
|
|
|
|
|
|
int unusedReg = RC->getUnusedColor(RegType); // find first unused color
|
|
|
|
if (unusedReg >= 0)
|
|
|
|
return MRI.getUnifiedRegNum(RC->getID(), unusedReg);
|
2001-10-28 18:12:02 +00:00
|
|
|
|
2002-05-23 15:50:03 +00:00
|
|
|
return -1;
|
2001-10-28 18:12:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-11-15 20:23:19 +00:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
// Get any other register in a register class, other than what is used
|
|
|
|
// by operands of a machine instruction. Returns the unified reg number.
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
int PhyRegAlloc::getUniRegNotUsedByThisInst(RegClass *RC,
|
2003-07-25 21:06:09 +00:00
|
|
|
const int RegType,
|
2002-05-23 15:50:03 +00:00
|
|
|
const MachineInstr *MInst) {
|
2003-07-25 21:06:09 +00:00
|
|
|
RC->clearColorsUsed();
|
2001-11-15 20:23:19 +00:00
|
|
|
|
2003-07-25 21:06:09 +00:00
|
|
|
setRelRegsUsedByThisInst(RC, RegType, MInst);
|
2001-11-15 20:23:19 +00:00
|
|
|
|
2003-07-25 21:06:09 +00:00
|
|
|
// find the first unused color
|
|
|
|
int unusedReg = RC->getUnusedColor(RegType);
|
|
|
|
assert(unusedReg >= 0 &&
|
|
|
|
"FATAL: No free register could be found in reg class!!");
|
2001-11-15 20:23:19 +00:00
|
|
|
|
2003-07-25 21:06:09 +00:00
|
|
|
return MRI.getUnifiedRegNum(RC->getID(), unusedReg);
|
2001-11-15 20:23:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-10-28 18:12:02 +00:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
// This method modifies the IsColorUsedArr of the register class passed to it.
|
|
|
|
// It sets the bits corresponding to the registers used by this machine
|
2001-11-15 15:00:53 +00:00
|
|
|
// instructions. Both explicit and implicit operands are set.
|
2001-10-28 18:12:02 +00:00
|
|
|
//----------------------------------------------------------------------------
|
2003-07-25 21:06:09 +00:00
|
|
|
|
2003-08-05 21:55:58 +00:00
|
|
|
static void markRegisterUsed(int RegNo, RegClass *RC, int RegType,
|
|
|
|
const TargetRegInfo &TRI) {
|
|
|
|
unsigned classId = 0;
|
|
|
|
int classRegNum = TRI.getClassRegNum(RegNo, classId);
|
|
|
|
if (RC->getID() == classId)
|
|
|
|
RC->markColorsUsed(classRegNum, RegType, RegType);
|
|
|
|
}
|
|
|
|
|
|
|
|
void PhyRegAlloc::setRelRegsUsedByThisInst(RegClass *RC, int RegType,
|
|
|
|
const MachineInstr *MI)
|
2003-05-31 07:32:01 +00:00
|
|
|
{
|
2003-08-05 21:55:58 +00:00
|
|
|
assert(OperandsColoredMap[MI] == true &&
|
2003-05-31 07:32:01 +00:00
|
|
|
"Illegal to call setRelRegsUsedByThisInst() until colored operands "
|
|
|
|
"are marked for an instruction.");
|
2001-10-28 18:12:02 +00:00
|
|
|
|
2003-08-05 21:55:58 +00:00
|
|
|
// Add the registers already marked as used by the instruction.
|
|
|
|
for (unsigned i = 0, e = MI->getNumOperands(); i != e; ++i)
|
|
|
|
if (MI->getOperand(i).hasAllocatedReg())
|
|
|
|
markRegisterUsed(MI->getOperand(i).getAllocatedRegNum(), RC, RegType,MRI);
|
|
|
|
|
|
|
|
for (unsigned i = 0, e = MI->getNumImplicitRefs(); i != e; ++i)
|
|
|
|
if (MI->getImplicitOp(i).hasAllocatedReg())
|
|
|
|
markRegisterUsed(MI->getImplicitOp(i).getAllocatedRegNum(), RC,
|
|
|
|
RegType,MRI);
|
|
|
|
|
|
|
|
// The getRegsUsed() method returns the set of scratch registers that are used
|
|
|
|
// to save values across the instruction (e.g., for saving state register
|
|
|
|
// values).
|
|
|
|
const std::set<int> ®sUsed = MI->getRegsUsed();
|
|
|
|
for (std::set<int>::iterator I = regsUsed.begin(),
|
|
|
|
E = regsUsed.end(); I != E; ++I)
|
|
|
|
markRegisterUsed(*I, RC, RegType, MRI);
|
2003-05-31 07:32:01 +00:00
|
|
|
|
2002-07-08 23:15:32 +00:00
|
|
|
// If there are implicit references, mark their allocated regs as well
|
|
|
|
//
|
2003-08-05 21:55:58 +00:00
|
|
|
for (unsigned z=0; z < MI->getNumImplicitRefs(); z++)
|
2002-07-08 23:15:32 +00:00
|
|
|
if (const LiveRange*
|
2003-08-05 21:55:58 +00:00
|
|
|
LRofImpRef = LRI.getLiveRangeForValue(MI->getImplicitRef(z)))
|
2002-07-08 23:15:32 +00:00
|
|
|
if (LRofImpRef->hasColor())
|
|
|
|
// this implicit reference is in a LR that received a color
|
2003-07-25 21:06:09 +00:00
|
|
|
RC->markColorsUsed(LRofImpRef->getColor(),
|
|
|
|
MRI.getRegTypeForLR(LRofImpRef), RegType);
|
2001-10-28 18:12:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-10-23 21:38:00 +00:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
// If there are delay slots for an instruction, the instructions
|
|
|
|
// added after it must really go after the delayed instruction(s).
|
|
|
|
// So, we move the InstrAfter of that instruction to the
|
|
|
|
// corresponding delayed instruction using the following method.
|
|
|
|
//----------------------------------------------------------------------------
|
2001-10-16 01:23:19 +00:00
|
|
|
|
2003-05-31 07:32:01 +00:00
|
|
|
void PhyRegAlloc::move2DelayedInstr(const MachineInstr *OrigMI,
|
|
|
|
const MachineInstr *DelayedMI)
|
|
|
|
{
|
2003-07-29 19:49:21 +00:00
|
|
|
if (DEBUG_RA) {
|
|
|
|
cerr << "\nRegAlloc: Moved InstrnsAfter for: " << *OrigMI;
|
|
|
|
cerr << " to last delay slot instrn: " << *DelayedMI;
|
|
|
|
}
|
|
|
|
|
2001-10-23 21:38:00 +00:00
|
|
|
// "added after" instructions of the original instr
|
2002-05-19 15:29:31 +00:00
|
|
|
std::vector<MachineInstr *> &OrigAft = AddedInstrMap[OrigMI].InstrnsAfter;
|
2001-09-15 19:06:58 +00:00
|
|
|
|
2001-10-23 21:38:00 +00:00
|
|
|
// "added after" instructions of the delayed instr
|
2003-07-29 19:49:21 +00:00
|
|
|
std::vector<MachineInstr *> &DelayedAft=AddedInstrMap[DelayedMI].InstrnsAfter;
|
2001-09-15 19:06:58 +00:00
|
|
|
|
2001-10-23 21:38:00 +00:00
|
|
|
// go thru all the "added after instructions" of the original instruction
|
2003-05-31 07:32:01 +00:00
|
|
|
// and append them to the "added after instructions" of the delayed
|
2001-10-23 21:38:00 +00:00
|
|
|
// instructions
|
2002-01-20 22:54:45 +00:00
|
|
|
DelayedAft.insert(DelayedAft.end(), OrigAft.begin(), OrigAft.end());
|
2001-10-23 21:38:00 +00:00
|
|
|
|
|
|
|
// empty the "added after instructions" of the original instruction
|
|
|
|
OrigAft.clear();
|
|
|
|
}
|
2001-09-15 19:06:58 +00:00
|
|
|
|
2001-09-15 21:11:11 +00:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
// This method prints the code with registers after register allocation is
|
|
|
|
// complete.
|
|
|
|
//----------------------------------------------------------------------------
|
2001-09-15 19:06:58 +00:00
|
|
|
void PhyRegAlloc::printMachineCode()
|
|
|
|
{
|
|
|
|
|
2002-10-28 19:22:04 +00:00
|
|
|
cerr << "\n;************** Function " << Fn->getName()
|
2002-01-20 22:54:45 +00:00
|
|
|
<< " *****************\n";
|
2001-09-15 19:06:58 +00:00
|
|
|
|
2002-10-28 19:22:04 +00:00
|
|
|
for (MachineFunction::iterator BBI = MF.begin(), BBE = MF.end();
|
2002-04-07 20:49:59 +00:00
|
|
|
BBI != BBE; ++BBI) {
|
2002-10-28 19:22:04 +00:00
|
|
|
cerr << "\n"; printLabel(BBI->getBasicBlock()); cerr << ": ";
|
2001-09-14 21:18:34 +00:00
|
|
|
|
|
|
|
// get the iterator for machine instructions
|
2002-10-28 19:22:04 +00:00
|
|
|
MachineBasicBlock& MBB = *BBI;
|
|
|
|
MachineBasicBlock::iterator MII = MBB.begin();
|
2001-09-14 21:18:34 +00:00
|
|
|
|
|
|
|
// iterate over all the machine instructions in BB
|
2002-10-28 19:22:04 +00:00
|
|
|
for ( ; MII != MBB.end(); ++MII) {
|
2002-10-29 17:35:39 +00:00
|
|
|
MachineInstr *MInst = *MII;
|
2001-09-14 21:18:34 +00:00
|
|
|
|
2002-01-20 22:54:45 +00:00
|
|
|
cerr << "\n\t";
|
2002-10-29 17:35:39 +00:00
|
|
|
cerr << TM.getInstrInfo().getName(MInst->getOpCode());
|
2001-09-14 21:18:34 +00:00
|
|
|
|
2002-06-25 16:13:24 +00:00
|
|
|
for (unsigned OpNum=0; OpNum < MInst->getNumOperands(); ++OpNum) {
|
2001-09-14 21:18:34 +00:00
|
|
|
MachineOperand& Op = MInst->getOperand(OpNum);
|
|
|
|
|
2002-10-28 04:45:29 +00:00
|
|
|
if (Op.getType() == MachineOperand::MO_VirtualRegister ||
|
|
|
|
Op.getType() == MachineOperand::MO_CCRegister /*||
|
|
|
|
Op.getType() == MachineOperand::MO_PCRelativeDisp*/ ) {
|
2001-09-14 21:18:34 +00:00
|
|
|
|
2001-09-18 22:43:57 +00:00
|
|
|
const Value *const Val = Op.getVRegValue () ;
|
2001-09-15 21:11:11 +00:00
|
|
|
// ****this code is temporary till NULL Values are fixed
|
2002-06-25 16:13:24 +00:00
|
|
|
if (! Val ) {
|
2002-01-20 22:54:45 +00:00
|
|
|
cerr << "\t<*NULL*>";
|
2001-09-14 21:18:34 +00:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2001-09-18 22:43:57 +00:00
|
|
|
// if a label or a constant
|
2002-06-25 16:13:24 +00:00
|
|
|
if (isa<BasicBlock>(Val)) {
|
2002-01-20 22:54:45 +00:00
|
|
|
cerr << "\t"; printLabel( Op.getVRegValue () );
|
|
|
|
} else {
|
2001-09-18 22:43:57 +00:00
|
|
|
// else it must be a register value
|
|
|
|
const int RegNum = Op.getAllocatedRegNum();
|
|
|
|
|
2002-01-20 22:54:45 +00:00
|
|
|
cerr << "\t" << "%" << MRI.getUnifiedRegName( RegNum );
|
2001-11-15 20:23:19 +00:00
|
|
|
if (Val->hasName() )
|
2002-01-20 22:54:45 +00:00
|
|
|
cerr << "(" << Val->getName() << ")";
|
2001-11-15 20:23:19 +00:00
|
|
|
else
|
2002-01-20 22:54:45 +00:00
|
|
|
cerr << "(" << Val << ")";
|
2001-11-15 20:23:19 +00:00
|
|
|
|
2003-05-27 00:05:23 +00:00
|
|
|
if (Op.opIsDefOnly() || Op.opIsDefAndUse())
|
2002-01-20 22:54:45 +00:00
|
|
|
cerr << "*";
|
2001-11-15 20:23:19 +00:00
|
|
|
|
|
|
|
const LiveRange *LROfVal = LRI.getLiveRangeForValue(Val);
|
2002-06-25 16:13:24 +00:00
|
|
|
if (LROfVal )
|
|
|
|
if (LROfVal->hasSpillOffset() )
|
2002-01-20 22:54:45 +00:00
|
|
|
cerr << "$";
|
2001-09-18 22:43:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2002-10-28 04:45:29 +00:00
|
|
|
else if (Op.getType() == MachineOperand::MO_MachineRegister) {
|
2002-01-20 22:54:45 +00:00
|
|
|
cerr << "\t" << "%" << MRI.getUnifiedRegName(Op.getMachineRegNum());
|
2001-09-15 19:06:58 +00:00
|
|
|
}
|
|
|
|
|
2001-09-14 21:18:34 +00:00
|
|
|
else
|
2002-01-20 22:54:45 +00:00
|
|
|
cerr << "\t" << Op; // use dump field
|
2001-09-14 21:18:34 +00:00
|
|
|
}
|
|
|
|
|
2001-10-16 01:23:19 +00:00
|
|
|
|
2001-09-15 19:06:58 +00:00
|
|
|
|
2001-10-16 01:23:19 +00:00
|
|
|
unsigned NumOfImpRefs = MInst->getNumImplicitRefs();
|
2002-06-25 16:13:24 +00:00
|
|
|
if (NumOfImpRefs > 0) {
|
2002-01-20 22:54:45 +00:00
|
|
|
cerr << "\tImplicit:";
|
2001-09-15 19:06:58 +00:00
|
|
|
|
2002-06-25 16:13:24 +00:00
|
|
|
for (unsigned z=0; z < NumOfImpRefs; z++)
|
2002-02-05 01:43:49 +00:00
|
|
|
cerr << RAV(MInst->getImplicitRef(z)) << "\t";
|
2001-10-16 01:23:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
} // for all machine instructions
|
|
|
|
|
2002-01-20 22:54:45 +00:00
|
|
|
cerr << "\n";
|
2001-10-16 01:23:19 +00:00
|
|
|
|
|
|
|
} // for all BBs
|
2001-09-15 19:06:58 +00:00
|
|
|
|
2002-01-20 22:54:45 +00:00
|
|
|
cerr << "\n";
|
2001-09-14 21:18:34 +00:00
|
|
|
}
|
|
|
|
|
2001-09-18 22:43:57 +00:00
|
|
|
|
2001-09-30 23:11:59 +00:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
void PhyRegAlloc::colorIncomingArgs()
|
|
|
|
{
|
2003-07-29 19:49:21 +00:00
|
|
|
MRI.colorMethodArgs(Fn, LRI, AddedInstrAtEntry.InstrnsBefore,
|
|
|
|
AddedInstrAtEntry.InstrnsAfter);
|
2001-09-30 23:11:59 +00:00
|
|
|
}
|
|
|
|
|
2001-09-18 22:43:57 +00:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
// Used to generate a label for a basic block
|
|
|
|
//----------------------------------------------------------------------------
|
2002-10-28 19:22:04 +00:00
|
|
|
void PhyRegAlloc::printLabel(const Value *Val) {
|
2002-01-20 22:54:45 +00:00
|
|
|
if (Val->hasName())
|
|
|
|
cerr << Val->getName();
|
2001-09-15 19:06:58 +00:00
|
|
|
else
|
2002-10-28 19:22:04 +00:00
|
|
|
cerr << "Label" << Val;
|
2001-09-15 19:06:58 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2001-10-19 21:39:31 +00:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
// This method calls setSugColorUsable method of each live range. This
|
|
|
|
// will determine whether the suggested color of LR is really usable.
|
|
|
|
// A suggested color is not usable when the suggested color is volatile
|
|
|
|
// AND when there are call interferences
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void PhyRegAlloc::markUnusableSugColors()
|
|
|
|
{
|
|
|
|
// hash map iterator
|
|
|
|
LiveRangeMapType::const_iterator HMI = (LRI.getLiveRangeMap())->begin();
|
|
|
|
LiveRangeMapType::const_iterator HMIEnd = (LRI.getLiveRangeMap())->end();
|
|
|
|
|
2002-06-25 16:13:24 +00:00
|
|
|
for (; HMI != HMIEnd ; ++HMI ) {
|
2002-02-03 07:46:34 +00:00
|
|
|
if (HMI->first) {
|
|
|
|
LiveRange *L = HMI->second; // get the LiveRange
|
|
|
|
if (L) {
|
2002-06-25 16:13:24 +00:00
|
|
|
if (L->hasSuggestedColor()) {
|
2002-02-03 07:46:34 +00:00
|
|
|
int RCID = L->getRegClass()->getID();
|
2002-06-25 16:13:24 +00:00
|
|
|
if (MRI.isRegVolatile( RCID, L->getSuggestedColor()) &&
|
2001-10-19 21:39:31 +00:00
|
|
|
L->isCallInterference() )
|
|
|
|
L->setSuggestedColorUsable( false );
|
|
|
|
else
|
|
|
|
L->setSuggestedColorUsable( true );
|
|
|
|
}
|
|
|
|
} // if L->hasSuggestedColor()
|
|
|
|
}
|
|
|
|
} // for all LR's in hash map
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2001-10-28 18:12:02 +00:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
// The following method will set the stack offsets of the live ranges that
|
|
|
|
// are decided to be spillled. This must be called just after coloring the
|
|
|
|
// LRs using the graph coloring algo. For each live range that is spilled,
|
|
|
|
// this method allocate a new spill position on the stack.
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
2002-02-05 03:52:29 +00:00
|
|
|
void PhyRegAlloc::allocateStackSpace4SpilledLRs() {
|
2002-09-14 23:05:33 +00:00
|
|
|
if (DEBUG_RA) cerr << "\nSetting LR stack offsets for spills...\n";
|
2001-10-28 18:12:02 +00:00
|
|
|
|
2002-02-05 03:52:29 +00:00
|
|
|
LiveRangeMapType::const_iterator HMI = LRI.getLiveRangeMap()->begin();
|
|
|
|
LiveRangeMapType::const_iterator HMIEnd = LRI.getLiveRangeMap()->end();
|
2001-10-28 18:12:02 +00:00
|
|
|
|
2002-06-25 16:13:24 +00:00
|
|
|
for ( ; HMI != HMIEnd ; ++HMI) {
|
2002-02-05 03:52:29 +00:00
|
|
|
if (HMI->first && HMI->second) {
|
2003-07-10 19:42:55 +00:00
|
|
|
LiveRange *L = HMI->second; // get the LiveRange
|
|
|
|
if (L->isMarkedForSpill()) { // NOTE: allocating size of long Type **
|
2002-12-28 20:35:34 +00:00
|
|
|
int stackOffset = MF.getInfo()->allocateSpilledValue(Type::LongTy);
|
2002-09-14 23:05:33 +00:00
|
|
|
L->setSpillOffFromFP(stackOffset);
|
|
|
|
if (DEBUG_RA)
|
|
|
|
cerr << " LR# " << L->getUserIGNode()->getIndex()
|
|
|
|
<< ": stack-offset = " << stackOffset << "\n";
|
|
|
|
}
|
2002-02-05 03:52:29 +00:00
|
|
|
}
|
|
|
|
} // for all LR's in hash map
|
2001-10-28 18:12:02 +00:00
|
|
|
}
|
2001-10-19 21:39:31 +00:00
|
|
|
|
|
|
|
|
2001-09-18 22:43:57 +00:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
// The entry pont to Register Allocation
|
|
|
|
//----------------------------------------------------------------------------
|
2001-09-14 21:18:34 +00:00
|
|
|
|
|
|
|
void PhyRegAlloc::allocateRegisters()
|
|
|
|
{
|
2001-09-30 23:11:59 +00:00
|
|
|
|
|
|
|
// make sure that we put all register classes into the RegClassList
|
|
|
|
// before we call constructLiveRanges (now done in the constructor of
|
|
|
|
// PhyRegAlloc class).
|
2002-01-07 19:19:18 +00:00
|
|
|
//
|
|
|
|
LRI.constructLiveRanges(); // create LR info
|
2001-09-14 21:18:34 +00:00
|
|
|
|
2002-09-14 23:05:33 +00:00
|
|
|
if (DEBUG_RA >= RA_DEBUG_LiveRanges)
|
2001-09-14 21:18:34 +00:00
|
|
|
LRI.printLiveRanges();
|
2001-09-30 23:11:59 +00:00
|
|
|
|
2001-09-14 21:18:34 +00:00
|
|
|
createIGNodeListsAndIGs(); // create IGNode list and IGs
|
|
|
|
|
|
|
|
buildInterferenceGraphs(); // build IGs in all reg classes
|
|
|
|
|
2001-09-30 23:11:59 +00:00
|
|
|
|
2002-09-14 23:05:33 +00:00
|
|
|
if (DEBUG_RA >= RA_DEBUG_LiveRanges) {
|
2001-09-14 21:18:34 +00:00
|
|
|
// print all LRs in all reg classes
|
2002-06-25 16:13:24 +00:00
|
|
|
for ( unsigned rc=0; rc < NumOfRegClasses ; rc++)
|
|
|
|
RegClassList[rc]->printIGNodeList();
|
2001-09-30 23:11:59 +00:00
|
|
|
|
2001-09-14 21:18:34 +00:00
|
|
|
// print IGs in all register classes
|
2002-06-25 16:13:24 +00:00
|
|
|
for ( unsigned rc=0; rc < NumOfRegClasses ; rc++)
|
|
|
|
RegClassList[rc]->printIG();
|
2001-09-14 21:18:34 +00:00
|
|
|
}
|
2002-01-07 19:19:18 +00:00
|
|
|
|
2001-09-14 21:18:34 +00:00
|
|
|
LRI.coalesceLRs(); // coalesce all live ranges
|
2001-11-03 17:13:27 +00:00
|
|
|
|
2002-09-14 23:05:33 +00:00
|
|
|
if (DEBUG_RA >= RA_DEBUG_LiveRanges) {
|
2001-09-14 21:18:34 +00:00
|
|
|
// print all LRs in all reg classes
|
2002-10-28 19:22:04 +00:00
|
|
|
for (unsigned rc=0; rc < NumOfRegClasses; rc++)
|
|
|
|
RegClassList[rc]->printIGNodeList();
|
2001-09-30 23:11:59 +00:00
|
|
|
|
2001-09-14 21:18:34 +00:00
|
|
|
// print IGs in all register classes
|
2002-10-28 19:22:04 +00:00
|
|
|
for (unsigned rc=0; rc < NumOfRegClasses; rc++)
|
|
|
|
RegClassList[rc]->printIG();
|
2001-09-14 21:18:34 +00:00
|
|
|
}
|
|
|
|
|
2001-10-19 21:39:31 +00:00
|
|
|
|
|
|
|
// mark un-usable suggested color before graph coloring algorithm.
|
|
|
|
// When this is done, the graph coloring algo will not reserve
|
|
|
|
// suggested color unnecessarily - they can be used by another LR
|
2002-01-07 19:19:18 +00:00
|
|
|
//
|
2001-10-19 21:39:31 +00:00
|
|
|
markUnusableSugColors();
|
|
|
|
|
|
|
|
// color all register classes using the graph coloring algo
|
2002-06-25 16:13:24 +00:00
|
|
|
for (unsigned rc=0; rc < NumOfRegClasses ; rc++)
|
2002-10-28 19:22:04 +00:00
|
|
|
RegClassList[rc]->colorAllRegs();
|
2001-09-18 22:43:57 +00:00
|
|
|
|
2002-12-28 20:35:34 +00:00
|
|
|
// Atter graph coloring, if some LRs did not receive a color (i.e, spilled)
|
2001-10-28 18:12:02 +00:00
|
|
|
// a poistion for such spilled LRs
|
2002-01-07 19:19:18 +00:00
|
|
|
//
|
2001-10-28 18:12:02 +00:00
|
|
|
allocateStackSpace4SpilledLRs();
|
2001-09-18 22:43:57 +00:00
|
|
|
|
2003-05-31 07:32:01 +00:00
|
|
|
// Reset the temp. area on the stack before use by the first instruction.
|
|
|
|
// This will also happen after updating each instruction.
|
|
|
|
MF.getInfo()->popAllTempValues();
|
2001-11-15 22:02:06 +00:00
|
|
|
|
2002-01-07 19:19:18 +00:00
|
|
|
// color incoming args - if the correct color was not received
|
|
|
|
// insert code to copy to the correct register
|
|
|
|
//
|
2001-09-30 23:11:59 +00:00
|
|
|
colorIncomingArgs();
|
2001-09-14 21:18:34 +00:00
|
|
|
|
2002-01-07 19:19:18 +00:00
|
|
|
// Now update the machine code with register names and add any
|
|
|
|
// additional code inserted by the register allocator to the instruction
|
|
|
|
// stream
|
|
|
|
//
|
2001-09-15 21:11:11 +00:00
|
|
|
updateMachineCode();
|
2002-01-07 19:19:18 +00:00
|
|
|
|
2001-09-19 16:26:23 +00:00
|
|
|
if (DEBUG_RA) {
|
2002-09-14 23:05:33 +00:00
|
|
|
cerr << "\n**** Machine Code After Register Allocation:\n\n";
|
2002-10-28 19:22:04 +00:00
|
|
|
MF.dump();
|
2001-09-19 16:26:23 +00:00
|
|
|
}
|
2001-09-14 21:18:34 +00:00
|
|
|
}
|
|
|
|
|
2001-09-18 22:43:57 +00:00
|
|
|
|
|
|
|
|