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

  /external/llvm/lib/CodeGen/
TargetOptionsImpl.cpp 30 return MFI->hasCalls();
  /external/llvm/lib/Transforms/Utils/
CloneFunction.cpp 44 bool hasCalls = false, hasDynamicAllocas = false, hasStaticAllocas = false;
55 hasCalls |= (isa<CallInst>(II) && !isa<DbgInfoIntrinsic>(II));
65 CodeInfo->ContainsCalls |= hasCalls;
258 bool hasCalls = false, hasDynamicAllocas = false, hasStaticAllocas = false;
291 hasCalls |= (isa<CallInst>(II) && !isa<DbgInfoIntrinsic>(II));
351 CodeInfo->ContainsCalls |= hasCalls;
  /external/llvm/include/llvm/CodeGen/
MachineFrameInfo.h 180 /// HasCalls - Set to true if this function has any function calls.
181 bool HasCalls;
235 HasCalls = false;
450 /// hasCalls - Return true if the current function has any function calls.
451 bool hasCalls() const { return HasCalls; }
452 void setHasCalls(bool V) { HasCalls = V; }
  /external/llvm/lib/Target/Sparc/
SparcFrameLowering.cpp 167 return !(MFI->hasCalls() // has calls
  /external/llvm/lib/Target/SystemZ/
SystemZFrameLowering.cpp 89 if (MFFrame->hasCalls())
492 if (StackSize || MFFrame->hasVarSizedObjects() || MFFrame->hasCalls())
  /external/llvm/lib/Target/Hexagon/
HexagonFrameLowering.cpp 207 return (MFI->hasCalls() || (MFI->getStackSize() > 0) ||
  /external/llvm/lib/Target/X86/
X86FrameLowering.cpp 675 if (MFI->hasCalls())
    [all...]
  /external/llvm/lib/Target/AArch64/
AArch64FrameLowering.cpp 573 if (MF.getTarget().Options.DisableFramePointerElim(MF) && MFI->hasCalls())
  /external/llvm/lib/Target/ARM/
ARMFrameLowering.cpp 52 MFI->hasCalls()) ||
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGISel.cpp 465 if (MFI->hasCalls() && MF->hasMSInlineAsm())
    [all...]

Completed in 317 milliseconds