HomeSort by relevance Sort by last modified time
    Searched refs:hasCalls (Results 1 - 11 of 11) sorted by null

  /external/llvm/lib/CodeGen/
TargetOptionsImpl.cpp 28 return MFI->hasCalls();
  /external/llvm/lib/Transforms/Utils/
CloneFunction.cpp 45 bool hasCalls = false, hasDynamicAllocas = false, hasStaticAllocas = false;
56 hasCalls |= (isa<CallInst>(II) && !isa<DbgInfoIntrinsic>(II));
66 CodeInfo->ContainsCalls |= hasCalls;
312 bool hasCalls = false, hasDynamicAllocas = false, hasStaticAllocas = false;
345 hasCalls |= (isa<CallInst>(II) && !isa<DbgInfoIntrinsic>(II));
405 CodeInfo->ContainsCalls |= hasCalls;
  /external/llvm/include/llvm/CodeGen/
MachineFrameInfo.h 183 /// HasCalls - Set to true if this function has any function calls.
184 bool HasCalls;
244 HasCalls = false;
464 /// hasCalls - Return true if the current function has any function calls.
465 bool hasCalls() const { return HasCalls; }
466 void setHasCalls(bool V) { HasCalls = V; }
  /external/llvm/lib/Target/SystemZ/
SystemZFrameLowering.cpp 88 if (MFFrame->hasCalls())
483 if (StackSize || MFFrame->hasVarSizedObjects() || MFFrame->hasCalls())
  /external/llvm/lib/Target/AArch64/
AArch64RegisterInfo.cpp 205 if (MFI->hasCalls() || (MF.getTarget().Options.DisableFramePointerElim(MF) &&
AArch64FrameLowering.cpp 75 // 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() ||
    [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonFrameLowering.cpp 207 return (MFI->hasCalls() || (MFI->getStackSize() > 0) ||
  /external/llvm/lib/Target/Sparc/
SparcFrameLowering.cpp 211 return !(MFI->hasCalls() // has calls
  /external/llvm/lib/Target/X86/
X86FrameLowering.cpp 473 if (MFI->hasCalls())
881 if (MFI->hasCalls())
    [all...]
  /external/llvm/lib/Target/ARM/
ARMFrameLowering.cpp 59 MFI->hasCalls()) ||
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGISel.cpp 533 if (MFI->hasCalls() && MF->hasInlineAsm())
    [all...]

Completed in 102 milliseconds