Searched refs:blockArgs (Results 1 – 3 of 3) sorted by relevance
/external/llvm-project/mlir/lib/Dialect/SCF/ |
D | SCF.cpp | 399 Region ®ion, ValueRange blockArgs = {}) { in replaceOpWithRegion() argument 404 rewriter.mergeBlockBefore(block, op, blockArgs); 552 SmallVector<Value, 4> blockArgs; in matchAndRewrite() local 553 blockArgs.reserve(op.getNumIterOperands() + 1); in matchAndRewrite() 554 blockArgs.push_back(op.lowerBound()); in matchAndRewrite() 555 llvm::append_range(blockArgs, op.getIterOperands()); in matchAndRewrite() 556 replaceOpWithRegion(rewriter, op, op.getLoopBody(), blockArgs); in matchAndRewrite()
|
/external/llvm-project/mlir/lib/Dialect/SPIRV/Serialization/ |
D | Deserializer.cpp | 2113 SmallVector<Value, 4> blockArgs; in structurizeImpl() local 2115 blockArgs = {mergeBlock->args_begin(), mergeBlock->args_end()}; in structurizeImpl() 2121 ArrayRef<Value>(blockArgs)); in structurizeImpl() 2210 SmallVector<Value, 4> blockArgs; in wireUpBlockArgument() local 2211 blockArgs.reserve(phiInfo.size()); in wireUpBlockArgument() 2214 blockArgs.push_back(value); in wireUpBlockArgument() 2225 blockArgs); in wireUpBlockArgument()
|
/external/llvm-project/mlir/lib/Conversion/StandardToLLVM/ |
D | StandardToLLVM.cpp | 1449 auto blockArgs = entryBlock->getArguments(); in matchAndRewrite() local 1450 assert(blockArgs.size() == oldArgTypes.size() && in matchAndRewrite() 1455 for (auto it : llvm::zip(blockArgs, oldArgTypes)) { in matchAndRewrite()
|