1 //===-- MipsSERegisterInfo.cpp - MIPS32/64 Register Information -== -------===//
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
7 //===----------------------------------------------------------------------===//
9 // This file contains the MIPS32/64 implementation of the TargetRegisterInfo
12 //===----------------------------------------------------------------------===//
14 #include "MipsSERegisterInfo.h"
16 #include "MipsMachineFunction.h"
17 #include "MipsSEInstrInfo.h"
18 #include "MipsSubtarget.h"
19 #include "MipsTargetMachine.h"
20 #include "llvm/ADT/STLExtras.h"
21 #include "llvm/CodeGen/MachineFrameInfo.h"
22 #include "llvm/CodeGen/MachineFunction.h"
23 #include "llvm/CodeGen/MachineInstrBuilder.h"
24 #include "llvm/CodeGen/MachineRegisterInfo.h"
25 #include "llvm/CodeGen/TargetFrameLowering.h"
26 #include "llvm/CodeGen/TargetInstrInfo.h"
27 #include "llvm/IR/Constants.h"
28 #include "llvm/IR/DebugInfo.h"
29 #include "llvm/IR/Function.h"
30 #include "llvm/IR/Type.h"
31 #include "llvm/Support/Debug.h"
32 #include "llvm/Support/ErrorHandling.h"
33 #include "llvm/Support/raw_ostream.h"
34 #include "llvm/Target/TargetMachine.h"
35 #include "llvm/Target/TargetOptions.h"
39 #define DEBUG_TYPE "mips-reg-info"
41 MipsSERegisterInfo::MipsSERegisterInfo() : MipsRegisterInfo() {}
43 bool MipsSERegisterInfo::
44 requiresRegisterScavenging(const MachineFunction
&MF
) const {
48 bool MipsSERegisterInfo::
49 requiresFrameIndexScavenging(const MachineFunction
&MF
) const {
53 const TargetRegisterClass
*
54 MipsSERegisterInfo::intRegClass(unsigned Size
) const {
56 return &Mips::GPR32RegClass
;
59 return &Mips::GPR64RegClass
;
62 /// Get the size of the offset supported by the given load/store/inline asm.
63 /// The result includes the effects of any scale factors applied to the
64 /// instruction immediate.
65 static inline unsigned getLoadStoreOffsetSizeInBits(const unsigned Opcode
,
73 return 10 + 1 /* scale factor */;
76 return 10 + 2 /* scale factor */;
79 return 10 + 3 /* scale factor */;
103 case Mips::INLINEASM
: {
104 unsigned ConstraintID
= InlineAsm::getMemoryConstraintID(MO
.getImm());
105 switch (ConstraintID
) {
106 case InlineAsm::Constraint_ZC
: {
107 const MipsSubtarget
&Subtarget
= MO
.getParent()
110 ->getSubtarget
<MipsSubtarget
>();
111 if (Subtarget
.inMicroMipsMode())
114 if (Subtarget
.hasMips32r6())
128 /// Get the scale factor applied to the immediate in the given load/store.
129 static inline unsigned getLoadStoreOffsetAlign(const unsigned Opcode
) {
145 void MipsSERegisterInfo::eliminateFI(MachineBasicBlock::iterator II
,
146 unsigned OpNo
, int FrameIndex
,
148 int64_t SPOffset
) const {
149 MachineInstr
&MI
= *II
;
150 MachineFunction
&MF
= *MI
.getParent()->getParent();
151 MachineFrameInfo
&MFI
= MF
.getFrameInfo();
152 MipsFunctionInfo
*MipsFI
= MF
.getInfo
<MipsFunctionInfo
>();
155 static_cast<const MipsTargetMachine
&>(MF
.getTarget()).getABI();
156 const MipsRegisterInfo
*RegInfo
=
157 static_cast<const MipsRegisterInfo
*>(MF
.getSubtarget().getRegisterInfo());
159 const std::vector
<CalleeSavedInfo
> &CSI
= MFI
.getCalleeSavedInfo();
164 MinCSFI
= CSI
[0].getFrameIdx();
165 MaxCSFI
= CSI
[CSI
.size() - 1].getFrameIdx();
168 bool EhDataRegFI
= MipsFI
->isEhDataRegFI(FrameIndex
);
169 bool IsISRRegFI
= MipsFI
->isISRRegFI(FrameIndex
);
170 // The following stack frame objects are always referenced relative to $sp:
171 // 1. Outgoing arguments.
172 // 2. Pointer to dynamically allocated stack space.
173 // 3. Locations for callee-saved registers.
174 // 4. Locations for eh data registers.
175 // 5. Locations for ISR saved Coprocessor 0 registers 12 & 14.
176 // Everything else is referenced relative to whatever register
177 // getFrameRegister() returns.
180 if ((FrameIndex
>= MinCSFI
&& FrameIndex
<= MaxCSFI
) || EhDataRegFI
||
182 FrameReg
= ABI
.GetStackPtr();
183 else if (RegInfo
->needsStackRealignment(MF
)) {
184 if (MFI
.hasVarSizedObjects() && !MFI
.isFixedObjectIndex(FrameIndex
))
185 FrameReg
= ABI
.GetBasePtr();
186 else if (MFI
.isFixedObjectIndex(FrameIndex
))
187 FrameReg
= getFrameRegister(MF
);
189 FrameReg
= ABI
.GetStackPtr();
191 FrameReg
= getFrameRegister(MF
);
193 // Calculate final offset.
194 // - There is no need to change the offset if the frame object is one of the
195 // following: an outgoing argument, pointer to a dynamically allocated
196 // stack space or a $gp restore location,
197 // - If the frame object is any of the following, its offset must be adjusted
198 // by adding the size of the stack:
199 // incoming argument, callee-saved register location or local variable.
203 Offset
= SPOffset
+ (int64_t)StackSize
;
204 Offset
+= MI
.getOperand(OpNo
+ 1).getImm();
206 LLVM_DEBUG(errs() << "Offset : " << Offset
<< "\n"
209 if (!MI
.isDebugValue()) {
210 // Make sure Offset fits within the field available.
211 // For MSA instructions, this is a 10-bit signed immediate (scaled by
212 // element size), otherwise it is a 16-bit signed immediate.
213 unsigned OffsetBitSize
=
214 getLoadStoreOffsetSizeInBits(MI
.getOpcode(), MI
.getOperand(OpNo
- 1));
215 unsigned OffsetAlign
= getLoadStoreOffsetAlign(MI
.getOpcode());
217 if (OffsetBitSize
< 16 && isInt
<16>(Offset
) &&
218 (!isIntN(OffsetBitSize
, Offset
) ||
219 OffsetToAlignment(Offset
, OffsetAlign
) != 0)) {
220 // If we have an offset that needs to fit into a signed n-bit immediate
221 // (where n < 16) and doesn't, but does fit into 16-bits then use an ADDiu
222 MachineBasicBlock
&MBB
= *MI
.getParent();
223 DebugLoc DL
= II
->getDebugLoc();
224 const TargetRegisterClass
*PtrRC
=
225 ABI
.ArePtrs64bit() ? &Mips::GPR64RegClass
: &Mips::GPR32RegClass
;
226 MachineRegisterInfo
&RegInfo
= MBB
.getParent()->getRegInfo();
227 unsigned Reg
= RegInfo
.createVirtualRegister(PtrRC
);
228 const MipsSEInstrInfo
&TII
=
229 *static_cast<const MipsSEInstrInfo
*>(
230 MBB
.getParent()->getSubtarget().getInstrInfo());
231 BuildMI(MBB
, II
, DL
, TII
.get(ABI
.GetPtrAddiuOp()), Reg
)
238 } else if (!isInt
<16>(Offset
)) {
239 // Otherwise split the offset into 16-bit pieces and add it in multiple
241 MachineBasicBlock
&MBB
= *MI
.getParent();
242 DebugLoc DL
= II
->getDebugLoc();
244 const MipsSEInstrInfo
&TII
=
245 *static_cast<const MipsSEInstrInfo
*>(
246 MBB
.getParent()->getSubtarget().getInstrInfo());
247 unsigned Reg
= TII
.loadImmediate(Offset
, MBB
, II
, DL
,
248 OffsetBitSize
== 16 ? &NewImm
: nullptr);
249 BuildMI(MBB
, II
, DL
, TII
.get(ABI
.GetPtrAdduOp()), Reg
).addReg(FrameReg
)
250 .addReg(Reg
, RegState::Kill
);
253 Offset
= SignExtend64
<16>(NewImm
);
258 MI
.getOperand(OpNo
).ChangeToRegister(FrameReg
, false, false, IsKill
);
259 MI
.getOperand(OpNo
+ 1).ChangeToImmediate(Offset
);