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/X86/X86FrameLowering.h
   94   bool hasFP(const MachineFunction &MF) const override;

References

gen/lib/Target/X86/X86GenDAGISel.inc
253514   case 158: return (!Subtarget->isTargetWin64() ||Subtarget->getFrameLowering()->hasFP(*MF)) && (MF->getFunction().hasMinSize());
gen/lib/Target/X86/X86GenGlobalISel.inc
  377   if (!Subtarget->isTargetWin64() ||Subtarget->getFrameLowering()->hasFP(*MF))
lib/Target/X86/X86CallFrameOptimization.cpp
  143        (MF.getFunction().needsUnwindTableEntry() && !TFL->hasFP(MF))))
  580     if (!TFL->hasFP(MF))
lib/Target/X86/X86FrameLowering.cpp
   63          (hasFP(MF) && !TRI->needsStackRealignment(MF)) ||
  617     const bool HasFP = hasFP(MF);
  989   bool HasFP = hasFP(MF);
 1515   return !MF.getTarget().getMCAsmInfo()->usesWindowsCFI() || hasFP(MF);
 1614   bool HasFP = hasFP(MF);
 1714     if (!hasFP(MF) && NeedsDwarfCFI) {
 1731   if (!hasFP(MF) && NeedsDwarfCFI) {
 1783   bool HasFP = hasFP(MF);
 1996   if (hasFP(MF)) {
 2845     if (isDestroy && InternalAmt && DwarfCFI && !hasFP(MF))
 2867     if (DwarfCFI && !hasFP(MF)) {
 2934   return (MF.getFunction().hasFnAttribute(Attribute::NoUnwind) || hasFP(MF)) &&
 3153   if (!TRI->needsStackRealignment(MF) && hasFP(MF))
lib/Target/X86/X86InstrInfo.cpp
 3969   bool EmitCFI = !TFL->hasFP(MF) && NeedsDwarfCFI;
lib/Target/X86/X86MCInstLower.cpp
 1975     bool hasFP = FrameLowering->hasFP(*MF);
lib/Target/X86/X86RegisterInfo.cpp
  195       return TFI->hasFP(MF) && TFI->Uses64BitFramePtr
  264   unsigned FPDiff = TFI->hasFP(MF) ? 1 : 0;
  540   if (TFI->hasFP(MF)) {
  795   return TFI->hasFP(MF) ? FramePtr : StackPtr;