2018-10-10 01:59:27 +08:00
|
|
|
//===- AffineExprDetail.h - MLIR Affine Expr storage details ----*- C++ -*-===//
|
|
|
|
//
|
2020-01-26 11:58:30 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
2019-12-24 01:35:36 +08:00
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2018-10-10 01:59:27 +08:00
|
|
|
//
|
2019-12-24 01:35:36 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2018-10-10 01:59:27 +08:00
|
|
|
//
|
|
|
|
// This holds implementation details of AffineExpr. Ideally it would not be
|
|
|
|
// exposed and would be kept local to AffineExpr.cpp however, MLIRContext.cpp
|
|
|
|
// needs to know the sizes for placement-new style Allocation.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef MLIR_IR_AFFINEEXPRDETAIL_H_
|
|
|
|
#define MLIR_IR_AFFINEEXPRDETAIL_H_
|
|
|
|
|
|
|
|
#include "mlir/IR/AffineExpr.h"
|
|
|
|
#include "mlir/IR/MLIRContext.h"
|
2019-05-21 16:34:13 +08:00
|
|
|
#include "mlir/Support/StorageUniquer.h"
|
2018-10-10 01:59:27 +08:00
|
|
|
|
|
|
|
namespace mlir {
|
|
|
|
|
|
|
|
class MLIRContext;
|
|
|
|
|
|
|
|
namespace detail {
|
|
|
|
|
|
|
|
/// Base storage class appearing in an affine expression.
|
2019-05-21 16:34:13 +08:00
|
|
|
struct AffineExprStorage : public StorageUniquer::BaseStorage {
|
|
|
|
MLIRContext *context;
|
2020-08-19 06:59:53 +08:00
|
|
|
AffineExprKind kind;
|
2018-10-10 01:59:27 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
/// A binary operation appearing in an affine expression.
|
|
|
|
struct AffineBinaryOpExprStorage : public AffineExprStorage {
|
2020-08-19 06:59:53 +08:00
|
|
|
using KeyTy = std::tuple<unsigned, AffineExpr, AffineExpr>;
|
2019-05-21 16:34:13 +08:00
|
|
|
|
|
|
|
bool operator==(const KeyTy &key) const {
|
2020-08-19 06:59:53 +08:00
|
|
|
return static_cast<AffineExprKind>(std::get<0>(key)) == kind &&
|
|
|
|
std::get<1>(key) == lhs && std::get<2>(key) == rhs;
|
2019-05-21 16:34:13 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static AffineBinaryOpExprStorage *
|
|
|
|
construct(StorageUniquer::StorageAllocator &allocator, const KeyTy &key) {
|
|
|
|
auto *result = allocator.allocate<AffineBinaryOpExprStorage>();
|
2020-08-19 06:59:53 +08:00
|
|
|
result->kind = static_cast<AffineExprKind>(std::get<0>(key));
|
|
|
|
result->lhs = std::get<1>(key);
|
|
|
|
result->rhs = std::get<2>(key);
|
2019-05-21 16:34:13 +08:00
|
|
|
result->context = result->lhs.getContext();
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2018-10-10 01:59:27 +08:00
|
|
|
AffineExpr lhs;
|
|
|
|
AffineExpr rhs;
|
|
|
|
};
|
|
|
|
|
2019-05-21 16:34:13 +08:00
|
|
|
/// A dimensional or symbolic identifier appearing in an affine expression.
|
2018-10-10 01:59:27 +08:00
|
|
|
struct AffineDimExprStorage : public AffineExprStorage {
|
2020-08-19 06:59:53 +08:00
|
|
|
using KeyTy = std::pair<unsigned, unsigned>;
|
2018-10-10 01:59:27 +08:00
|
|
|
|
2020-08-19 06:59:53 +08:00
|
|
|
bool operator==(const KeyTy &key) const {
|
|
|
|
return kind == static_cast<AffineExprKind>(key.first) &&
|
|
|
|
position == key.second;
|
|
|
|
}
|
2019-05-21 16:34:13 +08:00
|
|
|
|
|
|
|
static AffineDimExprStorage *
|
|
|
|
construct(StorageUniquer::StorageAllocator &allocator, const KeyTy &key) {
|
|
|
|
auto *result = allocator.allocate<AffineDimExprStorage>();
|
2020-08-19 06:59:53 +08:00
|
|
|
result->kind = static_cast<AffineExprKind>(key.first);
|
|
|
|
result->position = key.second;
|
2019-05-21 16:34:13 +08:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Position of this identifier in the argument list.
|
2018-10-10 01:59:27 +08:00
|
|
|
unsigned position;
|
|
|
|
};
|
|
|
|
|
|
|
|
/// An integer constant appearing in affine expression.
|
|
|
|
struct AffineConstantExprStorage : public AffineExprStorage {
|
2019-05-21 16:34:13 +08:00
|
|
|
using KeyTy = int64_t;
|
|
|
|
|
|
|
|
bool operator==(const KeyTy &key) const { return constant == key; }
|
|
|
|
|
|
|
|
static AffineConstantExprStorage *
|
|
|
|
construct(StorageUniquer::StorageAllocator &allocator, const KeyTy &key) {
|
|
|
|
auto *result = allocator.allocate<AffineConstantExprStorage>();
|
2020-08-19 06:59:53 +08:00
|
|
|
result->kind = AffineExprKind::Constant;
|
2019-05-21 16:34:13 +08:00
|
|
|
result->constant = key;
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2018-10-10 01:59:27 +08:00
|
|
|
// The constant.
|
|
|
|
int64_t constant;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // end namespace detail
|
|
|
|
} // end namespace mlir
|
|
|
|
#endif // MLIR_IR_AFFINEEXPRDETAIL_H_
|