Home
last modified time | relevance | path

Searched refs:NumLoops (Results 1 – 16 of 16) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DLoopExtractor.cpp44 unsigned NumLoops; member
46 explicit LoopExtractorLegacyPass(unsigned NumLoops = ~0) in LoopExtractorLegacyPass()
47 : ModulePass(ID), NumLoops(NumLoops) { in LoopExtractorLegacyPass()
65 unsigned NumLoops, in LoopExtractor()
69 : NumLoops(NumLoops), LookupDomTree(LookupDomTree), in LoopExtractor()
76 unsigned NumLoops; member
142 if (!NumLoops) in runOnModule()
154 if (!NumLoops) in runOnModule()
238 if (!NumLoops) in extractLoops()
245 assert(NumLoops != 0); in extractLoop()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DLoopExtractor.h24 LoopExtractorPass(unsigned NumLoops = ~0) : NumLoops(NumLoops) {} in NumLoops() function
28 unsigned NumLoops;
/freebsd-13.1/sys/contrib/dev/acpica/components/debugger/
H A Ddbexec.c762 for (i = 0; i < Info->NumLoops; i++) in AcpiDbMethodThread()
960 UINT32 NumLoops; in AcpiDbCreateExecutionThreads() local
971 NumLoops = strtoul (NumLoopsArg, NULL, 0); in AcpiDbCreateExecutionThreads()
973 if (!NumThreads || !NumLoops) in AcpiDbCreateExecutionThreads()
976 NumThreads, NumLoops); in AcpiDbCreateExecutionThreads()
1042 AcpiGbl_DbMethodInfo.NumLoops = NumLoops; in AcpiDbCreateExecutionThreads()
1083 NumThreads, NumLoops); in AcpiDbCreateExecutionThreads()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DOpenMPClause.cpp324 unsigned NumLoops, in Create() argument
328 void *Mem = C.Allocate(totalSizeToAlloc<Expr *>(2 * NumLoops)); in Create()
331 for (unsigned I = 0; I < NumLoops; ++I) { in Create()
340 void *Mem = C.Allocate(totalSizeToAlloc<Expr *>(2 * NumLoops)); in CreateEmpty()
341 auto *Clause = new (Mem) OMPOrderedClause(NumLoops); in CreateEmpty()
342 for (unsigned I = 0; I < NumLoops; ++I) { in CreateEmpty()
1041 for (unsigned I = 0 ; I < NumLoops; ++I) in Create()
1051 return new (Mem) OMPDependClause(N, NumLoops); in CreateEmpty()
1057 NumLoop < NumLoops && in setLoopData()
1067 NumLoop < NumLoops && in getLoopData()
[all …]
H A DStmtOpenMP.cpp126 Stmt *CurStmt, bool TryImperfectlyNestedLoops, unsigned NumLoops, in doForAllLoops() argument
131 for (unsigned Cnt = 0; Cnt < NumLoops; ++Cnt) { in doForAllLoops()
174 Stmt *CurStmt, bool TryImperfectlyNestedLoops, unsigned NumLoops, in doForAllLoopsBodies() argument
177 CurStmt, TryImperfectlyNestedLoops, NumLoops, in doForAllLoopsBodies()
359 unsigned NumLoops, Stmt *AssociatedStmt, in Create() argument
363 NumLoops); in Create()
371 unsigned NumLoops) { in CreateEmpty() argument
374 SourceLocation(), SourceLocation(), NumLoops); in CreateEmpty()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Frontend/OpenMP/
H A DOMPIRBuilder.cpp1572 size_t NumLoops = Loops.size(); in collapseLoops() local
1575 if (NumLoops == 1) in collapseLoops()
1619 NewIndVars.set_size(NumLoops); in collapseLoops()
1620 for (int i = NumLoops - 1; i >= 1; --i) { in collapseLoops()
1673 for (size_t i = 0; i < NumLoops; ++i) in collapseLoops()
1694 int NumLoops = Loops.size(); in tileLoops() local
1720 for (int i = 0; i < NumLoops - 1; ++i) { in tileLoops()
1733 for (int i = 0; i < NumLoops; ++i) { in tileLoops()
1763 Result.reserve(NumLoops * 2); in tileLoops()
1806 for (int i = 0; i < NumLoops; ++i) { in tileLoops()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DInlineModelFeatureMaps.h35 M(NumLoops, "num_loops") \
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenMP.h893 unsigned NumLoops,
899 unsigned NumLoops, in doForAllLoops() argument
911 NumLoops, NewCallback, NewTransformCb); in doForAllLoops()
918 unsigned NumLoops, in doForAllLoops() argument
926 unsigned NumLoops, in doForAllLoops() argument
932 NumLoops, NewCallback); in doForAllLoops()
938 Stmt *CurStmt, bool TryImperfectlyNestedLoops, unsigned NumLoops,
947 NumLoops, NewCallback); in doForAllLoopsBodies()
5006 unsigned NumLoops) in OMPTileDirective() argument
5008 StartLoc, EndLoc, NumLoops) {} in OMPTileDirective()
[all …]
H A DOpenMPClause.h1712 OMPOrderedClause(Expr *Num, unsigned NumLoops, SourceLocation StartLoc, in OMPOrderedClause() argument
1715 LParenLoc(LParenLoc), NumForLoops(Num), NumberOfLoops(NumLoops) {} in OMPOrderedClause()
1718 explicit OMPOrderedClause(unsigned NumLoops) in OMPOrderedClause() argument
1720 NumberOfLoops(NumLoops) {} in OMPOrderedClause()
4642 unsigned NumLoops = 0; variable
4653 SourceLocation EndLoc, unsigned N, unsigned NumLoops) in OMPDependClause() argument
4656 NumLoops(NumLoops) {} in OMPDependClause()
4663 explicit OMPDependClause(unsigned N, unsigned NumLoops) in OMPDependClause() argument
4667 NumLoops(NumLoops) {} in OMPDependClause()
4708 unsigned NumLoops);
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/
H A DMustExecute.cpp449 const auto NumLoops = Loops.size(); in printInfoComment() local
450 if (NumLoops > 1) in printInfoComment()
451 OS << " ; (mustexec in " << NumLoops << " loops: "; in printInfoComment()
H A DInlineCost.cpp832 int NumLoops = 0; in finalizeAnalysis() local
837 NumLoops++; in finalizeAnalysis()
839 addCost(NumLoops * InlineConstants::LoopPenalty); in finalizeAnalysis()
1097 increment(InlineCostFeatureIndex::NumLoops, in finalizeAnalysis()
/freebsd-13.1/sys/contrib/dev/acpica/include/
H A Daclocal.h1529 UINT32 NumLoops; member
/freebsd-13.1/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp8952 SmallVector<LoopIterationSpace, 4> IterSpaces(NumLoops); in checkOpenMPLoop()
8955 SupportsNonPerfectlyNested, NumLoops, in checkOpenMPLoop()
12568 OpenMPDirectiveKind Kind, Stmt *AStmt, int NumLoops, in checkTransformableLoopNest() argument
12626 unsigned NumLoops = SizesClause->getNumSizes(); in ActOnOpenMPTileDirective() local
12651 FloorIndVars.resize(NumLoops); in ActOnOpenMPTileDirective()
12652 TileIndVars.resize(NumLoops); in ActOnOpenMPTileDirective()
12653 for (unsigned I = 0; I < NumLoops; ++I) { in ActOnOpenMPTileDirective()
12704 for (int I = NumLoops - 1; I >= 0; --I) { in ActOnOpenMPTileDirective()
12780 for (int I = NumLoops - 1; I >= 0; --I) { in ActOnOpenMPTileDirective()
12845 constexpr unsigned NumLoops = 1; in ActOnOpenMPUnrollDirective() local
[all …]
/freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp3202 unsigned NumLoops = Record[ASTStmtReader::NumStmtFields]; in ReadStmtFromStream() local
3204 S = OMPTileDirective::CreateEmpty(Context, NumClauses, NumLoops); in ReadStmtFromStream()
H A DASTReader.cpp11880 unsigned NumLoops = Record.readInt(); in readClause() local
11881 C = OMPDependClause::CreateEmpty(Context, NumVars, NumLoops); in readClause()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h10284 OpenMPDirectiveKind Kind, Stmt *AStmt, int NumLoops,