/freebsd/contrib/llvm-project/llvm/lib/Target/ARC/ |
H A D | ARCFrameLowering.cpp | 170 if (MFI.hasCalls() && !SavedBlink) { in emitPrologue() 213 if (MFI.hasCalls()) { in emitPrologue() 225 if ((hasFP(MF) && Reg == ARC::FP) || (MFI.hasCalls() && Reg == ARC::BLINK)) in emitPrologue() 274 if (MFI.hasCalls() && !SavedBlink) { in emitEpilogue() 361 if (MFI.hasCalls() || (UseSaveRestoreFunclet && Last > ARC::R14)) { in assignCalleeSavedSpillSlots()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | TargetOptionsImpl.cpp | 37 return MF.getFrameInfo().hasCalls(); in DisableFramePointerElim()
|
H A D | RegUsageInfoPropagate.cpp | 107 if (!MFI.hasCalls() && !MFI.hasTailCall()) in runOnMachineFunction()
|
H A D | MIRPrinter.cpp | 362 YamlMFI.HasCalls = MFI.hasCalls(); in convert()
|
H A D | PrologEpilogInserter.cpp | 680 if (!MFI.hasCalls()) in spillCalleeSavedRegs()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
H A D | CloneFunction.cpp | 53 bool hasCalls = false, hasDynamicAllocas = false, hasMemProfMetadata = false; in CloneBasicBlock() local 71 hasCalls = true; in CloneBasicBlock() 82 CodeInfo->ContainsCalls |= hasCalls; in CloneBasicBlock() 492 bool hasCalls = false, hasDynamicAllocas = false, hasStaticAllocas = false; in CloneBlock() local 551 hasCalls = true; in CloneBlock() 638 CodeInfo->ContainsCalls |= hasCalls; in CloneBlock()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
H A D | WebAssemblyFrameLowering.cpp | 151 MF.getFunction().hasPersonalityFn() && MF.getFrameInfo().hasCalls(); in needsSP() 176 bool CanUseRedZone = MFI.getStackSize() <= RedZoneSize && !MFI.hasCalls() && in getSPReg()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | SIFrameLowering.cpp | 708 (MRI.isPhysRegUsed(AMDGPU::FLAT_SCR) || FrameInfo.hasCalls() || in emitEntryFunctionPrologue() 1547 FrameInfo.hasCalls() && in determinePrologEpilogSGPRSaves() 1676 FrameInfo.hasCalls() && (AllSavedRegs.any() || MFI->hasSpilledSGPRs()); in determineCalleeSavesSGPR() 1691 (FrameInfo.hasCalls() || MRI.isPhysRegModified(RetAddrReg))) { in determineCalleeSavesSGPR() 1819 if (MFI.hasCalls() && in hasFP() 1855 if (MFI.hasCalls()) in requiresStackPointerReference()
|
H A D | AMDGPUResourceUsageAnalysis.cpp | 216 if (!FrameInfo.hasCalls() && !FrameInfo.hasTailCall()) { in analyzeResourceUsage()
|
H A D | SIMachineFunctionInfo.cpp | 768 MF.getFrameInfo().hasCalls()) { in usesAGPRs()
|
H A D | GCNHazardRecognizer.cpp | 2947 if (MF->getFrameInfo().hasCalls()) in fixRequiredExportPriority()
|
H A D | SIRegisterInfo.cpp | 762 return MFI.hasStackObjects() || MFI.hasCalls(); in requiresRegisterScavenging()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
H A D | InstructionSelect.cpp | 307 if (MFI.hasCalls() && MF.hasInlineAsm()) in runOnMachineFunction()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/VE/ |
H A D | VEFrameLowering.cpp | 479 return !MFI.hasCalls() // No calls in isLeafProc()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Sparc/ |
H A D | SparcFrameLowering.cpp | 329 return !(MFI.hasCalls() // has calls in isLeafProc()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
H A D | MachineFrameInfo.h | 621 bool hasCalls() const { return HasCalls; } in hasCalls() function
|
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
H A D | SystemZFrameLowering.cpp | 262 if (MFFrame.hasCalls()) in determineCalleeSaves() 596 if (HasStackObject || MFFrame.hasCalls()) in emitPrologue() 927 if (MFFrame.hasCalls()) in isXPLeafCandidate()
|
/freebsd/contrib/llvm-project/llvm/lib/ProfileData/ |
H A D | SampleProf.cpp | 136 if (hasCalls()) { in print()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/CSKY/ |
H A D | CSKYFrameLowering.cpp | 378 if (MF.getFunction().hasFnAttribute("interrupt") && MFI.hasCalls()) { in determineCalleeSaves()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/M68k/ |
H A D | M68kFrameLowering.cpp | 189 if (MFI.hasCalls()) in calculateMaxStackAlign()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86FrameLowering.cpp | 1229 if (MFI.hasCalls()) in calculateMaxStackAlign() 2636 assert(!MFI.hasCalls() || (StackSize % 16) == 8); in getFrameIndexReference() 2655 assert((!MFI.hasCalls() || (FPDelta % 16) == 0) && in getFrameIndexReference() 3546 if (MFI.hasCalls()) { in adjustForHiPEPrologue()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/ProfileData/ |
H A D | SampleProf.h | 390 bool hasCalls() const { return !CallTargets.empty(); }
|
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
H A D | HexagonFrameLowering.cpp | 1179 if ((MFI.hasCalls() && !enableAllocFrameElim(MF)) || HMFI.hasClobberLR()) in hasFP()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/ |
H A D | PPCFrameLowering.cpp | 2358 if (!EnablePEVectorSpills || MFI.hasCalls() || !Subtarget.hasP9Vector()) in assignCalleeSavedSpillSlots()
|
H A D | PPCAsmPrinter.cpp | 2202 if (MF->getFrameInfo().hasCalls() || MF->getFrameInfo().hasTailCall() || in emitFunctionBodyStart()
|