Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DLoopExtractor.cpp39 unsigned NumLoops; member
42 : ModulePass(ID), NumLoops(NumLoops) { in LoopExtractorLegacyPass()
60 unsigned NumLoops, in LoopExtractor()
64 : NumLoops(NumLoops), LookupDomTree(LookupDomTree), in LoopExtractor()
71 unsigned NumLoops; member
137 if (!NumLoops) in runOnModule()
149 if (!NumLoops) in runOnModule()
233 if (!NumLoops) in extractLoops()
240 assert(NumLoops != 0); in extractLoop()
247 --NumLoops; in extractLoop()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Transforms/IPO/
H A DLoopExtractor.h24 LoopExtractorPass(unsigned NumLoops = ~0) : NumLoops(NumLoops) {} in NumLoops() function
30 unsigned NumLoops;
/freebsd-14.2/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-14.2/contrib/llvm-project/clang/lib/AST/
H A DOpenMPClause.cpp344 unsigned NumLoops, in Create() argument
351 for (unsigned I = 0; I < NumLoops; ++I) { in Create()
361 auto *Clause = new (Mem) OMPOrderedClause(NumLoops); in CreateEmpty()
362 for (unsigned I = 0; I < NumLoops; ++I) { in CreateEmpty()
1070 for (unsigned I = 0 ; I < NumLoops; ++I) in Create()
1080 return new (Mem) OMPDependClause(N, NumLoops); in CreateEmpty()
1086 NumLoop < NumLoops && in setLoopData()
1096 NumLoop < NumLoops && in getLoopData()
1106 NumLoop < NumLoops && in getLoopData()
1692 for (unsigned I = 0; I < NumLoops; ++I) in Create()
[all …]
H A DStmtOpenMP.cpp126 Stmt *CurStmt, bool TryImperfectlyNestedLoops, unsigned NumLoops, in doForAllLoops() argument
131 for (unsigned Cnt = 0; Cnt < NumLoops; ++Cnt) { in doForAllLoops()
180 Stmt *CurStmt, bool TryImperfectlyNestedLoops, unsigned NumLoops, in doForAllLoopsBodies() argument
183 CurStmt, TryImperfectlyNestedLoops, NumLoops, in doForAllLoopsBodies()
412 unsigned NumLoops, Stmt *AssociatedStmt, in Create() argument
416 NumLoops); in Create()
424 unsigned NumLoops) { in CreateEmpty() argument
427 SourceLocation(), SourceLocation(), NumLoops); in CreateEmpty()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DMustExecute.cpp361 const auto NumLoops = Loops.size(); in printInfoComment() local
362 if (NumLoops > 1) in printInfoComment()
363 OS << " ; (mustexec in " << NumLoops << " loops: "; in printInfoComment()
H A DInlineCost.cpp986 int NumLoops = 0; in finalizeAnalysis() local
991 NumLoops++; in finalizeAnalysis()
993 addCost(NumLoops * InlineConstants::LoopPenalty); in finalizeAnalysis()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/
H A DOpenMPClause.h1858 explicit OMPOrderedClause(unsigned NumLoops) in OMPOrderedClause() argument
1860 NumberOfLoops(NumLoops) {} in OMPOrderedClause()
4907 unsigned NumLoops = 0; variable
4921 NumLoops(NumLoops) {} in OMPDependClause()
4932 NumLoops(NumLoops) {} in OMPDependClause()
4994 unsigned getNumLoops() const { return NumLoops; } in getNumLoops()
9170 unsigned NumLoops = 0; variable
9183 NumLoops(NumLoops) {} in OMPDoacrossClause()
9193 NumLoops(NumLoops) {} in OMPDoacrossClause()
9220 unsigned NumLoops);
[all …]
H A DStmtOpenMP.h910 unsigned NumLoops,
916 unsigned NumLoops, in doForAllLoops() argument
928 NumLoops, NewCallback, NewTransformCb); in doForAllLoops()
935 unsigned NumLoops, in doForAllLoops() argument
943 unsigned NumLoops, in doForAllLoops() argument
949 NumLoops, NewCallback); in doForAllLoops()
964 NumLoops, NewCallback); in doForAllLoopsBodies()
5573 unsigned NumLoops) in OMPTileDirective() argument
5576 NumLoops) { in OMPTileDirective()
5577 setNumGeneratedLoops(3 * NumLoops); in OMPTileDirective()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/lib/Frontend/OpenMP/
H A DOMPIRBuilder.cpp3178 size_t NumLoops = Loops.size(); in collapseLoops() local
3181 if (NumLoops == 1) in collapseLoops()
3233 NewIndVars.resize(NumLoops); in collapseLoops()
3234 for (int i = NumLoops - 1; i >= 1; --i) { in collapseLoops()
3287 for (size_t i = 0; i < NumLoops; ++i) in collapseLoops()
3307 int NumLoops = Loops.size(); in tileLoops() local
3340 for (int i = 0; i < NumLoops - 1; ++i) { in tileLoops()
3353 for (int i = 0; i < NumLoops; ++i) { in tileLoops()
3383 Result.reserve(NumLoops * 2); in tileLoops()
3426 for (int i = 0; i < NumLoops; ++i) { in tileLoops()
[all …]
/freebsd-14.2/contrib/llvm-project/clang/lib/Parse/
H A DParseOpenACC.cpp726 ExprResult NumLoops = in ParseOpenACCClauseParams() local
728 if (NumLoops.isInvalid()) in ParseOpenACCClauseParams()
/freebsd-14.2/sys/contrib/dev/acpica/include/
H A Daclocal.h1529 UINT32 NumLoops; member
/freebsd-14.2/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp9507 unsigned NumLoops = in checkOpenMPIterationSpace() local
9509 if (CurrentNestedLoopCount >= NumLoops) { in checkOpenMPIterationSpace()
9790 SupportsNonPerfectlyNested, NumLoops, in checkOpenMPLoop()
14977 unsigned NumLoops = SizesClause->getNumSizes(); in ActOnOpenMPTileDirective() local
15002 FloorIndVars.resize(NumLoops); in ActOnOpenMPTileDirective()
15003 TileIndVars.resize(NumLoops); in ActOnOpenMPTileDirective()
15004 for (unsigned I = 0; I < NumLoops; ++I) { in ActOnOpenMPTileDirective()
15055 for (int I = NumLoops - 1; I >= 0; --I) { in ActOnOpenMPTileDirective()
15131 for (int I = NumLoops - 1; I >= 0; --I) { in ActOnOpenMPTileDirective()
15196 constexpr unsigned NumLoops = 1; in ActOnOpenMPUnrollDirective() local
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
H A DOMPIRBuilder.h1876 InsertPointTy AllocaIP, unsigned NumLoops,
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderStmt.cpp3391 unsigned NumLoops = Record[ASTStmtReader::NumStmtFields]; in ReadStmtFromStream() local
3393 S = OMPTileDirective::CreateEmpty(Context, NumClauses, NumLoops); in ReadStmtFromStream()
H A DASTReader.cpp10415 unsigned NumLoops = Record.readInt(); in readClause() local
10416 C = OMPDependClause::CreateEmpty(Context, NumVars, NumLoops); in readClause()
10562 unsigned NumLoops = Record.readInt(); in readClause() local
10563 C = OMPDoacrossClause::CreateEmpty(Context, NumVars, NumLoops); in readClause()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGStmtOpenMP.cpp5853 unsigned NumLoops = C->getNumLoops(); in emitRestoreIP() local
5857 for (unsigned I = 0; I < NumLoops; I++) { in emitRestoreIP()
5868 OMPBuilder.createOrderedDepend(CGF.Builder, AllocaIP, NumLoops, in emitRestoreIP()
/freebsd-14.2/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h11339 OpenMPDirectiveKind Kind, Stmt *AStmt, int NumLoops,