hanchenye-llvm-project/llvm/lib/CodeGen/RegAlloc/LiveRangeInfo.h

135 lines
3.7 KiB
C
Raw Normal View History

/* Title: LiveRangeInfo.h -*- C++ -*-
2001-09-08 22:10:34 +08:00
Author: Ruchira Sasanka
Date: Jun 30, 01
Purpose:
This file contains the class LiveRangeInfo which constructs and keeps
the LiveRangMap which contains all the live ranges used in a method.
2001-09-08 22:10:34 +08:00
Assumptions:
All variables (llvm Values) are defined before they are used. However, a
constant may not be defined in the machine instruction stream if it can be
used as an immediate value within a machine instruction. However, register
allocation does not have to worry about immediate constants since they
do not require registers.
Since an llvm Value has a list of uses associated, it is sufficient to
record only the defs in a Live Range.
*/
#ifndef LIVE_RANGE_INFO_H
#define LIVE_RANGE_INFO_H
#include "llvm/Type.h"
#include "llvm/Method.h"
#include "llvm/CodeGen/MachineInstr.h"
#include "llvm/Analysis/LiveVar/LiveVarSet.h"
#include "llvm/CodeGen/IGNode.h"
#include "llvm/CodeGen/LiveRange.h"
#include "llvm/CodeGen/RegClass.h"
typedef std::hash_map<const Value*, LiveRange*> LiveRangeMapType;
typedef std::vector<const MachineInstr*> CallRetInstrListType;
2001-09-08 22:10:34 +08:00
//----------------------------------------------------------------------------
// Class LiveRangeInfo
//
// Constructs and keeps the LiveRangMap which contains all the live
// ranges used in a method. Also contain methods to coalesce live ranges.
//----------------------------------------------------------------------------
2001-09-08 22:10:34 +08:00
class LiveRangeInfo
{
private:
const Method *const Meth; // Method for which live range info is held
LiveRangeMapType LiveRangeMap; // A map from Value * to LiveRange * to
// record all live ranges in a method
2001-09-08 22:10:34 +08:00
// created by constructLiveRanges
2001-09-15 08:33:26 +08:00
const TargetMachine& TM; // target machine description
std::vector<RegClass *> & RegClassList;// vector containing register classess
const MachineRegInfo& MRI; // machine reg info
2001-09-15 08:33:26 +08:00
CallRetInstrListType CallRetInstrList; // a list of all call/ret instrs
2001-09-15 08:33:26 +08:00
//------------ Private methods (see LiveRangeInfo.cpp for description)-------
2001-09-08 22:10:34 +08:00
void unionAndUpdateLRs(LiveRange *L1, LiveRange *L2);
void addInterference(const Instruction *const Inst,
const LiveVarSet *const LVSet);
2001-10-16 00:22:44 +08:00
void suggestRegs4CallRets();
2001-09-08 22:10:34 +08:00
const Method* getMethod() { return Meth; }
2001-09-08 22:10:34 +08:00
public:
2001-09-15 08:33:26 +08:00
LiveRangeInfo(const Method *const M,
const TargetMachine& tm,
std::vector<RegClass *> & RCList);
2001-09-08 22:10:34 +08:00
// Destructor to destroy all LiveRanges in the LiveRange Map
~LiveRangeInfo();
// Main entry point for live range construction
//
void constructLiveRanges();
// This method is used to add a live range created elsewhere (e.g.,
// in machine specific code) to the common live range map
//
inline void addLRToMap(const Value *Val, LiveRange *LR) {
assert( Val && LR && "Val/LR is NULL!\n");
assert( (! LiveRangeMap[ Val ]) && "LR already set in map");
LiveRangeMap[ Val ] = LR;
}
// return the common live range map for this method
//
2001-09-08 22:10:34 +08:00
inline const LiveRangeMapType *const getLiveRangeMap() const
{ return &LiveRangeMap; }
// Method sed to get the corresponding live range of a Value
//
2001-09-08 22:10:34 +08:00
inline LiveRange *getLiveRangeForValue( const Value *const Val)
{ return LiveRangeMap[ Val ]; }
// Method used to get the Call and Return instruction list
//
inline CallRetInstrListType &getCallRetInstrList() {
return CallRetInstrList;
}
2001-09-08 22:10:34 +08:00
// Method for coalescing live ranges. Called only after interference info
// is calculated.
//
2001-09-08 22:10:34 +08:00
void coalesceLRs();
// debugging method to print the live ranges
//
2001-09-08 22:10:34 +08:00
void printLiveRanges();
};
#endif