Searched refs:hasCalls (Results 1 - 11 of 11) sorted by relevance

/external/llvm/lib/CodeGen/
H A DTargetOptionsImpl.cpp28 return MFI->hasCalls();
/external/llvm/lib/Transforms/Utils/
H A DCloneFunction.cpp45 bool hasCalls = false, hasDynamicAllocas = false, hasStaticAllocas = false; local
56 hasCalls |= (isa<CallInst>(II) && !isa<DbgInfoIntrinsic>(II));
66 CodeInfo->ContainsCalls |= hasCalls;
312 bool hasCalls = false, hasDynamicAllocas = false, hasStaticAllocas = false; local
345 hasCalls |= (isa<CallInst>(II) && !isa<DbgInfoIntrinsic>(II));
405 CodeInfo->ContainsCalls |= hasCalls;
/external/llvm/include/llvm/CodeGen/
H A DMachineFrameInfo.h464 /// hasCalls - Return true if the current function has any function calls.
465 bool hasCalls() const { return HasCalls; } function in class:llvm::MachineFrameInfo
/external/llvm/lib/Target/SystemZ/
H A DSystemZFrameLowering.cpp88 if (MFFrame->hasCalls())
483 if (StackSize || MFFrame->hasVarSizedObjects() || MFFrame->hasCalls())
/external/llvm/lib/Target/AArch64/
H A DAArch64RegisterInfo.cpp205 if (MFI->hasCalls() || (MF.getTarget().Options.DisableFramePointerElim(MF) &&
H A DAArch64FrameLowering.cpp75 // Note: currently hasFP() is always true for hasCalls(), but that's an
78 if (MFI->hasCalls() || hasFP(MF) || NumBytes > 128)
94 return (MFI->hasCalls() || MFI->hasVarSizedObjects() ||
/external/llvm/lib/Target/Hexagon/
H A DHexagonFrameLowering.cpp207 return (MFI->hasCalls() || (MFI->getStackSize() > 0) ||
/external/llvm/lib/Target/Sparc/
H A DSparcFrameLowering.cpp211 return !(MFI->hasCalls() // has calls
/external/llvm/lib/Target/X86/
H A DX86FrameLowering.cpp473 if (MFI->hasCalls())
881 if (MFI->hasCalls())
1552 if (MFI->hasCalls()) {
/external/llvm/lib/Target/ARM/
H A DARMFrameLowering.cpp59 MFI->hasCalls()) ||
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGISel.cpp533 if (MFI->hasCalls() && MF->hasInlineAsm())

Completed in 3476 milliseconds