1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326
|
//===- Rewrite.cpp - C API for Rewrite Patterns ---------------------------===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
#include "mlir-c/Rewrite.h"
#include "mlir-c/Transforms.h"
#include "mlir/CAPI/IR.h"
#include "mlir/CAPI/Rewrite.h"
#include "mlir/CAPI/Support.h"
#include "mlir/CAPI/Wrap.h"
#include "mlir/IR/PatternMatch.h"
#include "mlir/Rewrite/FrozenRewritePatternSet.h"
#include "mlir/Transforms/GreedyPatternRewriteDriver.h"
using namespace mlir;
//===----------------------------------------------------------------------===//
/// RewriterBase API inherited from OpBuilder
//===----------------------------------------------------------------------===//
MlirContext mlirRewriterBaseGetContext(MlirRewriterBase rewriter) {
return wrap(unwrap(rewriter)->getContext());
}
//===----------------------------------------------------------------------===//
/// Insertion points methods
void mlirRewriterBaseClearInsertionPoint(MlirRewriterBase rewriter) {
unwrap(rewriter)->clearInsertionPoint();
}
void mlirRewriterBaseSetInsertionPointBefore(MlirRewriterBase rewriter,
MlirOperation op) {
unwrap(rewriter)->setInsertionPoint(unwrap(op));
}
void mlirRewriterBaseSetInsertionPointAfter(MlirRewriterBase rewriter,
MlirOperation op) {
unwrap(rewriter)->setInsertionPointAfter(unwrap(op));
}
void mlirRewriterBaseSetInsertionPointAfterValue(MlirRewriterBase rewriter,
MlirValue value) {
unwrap(rewriter)->setInsertionPointAfterValue(unwrap(value));
}
void mlirRewriterBaseSetInsertionPointToStart(MlirRewriterBase rewriter,
MlirBlock block) {
unwrap(rewriter)->setInsertionPointToStart(unwrap(block));
}
void mlirRewriterBaseSetInsertionPointToEnd(MlirRewriterBase rewriter,
MlirBlock block) {
unwrap(rewriter)->setInsertionPointToEnd(unwrap(block));
}
MlirBlock mlirRewriterBaseGetInsertionBlock(MlirRewriterBase rewriter) {
return wrap(unwrap(rewriter)->getInsertionBlock());
}
MlirBlock mlirRewriterBaseGetBlock(MlirRewriterBase rewriter) {
return wrap(unwrap(rewriter)->getBlock());
}
//===----------------------------------------------------------------------===//
/// Block and operation creation/insertion/cloning
MlirBlock mlirRewriterBaseCreateBlockBefore(MlirRewriterBase rewriter,
MlirBlock insertBefore,
intptr_t nArgTypes,
MlirType const *argTypes,
MlirLocation const *locations) {
SmallVector<Type, 4> args;
ArrayRef<Type> unwrappedArgs = unwrapList(nArgTypes, argTypes, args);
SmallVector<Location, 4> locs;
ArrayRef<Location> unwrappedLocs = unwrapList(nArgTypes, locations, locs);
return wrap(unwrap(rewriter)->createBlock(unwrap(insertBefore), unwrappedArgs,
unwrappedLocs));
}
MlirOperation mlirRewriterBaseInsert(MlirRewriterBase rewriter,
MlirOperation op) {
return wrap(unwrap(rewriter)->insert(unwrap(op)));
}
// Other methods of OpBuilder
MlirOperation mlirRewriterBaseClone(MlirRewriterBase rewriter,
MlirOperation op) {
return wrap(unwrap(rewriter)->clone(*unwrap(op)));
}
MlirOperation mlirRewriterBaseCloneWithoutRegions(MlirRewriterBase rewriter,
MlirOperation op) {
return wrap(unwrap(rewriter)->cloneWithoutRegions(*unwrap(op)));
}
void mlirRewriterBaseCloneRegionBefore(MlirRewriterBase rewriter,
MlirRegion region, MlirBlock before) {
unwrap(rewriter)->cloneRegionBefore(*unwrap(region), unwrap(before));
}
//===----------------------------------------------------------------------===//
/// RewriterBase API
//===----------------------------------------------------------------------===//
void mlirRewriterBaseInlineRegionBefore(MlirRewriterBase rewriter,
MlirRegion region, MlirBlock before) {
unwrap(rewriter)->inlineRegionBefore(*unwrap(region), unwrap(before));
}
void mlirRewriterBaseReplaceOpWithValues(MlirRewriterBase rewriter,
MlirOperation op, intptr_t nValues,
MlirValue const *values) {
SmallVector<Value, 4> vals;
ArrayRef<Value> unwrappedVals = unwrapList(nValues, values, vals);
unwrap(rewriter)->replaceOp(unwrap(op), unwrappedVals);
}
void mlirRewriterBaseReplaceOpWithOperation(MlirRewriterBase rewriter,
MlirOperation op,
MlirOperation newOp) {
unwrap(rewriter)->replaceOp(unwrap(op), unwrap(newOp));
}
void mlirRewriterBaseEraseOp(MlirRewriterBase rewriter, MlirOperation op) {
unwrap(rewriter)->eraseOp(unwrap(op));
}
void mlirRewriterBaseEraseBlock(MlirRewriterBase rewriter, MlirBlock block) {
unwrap(rewriter)->eraseBlock(unwrap(block));
}
void mlirRewriterBaseInlineBlockBefore(MlirRewriterBase rewriter,
MlirBlock source, MlirOperation op,
intptr_t nArgValues,
MlirValue const *argValues) {
SmallVector<Value, 4> vals;
ArrayRef<Value> unwrappedVals = unwrapList(nArgValues, argValues, vals);
unwrap(rewriter)->inlineBlockBefore(unwrap(source), unwrap(op),
unwrappedVals);
}
void mlirRewriterBaseMergeBlocks(MlirRewriterBase rewriter, MlirBlock source,
MlirBlock dest, intptr_t nArgValues,
MlirValue const *argValues) {
SmallVector<Value, 4> args;
ArrayRef<Value> unwrappedArgs = unwrapList(nArgValues, argValues, args);
unwrap(rewriter)->mergeBlocks(unwrap(source), unwrap(dest), unwrappedArgs);
}
void mlirRewriterBaseMoveOpBefore(MlirRewriterBase rewriter, MlirOperation op,
MlirOperation existingOp) {
unwrap(rewriter)->moveOpBefore(unwrap(op), unwrap(existingOp));
}
void mlirRewriterBaseMoveOpAfter(MlirRewriterBase rewriter, MlirOperation op,
MlirOperation existingOp) {
unwrap(rewriter)->moveOpAfter(unwrap(op), unwrap(existingOp));
}
void mlirRewriterBaseMoveBlockBefore(MlirRewriterBase rewriter, MlirBlock block,
MlirBlock existingBlock) {
unwrap(rewriter)->moveBlockBefore(unwrap(block), unwrap(existingBlock));
}
void mlirRewriterBaseStartOpModification(MlirRewriterBase rewriter,
MlirOperation op) {
unwrap(rewriter)->startOpModification(unwrap(op));
}
void mlirRewriterBaseFinalizeOpModification(MlirRewriterBase rewriter,
MlirOperation op) {
unwrap(rewriter)->finalizeOpModification(unwrap(op));
}
void mlirRewriterBaseCancelOpModification(MlirRewriterBase rewriter,
MlirOperation op) {
unwrap(rewriter)->cancelOpModification(unwrap(op));
}
void mlirRewriterBaseReplaceAllUsesWith(MlirRewriterBase rewriter,
MlirValue from, MlirValue to) {
unwrap(rewriter)->replaceAllUsesWith(unwrap(from), unwrap(to));
}
void mlirRewriterBaseReplaceAllValueRangeUsesWith(MlirRewriterBase rewriter,
intptr_t nValues,
MlirValue const *from,
MlirValue const *to) {
SmallVector<Value, 4> fromVals;
ArrayRef<Value> unwrappedFromVals = unwrapList(nValues, from, fromVals);
SmallVector<Value, 4> toVals;
ArrayRef<Value> unwrappedToVals = unwrapList(nValues, to, toVals);
unwrap(rewriter)->replaceAllUsesWith(unwrappedFromVals, unwrappedToVals);
}
void mlirRewriterBaseReplaceAllOpUsesWithValueRange(MlirRewriterBase rewriter,
MlirOperation from,
intptr_t nTo,
MlirValue const *to) {
SmallVector<Value, 4> toVals;
ArrayRef<Value> unwrappedToVals = unwrapList(nTo, to, toVals);
unwrap(rewriter)->replaceAllOpUsesWith(unwrap(from), unwrappedToVals);
}
void mlirRewriterBaseReplaceAllOpUsesWithOperation(MlirRewriterBase rewriter,
MlirOperation from,
MlirOperation to) {
unwrap(rewriter)->replaceAllOpUsesWith(unwrap(from), unwrap(to));
}
void mlirRewriterBaseReplaceOpUsesWithinBlock(MlirRewriterBase rewriter,
MlirOperation op,
intptr_t nNewValues,
MlirValue const *newValues,
MlirBlock block) {
SmallVector<Value, 4> vals;
ArrayRef<Value> unwrappedVals = unwrapList(nNewValues, newValues, vals);
unwrap(rewriter)->replaceOpUsesWithinBlock(unwrap(op), unwrappedVals,
unwrap(block));
}
void mlirRewriterBaseReplaceAllUsesExcept(MlirRewriterBase rewriter,
MlirValue from, MlirValue to,
MlirOperation exceptedUser) {
unwrap(rewriter)->replaceAllUsesExcept(unwrap(from), unwrap(to),
unwrap(exceptedUser));
}
//===----------------------------------------------------------------------===//
/// IRRewriter API
//===----------------------------------------------------------------------===//
MlirRewriterBase mlirIRRewriterCreate(MlirContext context) {
return wrap(new IRRewriter(unwrap(context)));
}
MlirRewriterBase mlirIRRewriterCreateFromOp(MlirOperation op) {
return wrap(new IRRewriter(unwrap(op)));
}
void mlirIRRewriterDestroy(MlirRewriterBase rewriter) {
delete static_cast<IRRewriter *>(unwrap(rewriter));
}
//===----------------------------------------------------------------------===//
/// RewritePatternSet and FrozenRewritePatternSet API
//===----------------------------------------------------------------------===//
inline mlir::RewritePatternSet &unwrap(MlirRewritePatternSet module) {
assert(module.ptr && "unexpected null module");
return *(static_cast<mlir::RewritePatternSet *>(module.ptr));
}
inline MlirRewritePatternSet wrap(mlir::RewritePatternSet *module) {
return {module};
}
inline mlir::FrozenRewritePatternSet *
unwrap(MlirFrozenRewritePatternSet module) {
assert(module.ptr && "unexpected null module");
return static_cast<mlir::FrozenRewritePatternSet *>(module.ptr);
}
inline MlirFrozenRewritePatternSet wrap(mlir::FrozenRewritePatternSet *module) {
return {module};
}
MlirFrozenRewritePatternSet mlirFreezeRewritePattern(MlirRewritePatternSet op) {
auto *m = new mlir::FrozenRewritePatternSet(std::move(unwrap(op)));
op.ptr = nullptr;
return wrap(m);
}
void mlirFrozenRewritePatternSetDestroy(MlirFrozenRewritePatternSet op) {
delete unwrap(op);
op.ptr = nullptr;
}
MlirLogicalResult
mlirApplyPatternsAndFoldGreedily(MlirModule op,
MlirFrozenRewritePatternSet patterns,
MlirGreedyRewriteDriverConfig) {
return wrap(
mlir::applyPatternsAndFoldGreedily(unwrap(op), *unwrap(patterns)));
}
//===----------------------------------------------------------------------===//
/// PDLPatternModule API
//===----------------------------------------------------------------------===//
#if MLIR_ENABLE_PDL_IN_PATTERNMATCH
inline mlir::PDLPatternModule *unwrap(MlirPDLPatternModule module) {
assert(module.ptr && "unexpected null module");
return static_cast<mlir::PDLPatternModule *>(module.ptr);
}
inline MlirPDLPatternModule wrap(mlir::PDLPatternModule *module) {
return {module};
}
MlirPDLPatternModule mlirPDLPatternModuleFromModule(MlirModule op) {
return wrap(new mlir::PDLPatternModule(
mlir::OwningOpRef<mlir::ModuleOp>(unwrap(op))));
}
void mlirPDLPatternModuleDestroy(MlirPDLPatternModule op) {
delete unwrap(op);
op.ptr = nullptr;
}
MlirRewritePatternSet
mlirRewritePatternSetFromPDLPatternModule(MlirPDLPatternModule op) {
auto *m = new mlir::RewritePatternSet(std::move(*unwrap(op)));
op.ptr = nullptr;
return wrap(m);
}
#endif // MLIR_ENABLE_PDL_IN_PATTERNMATCH
|