mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 04:30:12 +00:00
d23a229c4c
AddedInstrns sets for the first machine instruction. It is hard to ensure that the right order is preserved, and sure enough, the order was broken. Instead, use a separate set for the function entry. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@2318 91177308-0d34-0410-b5e6-96231b3b80d8
161 lines
5.3 KiB
C++
161 lines
5.3 KiB
C++
/* Title: PhyRegAlloc.h -*- C++ -*-
|
|
Author: Ruchira Sasanka
|
|
Date: Aug 20, 01
|
|
Purpose: This is the main entry point for register allocation.
|
|
|
|
Notes:
|
|
=====
|
|
|
|
* 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.
|
|
|
|
Register allocation must be done as:
|
|
|
|
MethodLiveVarInfo LVI(*MethodI ); // compute LV info
|
|
LVI.analyze();
|
|
|
|
TargetMachine &target = ....
|
|
|
|
|
|
PhyRegAlloc PRA(*MethodI, target, &LVI); // allocate regs
|
|
PRA.allocateRegisters();
|
|
*/
|
|
|
|
#ifndef PHY_REG_ALLOC_H
|
|
#define PHY_REG_ALLOC_H
|
|
|
|
#include "llvm/CodeGen/RegClass.h"
|
|
#include "llvm/CodeGen/LiveRangeInfo.h"
|
|
#include <deque>
|
|
class MachineCodeForMethod;
|
|
class MachineRegInfo;
|
|
class MethodLiveVarInfo;
|
|
class MachineInstr;
|
|
namespace cfg { class LoopInfo; }
|
|
|
|
//----------------------------------------------------------------------------
|
|
// 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.
|
|
//----------------------------------------------------------------------------
|
|
|
|
struct AddedInstrns {
|
|
std::deque<MachineInstr*> InstrnsBefore;// Added insts BEFORE an existing inst
|
|
std::deque<MachineInstr*> InstrnsAfter; // Added insts AFTER an existing inst
|
|
};
|
|
|
|
typedef std::map<const MachineInstr *, AddedInstrns> AddedInstrMapType;
|
|
|
|
|
|
|
|
//----------------------------------------------------------------------------
|
|
// class PhyRegAlloc:
|
|
// Main class the register allocator. Call allocateRegisters() to allocate
|
|
// registers for a Function.
|
|
//----------------------------------------------------------------------------
|
|
|
|
|
|
class PhyRegAlloc: public NonCopyable {
|
|
|
|
std::vector<RegClass *> RegClassList; // vector of register classes
|
|
const TargetMachine &TM; // target machine
|
|
const Function *Meth; // name of the function we work on
|
|
MachineCodeForMethod &mcInfo; // descriptor for method's native code
|
|
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
|
|
|
|
|
|
AddedInstrMapType AddedInstrMap; // to store instrns added in this phase
|
|
AddedInstrns AddedInstrAtEntry; // to store instrns added at entry
|
|
cfg::LoopInfo *LoopDepthCalc; // to calculate loop depths
|
|
ReservedColorListType ResColList; // A set of reserved regs if desired.
|
|
// currently not used
|
|
|
|
public:
|
|
PhyRegAlloc(Function *F, const TargetMachine& TM, MethodLiveVarInfo *Lvi,
|
|
cfg::LoopInfo *LoopDepthCalc);
|
|
~PhyRegAlloc();
|
|
|
|
// main method called for allocating registers
|
|
//
|
|
void allocateRegisters();
|
|
|
|
|
|
// 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]; }
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
//------- ------------------ private methods---------------------------------
|
|
|
|
void addInterference(const Value *Def, const ValueSet *LVSet,
|
|
bool isCallInst);
|
|
|
|
void addInterferencesForArgs();
|
|
void createIGNodeListsAndIGs();
|
|
void buildInterferenceGraphs();
|
|
|
|
void setCallInterferences(const MachineInstr *MInst,
|
|
const ValueSet *LVSetAft );
|
|
|
|
void move2DelayedInstr(const MachineInstr *OrigMI,
|
|
const MachineInstr *DelayedMI );
|
|
|
|
void markUnusableSugColors();
|
|
void allocateStackSpace4SpilledLRs();
|
|
|
|
void insertCode4SpilledLR (const LiveRange *LR,
|
|
MachineInstr *MInst,
|
|
const BasicBlock *BB,
|
|
const unsigned OpNum);
|
|
|
|
inline void constructLiveRanges() { LRI.constructLiveRanges(); }
|
|
|
|
void colorIncomingArgs();
|
|
void colorCallRetArgs();
|
|
void updateMachineCode();
|
|
|
|
void printLabel(const Value *const Val);
|
|
void printMachineCode();
|
|
|
|
friend class UltraSparcRegInfo;
|
|
|
|
|
|
int getUsableUniRegAtMI(RegClass *RC, int RegType,
|
|
const MachineInstr *MInst,
|
|
const ValueSet *LVSetBef, MachineInstr *&MIBef,
|
|
MachineInstr *&MIAft );
|
|
|
|
int getUnusedUniRegAtMI(RegClass *RC, const MachineInstr *MInst,
|
|
const ValueSet *LVSetBef);
|
|
|
|
void setRelRegsUsedByThisInst(RegClass *RC, const MachineInstr *MInst );
|
|
int getUniRegNotUsedByThisInst(RegClass *RC, const MachineInstr *MInst);
|
|
|
|
void addInterf4PseudoInstr(const MachineInstr *MInst);
|
|
};
|
|
|
|
|
|
#endif
|
|
|