FLANG
FIROpsSupport.h
1//===-- Optimizer/Dialect/FIROpsSupport.h -- FIR op support -----*- C++ -*-===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9#ifndef FORTRAN_OPTIMIZER_DIALECT_FIROPSSUPPORT_H
10#define FORTRAN_OPTIMIZER_DIALECT_FIROPSSUPPORT_H
11
12#include "flang/Optimizer/Dialect/FIROps.h"
13#include "mlir/Dialect/Func/IR/FuncOps.h"
14#include "mlir/IR/BuiltinOps.h"
15#include "llvm/ADT/APInt.h"
16
17namespace fir {
18
26 mlir::TypeRange type,
27 llvm::SmallVectorImpl<
28 mlir::SideEffects::EffectInstance<mlir::MemoryEffects::Effect>>
29 &effects) {
30 for (mlir::Type t : type) {
32 effects.emplace_back(mlir::MemoryEffects::Read::get(),
33 fir::VolatileMemoryResource::get());
34 effects.emplace_back(mlir::MemoryEffects::Write::get(),
35 fir::VolatileMemoryResource::get());
36 break;
37 }
38 }
39}
40
42inline bool isaCall(mlir::Operation *op) {
43 return mlir::isa<fir::CallOp>(op) || mlir::isa<fir::DispatchOp>(op) ||
44 mlir::isa<mlir::func::CallOp>(op) ||
45 mlir::isa<mlir::func::CallIndirectOp>(op);
46}
47
51inline bool impureCall(mlir::Operation *op) {
52 // Should we also auto-detect that the called function is pure if its
53 // arguments are not references? For now, rely on a "pure" attribute.
54 return op && isaCall(op) && !op->getAttr("pure");
55}
56
60inline bool pureCall(mlir::Operation *op) {
61 // Should we also auto-detect that the called function is pure if its
62 // arguments are not references? For now, rely on a "pure" attribute.
63 return op && isaCall(op) && op->getAttr("pure");
64}
65
71mlir::func::FuncOp createFuncOp(mlir::Location loc, mlir::ModuleOp module,
72 llvm::StringRef name, mlir::FunctionType type,
74 const mlir::SymbolTable *symbolTable = nullptr);
75
78fir::GlobalOp createGlobalOp(mlir::Location loc, mlir::ModuleOp module,
79 llvm::StringRef name, mlir::Type type,
80 llvm::ArrayRef<mlir::NamedAttribute> attrs = {},
81 const mlir::SymbolTable *symbolTable = nullptr);
82
84constexpr llvm::StringRef getContiguousAttrName() { return "fir.contiguous"; }
85
87constexpr llvm::StringRef getOptionalAttrName() { return "fir.optional"; }
88
90static constexpr llvm::StringRef getTargetAttrName() { return "fir.target"; }
91
93static constexpr llvm::StringRef getAsynchronousAttrName() {
94 return "fir.asynchronous";
95}
96
98static constexpr llvm::StringRef getVolatileAttrName() {
99 return "fir.volatile";
100}
101
108static constexpr llvm::StringRef getReadOnlyAttrName() {
109 return "fir.read_only";
110}
111
114static constexpr llvm::StringRef getCharacterProcedureDummyAttrName() {
115 return "fir.char_proc";
116}
117
119static constexpr llvm::StringRef getSymbolAttrName() {
120 return "fir.bindc_name";
121}
122
124static constexpr llvm::StringRef getHostAssocAttrName() {
125 return "fir.host_assoc";
126}
127
129static constexpr llvm::StringRef getHostSymbolAttrName() {
130 return "fir.host_symbol";
131}
132
135static constexpr llvm::StringRef getInternalFuncNameAttrName() {
136 return "fir.internal_name";
137}
138
141static constexpr llvm::StringRef getHasLifetimeMarkerAttrName() {
142 return "fir.has_lifetime";
143}
144
146static constexpr llvm::StringRef getAccessGroupsAttrName() {
147 return "access_groups";
148}
149
151constexpr llvm::StringRef getCorankAttrName() { return "fir.corank"; }
152
155bool hasHostAssociationArgument(mlir::func::FuncOp func);
156
160inline bool isInternalProcedure(mlir::func::FuncOp func) {
161 return func->hasAttr(fir::getHostSymbolAttrName());
162}
163
172bool valueHasFirAttribute(mlir::Value value, llvm::StringRef attributeName);
173
184bool valueMayHaveFirAttributes(mlir::Value value,
185 llvm::ArrayRef<llvm::StringRef> attributeNames);
186
190bool anyFuncArgsHaveAttr(mlir::func::FuncOp func, llvm::StringRef attr);
191
193std::optional<llvm::APInt> getIntIfConstant(mlir::Value value);
194
195static constexpr llvm::StringRef getAdaptToByRefAttrName() {
196 return "adapt.valuebyref";
197}
198
199static constexpr llvm::StringRef getFuncPureAttrName() {
200 return "fir.func_pure";
201}
202
203static constexpr llvm::StringRef getFuncElementalAttrName() {
204 return "fir.func_elemental";
205}
206
207static constexpr llvm::StringRef getFuncRecursiveAttrName() {
208 return "fir.func_recursive";
209}
210
211static constexpr llvm::StringRef getFortranProcedureFlagsAttrName() {
212 return "fir.proc_attrs";
213}
214
215// Attribute for an alloca that is a trivial adaptor for converting a value to
216// pass-by-ref semantics for a VALUE parameter. The optimizer may be able to
217// eliminate these.
218// Template is used to avoid compiler errors in places that don't include
219// FIRBuilder.h
220template <typename Builder>
221inline mlir::NamedAttribute getAdaptToByRefAttr(Builder &builder) {
222 return {mlir::StringAttr::get(builder.getContext(),
223 fir::getAdaptToByRefAttrName()),
224 builder.getUnitAttr()};
225}
226
227bool isDummyArgument(mlir::Value v);
228
229template <fir::FortranProcedureFlagsEnum Flag>
230inline bool hasProcedureAttr(fir::FortranProcedureFlagsEnumAttr flags) {
231 return flags && bitEnumContainsAny(flags.getValue(), Flag);
232}
233
234template <fir::FortranProcedureFlagsEnum Flag>
235inline bool hasProcedureAttr(mlir::Operation *op) {
236 if (auto firCallOp = mlir::dyn_cast<fir::CallOp>(op))
237 return hasProcedureAttr<Flag>(firCallOp.getProcedureAttrsAttr());
238 if (auto firCallOp = mlir::dyn_cast<fir::DispatchOp>(op))
239 return hasProcedureAttr<Flag>(firCallOp.getProcedureAttrsAttr());
240 return hasProcedureAttr<Flag>(
241 op->getAttrOfType<fir::FortranProcedureFlagsEnumAttr>(
242 getFortranProcedureFlagsAttrName()));
243}
244
245inline bool hasBindcAttr(mlir::Operation *op) {
246 return hasProcedureAttr<fir::FortranProcedureFlagsEnum::bind_c>(op);
247}
248
251std::optional<int64_t> getAllocaByteSize(fir::AllocaOp alloca,
252 const mlir::DataLayout &dl,
253 const fir::KindMapping &kindMap);
254
263bool reboxPreservesContinuity(fir::ReboxOp rebox,
264 bool mayHaveNonDefaultLowerBounds = true,
265 bool checkWhole = true);
266
272bool isContiguousEmbox(fir::EmboxOp embox, bool checkWhole = true);
273
274} // namespace fir
275
276#endif // FORTRAN_OPTIMIZER_DIALECT_FIROPSSUPPORT_H
Definition FIRType.h:106
Definition AbstractConverter.h:37
constexpr llvm::StringRef getCorankAttrName()
Attribute to mark coarray Fortran entities with the CORANK attribute.
Definition FIROpsSupport.h:151
bool isContiguousEmbox(fir::EmboxOp embox, bool checkWhole=true)
Definition FIROps.cpp:2633
bool anyFuncArgsHaveAttr(mlir::func::FuncOp func, llvm::StringRef attr)
Definition FIROps.cpp:5907
bool isa_volatile_type(mlir::Type t)
Definition FIRType.cpp:766
constexpr llvm::StringRef getContiguousAttrName()
Attribute to mark Fortran entities with the CONTIGUOUS attribute.
Definition FIROpsSupport.h:84
bool reboxPreservesContinuity(fir::ReboxOp rebox, bool mayHaveNonDefaultLowerBounds=true, bool checkWhole=true)
Definition FIROps.cpp:5979
fir::GlobalOp createGlobalOp(mlir::Location loc, mlir::ModuleOp module, llvm::StringRef name, mlir::Type type, llvm::ArrayRef< mlir::NamedAttribute > attrs={}, const mlir::SymbolTable *symbolTable=nullptr)
Definition FIROps.cpp:5779
bool hasHostAssociationArgument(mlir::func::FuncOp func)
Definition FIROps.cpp:5799
std::optional< int64_t > getAllocaByteSize(fir::AllocaOp alloca, const mlir::DataLayout &dl, const fir::KindMapping &kindMap)
Definition FIROps.cpp:5996
bool isInternalProcedure(mlir::func::FuncOp func)
Definition FIROpsSupport.h:160
std::optional< llvm::APInt > getIntIfConstant(mlir::Value value)
Unwrap an integer constant from an mlir::Value as an APInt.
Definition FIROps.cpp:5914
constexpr llvm::StringRef getOptionalAttrName()
Attribute to mark Fortran entities with the OPTIONAL attribute.
Definition FIROpsSupport.h:87
bool pureCall(mlir::Operation *op)
Definition FIROpsSupport.h:60
void addVolatileMemoryEffects(mlir::TypeRange type, llvm::SmallVectorImpl< mlir::SideEffects::EffectInstance< mlir::MemoryEffects::Effect > > &effects)
Definition FIROpsSupport.h:25
bool valueHasFirAttribute(mlir::Value value, llvm::StringRef attributeName)
Definition FIROps.cpp:5900
bool valueMayHaveFirAttributes(mlir::Value value, llvm::ArrayRef< llvm::StringRef > attributeNames)
Definition FIROps.cpp:5893
bool impureCall(mlir::Operation *op)
Definition FIROpsSupport.h:51
bool isaCall(mlir::Operation *op)
Return true iff the Operation is a call.
Definition FIROpsSupport.h:42
mlir::func::FuncOp createFuncOp(mlir::Location loc, mlir::ModuleOp module, llvm::StringRef name, mlir::FunctionType type, llvm::ArrayRef< mlir::NamedAttribute > attrs={}, const mlir::SymbolTable *symbolTable=nullptr)
Definition FIROps.cpp:5757