Searched refs:SizeLimit (Results 1 - 6 of 6) sorted by relevance

/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-profgen/
H A DCSPreInliner.cpp134 unsigned SizeLimit = FuncSize * ProfileInlineGrowthLimit; local
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";
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
H A DSampleProfile.cpp1334 unsigned SizeLimit = F.getInstructionCount() * ProfileInlineGrowthLimit; local
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)
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DHexagonEarlyIfConv.cpp103 static cl::opt<unsigned> SizeLimit("eif-limit", cl::init(6), cl::Hidden,
558 if (TotalIn >= SizeLimit+Spare)
586 if (TotalIn+TotalPh >= SizeLimit+Spare)
/netbsd-current/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGDecl.cpp972 uint64_t SizeLimit = 32; local
974 return GlobalSize > SizeLimit &&
986 uint64_t SizeLimit = 32; local
987 if (GlobalSize <= SizeLimit)
H A DTargetInfo.cpp9355 ABIArgInfo classifyType(QualType RetTy, unsigned SizeLimit) const;
9469 SparcV9ABIInfo::classifyType(QualType Ty, unsigned SizeLimit) const {
9477 if (Size > SizeLimit)
/netbsd-current/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp62 ContiguousBlobAccumulator(uint64_t BaseOffset, uint64_t SizeLimit) argument
63 : InitialOffset(BaseOffset), MaxSize(SizeLimit), OS(Buf) {}

Completed in 239 milliseconds