LLVM  8.0.1
MipsMachineFunction.cpp
Go to the documentation of this file.
1 //===-- MipsMachineFunctionInfo.cpp - Private data used for Mips ----------===//
2 //
3 // The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 
10 #include "MipsMachineFunction.h"
12 #include "MipsSubtarget.h"
13 #include "MipsTargetMachine.h"
19 
20 using namespace llvm;
21 
22 static cl::opt<bool>
23 FixGlobalBaseReg("mips-fix-global-base-reg", cl::Hidden, cl::init(true),
24  cl::desc("Always use $gp as the global base register."));
25 
27 
29  return GlobalBaseReg;
30 }
31 
33  auto &STI = static_cast<const MipsSubtarget &>(MF.getSubtarget());
34  auto &TM = static_cast<const MipsTargetMachine &>(MF.getTarget());
35 
36  if (STI.inMips16Mode())
37  return Mips::CPU16RegsRegClass;
38 
39  if (STI.inMicroMipsMode())
40  return Mips::GPRMM16RegClass;
41 
42  if (TM.getABI().IsN64())
43  return Mips::GPR64RegClass;
44 
45  return Mips::GPR32RegClass;
46 }
47 
49  if (!GlobalBaseReg)
50  GlobalBaseReg =
52  return GlobalBaseReg;
53 }
54 
57  for (int I = 0; I < 4; ++I) {
58  const TargetRegisterClass &RC =
59  static_cast<const MipsTargetMachine &>(MF.getTarget()).getABI().IsN64()
60  ? Mips::GPR64RegClass
61  : Mips::GPR32RegClass;
62 
63  EhDataRegFI[I] = MF.getFrameInfo().CreateStackObject(TRI.getSpillSize(RC),
64  TRI.getSpillAlignment(RC), false);
65  }
66 }
67 
69  // ISRs require spill slots for Status & ErrorPC Coprocessor 0 registers.
70  // The current implementation only supports Mips32r2+ not Mips64rX. Status
71  // is always 32 bits, ErrorPC is 32 or 64 bits dependent on architecture,
72  // however Mips32r2+ is the supported architecture.
73  const TargetRegisterClass &RC = Mips::GPR32RegClass;
75 
76  for (int I = 0; I < 2; ++I)
77  ISRDataRegFI[I] = MF.getFrameInfo().CreateStackObject(
78  TRI.getSpillSize(RC), TRI.getSpillAlignment(RC), false);
79 }
80 
81 bool MipsFunctionInfo::isEhDataRegFI(int FI) const {
82  return CallsEhReturn && (FI == EhDataRegFI[0] || FI == EhDataRegFI[1]
83  || FI == EhDataRegFI[2] || FI == EhDataRegFI[3]);
84 }
85 
86 bool MipsFunctionInfo::isISRRegFI(int FI) const {
87  return IsISR && (FI == ISRDataRegFI[0] || FI == ISRDataRegFI[1]);
88 }
91 }
92 
95 }
96 
99  if (MoveF64ViaSpillFI == -1) {
100  MoveF64ViaSpillFI = MF.getFrameInfo().CreateStackObject(
101  TRI.getSpillSize(*RC), TRI.getSpillAlignment(*RC), false);
102  }
103  return MoveF64ViaSpillFI;
104 }
105 
106 void MipsFunctionInfo::anchor() {}
This class represents lattice values for constants.
Definition: AllocatorList.h:24
virtual const TargetRegisterInfo * getRegisterInfo() const
getRegisterInfo - If register information is available, return it.
unsigned const TargetRegisterInfo * TRI
int CreateStackObject(uint64_t Size, unsigned Alignment, bool isSpillSlot, const AllocaInst *Alloca=nullptr, uint8_t ID=0)
Create a new statically sized stack object, returning a nonnegative identifier to represent it...
unsigned getSpillSize(const TargetRegisterClass &RC) const
Return the size in bytes of the stack slot allocated to hold a spilled copy of a register from class ...
unsigned getSpillAlignment(const TargetRegisterClass &RC) const
Return the minimum required alignment in bytes for a spill slot for a register of this class...
MachinePointerInfo callPtrInfo(const char *ES)
Create a MachinePointerInfo that has an ExternalSymbolPseudoSourceValue object representing a GOT ent...
PseudoSourceValueManager & getPSVManager() const
static const TargetRegisterClass & getGlobalBaseRegClass(MachineFunction &MF)
initializer< Ty > init(const Ty &Val)
Definition: CommandLine.h:423
const PseudoSourceValue * getExternalSymbolCallEntry(const char *ES)
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.
TargetRegisterInfo base class - We assume that the target defines a static array of TargetRegisterDes...
This class contains a discriminated union of information about pointers in memory operands...
const PseudoSourceValue * getGlobalValueCallEntry(const GlobalValue *GV)
MachineRegisterInfo & getRegInfo()
getRegInfo - Return information about the registers currently in use.
#define I(x, y, z)
Definition: MD5.cpp:58
int getMoveF64ViaSpillFI(const TargetRegisterClass *RC)
const LLVMTargetMachine & getTarget() const
getTarget - Return the target machine this machine code is compiled with
static cl::opt< bool > FixGlobalBaseReg("mips-fix-global-base-reg", cl::Hidden, cl::init(true), cl::desc("Always use $gp as the global base register."))
bool isEhDataRegFI(int FI) const
unsigned createVirtualRegister(const TargetRegisterClass *RegClass, StringRef Name="")
createVirtualRegister - Create and return a new virtual register in the function with the specified r...
bool isISRRegFI(int FI) const
~MipsFunctionInfo() override