Home
last modified time | relevance | path

Searched refs:loopCount (Results 1 – 3 of 3) sorted by relevance

/llvm-project/flang/lib/Optimizer/Transforms/
H A DSimplifyIntrinsics.cpp306 mlir::Value loopCount = builder.create<mlir::arith::SubIOp>(loc, len, one); in genReductionLoop()
307 bounds.push_back(loopCount); in genReductionLoop()
318 mlir::Value loopCount = bounds[i - 1]; in genReductionLoop()
319 auto loop = builder.create<OP>(loc, zeroIdx, loopCount, step, in genReductionLoop()
604 mlir::Value loopCount = builder.create<mlir::arith::SubIOp>(loc, len, one); in genMinMaxlocReductionLoop()
605 bounds.push_back(loopCount); in genMinMaxlocReductionLoop()
616 mlir::Value loopCount = bounds[i - 1]; in genMinMaxlocReductionLoop()
618 builder.create<fir::DoLoopOp>(loc, zeroIdx, loopCount, step, false, in genMinMaxlocReductionLoop()
957 mlir::Value loopCount = builder.create<mlir::arith::SubIOp>(loc, len, one); in genRuntimeDotBody()
958 auto loop = builder.create<fir::DoLoopOp>(loc, zeroIdx, loopCount, ste in genRuntimeDotBody()
305 mlir::Value loopCount = builder.create<mlir::arith::SubIOp>(loc, len, one); genReductionLoop() local
317 mlir::Value loopCount = bounds[i - 1]; genReductionLoop() local
603 mlir::Value loopCount = builder.create<mlir::arith::SubIOp>(loc, len, one); genMinMaxlocReductionLoop() local
615 mlir::Value loopCount = bounds[i - 1]; genMinMaxlocReductionLoop() local
956 mlir::Value loopCount = builder.create<mlir::arith::SubIOp>(loc, len, one); genRuntimeDotBody() local
[all...]
/llvm-project/flang/lib/Parser/
H A DFortran-parsers.cpp1301 constexpr auto loopCount{
1313 construct<CompilerDirective>(loopCount) ||
1274 constexpr auto loopCount{ global() variable
/llvm-project/polly/include/polly/
H A DScopDetectionDiagnostic.h570 const SCEV *loopCount() { return LoopCount; } in loopCount() function