LLVM 20.0.0git
Mips16RegisterInfo.cpp
Go to the documentation of this file.
1//===-- Mips16RegisterInfo.cpp - MIPS16 Register Information --------------===//
2//
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
6//
7//===----------------------------------------------------------------------===//
8//
9// This file contains the MIPS16 implementation of the TargetRegisterInfo class.
10//
11//===----------------------------------------------------------------------===//
12
13#include "Mips16RegisterInfo.h"
14#include "Mips16InstrInfo.h"
15#include "MipsInstrInfo.h"
20#include "llvm/IR/Function.h"
21#include "llvm/IR/Type.h"
22#include "llvm/Support/Debug.h"
26
27using namespace llvm;
28
29#define DEBUG_TYPE "mips16-registerinfo"
30
32
34 (const MachineFunction &MF) const {
35 return false;
36}
38 (const MachineFunction &MF) const {
39 return false;
40}
41
43 (const MachineFunction &MF) const {
44 return false;
45}
46
50 Register Reg) const {
53 TII.copyPhysReg(MBB, I, DL, Mips::T0, Reg, true);
54 TII.copyPhysReg(MBB, UseMI, DL, Reg, Mips::T0, true);
55 return true;
56}
57
60 assert(Size == 4);
61 return &Mips::CPU16RegsRegClass;
62}
63
64void Mips16RegisterInfo::eliminateFI(MachineBasicBlock::iterator II,
65 unsigned OpNo, int FrameIndex,
66 uint64_t StackSize,
67 int64_t SPOffset) const {
68 MachineInstr &MI = *II;
69 MachineFunction &MF = *MI.getParent()->getParent();
71
72 const std::vector<CalleeSavedInfo> &CSI = MFI.getCalleeSavedInfo();
73 int MinCSFI = 0;
74 int MaxCSFI = -1;
75
76 if (CSI.size()) {
77 MinCSFI = CSI[0].getFrameIdx();
78 MaxCSFI = CSI[CSI.size() - 1].getFrameIdx();
79 }
80
81 // The following stack frame objects are always
82 // referenced relative to $sp:
83 // 1. Outgoing arguments.
84 // 2. Pointer to dynamically allocated stack space.
85 // 3. Locations for callee-saved registers.
86 // Everything else is referenced relative to whatever register
87 // getFrameRegister() returns.
88 Register FrameReg;
89
90 if (FrameIndex >= MinCSFI && FrameIndex <= MaxCSFI)
91 FrameReg = Mips::SP;
92 else {
94 if (TFI->hasFP(MF)) {
95 FrameReg = Mips::S0;
96 }
97 else {
98 if ((MI.getNumOperands()> OpNo+2) && MI.getOperand(OpNo+2).isReg())
99 FrameReg = MI.getOperand(OpNo+2).getReg();
100 else
101 FrameReg = Mips::SP;
102 }
103 }
104 // Calculate final offset.
105 // - There is no need to change the offset if the frame object
106 // is one of the
107 // following: an outgoing argument, pointer to a dynamically allocated
108 // stack space or a $gp restore location,
109 // - If the frame object is any of the following,
110 // its offset must be adjusted
111 // by adding the size of the stack:
112 // incoming argument, callee-saved register location or local variable.
113 int64_t Offset;
114 bool IsKill = false;
115 Offset = SPOffset + (int64_t)StackSize;
116 Offset += MI.getOperand(OpNo + 1).getImm();
117
118 LLVM_DEBUG(errs() << "Offset : " << Offset << "\n"
119 << "<--------->\n");
120
121 if (!MI.isDebugValue() &&
122 !Mips16InstrInfo::validImmediate(MI.getOpcode(), FrameReg, Offset)) {
123 MachineBasicBlock &MBB = *MI.getParent();
124 DebugLoc DL = II->getDebugLoc();
125 unsigned NewImm;
126 const Mips16InstrInfo &TII =
127 *static_cast<const Mips16InstrInfo *>(MF.getSubtarget().getInstrInfo());
128 FrameReg = TII.loadImmediate(FrameReg, Offset, MBB, II, DL, NewImm);
129 Offset = SignExtend64<16>(NewImm);
130 IsKill = true;
131 }
132 MI.getOperand(OpNo).ChangeToRegister(FrameReg, false, false, IsKill);
133 MI.getOperand(OpNo + 1).ChangeToImmediate(Offset);
134
135
136}
MachineInstrBuilder & UseMI
MachineBasicBlock & MBB
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
#define LLVM_DEBUG(...)
Definition: Debug.h:106
uint64_t Size
const HexagonInstrInfo * TII
IRTranslator LLVM IR MI
#define I(x, y, z)
Definition: MD5.cpp:58
uint64_t IntrinsicInst * II
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
A debug info location.
Definition: DebugLoc.h:33
void copyPhysReg(MachineBasicBlock &MBB, MachineBasicBlock::iterator I, const DebugLoc &DL, MCRegister DestReg, MCRegister SrcReg, bool KillSrc, bool RenamableDest=false, bool RenamableSrc=false) const override
Emit instructions to copy a pair of physical registers.
const MachineFunction * getParent() const
Return the MachineFunction containing this basic block.
The MachineFrameInfo class represents an abstract stack frame until prolog/epilog code is inserted.
const std::vector< CalleeSavedInfo > & getCalleeSavedInfo() const
Returns a reference to call saved info vector for the current function.
const TargetSubtargetInfo & getSubtarget() const
getSubtarget - Return the subtarget for which this machine code is being compiled.
MachineFrameInfo & getFrameInfo()
getFrameInfo - Return the frame info object for the current function.
Representation of each machine instruction.
Definition: MachineInstr.h:69
static bool validImmediate(unsigned Opcode, unsigned Reg, int64_t Amount)
bool requiresFrameIndexScavenging(const MachineFunction &MF) const override
bool useFPForScavengingIndex(const MachineFunction &MF) const override
bool saveScavengerRegister(MachineBasicBlock &MBB, MachineBasicBlock::iterator I, MachineBasicBlock::iterator &UseMI, const TargetRegisterClass *RC, Register Reg) const override
const TargetRegisterClass * intRegClass(unsigned Size) const override
Return GPR register class.
bool requiresRegisterScavenging(const MachineFunction &MF) const override
Wrapper class representing virtual and physical registers.
Definition: Register.h:19
Information about stack frame layout on the target.
bool hasFP(const MachineFunction &MF) const
hasFP - Return true if the specified function should have a dedicated frame pointer register.
TargetInstrInfo - Interface to description of machine instruction set.
virtual const TargetFrameLowering * getFrameLowering() const
virtual const TargetInstrInfo * getInstrInfo() const
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
@ Offset
Definition: DWP.cpp:480
raw_fd_ostream & errs()
This returns a reference to a raw_ostream for standard error.