llvm-project/flang/lib/Optimizer/OpenACC/FIROpenACCAttributes.cpp
Slava Zakharin 9aff19e7a3
[flang] Defined SafeTempArrayCopyAttrInterface for array repacking. (#134346)
This patch defines `fir::SafeTempArrayCopyAttrInterface` and the
corresponding
OpenACC/OpenMP related attributes in FIR dialect. The actual
implementations
are just placeholders right now, and array repacking becomes a no-op
if `-fopenacc/-fopenmp` is used for the compilation.
2025-04-10 18:41:54 -07:00

68 lines
2.6 KiB
C++

//===-- FIROpenACCAttributes.cpp ------------------------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//
/// \file
/// This file implements attribute interfaces that are promised by FIR
/// dialect attributes related to OpenACC.
//===----------------------------------------------------------------------===//
#include "flang/Optimizer/Builder/FIRBuilder.h"
#include "flang/Optimizer/Builder/Todo.h"
#include "flang/Optimizer/Dialect/FIRAttr.h"
#include "flang/Optimizer/Dialect/FIRDialect.h"
#include "mlir/Dialect/OpenACC/OpenACC.h"
namespace fir::acc {
class FortranSafeTempArrayCopyAttrImpl
: public fir::SafeTempArrayCopyAttrInterface::FallbackModel<
FortranSafeTempArrayCopyAttrImpl> {
public:
// SafeTempArrayCopyAttrInterface interface methods.
static bool isDynamicallySafe() { return false; }
static mlir::Value genDynamicCheck(mlir::Location loc,
fir::FirOpBuilder &builder,
mlir::Value array) {
TODO(loc, "fir::acc::FortranSafeTempArrayCopyAttrImpl::genDynamicCheck()");
return nullptr;
}
static void registerTempDeallocation(mlir::Location loc,
fir::FirOpBuilder &builder,
mlir::Value array, mlir::Value temp) {
TODO(loc, "fir::acc::FortranSafeTempArrayCopyAttrImpl::"
"registerTempDeallocation()");
}
// Extra helper methods.
/// Attach the implementation to fir::OpenACCSafeTempArrayCopyAttr.
static void registerExternalModel(mlir::DialectRegistry &registry);
/// If the methods above create any new operations, this method
/// must register all the corresponding dialect.
static void getDependentDialects(mlir::DialectRegistry &registry) {}
};
void FortranSafeTempArrayCopyAttrImpl::registerExternalModel(
mlir::DialectRegistry &registry) {
registry.addExtension(
+[](mlir::MLIRContext *ctx, fir::FIROpsDialect *dialect) {
fir::OpenACCSafeTempArrayCopyAttr::attachInterface<
FortranSafeTempArrayCopyAttrImpl>(*ctx);
});
}
void registerAttrsExtensions(mlir::DialectRegistry &registry) {
FortranSafeTempArrayCopyAttrImpl::registerExternalModel(registry);
}
void registerTransformationalAttrsDependentDialects(
mlir::DialectRegistry &registry) {
FortranSafeTempArrayCopyAttrImpl::getDependentDialects(registry);
}
} // namespace fir::acc