Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/tools/llvm-profgen/
H A DCSPreInliner.cpp193 unsigned SizeLimit = FuncSize * ProfileInlineGrowthLimit; in processFunction() local
194 SizeLimit = std::min(SizeLimit, (unsigned)ProfileInlineLimitMax); in processFunction()
195 SizeLimit = std::max(SizeLimit, (unsigned)ProfileInlineLimitMin); in processFunction()
199 << FuncSize << ", size limit: " << SizeLimit << ")\n"); in processFunction()
204 while (!CQueue.empty() && FuncFinalSize < SizeLimit) { in processFunction()
229 if (SizeLimit == (unsigned)ProfileInlineLimitMax) in processFunction()
231 else if (SizeLimit == (unsigned)ProfileInlineLimitMin) in processFunction()
242 << ", size limit: " << SizeLimit << ")\n"; in processFunction()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/IPO/
H A DSampleProfile.cpp1442 unsigned SizeLimit = F.getInstructionCount() * ProfileInlineGrowthLimit; in inlineHotFunctionsWithPriority() local
1443 SizeLimit = std::min(SizeLimit, (unsigned)ProfileInlineLimitMax); in inlineHotFunctionsWithPriority()
1444 SizeLimit = std::max(SizeLimit, (unsigned)ProfileInlineLimitMin); in inlineHotFunctionsWithPriority()
1446 SizeLimit = std::numeric_limits<unsigned>::max(); in inlineHotFunctionsWithPriority()
1452 while (!CQueue.empty() && F.getInstructionCount() < SizeLimit) { in inlineHotFunctionsWithPriority()
1528 if (SizeLimit == (unsigned)ProfileInlineLimitMax) in inlineHotFunctionsWithPriority()
1530 else if (SizeLimit == (unsigned)ProfileInlineLimitMin) in inlineHotFunctionsWithPriority()
/openbsd-src/gnu/llvm/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()
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGDecl.cpp992 uint64_t SizeLimit = 32; in shouldUseBZeroPlusStoresToInitialize() local
994 return GlobalSize > SizeLimit && in shouldUseBZeroPlusStoresToInitialize()
1006 uint64_t SizeLimit = 32; in shouldUseMemSetToInitialize() local
1007 if (GlobalSize <= SizeLimit) in shouldUseMemSetToInitialize()
H A DTargetInfo.cpp9786 ABIArgInfo classifyType(QualType RetTy, unsigned SizeLimit) const;
9900 SparcV9ABIInfo::classifyType(QualType Ty, unsigned SizeLimit) const { in classifyType()
9908 if (Size > SizeLimit) in classifyType()
/openbsd-src/gnu/llvm/llvm/lib/ObjectYAML/
H A DELFEmitter.cpp64 ContiguousBlobAccumulator(uint64_t BaseOffset, uint64_t SizeLimit) in ContiguousBlobAccumulator() argument
65 : InitialOffset(BaseOffset), MaxSize(SizeLimit), OS(Buf) {} in ContiguousBlobAccumulator()