29#define GET_REGINFO_TARGET_DESC
30#include "LoongArchGenRegisterInfo.inc"
42 return CSR_NoRegs_SaveList;
43 switch (Subtarget.getTargetABI()) {
48 return CSR_ILP32S_LP64S_SaveList;
51 return CSR_ILP32F_LP64F_SaveList;
54 return CSR_ILP32D_LP64D_SaveList;
64 return CSR_NoRegs_RegMask;
65 switch (Subtarget.getTargetABI()) {
70 return CSR_ILP32S_LP64S_RegMask;
73 return CSR_ILP32F_LP64F_RegMask;
76 return CSR_ILP32D_LP64D_RegMask;
81 return CSR_NoRegs_RegMask;
90 markSuperRegs(
Reserved, LoongArch::R0);
91 markSuperRegs(
Reserved, LoongArch::R2);
92 markSuperRegs(
Reserved, LoongArch::R3);
93 markSuperRegs(
Reserved, LoongArch::R21);
95 markSuperRegs(
Reserved, LoongArch::R22);
105 for (
size_t Reg = LoongArch::FCC1; Reg <= LoongArch::FCC7; ++Reg)
115 return TFI->
hasFP(MF) ? LoongArch::R22 : LoongArch::R3;
120 unsigned FIOperandNum,
125 assert(SPAdj == 0 &&
"Unexpected non-zero SPAdj value");
128 assert(
MI.getOperand(FIOperandNum + 1).isImm() &&
129 "Unexpected FI-consuming insn");
139 unsigned MIOpc =
MI.getOpcode();
141 int FrameIndex =
MI.getOperand(FIOperandNum).getIndex();
147 bool FrameRegIsKill =
false;
149 if (!isInt<12>(
Offset.getFixed())) {
150 unsigned Addi = IsLA64 ? LoongArch::ADDI_D : LoongArch::ADDI_W;
151 unsigned Add = IsLA64 ? LoongArch::ADD_D : LoongArch::ADD_W;
155 Register ScratchReg =
MRI.createVirtualRegister(&LoongArch::GPRRegClass);
161 MI.eraseFromParent();
168 FrameReg = ScratchReg;
169 FrameRegIsKill =
true;
173 if (MIOpc == LoongArch::PseudoST_CFR) {
174 Register ScratchReg =
MRI.createVirtualRegister(&LoongArch::GPRRegClass);
176 .
add(
MI.getOperand(0));
177 BuildMI(
MBB, II,
DL,
TII->get(IsLA64 ? LoongArch::ST_D : LoongArch::ST_W))
181 MI.eraseFromParent();
186 if (MIOpc == LoongArch::PseudoLD_CFR) {
187 Register ScratchReg =
MRI.createVirtualRegister(&LoongArch::GPRRegClass);
188 BuildMI(
MBB, II,
DL,
TII->get(IsLA64 ? LoongArch::LD_D : LoongArch::LD_W),
193 .
add(
MI.getOperand(0))
195 MI.eraseFromParent();
199 MI.getOperand(FIOperandNum)
200 .ChangeToRegister(FrameReg,
false,
false, FrameRegIsKill);
201 MI.getOperand(FIOperandNum + 1).ChangeToImmediate(
Offset.getFixed());
unsigned const MachineRegisterInfo * MRI
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
const HexagonInstrInfo * TII
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 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 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
LoongArchRegisterInfo(unsigned HwMode)