forked from OSchip/llvm-project
46 lines
1.6 KiB
C
46 lines
1.6 KiB
C
|
//===- Pattern.h - SPIRV Common Conversion 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
|
||
|
//
|
||
|
//===----------------------------------------------------------------------===//
|
||
|
|
||
|
#ifndef MLIR_CONVERSION_SPIRVCOMMON_PATTERN_H
|
||
|
#define MLIR_CONVERSION_SPIRVCOMMON_PATTERN_H
|
||
|
|
||
|
#include "mlir/Dialect/SPIRV/IR/SPIRVOpTraits.h"
|
||
|
#include "mlir/Transforms/DialectConversion.h"
|
||
|
|
||
|
namespace mlir {
|
||
|
namespace spirv {
|
||
|
|
||
|
/// Converts unary and binary standard operations to SPIR-V operations.
|
||
|
template <typename Op, typename SPIRVOp>
|
||
|
class UnaryAndBinaryOpPattern final : public OpConversionPattern<Op> {
|
||
|
public:
|
||
|
using OpConversionPattern<Op>::OpConversionPattern;
|
||
|
|
||
|
LogicalResult
|
||
|
matchAndRewrite(Op op, typename Op::Adaptor adaptor,
|
||
|
ConversionPatternRewriter &rewriter) const override {
|
||
|
assert(adaptor.getOperands().size() <= 2);
|
||
|
auto dstType = this->getTypeConverter()->convertType(op.getType());
|
||
|
if (!dstType)
|
||
|
return failure();
|
||
|
if (SPIRVOp::template hasTrait<OpTrait::spirv::UnsignedOp>() &&
|
||
|
dstType != op.getType()) {
|
||
|
return op.emitError(
|
||
|
"bitwidth emulation is not implemented yet on unsigned op");
|
||
|
}
|
||
|
rewriter.template replaceOpWithNewOp<SPIRVOp>(op, dstType,
|
||
|
adaptor.getOperands());
|
||
|
return success();
|
||
|
}
|
||
|
};
|
||
|
|
||
|
} // end namespace spirv
|
||
|
} // end namespace mlir
|
||
|
|
||
|
#endif // MLIR_CONVERSION_SPIRVCOMMON_PATTERN_H
|