| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/ARC/ |
| D | ARCFrameLowering.cpp | 171 if (MFI.hasCalls() && !SavedBlink) { in emitPrologue() 214 if (MFI.hasCalls()) { in emitPrologue() 226 if ((hasFP(MF) && Reg == ARC::FP) || (MFI.hasCalls() && Reg == ARC::BLINK)) in emitPrologue() 275 if (MFI.hasCalls() && !SavedBlink) { in emitEpilogue() 362 if (MFI.hasCalls() || (UseSaveRestoreFunclet && Last > ARC::R14)) { in assignCalleeSavedSpillSlots()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/ |
| D | TargetOptionsImpl.cpp | 37 return MF.getFrameInfo().hasCalls(); in DisableFramePointerElim()
|
| D | RegUsageInfoPropagate.cpp | 108 if (!MFI.hasCalls() && !MFI.hasTailCall()) in runOnMachineFunction()
|
| D | MIRPrinter.cpp | 358 YamlMFI.HasCalls = MFI.hasCalls(); in convert()
|
| D | PrologEpilogInserter.cpp | 625 if (!MFI.hasCalls()) in spillCalleeSavedRegs()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| D | CloneFunction.cpp | 51 bool hasCalls = false, hasDynamicAllocas = false; in CloneBasicBlock() local 65 hasCalls |= (isa<CallInst>(I) && !isa<DbgInfoIntrinsic>(I)); in CloneBasicBlock() 74 CodeInfo->ContainsCalls |= hasCalls; in CloneBasicBlock() 375 bool hasCalls = false, hasDynamicAllocas = false, hasStaticAllocas = false; in CloneBlock() local 413 hasCalls |= (isa<CallInst>(II) && !isa<DbgInfoIntrinsic>(II)); in CloneBlock() 486 CodeInfo->ContainsCalls |= hasCalls; in CloneBlock()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
| D | WebAssemblyFrameLowering.cpp | 144 MF.getFunction().hasPersonalityFn() && MF.getFrameInfo().hasCalls(); in needsPrologForEH() 169 bool CanUseRedZone = MFI.getStackSize() <= RedZoneSize && !MFI.hasCalls() && in needsSPWriteback()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| D | SIFrameLowering.cpp | 505 (MRI.isPhysRegUsed(AMDGPU::FLAT_SCR) || FrameInfo.hasCalls() || in emitEntryFunctionPrologue() 1255 FrameInfo.hasCalls() && in determineCalleeSaves() 1307 const bool WillHaveFP = FrameInfo.hasCalls() && HaveAnyCSRVGPR; in determineCalleeSavesSGPR() 1405 if (MFI.hasCalls() && in hasFP() 1437 if (MFI.hasCalls()) in requiresStackPointerReference()
|
| D | AMDGPUResourceUsageAnalysis.cpp | 169 if (!FrameInfo.hasCalls() && !FrameInfo.hasTailCall()) { in analyzeResourceUsage()
|
| D | SIRegisterInfo.cpp | 616 return MFI.hasStackObjects() || MFI.hasCalls(); in requiresRegisterScavenging()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
| D | InstructionSelect.cpp | 280 if (MFI.hasCalls() && MF.hasInlineAsm()) in runOnMachineFunction()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/ProfileData/ |
| D | SampleProf.cpp | 136 if (hasCalls()) { in print()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
| D | SystemZFrameLowering.cpp | 165 if (MFFrame.hasCalls()) in determineCalleeSaves() 482 if (HasStackObject || MFFrame.hasCalls()) in emitPrologue()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/VE/ |
| D | VEFrameLowering.cpp | 479 return !MFI.hasCalls() // No calls in isLeafProc()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Sparc/ |
| D | SparcFrameLowering.cpp | 319 return !(MFI.hasCalls() // has calls in isLeafProc()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| D | MachineFrameInfo.h | 579 bool hasCalls() const { return HasCalls; } in hasCalls() function
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/ |
| D | SampleProf.h | 343 bool hasCalls() const { return !CallTargets.empty(); }
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/X86/ |
| D | X86FrameLowering.cpp | 1055 if (MFI.hasCalls()) in calculateMaxStackAlign() 2247 assert(!MFI.hasCalls() || (StackSize % 16) == 8); in getFrameIndexReference() 2265 assert((!MFI.hasCalls() || (FPDelta % 16) == 0) && in getFrameIndexReference() 3074 if (MFI.hasCalls()) { in adjustForHiPEPrologue()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/M68k/ |
| D | M68kFrameLowering.cpp | 189 if (MFI.hasCalls()) in calculateMaxStackAlign()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/RISCV/ |
| D | RISCVFrameLowering.cpp | 805 if (MF.getFunction().hasFnAttribute("interrupt") && MFI.hasCalls()) { in determineCalleeSaves()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
| D | PPCAsmPrinter.cpp | 1789 if (MF->getFrameInfo().hasCalls() || MF->getFrameInfo().hasTailCall() || in emitFunctionBodyStart()
|
| D | PPCFrameLowering.cpp | 2316 if (!EnablePEVectorSpills || MFI.hasCalls() || !Subtarget.hasP9Vector()) in assignCalleeSavedSpillSlots()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| D | HexagonFrameLowering.cpp | 1177 if ((MFI.hasCalls() && !enableAllocFrameElim(MF)) || HMFI.hasClobberLR()) in hasFP()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| D | SelectionDAGISel.cpp | 661 if (MFI.hasCalls() && MF->hasInlineAsm()) in runOnMachineFunction()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| D | AArch64FrameLowering.cpp | 353 return !(MFI.hasCalls() || hasFP(MF) || NumBytes > RedZoneSize || in canUseRedZone()
|