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

  /external/llvm/include/llvm/CodeGen/
MachineTraceMetrics.h 96 bool HasCalls;
98 FixedBlockInfo() : InstrCount(~0u), HasCalls(false) {}
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/Transforms/Instrumentation/
ThreadSanitizer.cpp 336 bool HasCalls = false;
353 HasCalls = true;
382 if ((Res || HasCalls) && ClInstrumentFuncEntryExit) {

Completed in 92 milliseconds