HomeSort by relevance Sort by last modified time
    Searched refs:hasFP (Results 1 - 25 of 42) sorted by null

1 2

  /external/llvm/lib/Target/Sparc/
SparcFrameLowering.h 39 bool hasFP(const MachineFunction &MF) const { return false; }
  /external/llvm/lib/Target/Mips/
MipsFrameLowering.h 36 bool hasFP(const MachineFunction &MF) const;
MipsRegisterInfo.cpp 61 return 28 - TFI->hasFP(MF);
134 if (MF.getTarget().getFrameLowering()->hasFP(MF)) {
204 return TFI->hasFP(MF) ? Mips::S0 : Mips::SP;
206 return TFI->hasFP(MF) ? (IsN64 ? Mips::FP_64 : Mips::FP) :
MipsFrameLowering.cpp 93 // hasFP - Return true if the specified function should have a dedicated frame
96 bool MipsFrameLowering::hasFP(const MachineFunction &MF) const {
Mips16RegisterInfo.cpp 105 if (TFI->hasFP(MF)) {
Mips16FrameLowering.cpp 72 if (hasFP(MF))
90 if (hasFP(MF))
  /external/llvm/lib/Target/NVPTX/
NVPTXFrameLowering.h 32 virtual bool hasFP(const MachineFunction &MF) const;
NVPTXFrameLowering.cpp 28 bool NVPTXFrameLowering::hasFP(const MachineFunction &MF) const {
  /external/llvm/lib/Target/R600/
AMDGPUFrameLowering.h 41 virtual bool hasFP(const MachineFunction &MF) const;
AMDGPUFrameLowering.cpp 120 AMDGPUFrameLowering::hasFP(const MachineFunction &MF) const {
  /external/llvm/include/llvm/Target/
TargetFrameLowering.h 149 /// hasFP - Return true if the specified function should have a dedicated
152 virtual bool hasFP(const MachineFunction &MF) const = 0;
160 return !hasFP(MF);
171 return hasReservedCallFrame(MF) || hasFP(MF);
  /external/llvm/lib/Target/MBlaze/
MBlazeFrameLowering.h 46 bool hasFP(const MachineFunction &MF) const;
  /external/llvm/lib/Target/Hexagon/
HexagonFrameLowering.h 49 bool hasFP(const MachineFunction &MF) const;
HexagonFrameLowering.cpp 141 if (hasFP(MF)) {
179 if (hasFP(MF)) {
205 bool HexagonFrameLowering::hasFP(const MachineFunction &MF) const {
  /external/llvm/lib/Target/MSP430/
MSP430FrameLowering.h 51 bool hasFP(const MachineFunction &MF) const;
MSP430RegisterInfo.cpp 68 if (TFI->hasFP(*MF))
92 if (TFI->hasFP(MF))
117 unsigned BasePtr = (TFI->hasFP(MF) ? MSP430::FPW : MSP430::SPW);
123 if (!TFI->hasFP(MF))
161 return TFI->hasFP(MF) ? MSP430::FPW : MSP430::SPW;
MSP430FrameLowering.cpp 29 bool MSP430FrameLowering::hasFP(const MachineFunction &MF) const {
55 if (hasFP(MF)) {
129 if (hasFP(MF)) {
291 if (hasFP(MF)) {
  /external/llvm/lib/Target/XCore/
XCoreFrameLowering.h 46 bool hasFP(const MachineFunction &MF) const;
XCoreRegisterInfo.cpp 80 if (TFI->hasFP(MF)) {
91 return TFI->hasFP(MF);
150 bool FP = TFI->hasFP(MF);
258 return TFI->hasFP(MF) ? XCore::R10 : XCore::SP;
  /external/llvm/lib/Target/AArch64/
AArch64FrameLowering.h 97 virtual bool hasFP(const MachineFunction &MF) const;
AArch64RegisterInfo.cpp 72 if (TFI->hasFP(MF)) {
159 if (TFI->hasFP(MF))
AArch64FrameLowering.cpp 107 bool FPNeedsSetting = hasFP(MF);
161 if (!hasFP(MF) && NumResidualBytes) {
361 if (hasFP(MF)) {
563 AArch64FrameLowering::hasFP(const MachineFunction &MF) const {
592 return !(hasFP(MF) && MFI->hasVarSizedObjects());
  /external/llvm/lib/Target/ARM/
ARMFrameLowering.h 49 bool hasFP(const MachineFunction &MF) const;
ARMBaseRegisterInfo.cpp 91 if (TFI->hasFP(MF))
155 return TFI->hasFP(MF) ? 4 : 5;
157 unsigned FP = TFI->hasFP(MF) ? 1 : 0;
349 if (TFI->hasFP(MF))
521 if (TFI->hasFP(MF) &&
  /external/llvm/lib/Target/X86/
X86FrameLowering.h 61 bool hasFP(const MachineFunction &MF) const;

Completed in 490 milliseconds

1 2