Home
last modified time | relevance | path

Searched refs:destOperands (Results 1 – 8 of 8) sorted by relevance

/llvm-project-15.0.7/mlir/include/mlir/Dialect/ControlFlow/IR/
H A DControlFlowOps.td87 let arguments = (ins Variadic<AnyType>:$destOperands);
92 CArg<"ValueRange", "{}">:$destOperands), [{
94 $_state.addOperands(destOperands);
106 $dest (`(` $destOperands^ `:` type($destOperands) `)`)? attr-dict
/llvm-project-15.0.7/flang/lib/Optimizer/Transforms/
H A DRewriteLoop.cpp260 llvm::SmallVector<mlir::Value> destOperands; in matchAndRewrite() local
261 destOperands.push_back(lowerBound); in matchAndRewrite()
263 destOperands.append(iterOperands.begin(), iterOperands.end()); in matchAndRewrite()
264 rewriter.create<mlir::cf::BranchOp>(loc, conditionBlock, destOperands); in matchAndRewrite()
/llvm-project-15.0.7/mlir/lib/Conversion/SCFToControlFlow/
H A DSCFToControlFlow.cpp337 SmallVector<Value, 8> destOperands; in matchAndRewrite() local
338 destOperands.push_back(lowerBound); in matchAndRewrite()
340 destOperands.append(iterOperands.begin(), iterOperands.end()); in matchAndRewrite()
341 rewriter.create<cf::BranchOp>(loc, conditionBlock, destOperands); in matchAndRewrite()
/llvm-project-15.0.7/mlir/lib/Dialect/Linalg/Transforms/
H A DTiling.cpp232 auto destOperands = op.getDestinationOperands(b); in tileToForeachThreadOpImpl() local
233 if (destOperands.size() != 1) in tileToForeachThreadOpImpl()
316 op.getTiledImplementation(b, destOperands, tiledOffsets, tiledSizes, in tileToForeachThreadOpImpl()
329 destOperands)) { in tileToForeachThreadOpImpl()
/llvm-project-15.0.7/mlir/lib/Dialect/ControlFlow/IR/
H A DControlFlowOps.cpp166 ValueRange destOperands = op.getOperands(); in simplifyPassThroughBr() local
172 failed(collapseBranch(dest, destOperands, destOperandStorage))) in simplifyPassThroughBr()
176 rewriter.replaceOpWithNewOp<BranchOp>(op, dest, destOperands); in simplifyPassThroughBr()
/llvm-project-15.0.7/flang/lib/Optimizer/Dialect/
H A DFIROps.cpp2721 llvm::ArrayRef<mlir::ValueRange> destOperands, in build() argument
2745 const auto opCount = destOperands.size(); in build()
2750 result.addOperands(destOperands[i]); in build()
2751 const auto argSz = destOperands[i].size(); in build()
2774 llvm::ArrayRef<mlir::ValueRange> destOperands, in build() argument
2790 destOperands, attributes); in build()
3003 llvm::ArrayRef<mlir::ValueRange> destOperands, in build() argument
3010 const auto opCount = destOperands.size(); in build()
3015 result.addOperands(destOperands[i]); in build()
3016 const auto argSz = destOperands[i].size(); in build()
/llvm-project-15.0.7/flang/include/flang/Optimizer/Dialect/
H A DFIROps.td515 CArg<"llvm::ArrayRef<mlir::ValueRange>", "{}">:$destOperands,
527 const auto opCount = destOperands.size();
532 $_state.addOperands(destOperands[i]);
533 const auto argSz = destOperands[i].size();
623 CArg<"llvm::ArrayRef<mlir::ValueRange>", "{}">:$destOperands,
629 CArg<"llvm::ArrayRef<mlir::ValueRange>", "{}">:$destOperands,
664 CArg<"llvm::ArrayRef<mlir::ValueRange>", "{}">:$destOperands,
/llvm-project-15.0.7/mlir/include/mlir/Dialect/LLVMIR/
H A DLLVMOps.td769 let arguments = (ins Variadic<LLVM_Type>:$destOperands);
772 $dest (`(` $destOperands^ `:` type($destOperands) `)`)? attr-dict