mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2026-04-21 08:17:40 +00:00
Remove the TargetMachine forwards for TargetSubtargetInfo based
information and update all callers. No functional change. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@214781 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -16,6 +16,7 @@
|
||||
#include "XCore.h"
|
||||
#include "XCoreInstrInfo.h"
|
||||
#include "XCoreMachineFunctionInfo.h"
|
||||
#include "XCoreSubtarget.h"
|
||||
#include "llvm/CodeGen/MachineFrameInfo.h"
|
||||
#include "llvm/CodeGen/MachineFunction.h"
|
||||
#include "llvm/CodeGen/MachineInstrBuilder.h"
|
||||
@@ -226,7 +227,8 @@ void XCoreFrameLowering::emitPrologue(MachineFunction &MF) const {
|
||||
MachineModuleInfo *MMI = &MF.getMMI();
|
||||
const MCRegisterInfo *MRI = MMI->getContext().getRegisterInfo();
|
||||
const XCoreInstrInfo &TII =
|
||||
*static_cast<const XCoreInstrInfo*>(MF.getTarget().getInstrInfo());
|
||||
*static_cast<const XCoreInstrInfo *>(
|
||||
MF.getTarget().getSubtargetImpl()->getInstrInfo());
|
||||
XCoreFunctionInfo *XFI = MF.getInfo<XCoreFunctionInfo>();
|
||||
// Debug location must be unknown since the first debug location is used
|
||||
// to determine the end of the prologue.
|
||||
@@ -262,7 +264,8 @@ void XCoreFrameLowering::emitPrologue(MachineFunction &MF) const {
|
||||
MBB.addLiveIn(XCore::LR);
|
||||
MachineInstrBuilder MIB = BuildMI(MBB, MBBI, dl, TII.get(Opcode));
|
||||
MIB.addImm(Adjusted);
|
||||
MIB->addRegisterKilled(XCore::LR, MF.getTarget().getRegisterInfo(), true);
|
||||
MIB->addRegisterKilled(
|
||||
XCore::LR, MF.getTarget().getSubtargetImpl()->getRegisterInfo(), true);
|
||||
if (emitFrameMoves) {
|
||||
EmitDefCfaOffset(MBB, MBBI, dl, TII, MMI, Adjusted*4);
|
||||
unsigned DRegNum = MRI->getDwarfRegNum(XCore::LR, true);
|
||||
@@ -323,7 +326,8 @@ void XCoreFrameLowering::emitPrologue(MachineFunction &MF) const {
|
||||
// The unwinder requires stack slot & CFI offsets for the exception info.
|
||||
// We do not save/spill these registers.
|
||||
SmallVector<StackSlotInfo,2> SpillList;
|
||||
GetEHSpillList(SpillList, MFI, XFI, MF.getTarget().getTargetLowering());
|
||||
GetEHSpillList(SpillList, MFI, XFI,
|
||||
MF.getTarget().getSubtargetImpl()->getTargetLowering());
|
||||
assert(SpillList.size()==2 && "Unexpected SpillList size");
|
||||
EmitCfiOffset(MBB, MBBI, dl, TII, MMI,
|
||||
MRI->getDwarfRegNum(SpillList[0].Reg, true),
|
||||
@@ -340,7 +344,8 @@ void XCoreFrameLowering::emitEpilogue(MachineFunction &MF,
|
||||
MachineFrameInfo *MFI = MF.getFrameInfo();
|
||||
MachineBasicBlock::iterator MBBI = MBB.getLastNonDebugInstr();
|
||||
const XCoreInstrInfo &TII =
|
||||
*static_cast<const XCoreInstrInfo*>(MF.getTarget().getInstrInfo());
|
||||
*static_cast<const XCoreInstrInfo *>(
|
||||
MF.getTarget().getSubtargetImpl()->getInstrInfo());
|
||||
XCoreFunctionInfo *XFI = MF.getInfo<XCoreFunctionInfo>();
|
||||
DebugLoc dl = MBBI->getDebugLoc();
|
||||
unsigned RetOpcode = MBBI->getOpcode();
|
||||
@@ -355,7 +360,8 @@ void XCoreFrameLowering::emitEpilogue(MachineFunction &MF,
|
||||
// 'Restore' the exception info the unwinder has placed into the stack
|
||||
// slots.
|
||||
SmallVector<StackSlotInfo,2> SpillList;
|
||||
GetEHSpillList(SpillList, MFI, XFI, MF.getTarget().getTargetLowering());
|
||||
GetEHSpillList(SpillList, MFI, XFI,
|
||||
MF.getTarget().getSubtargetImpl()->getTargetLowering());
|
||||
RestoreSpillList(MBB, MBBI, dl, TII, RemainingAdj, SpillList);
|
||||
|
||||
// Return to the landing pad.
|
||||
@@ -413,7 +419,8 @@ spillCalleeSavedRegisters(MachineBasicBlock &MBB,
|
||||
return true;
|
||||
|
||||
MachineFunction *MF = MBB.getParent();
|
||||
const TargetInstrInfo &TII = *MF->getTarget().getInstrInfo();
|
||||
const TargetInstrInfo &TII =
|
||||
*MF->getTarget().getSubtargetImpl()->getInstrInfo();
|
||||
XCoreFunctionInfo *XFI = MF->getInfo<XCoreFunctionInfo>();
|
||||
bool emitFrameMoves = XCoreRegisterInfo::needsFrameMoves(*MF);
|
||||
|
||||
@@ -446,7 +453,8 @@ restoreCalleeSavedRegisters(MachineBasicBlock &MBB,
|
||||
const std::vector<CalleeSavedInfo> &CSI,
|
||||
const TargetRegisterInfo *TRI) const{
|
||||
MachineFunction *MF = MBB.getParent();
|
||||
const TargetInstrInfo &TII = *MF->getTarget().getInstrInfo();
|
||||
const TargetInstrInfo &TII =
|
||||
*MF->getTarget().getSubtargetImpl()->getInstrInfo();
|
||||
bool AtStart = MI == MBB.begin();
|
||||
MachineBasicBlock::iterator BeforeI = MI;
|
||||
if (!AtStart)
|
||||
@@ -479,7 +487,8 @@ void XCoreFrameLowering::
|
||||
eliminateCallFramePseudoInstr(MachineFunction &MF, MachineBasicBlock &MBB,
|
||||
MachineBasicBlock::iterator I) const {
|
||||
const XCoreInstrInfo &TII =
|
||||
*static_cast<const XCoreInstrInfo*>(MF.getTarget().getInstrInfo());
|
||||
*static_cast<const XCoreInstrInfo *>(
|
||||
MF.getTarget().getSubtargetImpl()->getInstrInfo());
|
||||
if (!hasReservedCallFrame(MF)) {
|
||||
// Turn the adjcallstackdown instruction into 'extsp <amt>' and the
|
||||
// adjcallstackup instruction into 'ldaw sp, sp[<amt>]'
|
||||
|
||||
Reference in New Issue
Block a user