2002-01-20 22:54:45 +00:00
|
|
|
/* Title: PhyRegAlloc.h -*- C++ -*-
|
2001-09-08 14:22:50 +00:00
|
|
|
Author: Ruchira Sasanka
|
|
|
|
Date: Aug 20, 01
|
|
|
|
Purpose: This is the main entry point for register allocation.
|
|
|
|
|
|
|
|
Notes:
|
2002-01-07 19:16:26 +00:00
|
|
|
=====
|
2001-09-08 14:22:50 +00:00
|
|
|
|
|
|
|
* RegisterClasses: Each RegClass accepts a
|
|
|
|
MachineRegClass which contains machine specific info about that register
|
|
|
|
class. The code in the RegClass is machine independent and they use
|
|
|
|
access functions in the MachineRegClass object passed into it to get
|
|
|
|
machine specific info.
|
|
|
|
|
|
|
|
* Machine dependent work: All parts of the register coloring algorithm
|
|
|
|
except coloring of an individual node are machine independent.
|
|
|
|
|
2002-01-07 19:16:26 +00:00
|
|
|
Register allocation must be done as:
|
2001-09-08 14:22:50 +00:00
|
|
|
|
2002-01-07 19:16:26 +00:00
|
|
|
MethodLiveVarInfo LVI(*MethodI ); // compute LV info
|
|
|
|
LVI.analyze();
|
2001-09-08 14:22:50 +00:00
|
|
|
|
2002-01-07 19:16:26 +00:00
|
|
|
TargetMachine &target = ....
|
|
|
|
|
|
|
|
|
|
|
|
PhyRegAlloc PRA(*MethodI, target, &LVI); // allocate regs
|
|
|
|
PRA.allocateRegisters();
|
2001-09-08 14:22:50 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PHY_REG_ALLOC_H
|
|
|
|
#define PHY_REG_ALLOC_H
|
|
|
|
|
|
|
|
#include "llvm/CodeGen/RegClass.h"
|
|
|
|
#include "llvm/CodeGen/LiveRangeInfo.h"
|
2001-10-15 16:22:44 +00:00
|
|
|
#include <deque>
|
2002-02-03 07:13:04 +00:00
|
|
|
class MachineCodeForMethod;
|
2002-02-04 05:52:08 +00:00
|
|
|
class MachineRegInfo;
|
|
|
|
class MethodLiveVarInfo;
|
|
|
|
class MachineInstr;
|
2002-02-04 17:48:00 +00:00
|
|
|
namespace cfg { class LoopInfo; }
|
2001-10-28 18:15:12 +00:00
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
// Class AddedInstrns:
|
|
|
|
// When register allocator inserts new instructions in to the existing
|
|
|
|
// instruction stream, it does NOT directly modify the instruction stream.
|
|
|
|
// Rather, it creates an object of AddedInstrns and stick it in the
|
|
|
|
// AddedInstrMap for an existing instruction. This class contains two vectors
|
|
|
|
// to store such instructions added before and after an existing instruction.
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
2001-09-08 14:22:50 +00:00
|
|
|
class AddedInstrns
|
|
|
|
{
|
|
|
|
public:
|
2002-01-20 22:54:45 +00:00
|
|
|
std::deque<MachineInstr*> InstrnsBefore;// Added insts BEFORE an existing inst
|
|
|
|
std::deque<MachineInstr*> InstrnsAfter; // Added insts AFTER an existing inst
|
2001-09-08 14:22:50 +00:00
|
|
|
};
|
|
|
|
|
2002-01-20 22:54:45 +00:00
|
|
|
typedef std::hash_map<const MachineInstr *, AddedInstrns *> AddedInstrMapType;
|
2001-09-08 14:22:50 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2001-10-28 18:15:12 +00:00
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
// class PhyRegAlloc:
|
|
|
|
// Main class the register allocator. Call allocateRegisters() to allocate
|
|
|
|
// registers for a Method.
|
|
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
2002-02-04 17:38:48 +00:00
|
|
|
class PhyRegAlloc: public NonCopyable {
|
2001-09-08 14:22:50 +00:00
|
|
|
|
2002-01-20 22:54:45 +00:00
|
|
|
std::vector<RegClass *> RegClassList; // vector of register classes
|
2001-09-08 14:22:50 +00:00
|
|
|
const TargetMachine &TM; // target machine
|
2001-11-08 04:48:50 +00:00
|
|
|
const Method* Meth; // name of the method we work on
|
2002-02-03 07:13:04 +00:00
|
|
|
MachineCodeForMethod &mcInfo; // descriptor for method's native code
|
2001-09-08 14:22:50 +00:00
|
|
|
MethodLiveVarInfo *const LVI; // LV information for this method
|
|
|
|
// (already computed for BBs)
|
|
|
|
LiveRangeInfo LRI; // LR info (will be computed)
|
|
|
|
const MachineRegInfo &MRI; // Machine Register information
|
|
|
|
const unsigned NumOfRegClasses; // recorded here for efficiency
|
|
|
|
|
2001-11-03 17:14:44 +00:00
|
|
|
|
2001-09-08 14:22:50 +00:00
|
|
|
AddedInstrMapType AddedInstrMap; // to store instrns added in this phase
|
2002-02-04 17:48:00 +00:00
|
|
|
cfg::LoopInfo *LoopDepthCalc; // to calculate loop depths
|
2002-01-07 19:16:26 +00:00
|
|
|
ReservedColorListType ResColList; // A set of reserved regs if desired.
|
|
|
|
// currently not used
|
2001-09-08 14:22:50 +00:00
|
|
|
|
2002-02-04 17:38:48 +00:00
|
|
|
public:
|
|
|
|
PhyRegAlloc(Method *M, const TargetMachine& TM, MethodLiveVarInfo *Lvi,
|
2002-02-04 17:48:00 +00:00
|
|
|
cfg::LoopInfo *LoopDepthCalc);
|
2002-02-04 17:38:48 +00:00
|
|
|
~PhyRegAlloc();
|
|
|
|
|
|
|
|
// main method called for allocating registers
|
|
|
|
//
|
|
|
|
void allocateRegisters();
|
2002-03-18 03:26:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
// access to register classes by class ID
|
|
|
|
//
|
|
|
|
const RegClass* getRegClassByID(unsigned int id) const {
|
|
|
|
return RegClassList[id];
|
|
|
|
}
|
|
|
|
RegClass* getRegClassByID(unsigned int id) {
|
|
|
|
return RegClassList[id]; }
|
|
|
|
|
|
|
|
|
2002-02-04 17:38:48 +00:00
|
|
|
private:
|
|
|
|
|
2001-11-03 17:14:44 +00:00
|
|
|
|
2002-01-07 19:16:26 +00:00
|
|
|
|
|
|
|
//------- ------------------ private methods---------------------------------
|
2001-09-08 14:22:50 +00:00
|
|
|
|
2002-02-05 02:51:01 +00:00
|
|
|
void addInterference(const Value *Def, const ValueSet *LVSet,
|
|
|
|
bool isCallInst);
|
2001-09-08 14:22:50 +00:00
|
|
|
|
|
|
|
void addInterferencesForArgs();
|
|
|
|
void createIGNodeListsAndIGs();
|
|
|
|
void buildInterferenceGraphs();
|
2001-10-16 01:23:19 +00:00
|
|
|
|
2001-10-19 17:21:59 +00:00
|
|
|
void setCallInterferences(const MachineInstr *MInst,
|
2002-02-05 02:51:01 +00:00
|
|
|
const ValueSet *LVSetAft );
|
2001-09-08 14:22:50 +00:00
|
|
|
|
2001-10-23 21:38:42 +00:00
|
|
|
void move2DelayedInstr(const MachineInstr *OrigMI,
|
|
|
|
const MachineInstr *DelayedMI );
|
|
|
|
|
2001-10-19 21:42:06 +00:00
|
|
|
void markUnusableSugColors();
|
2001-10-28 18:15:12 +00:00
|
|
|
void allocateStackSpace4SpilledLRs();
|
|
|
|
|
2001-11-08 20:55:05 +00:00
|
|
|
void insertCode4SpilledLR (const LiveRange *LR,
|
|
|
|
MachineInstr *MInst,
|
|
|
|
const BasicBlock *BB,
|
|
|
|
const unsigned OpNum);
|
2001-10-19 21:42:06 +00:00
|
|
|
|
2002-01-20 22:54:45 +00:00
|
|
|
inline void constructLiveRanges() { LRI.constructLiveRanges(); }
|
2001-09-08 14:22:50 +00:00
|
|
|
|
|
|
|
void colorIncomingArgs();
|
2001-09-30 23:19:57 +00:00
|
|
|
void colorCallRetArgs();
|
2001-09-08 14:22:50 +00:00
|
|
|
void updateMachineCode();
|
2001-09-30 23:19:57 +00:00
|
|
|
|
2001-09-15 19:08:41 +00:00
|
|
|
void printLabel(const Value *const Val);
|
|
|
|
void printMachineCode();
|
2001-10-28 18:15:12 +00:00
|
|
|
|
|
|
|
friend class UltraSparcRegInfo;
|
2001-11-03 20:41:22 +00:00
|
|
|
|
|
|
|
|
2002-02-05 02:51:01 +00:00
|
|
|
int getUsableUniRegAtMI(RegClass *RC, int RegType,
|
2001-11-15 20:22:37 +00:00
|
|
|
const MachineInstr *MInst,
|
2002-03-18 03:26:48 +00:00
|
|
|
const ValueSet *LVSetBef, MachineInstr *&MIBef,
|
|
|
|
MachineInstr *&MIAft );
|
2001-11-03 20:41:22 +00:00
|
|
|
|
2001-11-15 20:22:37 +00:00
|
|
|
int getUnusedUniRegAtMI(RegClass *RC, const MachineInstr *MInst,
|
2002-02-05 02:51:01 +00:00
|
|
|
const ValueSet *LVSetBef);
|
2001-11-03 20:41:22 +00:00
|
|
|
|
2001-11-15 20:22:37 +00:00
|
|
|
void setRelRegsUsedByThisInst(RegClass *RC, const MachineInstr *MInst );
|
|
|
|
int getUniRegNotUsedByThisInst(RegClass *RC, const MachineInstr *MInst);
|
2001-10-28 18:15:12 +00:00
|
|
|
|
2001-11-14 15:37:13 +00:00
|
|
|
void addInterf4PseudoInstr(const MachineInstr *MInst);
|
2001-09-08 14:22:50 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|