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

  /external/llvm/include/llvm/ProfileData/
SampleProf.h 143 bool hasCalls() const { return CallTargets.size() > 0; }
  /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;
322 bool hasCalls = false, hasDynamicAllocas = false, hasStaticAllocas = false;
375 hasCalls |= (isa<CallInst>(II) && !isa<DbgInfoIntrinsic>(II));
455 CodeInfo->ContainsCalls |= hasCalls;
  /external/llvm/include/llvm/CodeGen/
MachineFrameInfo.h 193 /// HasCalls - Set to true if this function has any function calls.
194 bool HasCalls;
261 HasCalls = false;
483 /// hasCalls - Return true if the current function has any function calls.
484 bool hasCalls() const { return HasCalls; }
485 void setHasCalls(bool V) { HasCalls = V; }

Completed in 235 milliseconds