Home
last modified time | relevance | path

Searched refs:stepped (Results 1 – 7 of 7) sorted by relevance

/llvm-project-15.0.7/mlir/test/Transforms/
H A Dparametric-tiling.mlir42 // COMMON: %[[stepped:.*]] = arith.addi %[[i]], %[[step]]
43 // COMMON-NEXT: arith.cmpi slt, %c44, %[[stepped]]
44 // COMMON-NEXT: %[[ub:.*]] = arith.select {{.*}}, %c44, %[[stepped]]
110 // COMMON: %[[stepped:.*]] = arith.addi %[[i]], %[[step]]
111 // COMMON-NEXT: arith.cmpi slt, %c44, %[[stepped]]
112 // COMMON-NEXT: %[[ub:.*]] = arith.select {{.*}}, %c44, %[[stepped]]
/llvm-project-15.0.7/cross-project-tests/debuginfo-tests/dexter/
H A DCommands.md110 Expect the line every `DexExpectStepOrder` is found on to be stepped on in
179 Expect the source line this is found on will never be stepped on to. If either
181 specified line(s) are not stepped on.
208 leading line is stepped on and any condition '(expr) == (values[n])' is true or
214 condition is not true at the start of the range, or that line is never stepped
255 after the line has been stepped onto the given number
275 variable will be assigned as the value of 'bar' when line 12 is first stepped
337 The command will trigger when the line 'on_line' is stepped on and either the
/llvm-project-15.0.7/flang/lib/Optimizer/Transforms/
H A DRewriteLoop.cpp240 mlir::Value stepped = rewriter.create<mlir::arith::AddIOp>(loc, iv, step); in matchAndRewrite() local
241 assert(stepped && "must be a Value"); in matchAndRewrite()
244 loopCarried.push_back(stepped); in matchAndRewrite()
/llvm-project-15.0.7/mlir/lib/Conversion/SCFToControlFlow/
H A DSCFToControlFlow.cpp318 auto stepped = rewriter.create<arith::AddIOp>(loc, iv, step).getResult(); in matchAndRewrite() local
319 if (!stepped) in matchAndRewrite()
323 loopCarried.push_back(stepped); in matchAndRewrite()
/llvm-project-15.0.7/llvm/test/CodeGen/X86/
H A Dnegative-stride-fptosi-user.ll5 ; variable which stepped by a bogus ((double)UINT32_C(-1)). It's theoretically
/llvm-project-15.0.7/mlir/lib/Dialect/SCF/Utils/
H A DUtils.cpp851 Value stepped = b.create<arith::AddIOp>(t.getLoc(), iv, forOp.getStep()); in stripmineSink() local
853 forOp.getUpperBound(), stepped); in stripmineSink()
855 forOp.getUpperBound(), stepped); in stripmineSink()
/llvm-project-15.0.7/llvm/docs/
H A DSourceLevelDebugging.rst550 describe, and should be stepped over by debuggers anyway.