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 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; }

Completed in 51 milliseconds