Searched refs:hasFP (Results 1 - 25 of 42) sorted by relevance

12

/freebsd-10-stable/contrib/llvm/include/llvm/Target/
H A DTargetFrameLowering.h154 /// hasFP - Return true if the specified function should have a dedicated
157 virtual bool hasFP(const MachineFunction &MF) const = 0;
165 return !hasFP(MF);
176 return hasReservedCallFrame(MF) || hasFP(MF);
/freebsd-10-stable/contrib/llvm/lib/Target/Mips/
H A DMipsFrameLowering.h35 bool hasFP(const MachineFunction &MF) const;
H A DMipsFrameLowering.cpp93 // hasFP - Return true if the specified function should have a dedicated frame
96 bool MipsFrameLowering::hasFP(const MachineFunction &MF) const { function in class:MipsFrameLowering
H A DMipsRegisterInfo.cpp66 return 28 - TFI->hasFP(MF);
151 if (MF.getTarget().getFrameLowering()->hasFP(MF)) {
236 return TFI->hasFP(MF) ? Mips::S0 : Mips::SP;
238 return TFI->hasFP(MF) ? (IsN64 ? Mips::FP_64 : Mips::FP) :
H A DMips16RegisterInfo.cpp110 if (TFI->hasFP(MF)) {
H A DMips16FrameLowering.cpp71 if (hasFP(MF))
89 if (hasFP(MF))
/freebsd-10-stable/contrib/llvm/lib/Target/NVPTX/
H A DNVPTXFrameLowering.h31 virtual bool hasFP(const MachineFunction &MF) const;
H A DNVPTXFrameLowering.cpp29 bool NVPTXFrameLowering::hasFP(const MachineFunction &MF) const { return true; } function in class:NVPTXFrameLowering
/freebsd-10-stable/contrib/llvm/lib/Target/R600/
H A DAMDGPUFrameLowering.h41 virtual bool hasFP(const MachineFunction &MF) const;
H A DAMDGPUFrameLowering.cpp101 AMDGPUFrameLowering::hasFP(const MachineFunction &MF) const { function in class:AMDGPUFrameLowering
/freebsd-10-stable/contrib/llvm/lib/Target/Hexagon/
H A DHexagonFrameLowering.h49 bool hasFP(const MachineFunction &MF) const;
H A DHexagonFrameLowering.cpp114 if (hasFP(MF)) {
153 if (hasFP(MF) || MF.getTarget().getOptLevel() == CodeGenOpt::None) {
203 bool HexagonFrameLowering::hasFP(const MachineFunction &MF) const { function in class:HexagonFrameLowering
/freebsd-10-stable/contrib/llvm/lib/Target/MSP430/
H A DMSP430FrameLowering.h51 bool hasFP(const MachineFunction &MF) const;
H A DMSP430RegisterInfo.cpp67 if (TFI->hasFP(*MF))
91 if (TFI->hasFP(MF))
116 unsigned BasePtr = (TFI->hasFP(MF) ? MSP430::FPW : MSP430::SPW);
122 if (!TFI->hasFP(MF))
161 return TFI->hasFP(MF) ? MSP430::FPW : MSP430::SPW;
H A DMSP430FrameLowering.cpp29 bool MSP430FrameLowering::hasFP(const MachineFunction &MF) const { function in class:MSP430FrameLowering
55 if (hasFP(MF)) {
129 if (hasFP(MF)) {
291 if (hasFP(MF)) {
/freebsd-10-stable/contrib/llvm/lib/Target/Sparc/
H A DSparcFrameLowering.h42 bool hasFP(const MachineFunction &MF) const;
/freebsd-10-stable/contrib/llvm/lib/Target/XCore/
H A DXCoreFrameLowering.h46 bool hasFP(const MachineFunction &MF) const;
H A DXCoreRegisterInfo.cpp80 if (TFI->hasFP(MF)) {
91 return TFI->hasFP(MF);
151 bool FP = TFI->hasFP(MF);
260 return TFI->hasFP(MF) ? XCore::R10 : XCore::SP;
/freebsd-10-stable/contrib/llvm/lib/Target/AArch64/
H A DAArch64FrameLowering.h97 virtual bool hasFP(const MachineFunction &MF) const;
H A DAArch64RegisterInfo.cpp71 if (TFI->hasFP(MF)) {
160 if (TFI->hasFP(MF))
H A DAArch64FrameLowering.cpp108 bool FPNeedsSetting = hasFP(MF);
162 if (!hasFP(MF) && NumResidualBytes) {
362 if (hasFP(MF)) {
565 AArch64FrameLowering::hasFP(const MachineFunction &MF) const { function in class:AArch64FrameLowering
594 return !(hasFP(MF) && MFI->hasVarSizedObjects());
/freebsd-10-stable/contrib/llvm/lib/Target/ARM/
H A DARMFrameLowering.h49 bool hasFP(const MachineFunction &MF) const;
/freebsd-10-stable/contrib/llvm/lib/Target/SystemZ/
H A DSystemZFrameLowering.h56 virtual bool hasFP(const MachineFunction &MF) const LLVM_OVERRIDE;
H A DSystemZRegisterInfo.cpp42 if (TFI->hasFP(MF)) {
140 return TFI->hasFP(MF) ? SystemZ::R11D : SystemZ::R15D;
/freebsd-10-stable/contrib/llvm/lib/Target/X86/
H A DX86FrameLowering.h62 bool hasFP(const MachineFunction &MF) const;

Completed in 115 milliseconds

12