Home
last modified time | relevance | path

Searched refs:replValues (Results 1 – 5 of 5) sorted by relevance

/external/llvm-project/mlir/lib/Dialect/PDL/IR/
DPDL.cpp377 auto replValues = op.replValues(); in verify() local
390 if (!replValues.empty()) { in verify()
398 if (sourceOpResults.size() != replValues.size()) { in verify()
402 << replValues.size() << " replacement values but expected " in verify()
/external/llvm-project/mlir/include/mlir/Dialect/PDL/IR/
DPDLOps.td350 * a set of `Value`s (`replValues` should be populated)
365 Variadic<PDL_Value>:$replValues);
367 $operation `with` (`(` $replValues^ `)`)? ($replOperation^)? attr-dict
/external/llvm-project/mlir/include/mlir/Dialect/PDLInterp/IR/
DPDLInterpOps.td755 Variadic<PDL_Value>:$replValues);
756 let assemblyFormat = "$operation `with` `(` $replValues `)` attr-dict";
/external/llvm-project/mlir/lib/Conversion/PDLToPDLInterp/
DPDLToPDLInterp.cpp550 origOperands = replaceOp.replValues(); in generateRewriter()
/external/llvm-project/mlir/lib/Rewrite/
DByteCode.cpp645 writer.append(OpCode::ReplaceOp, op.operation(), op.replValues()); in generate()