Home
last modified time | relevance | path

Searched refs:MaxLevel (Results 1 – 4 of 4) sorted by relevance

/llvm-project-15.0.7/llvm/lib/Support/
H A DHost.cpp1665 unsigned MaxLevel; in getHostCPUFeatures() local
1667 if (getX86CpuIDAndInfo(0, &MaxLevel, &EBX, &ECX, &EDX) || MaxLevel < 1) in getHostCPUFeatures()
1741 MaxLevel >= 7 && !getX86CpuIDAndInfoEx(0x7, 0x0, &EAX, &EBX, &ECX, &EDX); in getHostCPUFeatures()
1806 MaxLevel >= 7 && !getX86CpuIDAndInfoEx(0x7, 0x1, &EAX, &EBX, &ECX, &EDX); in getHostCPUFeatures()
1811 bool HasLeafD = MaxLevel >= 0xd && in getHostCPUFeatures()
1819 bool HasLeaf14 = MaxLevel >= 0x14 && in getHostCPUFeatures()
1825 MaxLevel >= 0x19 && !getX86CpuIDAndInfo(0x19, &EAX, &EBX, &ECX, &EDX); in getHostCPUFeatures()
/llvm-project-15.0.7/llvm/lib/Transforms/Vectorize/
H A DVPlanSLP.cpp217 static unsigned getLAScore(VPValue *V1, VPValue *V2, unsigned MaxLevel, in getLAScore() argument
225 if (MaxLevel == 0) in getLAScore()
232 getLAScore(I1->getOperand(I), I2->getOperand(J), MaxLevel - 1, IAI); in getLAScore()
H A DSLPVectorizer.cpp1059 int MaxLevel; // The maximum recursion depth for accumulating score. member in llvm::slpvectorizer::BoUpSLP::LookAheadHeuristics
1063 const BoUpSLP &R, int NumLanes, int MaxLevel) in LookAheadHeuristics() argument
1064 : DL(DL), SE(SE), R(R), NumLanes(NumLanes), MaxLevel(MaxLevel) {} in LookAheadHeuristics()
1270 if (CurrLevel == MaxLevel || !(I1 && I2) || I1 == I2 || in getScoreAtLevelRec()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp1835 int MaxLevel, int Level = 0) { in emitBody() argument
1836 assert(Level < MaxLevel && "Too deep lookup during loop body codegen."); in emitBody()
1846 emitBody(CGF, CurStmt, NextLoop, MaxLevel, Level); in emitBody()
1863 if (Level + 1 < MaxLevel) { in emitBody()
1866 emitBody(CGF, S, NextLoop, MaxLevel, Level + 1); in emitBody()