Home
last modified time | relevance | path

Searched refs:transformRoot (Results 1 – 6 of 6) sorted by relevance

/llvm-project/mlir/lib/Dialect/Transform/Transforms/
H A DTransformInterpreterUtils.cpp192 Operation *payload, Operation *transformRoot, ModuleOp transformModule, in applyTransformNamedSequence() argument
197 cast<TransformOpInterface>(transformRoot), in applyTransformNamedSequence()
202 RaggedArray<MappedValue> bindings, TransformOpInterface transformRoot, in applyTransformNamedSequence() argument
205 return transformRoot.emitError() in applyTransformNamedSequence()
209 return transformRoot.emitError() in applyTransformNamedSequence()
215 return transformRoot->emitError() << "expected the object bound to the " in applyTransformNamedSequence()
222 if (transformModule && !transformModule->isAncestor(transformRoot)) { in applyTransformNamedSequence()
225 SymbolTable::getNearestSymbolTable(transformRoot), in applyTransformNamedSequence()
231 LLVM_DEBUG(DBGS() << "Apply\n" << *transformRoot << "\n"); in applyTransformNamedSequence()
234 return applyTransforms(payloadRoot, transformRoot, bindings, options, in applyTransformNamedSequence()
/llvm-project/mlir/examples/transform-opt/
H A Dmlir-transform-opt.cpp227 mlir::transform::TransformOpInterface transformRoot, in applyTransforms() argument
229 return applyTransforms(payloadRoot, transformRoot, {}, options, in applyTransforms()
265 mlir::OwningOpRef<mlir::ModuleOp> transformRoot; in processPayloadBuffer() local
267 transformRoot = sourceMgr.parseBuffer<mlir::ModuleOp>( in processPayloadBuffer()
269 if (!transformRoot) in processPayloadBuffer()
272 transformRoot = cast<mlir::ModuleOp>(payloadRoot->clone()); in processPayloadBuffer()
283 *transformRoot, std::move(libraryModule)))) in processPayloadBuffer()
289 transformRoot->dump(); in processPayloadBuffer()
295 *transformRoot, mlir::ModuleOp(), clOptions->transformEntryPoint); in processPayloadBuffer()
/llvm-project/mlir/lib/CAPI/Dialect/
H A DTransformInterpreter.cpp57 MlirOperation payload, MlirOperation transformRoot, in DEFINE_C_API_PTR_METHODS()
59 Operation *transformRootOp = unwrap(transformRoot); in DEFINE_C_API_PTR_METHODS()
72 unwrap(payload), unwrap(transformRoot), in DEFINE_C_API_PTR_METHODS()
/llvm-project/mlir/lib/Bindings/Python/
H A DTransformInterpreter.cpp61 [](MlirOperation payloadRoot, MlirOperation transformRoot, in populateTransformInterpreterSubmodule()
64 mlirOperationGetContext(transformRoot)); in populateTransformInterpreterSubmodule()
73 payloadRoot, transformRoot, transformModule, options.options); in populateTransformInterpreterSubmodule()
63 __anonb4837dfa0602(MlirOperation payloadRoot, MlirOperation transformRoot, MlirOperation transformModule, const PyMlirTransformOptions &options) populateTransformInterpreterSubmodule() argument
/llvm-project/mlir/include/mlir/Dialect/Transform/Transforms/
H A DTransformInterpreterUtils.h82 Operation *transformRoot,
87 TransformOpInterface transformRoot,
/llvm-project/mlir/include/mlir-c/Dialect/Transform/
H A DInterpreter.h72 MlirOperation payload, MlirOperation transformRoot,