HomeSort by: relevance | last modified time | path
    Searched defs:SizeLimit (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/tools/llvm-profgen/
CSPreInliner.cpp 134 unsigned SizeLimit = FuncSize * ProfileInlineGrowthLimit;
135 SizeLimit = std::min(SizeLimit, (unsigned)ProfileInlineLimitMax);
136 SizeLimit = std::max(SizeLimit, (unsigned)ProfileInlineLimitMin);
141 while (!CQueue.empty() && FuncFinalSize < SizeLimit) {
166 << ", size limit: " << SizeLimit << ")\n";
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
SampleProfile.cpp 1334 unsigned SizeLimit = F.getInstructionCount() * ProfileInlineGrowthLimit;
1335 SizeLimit = std::min(SizeLimit, (unsigned)ProfileInlineLimitMax);
1336 SizeLimit = std::max(SizeLimit, (unsigned)ProfileInlineLimitMin);
1338 SizeLimit = std::numeric_limits<unsigned>::max();
1342 while (!CQueue.empty() && F.getInstructionCount() < SizeLimit) {
1410 if (SizeLimit == (unsigned)ProfileInlineLimitMax)
1412 else if (SizeLimit == (unsigned)ProfileInlineLimitMin)
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGDecl.cpp 972 uint64_t SizeLimit = 32;
974 return GlobalSize > SizeLimit &&
986 uint64_t SizeLimit = 32;
987 if (GlobalSize <= SizeLimit)

Completed in 25 milliseconds