mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-16 11:36:46 +00:00

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.
68 lines
2.6 KiB
C++
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 ®istry);
|
|
|
|
/// If the methods above create any new operations, this method
|
|
/// must register all the corresponding dialect.
|
|
static void getDependentDialects(mlir::DialectRegistry ®istry) {}
|
|
};
|
|
|
|
void FortranSafeTempArrayCopyAttrImpl::registerExternalModel(
|
|
mlir::DialectRegistry ®istry) {
|
|
registry.addExtension(
|
|
+[](mlir::MLIRContext *ctx, fir::FIROpsDialect *dialect) {
|
|
fir::OpenACCSafeTempArrayCopyAttr::attachInterface<
|
|
FortranSafeTempArrayCopyAttrImpl>(*ctx);
|
|
});
|
|
}
|
|
|
|
void registerAttrsExtensions(mlir::DialectRegistry ®istry) {
|
|
FortranSafeTempArrayCopyAttrImpl::registerExternalModel(registry);
|
|
}
|
|
|
|
void registerTransformationalAttrsDependentDialects(
|
|
mlir::DialectRegistry ®istry) {
|
|
FortranSafeTempArrayCopyAttrImpl::getDependentDialects(registry);
|
|
}
|
|
|
|
} // namespace fir::acc
|