OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
xsrc
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SizeLimit
(Results
1 - 6
of
6
) 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/llvm/lib/Target/Hexagon/
HexagonEarlyIfConv.cpp
103
static cl::opt<unsigned>
SizeLimit
("eif-limit", cl::init(6), cl::Hidden,
558
if (TotalIn >=
SizeLimit
+Spare)
586
if (TotalIn+TotalPh >=
SizeLimit
+Spare)
/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
)
TargetInfo.cpp
9355
ABIArgInfo classifyType(QualType RetTy, unsigned
SizeLimit
) const;
9469
SparcV9ABIInfo::classifyType(QualType Ty, unsigned
SizeLimit
) const {
9477
if (Size >
SizeLimit
)
/src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
ELFEmitter.cpp
62
ContiguousBlobAccumulator(uint64_t BaseOffset, uint64_t
SizeLimit
)
63
: InitialOffset(BaseOffset), MaxSize(
SizeLimit
), OS(Buf) {}
Completed in 32 milliseconds
Indexes created Tue Jun 09 00:24:00 UTC 2026