HomeSort by: relevance | last modified time | path
    Searched refs:hasFP (Results 1 - 25 of 70) sorted by relevancy

1 2 3

  /src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
R600FrameLowering.h 30 bool hasFP(const MachineFunction &MF) const override {
SIFrameLowering.h 73 bool hasFP(const MachineFunction &MF) const override;
  /src/external/apache2/llvm/dist/llvm/lib/Target/BPF/
BPFFrameLowering.cpp 23 bool BPFFrameLowering::hasFP(const MachineFunction &MF) const { return true; }
BPFFrameLowering.h 29 bool hasFP(const MachineFunction &MF) const override;
  /src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/
NVPTXFrameLowering.h 25 bool hasFP(const MachineFunction &MF) const override;
NVPTXFrameLowering.cpp 30 bool NVPTXFrameLowering::hasFP(const MachineFunction &MF) const { return true; }
  /src/external/apache2/llvm/dist/llvm/lib/Target/MSP430/
MSP430RegisterInfo.cpp 64 if (TFI->hasFP(*MF))
88 if (TFI->hasFP(MF)) {
115 unsigned BasePtr = (TFI->hasFP(MF) ? MSP430::R4 : MSP430::SP);
121 if (!TFI->hasFP(MF))
159 return TFI->hasFP(MF) ? MSP430::R4 : MSP430::SP;
MSP430FrameLowering.h 47 bool hasFP(const MachineFunction &MF) const override;
MSP430FrameLowering.cpp 28 bool MSP430FrameLowering::hasFP(const MachineFunction &MF) const {
55 if (hasFP(MF)) {
129 if (hasFP(MF)) {
287 if (hasFP(MF)) {
  /src/external/apache2/llvm/dist/llvm/lib/Target/AVR/
AVRFrameLowering.h 24 bool hasFP(const MachineFunction &MF) const override;
  /src/external/apache2/llvm/dist/llvm/lib/Target/Lanai/
LanaiFrameLowering.h 47 bool hasFP(const MachineFunction & /*MF*/) const override { return true; }
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
MipsFrameLowering.h 33 bool hasFP(const MachineFunction &MF) const override;
Mips16FrameLowering.cpp 86 if (hasFP(MF))
103 if (hasFP(MF))
170 if (hasFP(MF))
MipsRegisterInfo.cpp 76 return 28 - TFI->hasFP(MF);
191 if (Subtarget.getFrameLowering()->hasFP(MF)) {
282 return TFI->hasFP(MF) ? Mips::S0 : Mips::SP;
284 return TFI->hasFP(MF) ? (IsN64 ? Mips::FP_64 : Mips::FP) :
MipsFrameLowering.cpp 89 // hasFP - Return true if the specified function should have a dedicated frame
93 bool MipsFrameLowering::hasFP(const MachineFunction &MF) const {
  /src/external/apache2/llvm/dist/llvm/lib/Target/ARC/
ARCFrameLowering.h 57 bool hasFP(const MachineFunction &MF) const override;
ARCFrameLowering.cpp 146 if (hasFP(MF)) {
184 if (hasFP(MF)) {
205 if (hasFP(MF)) {
226 if ((hasFP(MF) && Reg == ARC::FP) || (MFI.hasCalls() && Reg == ARC::BLINK))
253 if (hasFP(MF)) {
311 if (hasFP(MF)) {
354 if (hasFP(MF)) {
476 if (!hasFP(MF)) {
491 bool ARCFrameLowering::hasFP(const MachineFunction &MF) const {
493 bool HasFP = MF.getTarget().Options.DisableFramePointerElim(MF) |
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/Sparc/
SparcFrameLowering.h 38 bool hasFP(const MachineFunction &MF) const override;
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
WebAssemblyFrameLowering.h 44 bool hasFP(const MachineFunction &MF) const override;
WebAssemblyFrameLowering.cpp 54 bool WebAssemblyFrameLowering::hasFP(const MachineFunction &MF) const {
86 return MFI.getStackSize() || MFI.adjustsStack() || hasFP(MF);
194 assert(!I->getOperand(0).getImm() && (hasFP(MF) || hasBP(MF)) &&
264 if (hasFP(MF)) {
293 unsigned SPFPReg = hasFP(MF) ? getFPReg(MF) : getSPReg(MF);
  /src/external/apache2/llvm/dist/llvm/lib/Target/XCore/
XCoreFrameLowering.h 49 bool hasFP(const MachineFunction &MF) const override;
  /src/external/apache2/llvm/dist/llvm/lib/Target/RISCV/
RISCVFrameLowering.h 42 bool hasFP(const MachineFunction &MF) const override;
  /src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/
SystemZFrameLowering.h 50 bool hasFP(const MachineFunction &MF) const override;
  /src/external/apache2/llvm/dist/llvm/lib/Target/VE/
VEFrameLowering.h 42 bool hasFP(const MachineFunction &MF) const override;
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
TargetFrameLowering.h 268 /// hasFP - Return true if the specified function should have a dedicated
271 virtual bool hasFP(const MachineFunction &MF) const = 0;
279 return !hasFP(MF);
290 return hasReservedCallFrame(MF) || hasFP(MF);

Completed in 34 milliseconds

1 2 3