Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-profgen/
H A DCSPreInliner.cpp134 unsigned SizeLimit = FuncSize * ProfileInlineGrowthLimit; in processFunction() local
135 SizeLimit = std::min(SizeLimit, (unsigned)ProfileInlineLimitMax); in processFunction()
136 SizeLimit = std::max(SizeLimit, (unsigned)ProfileInlineLimitMin); in processFunction()
141 while (!CQueue.empty() && FuncFinalSize < SizeLimit) { in processFunction()
166 << ", size limit: " << SizeLimit << ")\n"; in processFunction()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
H A DSampleProfile.cpp1334 unsigned SizeLimit = F.getInstructionCount() * ProfileInlineGrowthLimit; in inlineHotFunctionsWithPriority() local
1335 SizeLimit = std::min(SizeLimit, (unsigned)ProfileInlineLimitMax); in inlineHotFunctionsWithPriority()
1336 SizeLimit = std::max(SizeLimit, (unsigned)ProfileInlineLimitMin); in inlineHotFunctionsWithPriority()
1338 SizeLimit = std::numeric_limits<unsigned>::max(); in inlineHotFunctionsWithPriority()
1342 while (!CQueue.empty() && F.getInstructionCount() < SizeLimit) { in inlineHotFunctionsWithPriority()
1410 if (SizeLimit == (unsigned)ProfileInlineLimitMax) in inlineHotFunctionsWithPriority()
1412 else if (SizeLimit == (unsigned)ProfileInlineLimitMin) in inlineHotFunctionsWithPriority()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
H A DHexagonEarlyIfConv.cpp103 static cl::opt<unsigned> SizeLimit("eif-limit", cl::init(6), cl::Hidden, variable
558 if (TotalIn >= SizeLimit+Spare) in isProfitable()
586 if (TotalIn+TotalPh >= SizeLimit+Spare) in isProfitable()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCGDecl.cpp972 uint64_t SizeLimit = 32; in shouldUseBZeroPlusStoresToInitialize() local
974 return GlobalSize > SizeLimit && in shouldUseBZeroPlusStoresToInitialize()
986 uint64_t SizeLimit = 32; in shouldUseMemSetToInitialize() local
987 if (GlobalSize <= SizeLimit) in shouldUseMemSetToInitialize()
H A DTargetInfo.cpp9355 ABIArgInfo classifyType(QualType RetTy, unsigned SizeLimit) const;
9469 SparcV9ABIInfo::classifyType(QualType Ty, unsigned SizeLimit) const { in classifyType()
9477 if (Size > SizeLimit) in classifyType()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp62 ContiguousBlobAccumulator(uint64_t BaseOffset, uint64_t SizeLimit) in ContiguousBlobAccumulator() argument
63 : InitialOffset(BaseOffset), MaxSize(SizeLimit), OS(Buf) {} in ContiguousBlobAccumulator()