30#define GET_REGINFO_TARGET_DESC
31#include "LoongArchGenRegisterInfo.inc"
43 return CSR_NoRegs_SaveList;
44 switch (Subtarget.getTargetABI()) {
49 return CSR_ILP32S_LP64S_SaveList;
52 return CSR_ILP32F_LP64F_SaveList;
55 return CSR_ILP32D_LP64D_SaveList;
65 return CSR_NoRegs_RegMask;
66 switch (Subtarget.getTargetABI()) {
71 return CSR_ILP32S_LP64S_RegMask;
74 return CSR_ILP32F_LP64F_RegMask;
77 return CSR_ILP32D_LP64D_RegMask;
82 return CSR_NoRegs_RegMask;
91 markSuperRegs(
Reserved, LoongArch::R0);
92 markSuperRegs(
Reserved, LoongArch::R2);
93 markSuperRegs(
Reserved, LoongArch::R3);
94 markSuperRegs(
Reserved, LoongArch::R21);
96 markSuperRegs(
Reserved, LoongArch::R22);
109 return TFI->
hasFP(MF) ? LoongArch::R22 : LoongArch::R3;
114 unsigned FIOperandNum,
119 assert(SPAdj == 0 &&
"Unexpected non-zero SPAdj value");
122 assert(
MI.getOperand(FIOperandNum + 1).isImm() &&
123 "Unexpected FI-consuming insn");
133 unsigned MIOpc =
MI.getOpcode();
135 int FrameIndex =
MI.getOperand(FIOperandNum).getIndex();
141 bool FrameRegIsKill =
false;
143 if (!isInt<12>(
Offset.getFixed())) {
144 unsigned Addi = IsLA64 ? LoongArch::ADDI_D : LoongArch::ADDI_W;
145 unsigned Add = IsLA64 ? LoongArch::ADD_D : LoongArch::ADD_W;
149 Register ScratchReg =
MRI.createVirtualRegister(&LoongArch::GPRRegClass);
155 MI.eraseFromParent();
162 FrameReg = ScratchReg;
163 FrameRegIsKill =
true;
167 if (MIOpc == LoongArch::PseudoST_CFR) {
168 Register ScratchReg =
MRI.createVirtualRegister(&LoongArch::GPRRegClass);
170 .
add(
MI.getOperand(0));
175 MI.eraseFromParent();
180 if (MIOpc == LoongArch::PseudoLD_CFR) {
181 Register ScratchReg =
MRI.createVirtualRegister(&LoongArch::GPRRegClass);
187 .
add(
MI.getOperand(0))
189 MI.eraseFromParent();
193 MI.getOperand(FIOperandNum)
194 .ChangeToRegister(FrameReg,
false,
false, FrameRegIsKill);
195 MI.getOperand(FIOperandNum + 1).ChangeToImmediate(
Offset.getFixed());
208 if (!
MRI->canReserveReg(LoongArch::R22))
unsigned const MachineRegisterInfo * MRI
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
const HexagonInstrInfo * TII
uint64_t IntrinsicInst * II
This file declares the machine register scavenger class.
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
CallingConv::ID getCallingConv() const
getCallingConv()/setCallingConv(CC) - These method get and set the calling convention of this functio...
bool hasFP(const MachineFunction &MF) const override
hasFP - Return true if the specified function should have a dedicated frame pointer register.
bool hasReservedCallFrame(const MachineFunction &MF) const override
hasReservedCallFrame - Under normal circumstances, when a frame pointer is not required,...
bool hasBP(const MachineFunction &MF) const
const LoongArchInstrInfo * getInstrInfo() const override
const TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
MachineRegisterInfo & getRegInfo()
getRegInfo - Return information about the registers currently in use.
Function & getFunction()
Return the LLVM function that this machine code represents.
const MachineInstrBuilder & addImm(int64_t Val) const
Add a new immediate operand.
const MachineInstrBuilder & add(const MachineOperand &MO) const
const MachineInstrBuilder & addReg(Register RegNo, unsigned flags=0, unsigned SubReg=0) const
Add a new virtual register operand.
Representation of each machine instruction.
MachineRegisterInfo - Keep track of information for virtual and physical registers,...
Wrapper class representing virtual and physical registers.
StackOffset holds a fixed and a scalable offset in bytes.
int64_t getFixed() const
Returns the fixed component of the stack.
Information about stack frame layout on the target.
virtual bool hasFP(const MachineFunction &MF) const =0
hasFP - Return true if the specified function should have a dedicated frame pointer register.
virtual StackOffset getFrameIndexReference(const MachineFunction &MF, int FI, Register &FrameReg) const
getFrameIndexReference - This method should return the base register and offset used to reference a f...
virtual bool canRealignStack(const MachineFunction &MF) const
True if the stack can be realigned for the target.
virtual const TargetFrameLowering * getFrameLowering() const
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
@ GHC
Used by the Glasgow Haskell Compiler (GHC).
@ Kill
The last use of a register.
This is an optimization pass for GlobalISel generic memory operations.
MachineInstrBuilder BuildMI(MachineFunction &MF, const MIMetadata &MIMD, const MCInstrDesc &MCID)
Builder interface. Specify how to create the initial instruction itself.
bool eliminateFrameIndex(MachineBasicBlock::iterator MI, int SPAdj, unsigned FIOperandNum, RegScavenger *RS=nullptr) const override
const uint32_t * getCallPreservedMask(const MachineFunction &MF, CallingConv::ID) const override
const MCPhysReg * getCalleeSavedRegs(const MachineFunction *MF) const override
Register getFrameRegister(const MachineFunction &MF) const override
const uint32_t * getNoPreservedMask() const override
BitVector getReservedRegs(const MachineFunction &MF) const override
bool canRealignStack(const MachineFunction &MF) const override
LoongArchRegisterInfo(unsigned HwMode)