mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-06 09:44:39 +00:00
Don't cache the instruction and register info from the TargetMachine, because
the internals of TargetMachine could change. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@183490 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
9eb856bc29
commit
54a56fad36
@ -27,12 +27,11 @@ Hexagon_CCState::Hexagon_CCState(CallingConv::ID CC, bool isVarArg,
|
||||
const TargetMachine &tm,
|
||||
SmallVector<CCValAssign, 16> &locs,
|
||||
LLVMContext &c)
|
||||
: CallingConv(CC), IsVarArg(isVarArg), TM(tm),
|
||||
TRI(*TM.getRegisterInfo()), Locs(locs), Context(c) {
|
||||
: CallingConv(CC), IsVarArg(isVarArg), TM(tm), Locs(locs), Context(c) {
|
||||
// No stack is used.
|
||||
StackOffset = 0;
|
||||
|
||||
UsedRegs.resize((TRI.getNumRegs()+31)/32);
|
||||
UsedRegs.resize((TM.getRegisterInfo()->getNumRegs()+31)/32);
|
||||
}
|
||||
|
||||
// HandleByVal - Allocate a stack slot large enough to pass an argument by
|
||||
@ -56,6 +55,7 @@ void Hexagon_CCState::HandleByVal(unsigned ValNo, EVT ValVT,
|
||||
|
||||
/// MarkAllocated - Mark a register and all of its aliases as allocated.
|
||||
void Hexagon_CCState::MarkAllocated(unsigned Reg) {
|
||||
const TargetRegisterInfo &TRI = *TM.getRegisterInfo();
|
||||
for (MCRegAliasIterator AI(Reg, &TRI, true); AI.isValid(); ++AI)
|
||||
UsedRegs[*AI/32] |= 1 << (*AI&31);
|
||||
}
|
||||
|
@ -48,7 +48,6 @@ class Hexagon_CCState {
|
||||
CallingConv::ID CallingConv;
|
||||
bool IsVarArg;
|
||||
const TargetMachine &TM;
|
||||
const TargetRegisterInfo &TRI;
|
||||
SmallVector<CCValAssign, 16> &Locs;
|
||||
LLVMContext &Context;
|
||||
|
||||
|
@ -50,15 +50,13 @@ class HexagonDAGToDAGISel : public SelectionDAGISel {
|
||||
|
||||
// Keep a reference to HexagonTargetMachine.
|
||||
const HexagonTargetMachine& TM;
|
||||
const HexagonInstrInfo *TII;
|
||||
DenseMap<const GlobalValue *, unsigned> GlobalAddressUseCountMap;
|
||||
public:
|
||||
explicit HexagonDAGToDAGISel(const HexagonTargetMachine &targetmachine,
|
||||
CodeGenOpt::Level OptLevel)
|
||||
: SelectionDAGISel(targetmachine, OptLevel),
|
||||
Subtarget(targetmachine.getSubtarget<HexagonSubtarget>()),
|
||||
TM(targetmachine),
|
||||
TII(static_cast<const HexagonInstrInfo*>(TM.getInstrInfo())) {
|
||||
TM(targetmachine) {
|
||||
initializeHexagonDAGToDAGISelPass(*PassRegistry::getPassRegistry());
|
||||
}
|
||||
bool hasNumUsesBelowThresGA(SDNode *N) const;
|
||||
@ -444,6 +442,9 @@ SDNode *HexagonDAGToDAGISel::SelectIndexedLoadSignExtend64(LoadSDNode *LD,
|
||||
SDValue N1 = LD->getOperand(1);
|
||||
SDValue CPTmpN1_0;
|
||||
SDValue CPTmpN1_1;
|
||||
|
||||
const HexagonInstrInfo *TII =
|
||||
static_cast<const HexagonInstrInfo*>(TM.getInstrInfo());
|
||||
if (SelectADDRriS11_2(N1, CPTmpN1_0, CPTmpN1_1) &&
|
||||
N1.getNode()->getValueType(0) == MVT::i32) {
|
||||
if (TII->isValidAutoIncImm(LoadedVT, Val)) {
|
||||
@ -508,6 +509,9 @@ SDNode *HexagonDAGToDAGISel::SelectIndexedLoadZeroExtend64(LoadSDNode *LD,
|
||||
SDValue N1 = LD->getOperand(1);
|
||||
SDValue CPTmpN1_0;
|
||||
SDValue CPTmpN1_1;
|
||||
|
||||
const HexagonInstrInfo *TII =
|
||||
static_cast<const HexagonInstrInfo*>(TM.getInstrInfo());
|
||||
if (SelectADDRriS11_2(N1, CPTmpN1_0, CPTmpN1_1) &&
|
||||
N1.getNode()->getValueType(0) == MVT::i32) {
|
||||
if (TII->isValidAutoIncImm(LoadedVT, Val)) {
|
||||
@ -586,6 +590,8 @@ SDNode *HexagonDAGToDAGISel::SelectIndexedLoad(LoadSDNode *LD, SDLoc dl) {
|
||||
bool zextval = (LD->getExtensionType() == ISD::ZEXTLOAD);
|
||||
|
||||
// Figure out the opcode.
|
||||
const HexagonInstrInfo *TII =
|
||||
static_cast<const HexagonInstrInfo*>(TM.getInstrInfo());
|
||||
if (LoadedVT == MVT::i64) {
|
||||
if (TII->isValidAutoIncImm(LoadedVT, Val))
|
||||
Opcode = Hexagon::POST_LDrid;
|
||||
@ -694,6 +700,8 @@ SDNode *HexagonDAGToDAGISel::SelectIndexedStore(StoreSDNode *ST, SDLoc dl) {
|
||||
|
||||
// Offset value must be within representable range
|
||||
// and must have correct alignment properties.
|
||||
const HexagonInstrInfo *TII =
|
||||
static_cast<const HexagonInstrInfo*>(TM.getInstrInfo());
|
||||
if (TII->isValidAutoIncImm(StoredVT, Val)) {
|
||||
SDValue Ops[] = {Base, CurDAG->getTargetConstant(Val, MVT::i32), Value,
|
||||
Chain};
|
||||
@ -1207,6 +1215,8 @@ SDNode *HexagonDAGToDAGISel::SelectIntrinsicWOChain(SDNode *N) {
|
||||
|
||||
// We are concerned with only those intrinsics that have predicate registers
|
||||
// as at least one of the operands.
|
||||
const HexagonInstrInfo *TII =
|
||||
static_cast<const HexagonInstrInfo*>(TM.getInstrInfo());
|
||||
if (IntrinsicWithPred) {
|
||||
SmallVector<SDValue, 8> Ops;
|
||||
const MCInstrDesc &MCID = TII->get(IntrinsicWithPred);
|
||||
|
@ -58,7 +58,7 @@ const int Hexagon_MEMB_AUTOINC_MIN = -8;
|
||||
|
||||
HexagonInstrInfo::HexagonInstrInfo(HexagonSubtarget &ST)
|
||||
: HexagonGenInstrInfo(Hexagon::ADJCALLSTACKDOWN, Hexagon::ADJCALLSTACKUP),
|
||||
RI(ST, *this), Subtarget(ST) {
|
||||
RI(ST), Subtarget(ST) {
|
||||
}
|
||||
|
||||
|
||||
|
@ -27,7 +27,7 @@ namespace llvm {
|
||||
|
||||
class HexagonInstrInfo : public HexagonGenInstrInfo {
|
||||
const HexagonRegisterInfo RI;
|
||||
const HexagonSubtarget& Subtarget;
|
||||
const HexagonSubtarget &Subtarget;
|
||||
typedef unsigned Opcode_t;
|
||||
|
||||
public:
|
||||
|
@ -195,7 +195,6 @@ void VLIWMachineScheduler::schedule() {
|
||||
void ConvergingVLIWScheduler::initialize(ScheduleDAGMI *dag) {
|
||||
DAG = static_cast<VLIWMachineScheduler*>(dag);
|
||||
SchedModel = DAG->getSchedModel();
|
||||
TRI = DAG->TRI;
|
||||
|
||||
Top.init(DAG, SchedModel);
|
||||
Bot.init(DAG, SchedModel);
|
||||
@ -409,7 +408,7 @@ void ConvergingVLIWScheduler::traceCandidate(const char *Label,
|
||||
SUnit *SU, PressureElement P) {
|
||||
dbgs() << Label << " " << Q.getName() << " ";
|
||||
if (P.isValid())
|
||||
dbgs() << TRI->getRegPressureSetName(P.PSetID) << ":" << P.UnitIncrease
|
||||
dbgs() << DAG->TRI->getRegPressureSetName(P.PSetID) << ":" << P.UnitIncrease
|
||||
<< " ";
|
||||
else
|
||||
dbgs() << " ";
|
||||
|
@ -190,7 +190,6 @@ class ConvergingVLIWScheduler : public MachineSchedStrategy {
|
||||
|
||||
VLIWMachineScheduler *DAG;
|
||||
const TargetSchedModel *SchedModel;
|
||||
const TargetRegisterInfo *TRI;
|
||||
|
||||
// State of the top and bottom scheduled instruction boundaries.
|
||||
SchedBoundary Top;
|
||||
@ -205,7 +204,7 @@ public:
|
||||
};
|
||||
|
||||
ConvergingVLIWScheduler():
|
||||
DAG(0), SchedModel(0), TRI(0), Top(TopQID, "TopQ"), Bot(BotQID, "BotQ") {}
|
||||
DAG(0), SchedModel(0), Top(TopQID, "TopQ"), Bot(BotQID, "BotQ") {}
|
||||
|
||||
virtual void initialize(ScheduleDAGMI *dag);
|
||||
|
||||
|
@ -38,11 +38,9 @@
|
||||
using namespace llvm;
|
||||
|
||||
|
||||
HexagonRegisterInfo::HexagonRegisterInfo(HexagonSubtarget &st,
|
||||
const HexagonInstrInfo &tii)
|
||||
HexagonRegisterInfo::HexagonRegisterInfo(HexagonSubtarget &st)
|
||||
: HexagonGenRegisterInfo(Hexagon::R31),
|
||||
Subtarget(st),
|
||||
TII(tii) {
|
||||
Subtarget(st) {
|
||||
}
|
||||
|
||||
const uint16_t* HexagonRegisterInfo::getCalleeSavedRegs(const MachineFunction
|
||||
@ -130,6 +128,8 @@ void HexagonRegisterInfo::eliminateFrameIndex(MachineBasicBlock::iterator II,
|
||||
|
||||
// Addressable stack objects are accessed using neg. offsets from %fp.
|
||||
MachineFunction &MF = *MI.getParent()->getParent();
|
||||
const HexagonInstrInfo &TII =
|
||||
*static_cast<const HexagonInstrInfo*>(MF.getTarget().getInstrInfo());
|
||||
int Offset = MF.getFrameInfo()->getObjectOffset(FrameIndex);
|
||||
MachineFrameInfo &MFI = *MF.getFrameInfo();
|
||||
|
||||
|
@ -44,9 +44,8 @@ class Type;
|
||||
|
||||
struct HexagonRegisterInfo : public HexagonGenRegisterInfo {
|
||||
HexagonSubtarget &Subtarget;
|
||||
const HexagonInstrInfo &TII;
|
||||
|
||||
HexagonRegisterInfo(HexagonSubtarget &st, const HexagonInstrInfo &tii);
|
||||
HexagonRegisterInfo(HexagonSubtarget &st);
|
||||
|
||||
/// Code Generation virtual methods...
|
||||
const uint16_t *getCalleeSavedRegs(const MachineFunction *MF = 0) const;
|
||||
|
Loading…
x
Reference in New Issue
Block a user