reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Overrides

include/llvm/CodeGen/TargetFrameLowering.h
  228   virtual bool hasFP(const MachineFunction &MF) const = 0;

Declarations

lib/Target/PowerPC/PPCFrameLowering.h
  104   bool hasFP(const MachineFunction &MF) const override;

References

lib/Target/PowerPC/PPCFrameLowering.cpp
  759   if (hasFP(MF) || RegInfo->hasBasePointer(MF))
  828   bool HasFP = hasFP(MF);
 1399   bool HasFP = hasFP(MF);
lib/Target/PowerPC/PPCRegisterInfo.cpp
  430     unsigned FP = TFI->hasFP(MF) ? 1 : 0;
 1139     return TFI->hasFP(MF) ? PPC::R31 : PPC::R1;
 1141     return TFI->hasFP(MF) ? PPC::X31 : PPC::X1;