Searched refs:SizeLimit (Results 1 – 6 of 6) sorted by relevance
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/Targets/ |
| H A D | Sparc.cpp | 113 ABIArgInfo classifyType(QualType RetTy, unsigned SizeLimit, 227 ABIArgInfo SparcV9ABIInfo::classifyType(QualType Ty, unsigned SizeLimit, in classifyType() argument 241 if (Size > SizeLimit) { in classifyType()
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| H A D | SampleProfile.cpp | 1439 unsigned SizeLimit = F.getInstructionCount() * ProfileInlineGrowthLimit; in inlineHotFunctionsWithPriority() local 1440 SizeLimit = std::min(SizeLimit, (unsigned)ProfileInlineLimitMax); in inlineHotFunctionsWithPriority() 1441 SizeLimit = std::max(SizeLimit, (unsigned)ProfileInlineLimitMin); in inlineHotFunctionsWithPriority() 1443 SizeLimit = std::numeric_limits<unsigned>::max(); in inlineHotFunctionsWithPriority() 1449 while (!CQueue.empty() && F.getInstructionCount() < SizeLimit) { in inlineHotFunctionsWithPriority() 1525 if (SizeLimit == (unsigned)ProfileInlineLimitMax) in inlineHotFunctionsWithPriority() 1527 else if (SizeLimit == (unsigned)ProfileInlineLimitMin) in inlineHotFunctionsWithPriority()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | HexagonEarlyIfConv.cpp | 96 static cl::opt<unsigned> SizeLimit("eif-limit", cl::init(6), cl::Hidden, variable 551 if (TotalIn >= SizeLimit+Spare) in isProfitable() 579 if (TotalIn+TotalPh >= SizeLimit+Spare) in isProfitable()
|
| H A D | HexagonVectorCombine.cpp | 927 unsigned SizeLimit = VAGroupSizeLimit; in createLoadGroups() local 928 if (SizeLimit == 0) in createLoadGroups() 933 if (Move.Main.size() >= SizeLimit) in createLoadGroups() 982 unsigned SizeLimit = VAGroupSizeLimit; in createStoreGroups() local 983 if (SizeLimit == 0) in createStoreGroups() 988 if (Move.Main.size() >= SizeLimit) in createStoreGroups()
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGDecl.cpp | 999 uint64_t SizeLimit = 32; in shouldUseBZeroPlusStoresToInitialize() local 1001 return GlobalSize > SizeLimit && in shouldUseBZeroPlusStoresToInitialize() 1013 uint64_t SizeLimit = 32; in shouldUseMemSetToInitialize() local 1014 if (GlobalSize <= SizeLimit) in shouldUseMemSetToInitialize()
|
| /freebsd/contrib/llvm-project/llvm/lib/ObjectYAML/ |
| H A D | ELFEmitter.cpp | 62 ContiguousBlobAccumulator(uint64_t BaseOffset, uint64_t SizeLimit) in ContiguousBlobAccumulator() argument 63 : InitialOffset(BaseOffset), MaxSize(SizeLimit), OS(Buf) {} in ContiguousBlobAccumulator()
|