Home
last modified time | relevance | path

Searched refs:NumIterations (Results 1 – 13 of 13) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DStmtOpenMP.cpp357 Dir->setNumIterations(Exprs.NumIterations); in Create()
533 Dir->setNumIterations(Exprs.NumIterations); in Create()
680 Dir->setNumIterations(Exprs.NumIterations); in Create()
725 Dir->setNumIterations(Exprs.NumIterations); in Create()
1074 Dir->setNumIterations(Exprs.NumIterations); in Create()
1178 Dir->setNumIterations(Exprs.NumIterations); in Create()
1223 Dir->setNumIterations(Exprs.NumIterations); in Create()
1266 Dir->setNumIterations(Exprs.NumIterations); in Create()
1311 Dir->setNumIterations(Exprs.NumIterations); in Create()
1356 Dir->setNumIterations(Exprs.NumIterations); in Create()
[all …]
H A DOpenMPClause.cpp371 Expr *NumIterations) { in setLoopNumIterations() argument
373 getTrailingObjects()[NumLoop] = NumIterations; in setLoopNumIterations()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DStraightLineStrengthReduce.cpp365 unsigned NumIterations = 0; in allocateCandidatesAndFindBasis() local
369 Basis != Candidates.rend() && NumIterations < MaxNumIterations; in allocateCandidatesAndFindBasis()
370 ++Basis, ++NumIterations) { in allocateCandidatesAndFindBasis()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DStackColoring.cpp437 unsigned NumIterations; member in __anon570007070111::StackColoring
831 NumIterations = NumIters; in calculateLocalLiveness()
1263 LLVM_DEBUG(dbgs() << "Dataflow iterations: " << NumIterations << "\n"); in run()
/freebsd/contrib/llvm-project/llvm/include/llvm/Frontend/OpenMP/
H A DOMPIRBuilder.h2339 Value *NumIterations = nullptr; member
2352 Value *NumIterations, ArrayRef<Value *> NumTeams, in TargetKernelArgs()
2356 NumIterations(NumIterations), NumTeams(NumTeams), in TargetKernelArgs()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenMP.cpp2995 Expr *NumIterations, Sema &SemaRef,
3013 B.NumIterations, SemaRef, in finishLinearClauses()
7675 Expr *NumIterations = nullptr; member
9297 ResultIterSpaces[CurrentNestedLoopCount].NumIterations = in checkOpenMPIterationSpace()
9333 ResultIterSpaces[CurrentNestedLoopCount].NumIterations == nullptr || in checkOpenMPIterationSpace()
9344 ResultIterSpaces[CurrentNestedLoopCount].NumIterations); in checkOpenMPIterationSpace()
9792 Expr *N0 = IterSpaces[0].NumIterations; in checkOpenMPLoop()
9823 Expr *N = IterSpaces[Cnt].NumIterations; in checkOpenMPLoop()
9869 ExprResult NumIterations = LastIteration; in checkOpenMPLoop() local
9889 NumIterations = SemaRef.BuildBinOp( in checkOpenMPLoop()
[all …]
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGOpenMPRuntime.h1494 ArrayRef<Expr *> NumIterations);
2260 ArrayRef<Expr *> NumIterations) override;
H A DCGOpenMPRuntime.cpp9451 if (llvm::Value *NumIterations = SizeEmitter(CGF, *LD)) in emitTargetNumIterationsCall() local
9452 return NumIterations; in emitTargetNumIterationsCall()
9711 llvm::Value *NumIterations = in emitTargetCallKernelLaunch() local
9722 NumTargetItems, RTArgs, NumIterations, NumTeams, NumThreads, in emitTargetCallKernelLaunch()
11206 ArrayRef<Expr *> NumIterations) { in emitDoacrossInit() argument
11229 llvm::APInt Size(/*numBits=*/32, NumIterations.size()); in emitDoacrossInit()
11237 for (unsigned I = 0, E = NumIterations.size(); I < E; ++I) { in emitDoacrossInit()
11244 CGF.EmitScalarExpr(NumIterations[I]), NumIterations[I]->getType(), in emitDoacrossInit()
11245 Int64Ty, NumIterations[I]->getExprLoc()); in emitDoacrossInit()
11259 llvm::ConstantInt::getSigned(CGM.Int32Ty, NumIterations.size()), in emitDoacrossInit()
[all …]
H A DCGStmtOpenMP.cpp6954 llvm::Value *NumIterations = CGF.EmitScalarExpr(D.getNumIterations()); in emitCommonOMPTargetDirective() local
6955 NumIterations = CGF.Builder.CreateIntCast(NumIterations, CGF.Int64Ty, in emitCommonOMPTargetDirective()
6957 return NumIterations; in emitCommonOMPTargetDirective()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DStmtOpenMP.h746 Expr *NumIterations; member
816 NumIterations != nullptr && PreCond != nullptr && in builtAll()
839 NumIterations = nullptr; in clear()
H A DOpenMPClause.h2188 void setLoopNumIterations(unsigned NumLoop, Expr *NumIterations);
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DScalarEvolution.cpp9716 unsigned NumIterations = BEs.getZExtValue(); // must be in range in getConstantEvolutionLoopExitValue() local
9720 if (IterationNum == NumIterations) in getConstantEvolutionLoopExitValue()
/freebsd/contrib/llvm-project/llvm/lib/Frontend/OpenMP/
H A DOMPIRBuilder.cpp534 KernelArgs.NumIterations, in getKernelArgsVector()