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

/external/llvm/lib/CodeGen/
H A DTargetOptionsImpl.cpp28 return MFI->hasCalls();
/external/llvm/include/llvm/ProfileData/
H A DSampleProf.h143 bool hasCalls() const { return CallTargets.size() > 0; } function in class:llvm::sampleprof::SampleRecord
/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;
322 bool hasCalls = false, hasDynamicAllocas = false, hasStaticAllocas = false; local
375 hasCalls |= (isa<CallInst>(II) && !isa<DbgInfoIntrinsic>(II));
455 CodeInfo->ContainsCalls |= hasCalls;
/external/llvm/lib/Target/SystemZ/
H A DSystemZFrameLowering.cpp89 if (MFFrame->hasCalls())
485 if (StackSize || MFFrame->hasVarSizedObjects() || MFFrame->hasCalls())
/external/llvm/include/llvm/CodeGen/
H A DMachineFrameInfo.h483 /// hasCalls - Return true if the current function has any function calls.
484 bool hasCalls() const { return HasCalls; } function in class:llvm::MachineFrameInfo
/external/llvm/lib/ProfileData/
H A DSampleProfReader.cpp120 if (Sample.hasCalls()) {
/external/llvm/lib/Target/Hexagon/
H A DHexagonFrameLowering.cpp207 return (MFI->hasCalls() || (MFI->getStackSize() > 0) ||
/external/llvm/lib/Target/Sparc/
H A DSparcFrameLowering.cpp208 return !(MFI->hasCalls() // has calls
/external/llvm/lib/Target/AArch64/
H A DAArch64RegisterInfo.cpp249 if (MFI->hasCalls() || (MF.getTarget().Options.DisableFramePointerElim(MF) &&
H A DAArch64FrameLowering.cpp130 // Note: currently hasFP() is always true for hasCalls(), but that's an
133 if (MFI->hasCalls() || hasFP(MF) || NumBytes > 128)
143 return (MFI->hasCalls() || MFI->hasVarSizedObjects() ||
/external/llvm/lib/Target/X86/
H A DX86FrameLowering.cpp476 if (MFI->hasCalls())
1219 assert(!MFI->hasCalls() || (StackSize % 16) == 8);
1237 assert((!MFI->hasCalls() || (FPDelta % 16) == 0) &&
1870 if (MFI->hasCalls()) {
/external/llvm/lib/Target/ARM/
H A DARMFrameLowering.cpp59 MFI->hasCalls()) ||
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGISel.cpp543 if (MFI->hasCalls() && MF->hasInlineAsm())

Completed in 223 milliseconds