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

  /external/llvm/lib/CodeGen/
TargetOptionsImpl.cpp 26 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;
255 bool hasCalls = false, hasDynamicAllocas = false, hasStaticAllocas = false;
288 hasCalls |= (isa<CallInst>(II) && !isa<DbgInfoIntrinsic>(II));
348 CodeInfo->ContainsCalls |= hasCalls;
  /external/llvm/include/llvm/CodeGen/
MachineFrameInfo.h 171 /// HasCalls - Set to true if this function has any function calls.
172 bool HasCalls;
225 HasCalls = false;
429 /// hasCalls - Return true if the current function has any function calls.
430 bool hasCalls() const { return HasCalls; }
431 void setHasCalls(bool V) { HasCalls = V; }
  /external/llvm/lib/Target/Hexagon/
HexagonFrameLowering.cpp 208 return (MFI->hasCalls() || (MFI->getStackSize() > 0) ||
  /external/llvm/lib/Target/Mips/
MipsFrameLowering.cpp 320 if (MF.getFrameInfo()->hasCalls())
  /external/llvm/lib/Target/X86/
X86FrameLowering.cpp 660 if (MFI->hasCalls())
    [all...]
  /external/llvm/lib/Target/ARM/
ARMFrameLowering.cpp 51 MFI->hasCalls()) ||
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGISel.cpp 439 if (!MFI->hasCalls()) {
    [all...]

Completed in 171 milliseconds