|
| 1 | +/*===-- mlir-c/AffineExpr.h - C API for MLIR Affine Expressions ---*- C -*-===*\ |
| 2 | +|* *| |
| 3 | +|* Part of the LLVM Project, under the Apache License v2.0 with LLVM *| |
| 4 | +|* Exceptions. *| |
| 5 | +|* See https://llvm.org/LICENSE.txt for license information. *| |
| 6 | +|* SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception *| |
| 7 | +|* *| |
| 8 | +\*===----------------------------------------------------------------------===*/ |
| 9 | + |
| 10 | +#ifndef MLIR_C_AFFINEEXPR_H |
| 11 | +#define MLIR_C_AFFINEEXPR_H |
| 12 | + |
| 13 | +#include "mlir-c/AffineMap.h" |
| 14 | +#include "mlir-c/IR.h" |
| 15 | + |
| 16 | +#ifdef __cplusplus |
| 17 | +extern "C" { |
| 18 | +#endif |
| 19 | + |
| 20 | +DEFINE_C_API_STRUCT(MlirAffineExpr, const void); |
| 21 | + |
| 22 | +/** Gets the context that owns the affine expression. */ |
| 23 | +MlirContext mlirAffineExprGetContext(MlirAffineExpr affineExpr); |
| 24 | + |
| 25 | +/** Prints an affine expression by sending chunks of the string representation |
| 26 | + * and forwarding `userData to `callback`. Note that the callback may be called |
| 27 | + * several times with consecutive chunks of the string. */ |
| 28 | +void mlirAffineExprPrint(MlirAffineExpr affineExpr, MlirStringCallback callback, |
| 29 | + void *userData); |
| 30 | + |
| 31 | +/** Prints the affine expression to the standard error stream. */ |
| 32 | +void mlirAffineExprDump(MlirAffineExpr affineExpr); |
| 33 | + |
| 34 | +/** Checks whether the given affine expression is made out of only symbols and |
| 35 | + * constants. */ |
| 36 | +int mlirAffineExprIsSymbolicOrConstant(MlirAffineExpr affineExpr); |
| 37 | + |
| 38 | +/** Checks whether the given affine expression is a pure affine expression, i.e. |
| 39 | + * mul, floordiv, ceildic, and mod is only allowed w.r.t constants. */ |
| 40 | +int mlirAffineExprIsPureAffine(MlirAffineExpr affineExpr); |
| 41 | + |
| 42 | +/** Returns the greatest known integral divisor of this affine expression. The |
| 43 | + * result is always positive. */ |
| 44 | +int64_t mlirAffineExprGetLargestKnownDivisor(MlirAffineExpr affineExpr); |
| 45 | + |
| 46 | +/** Checks whether the given affine expression is a multiple of 'factor'. */ |
| 47 | +int mlirAffineExprIsMultipleOf(MlirAffineExpr affineExpr, int64_t factor); |
| 48 | + |
| 49 | +/** Checks whether the given affine expression involves AffineDimExpr |
| 50 | + * 'position'. */ |
| 51 | +int mlirAffineExprIsFunctionOfDim(MlirAffineExpr affineExpr, intptr_t position); |
| 52 | + |
| 53 | +/*============================================================================*/ |
| 54 | +/* Affine Dimension Expression. */ |
| 55 | +/*============================================================================*/ |
| 56 | + |
| 57 | +/** Creates an affine dimension expression with 'position' in the context. */ |
| 58 | +MlirAffineExpr mlirAffineDimExprGet(MlirContext ctx, intptr_t position); |
| 59 | + |
| 60 | +/** Returns the position of the given affine dimension expression. */ |
| 61 | +intptr_t mlirAffineDimExprGetPosition(MlirAffineExpr affineExpr); |
| 62 | + |
| 63 | +/*============================================================================*/ |
| 64 | +/* Affine Symbol Expression. */ |
| 65 | +/*============================================================================*/ |
| 66 | + |
| 67 | +/** Creates an affine symbol expression with 'position' in the context. */ |
| 68 | +MlirAffineExpr mlirAffineSymbolExprGet(MlirContext ctx, intptr_t position); |
| 69 | + |
| 70 | +/** Returns the position of the given affine symbol expression. */ |
| 71 | +intptr_t mlirAffineSymbolExprGetPosition(MlirAffineExpr affineExpr); |
| 72 | + |
| 73 | +/*============================================================================*/ |
| 74 | +/* Affine Constant Expression. */ |
| 75 | +/*============================================================================*/ |
| 76 | + |
| 77 | +/** Creates an affine constant expression with 'constant' in the context. */ |
| 78 | +MlirAffineExpr mlirAffineConstantExprGet(MlirContext ctx, int64_t constant); |
| 79 | + |
| 80 | +/** Returns the value of the given affine constant expression. */ |
| 81 | +int64_t mlirAffineConstantExprGetValue(MlirAffineExpr affineExpr); |
| 82 | + |
| 83 | +/*============================================================================*/ |
| 84 | +/* Affine Add Expression. */ |
| 85 | +/*============================================================================*/ |
| 86 | + |
| 87 | +/** Checks whether the given affine expression is an add expression. */ |
| 88 | +int mlirAffineExprIsAAdd(MlirAffineExpr affineExpr); |
| 89 | + |
| 90 | +/** Creates an affine add expression with 'lhs' and 'rhs'. */ |
| 91 | +MlirAffineExpr mlirAffineAddExprGet(MlirAffineExpr lhs, MlirAffineExpr rhs); |
| 92 | + |
| 93 | +/*============================================================================*/ |
| 94 | +/* Affine Mul Expression. */ |
| 95 | +/*============================================================================*/ |
| 96 | + |
| 97 | +/** Checks whether the given affine expression is an mul expression. */ |
| 98 | +int mlirAffineExprIsAMul(MlirAffineExpr affineExpr); |
| 99 | + |
| 100 | +/** Creates an affine mul expression with 'lhs' and 'rhs'. */ |
| 101 | +MlirAffineExpr mlirAffineMulExprGet(MlirAffineExpr lhs, MlirAffineExpr rhs); |
| 102 | + |
| 103 | +/*============================================================================*/ |
| 104 | +/* Affine Mod Expression. */ |
| 105 | +/*============================================================================*/ |
| 106 | + |
| 107 | +/** Checks whether the given affine expression is an mod expression. */ |
| 108 | +int mlirAffineExprIsAMod(MlirAffineExpr affineExpr); |
| 109 | + |
| 110 | +/** Creates an affine mod expression with 'lhs' and 'rhs'. */ |
| 111 | +MlirAffineExpr mlirAffineModExprGet(MlirAffineExpr lhs, MlirAffineExpr rhs); |
| 112 | + |
| 113 | +/*============================================================================*/ |
| 114 | +/* Affine FloorDiv Expression. */ |
| 115 | +/*============================================================================*/ |
| 116 | + |
| 117 | +/** Checks whether the given affine expression is an floordiv expression. */ |
| 118 | +int mlirAffineExprIsAFloorDiv(MlirAffineExpr affineExpr); |
| 119 | + |
| 120 | +/** Creates an affine floordiv expression with 'lhs' and 'rhs'. */ |
| 121 | +MlirAffineExpr mlirAffineFloorDivExprGet(MlirAffineExpr lhs, |
| 122 | + MlirAffineExpr rhs); |
| 123 | + |
| 124 | +/*============================================================================*/ |
| 125 | +/* Affine CeilDiv Expression. */ |
| 126 | +/*============================================================================*/ |
| 127 | + |
| 128 | +/** Checks whether the given affine expression is an ceildiv expression. */ |
| 129 | +int mlirAffineExprIsACeilDiv(MlirAffineExpr affineExpr); |
| 130 | + |
| 131 | +/** Creates an affine ceildiv expression with 'lhs' and 'rhs'. */ |
| 132 | +MlirAffineExpr mlirAffineCeilDivExprGet(MlirAffineExpr lhs, MlirAffineExpr rhs); |
| 133 | + |
| 134 | +/*============================================================================*/ |
| 135 | +/* Affine Binary Operation Expression. */ |
| 136 | +/*============================================================================*/ |
| 137 | + |
| 138 | +/** Returns the left hand side affine expression of the given affine binary |
| 139 | + * operation expression. */ |
| 140 | +MlirAffineExpr mlirAffineBinaryOpExprGetLHS(MlirAffineExpr affineExpr); |
| 141 | + |
| 142 | +/** Returns the right hand side affine expression of the given affine binary |
| 143 | + * operation expression. */ |
| 144 | +MlirAffineExpr mlirAffineBinaryOpExprGetRHS(MlirAffineExpr affineExpr); |
| 145 | + |
| 146 | +#ifdef __cplusplus |
| 147 | +} |
| 148 | +#endif |
| 149 | + |
| 150 | +#endif // MLIR_C_AFFINEEXPR_H |
0 commit comments