Home
last modified time | relevance | path

Searched refs:hasCalls (Results 1 – 25 of 26) sorted by relevance

12

/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/ARC/
DARCFrameLowering.cpp171 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/
DTargetOptionsImpl.cpp37 return MF.getFrameInfo().hasCalls(); in DisableFramePointerElim()
DRegUsageInfoPropagate.cpp108 if (!MFI.hasCalls() && !MFI.hasTailCall()) in runOnMachineFunction()
DMIRPrinter.cpp358 YamlMFI.HasCalls = MFI.hasCalls(); in convert()
DPrologEpilogInserter.cpp625 if (!MFI.hasCalls()) in spillCalleeSavedRegs()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
DCloneFunction.cpp51 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/
DWebAssemblyFrameLowering.cpp144 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/
DSIFrameLowering.cpp505 (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()
DAMDGPUResourceUsageAnalysis.cpp169 if (!FrameInfo.hasCalls() && !FrameInfo.hasTailCall()) { in analyzeResourceUsage()
DSIRegisterInfo.cpp616 return MFI.hasStackObjects() || MFI.hasCalls(); in requiresRegisterScavenging()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
DInstructionSelect.cpp280 if (MFI.hasCalls() && MF.hasInlineAsm()) in runOnMachineFunction()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/ProfileData/
DSampleProf.cpp136 if (hasCalls()) { in print()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
DSystemZFrameLowering.cpp165 if (MFFrame.hasCalls()) in determineCalleeSaves()
482 if (HasStackObject || MFFrame.hasCalls()) in emitPrologue()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/VE/
DVEFrameLowering.cpp479 return !MFI.hasCalls() // No calls in isLeafProc()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Sparc/
DSparcFrameLowering.cpp319 return !(MFI.hasCalls() // has calls in isLeafProc()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
DMachineFrameInfo.h579 bool hasCalls() const { return HasCalls; } in hasCalls() function
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/ProfileData/
DSampleProf.h343 bool hasCalls() const { return !CallTargets.empty(); }
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/X86/
DX86FrameLowering.cpp1055 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/
DM68kFrameLowering.cpp189 if (MFI.hasCalls()) in calculateMaxStackAlign()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/RISCV/
DRISCVFrameLowering.cpp805 if (MF.getFunction().hasFnAttribute("interrupt") && MFI.hasCalls()) { in determineCalleeSaves()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
DPPCAsmPrinter.cpp1789 if (MF->getFrameInfo().hasCalls() || MF->getFrameInfo().hasTailCall() || in emitFunctionBodyStart()
DPPCFrameLowering.cpp2316 if (!EnablePEVectorSpills || MFI.hasCalls() || !Subtarget.hasP9Vector()) in assignCalleeSavedSpillSlots()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
DHexagonFrameLowering.cpp1177 if ((MFI.hasCalls() && !enableAllocFrameElim(MF)) || HMFI.hasClobberLR()) in hasFP()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGISel.cpp661 if (MFI.hasCalls() && MF->hasInlineAsm()) in runOnMachineFunction()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
DAArch64FrameLowering.cpp353 return !(MFI.hasCalls() || hasFP(MF) || NumBytes > RedZoneSize || in canUseRedZone()

12