blob: e343bbc2ee019db5167fd4ba5db8f3f26605f466 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
|
//===-- FIROpenMPAttributes.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 OpenMP.
//===----------------------------------------------------------------------===//
#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/OpenMP/OpenMPDialect.h"
namespace fir::omp {
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::omp::FortranSafeTempArrayCopyAttrImpl::genDynamicCheck()");
return nullptr;
}
static void registerTempDeallocation(mlir::Location loc,
fir::FirOpBuilder &builder,
mlir::Value array, mlir::Value temp) {
TODO(loc, "fir::omp::FortranSafeTempArrayCopyAttrImpl::"
"registerTempDeallocation()");
}
// Extra helper methods.
/// Attach the implementation to fir::OpenMPSafeTempArrayCopyAttr.
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::OpenMPSafeTempArrayCopyAttr::attachInterface<
FortranSafeTempArrayCopyAttrImpl>(*ctx);
});
}
void registerAttrsExtensions(mlir::DialectRegistry ®istry) {
FortranSafeTempArrayCopyAttrImpl::registerExternalModel(registry);
}
void registerTransformationalAttrsDependentDialects(
mlir::DialectRegistry ®istry) {
FortranSafeTempArrayCopyAttrImpl::getDependentDialects(registry);
}
} // namespace fir::omp
|