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
154static constexpr llvm::StringRef getUniqNameAttrName() { return "uniq_name"; }
155
157constexpr llvm::StringRef getCorankAttrName() { return "fir.corank"; }
158
161bool hasHostAssociationArgument(mlir::func::FuncOp func);
162
166inline bool isInternalProcedure(mlir::func::FuncOp func) {
167 return func->hasAttr(fir::getHostSymbolAttrName());
168}
169
178bool valueHasFirAttribute(mlir::Value value, llvm::StringRef attributeName);
179
190bool valueMayHaveFirAttributes(mlir::Value value,
191 llvm::ArrayRef<llvm::StringRef> attributeNames);
192
196bool anyFuncArgsHaveAttr(mlir::func::FuncOp func, llvm::StringRef attr);
197
199std::optional<llvm::APInt> getIntIfConstant(mlir::Value value);
200
201static constexpr llvm::StringRef getAdaptToByRefAttrName() {
202 return "adapt.valuebyref";
203}
204
205static constexpr llvm::StringRef getFuncPureAttrName() {
206 return "fir.func_pure";
207}
208
209static constexpr llvm::StringRef getFuncElementalAttrName() {
210 return "fir.func_elemental";
211}
212
213static constexpr llvm::StringRef getFuncRecursiveAttrName() {
214 return "fir.func_recursive";
215}
216
217static constexpr llvm::StringRef getFortranProcedureFlagsAttrName() {
218 return "fir.proc_attrs";
219}
220
221// Attribute for an alloca that is a trivial adaptor for converting a value to
222// pass-by-ref semantics for a VALUE parameter. The optimizer may be able to
223// eliminate these.
224// Template is used to avoid compiler errors in places that don't include
225// FIRBuilder.h
226template <typename Builder>
227inline mlir::NamedAttribute getAdaptToByRefAttr(Builder &builder) {
228 return {mlir::StringAttr::get(builder.getContext(),
229 fir::getAdaptToByRefAttrName()),
230 builder.getUnitAttr()};
231}
232
233bool isDummyArgument(mlir::Value v);
234
235template <fir::FortranProcedureFlagsEnum Flag>
236inline bool hasProcedureAttr(fir::FortranProcedureFlagsEnumAttr flags) {
237 return flags && bitEnumContainsAny(flags.getValue(), Flag);
238}
239
240template <fir::FortranProcedureFlagsEnum Flag>
241inline bool hasProcedureAttr(mlir::Operation *op) {
242 if (auto firCallOp = mlir::dyn_cast<fir::CallOp>(op))
243 return hasProcedureAttr<Flag>(firCallOp.getProcedureAttrsAttr());
244 if (auto firCallOp = mlir::dyn_cast<fir::DispatchOp>(op))
245 return hasProcedureAttr<Flag>(firCallOp.getProcedureAttrsAttr());
246 return hasProcedureAttr<Flag>(
247 op->getAttrOfType<fir::FortranProcedureFlagsEnumAttr>(
248 getFortranProcedureFlagsAttrName()));
249}
250
251inline bool hasBindcAttr(mlir::Operation *op) {
252 return hasProcedureAttr<fir::FortranProcedureFlagsEnum::bind_c>(op);
253}
254
257std::optional<int64_t> getAllocaByteSize(fir::AllocaOp alloca,
258 const mlir::DataLayout &dl,
259 const fir::KindMapping &kindMap);
260
269bool reboxPreservesContinuity(fir::ReboxOp rebox,
270 bool mayHaveNonDefaultLowerBounds = true,
271 bool checkWhole = true);
272
278bool isContiguousEmbox(fir::EmboxOp embox, bool checkWhole = true);
279
280} // namespace fir
281
282#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:157
bool isContiguousEmbox(fir::EmboxOp embox, bool checkWhole=true)
Definition FIROps.cpp:2651
bool anyFuncArgsHaveAttr(mlir::func::FuncOp func, llvm::StringRef attr)
Definition FIROps.cpp:5928
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:6000
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:5800
bool hasHostAssociationArgument(mlir::func::FuncOp func)
Definition FIROps.cpp:5820
std::optional< int64_t > getAllocaByteSize(fir::AllocaOp alloca, const mlir::DataLayout &dl, const fir::KindMapping &kindMap)
Definition FIROps.cpp:6017
bool isInternalProcedure(mlir::func::FuncOp func)
Definition FIROpsSupport.h:166
std::optional< llvm::APInt > getIntIfConstant(mlir::Value value)
Unwrap an integer constant from an mlir::Value as an APInt.
Definition FIROps.cpp:5935
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:5921
bool valueMayHaveFirAttributes(mlir::Value value, llvm::ArrayRef< llvm::StringRef > attributeNames)
Definition FIROps.cpp:5914
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:5778