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

  /external/llvm/lib/Transforms/Utils/
CloneFunction.cpp 41 bool hasCalls = false, hasDynamicAllocas = false, hasStaticAllocas = false;
52 hasCalls |= (isa<CallInst>(II) && !isa<DbgInfoIntrinsic>(II));
62 CodeInfo->ContainsCalls |= hasCalls;
227 bool hasCalls = false, hasDynamicAllocas = false, hasStaticAllocas = false;
246 hasCalls |= (isa<CallInst>(II) && !isa<DbgInfoIntrinsic>(II));
305 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;
221 HasCalls = false;
419 /// hasCalls - Return true if the current function has any function calls.
420 bool hasCalls() const { return HasCalls; }
421 void setHasCalls(bool V) { HasCalls = V; }

Completed in 33 milliseconds