HomeSort by: relevance | last modified time | path
    Searched refs:MaxFunctionCount (Results 1 - 8 of 8) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
ProfileSummary.h 52 uint64_t TotalCount, MaxCount, MaxInternalCount, MaxFunctionCount;
73 uint64_t MaxInternalCount, uint64_t MaxFunctionCount,
78 MaxInternalCount(MaxInternalCount), MaxFunctionCount(MaxFunctionCount),
90 uint64_t getMaxFunctionCount() { return MaxFunctionCount; }
  /src/external/apache2/llvm/dist/llvm/lib/ProfileData/
ProfileSummaryBuilder.cpp 98 // Eventually MaxFunctionCount will become obsolete and this can be
111 if (FS.getHeadSamples() > MaxFunctionCount)
112 MaxFunctionCount = FS.getHeadSamples();
181 MaxFunctionCount, NumCounts, NumFunctions);
217 MaxInternalBlockCount, MaxFunctionCount, NumCounts, NumFunctions);
228 if (Count > MaxFunctionCount)
229 MaxFunctionCount = Count;
SampleProfReader.cpp 1247 auto MaxFunctionCount = readNumber<uint64_t>();
1248 if (std::error_code EC = MaxFunctionCount.getError())
1271 *MaxFunctionCount, *NumBlocks, *NumFunctions);
InstrProfWriter.cpp 278 TheSummary->set(Summary::MaxFunctionCount, PS.getMaxFunctionCount());
InstrProfReader.cpp 792 SummaryData->get(Summary::MaxFunctionCount),
  /src/external/apache2/llvm/dist/llvm/include/llvm/ProfileData/
ProfileCommon.h 52 uint64_t MaxFunctionCount = 0;
InstrProf.h 1028 MaxFunctionCount = 2,
  /src/external/apache2/llvm/dist/llvm/lib/IR/
ProfileSummary.cpp 91 getKeyValMD(Context, "MaxFunctionCount", getMaxFunctionCount()));
215 uint64_t NumCounts, TotalCount, NumFunctions, MaxFunctionCount, MaxCount,
225 if (!getVal(dyn_cast<MDTuple>(Tuple->getOperand(I++)), "MaxFunctionCount",
226 MaxFunctionCount))
247 MaxCount, MaxInternalCount, MaxFunctionCount,
254 OS << "Maximum function count: " << MaxFunctionCount << "\n";

Completed in 20 milliseconds