13#ifndef FORTRAN_OPTIMIZER_DIALECT_FIRTYPE_H
14#define FORTRAN_OPTIMIZER_DIALECT_FIRTYPE_H
16#include "mlir/IR/BuiltinAttributes.h"
17#include "mlir/IR/BuiltinTypes.h"
18#include "mlir/Interfaces/DataLayoutInterfaces.h"
19#include "llvm/ADT/SmallVector.h"
20#include "llvm/IR/Type.h"
25using KindTy = unsigned;
42 using mlir::Type::Type;
45 enum class Attribute { None, Allocatable, Pointer };
77 static bool classof(mlir::Type type);
82#define GET_TYPEDEF_CLASSES
83#include "flang/Optimizer/Dialect/FIROpsTypes.h.inc"
94class DialectAsmParser;
95class DialectAsmPrinter;
103struct RecordTypeStorage;
119 return mlir::isa<fir::ReferenceType, fir::PointerType, fir::HeapType,
120 fir::LLVMPointerType>(t);
125 return mlir::isa<fir::BaseBoxType, fir::BoxCharType, fir::BoxProcType>(t);
132 return mlir::isa<fir::ReferenceType, mlir::FunctionType>(t) ||
144inline bool isa_derived(mlir::Type t) {
return mlir::isa<fir::RecordType>(t); }
148 if (
auto recTy = mlir::dyn_cast_or_null<fir::RecordType>(t))
149 return recTy.getName().ends_with(
"T__builtin_c_ptr") ||
150 recTy.getName().ends_with(
"T__builtin_c_funptr");
155inline bool isa_builtin_c_devptr_type(mlir::Type t) {
156 if (
auto recTy = mlir::dyn_cast_or_null<fir::RecordType>(t))
157 return recTy.getName().ends_with(
"T__builtin_c_devptr");
163 if (
auto recTy = mlir::dyn_cast_or_null<fir::RecordType>(t))
164 return recTy.getName().ends_with(
"T__builtin_c_devptr");
182inline bool isa_real(mlir::Type t) {
return mlir::isa<mlir::FloatType>(t); }
186 return mlir::isa<mlir::IndexType, mlir::IntegerType, fir::IntegerType>(t);
191 return mlir::isa<mlir::VectorType, fir::VectorType>(t);
194mlir::Type parseFirType(FIROpsDialect *, mlir::DialectAsmParser &parser);
196void printFirType(FIROpsDialect *, mlir::Type ty, mlir::DialectAsmPrinter &p);
204 return mlir::isa<mlir::ComplexType>(t) &&
205 mlir::isa<mlir::FloatType>(
206 mlir::cast<mlir::ComplexType>(t).getElementType());
210inline bool isa_char(mlir::Type t) {
return mlir::isa<fir::CharacterType>(t); }
216 mlir::isa<fir::LogicalType>(t);
221 if (
auto ct = mlir::dyn_cast_or_null<fir::CharacterType>(t))
222 return ct.getLen() != fir::CharacterType::singleton();
239 if (
auto charTy = mlir::dyn_cast<fir::CharacterType>(t))
240 return charTy.hasDynamicLen();
247 return seqTy.hasUnknownShape() || seqTy.hasDynamicExtents();
253inline unsigned getRankOfShapeType(mlir::Type t) {
254 if (
auto shTy = mlir::dyn_cast<fir::ShapeType>(t))
255 return shTy.getRank();
256 if (
auto shTy = mlir::dyn_cast<fir::ShapeShiftType>(t))
257 return shTy.getRank();
258 if (
auto shTy = mlir::dyn_cast<fir::ShiftType>(t))
259 return shTy.getRank();
266 if (!mlir::isa<fir::PointerType, fir::HeapType>(eleTy))
267 eleTy = fir::ReferenceType::get(t);
273 if (
auto seqTy = mlir::dyn_cast<fir::SequenceType>(t))
274 return seqTy.getEleTy();
281inline mlir::Type unwrapRefType(mlir::Type t) {
326 if (
auto seqTy = mlir::dyn_cast<fir::SequenceType>(t))
335 return mlir::dyn_cast<fir::RecordType>(
342 return recTy && recTy.getNumLenParams() > 0;
353inline bool singleIndirectionLevel(mlir::Type ty) {
425 if (
auto recTy = mlir::dyn_cast_or_null<fir::RecordType>(ty))
426 return recTy.isDependentType();
443mlir::Type
fromRealTypeID(mlir::MLIRContext *context, llvm::Type::TypeID typeID,
446int getTypeCode(mlir::Type ty,
const KindMapping &kindMap);
449 return mlir::isa<fir::BoxType, fir::ClassType>(type);
454 if (
auto seqTy = mlir::dyn_cast<fir::SequenceType>(type))
455 return mlir::isa<mlir::NoneType>(seqTy.getEleTy());
456 return mlir::isa<mlir::NoneType>(type);
462 bool isPolymorphic =
false,
465 return fir::ClassType::get(eleTy);
466 return fir::BoxType::get(eleTy);
480 if (
auto seqTy = mlir::dyn_cast<fir::SequenceType>(ty))
481 return fir::SequenceType::get(
483 if (
auto heapTy = mlir::dyn_cast<fir::HeapType>(ty))
484 return fir::HeapType::get(
486 if (
auto pointerTy = mlir::dyn_cast<fir::PointerType>(ty))
487 return fir::PointerType::get(
489 if (!mlir::isa<mlir::NoneType, fir::RecordType>(ty))
490 return mlir::NoneType::get(ty.getContext());
503 bool turnBoxIntoClass);
508 mlir::isa<fir::BaseBoxType>(fir::unwrapRefType(t));
513 return mlir::isa<fir::BaseBoxType>(fir::unwrapRefType(t));
519 return t && mlir::isa<fir::BoxProcType>(t);
522inline bool isRefOfConstantSizeAggregateType(mlir::Type t) {
525 mlir::isa<fir::CharacterType, fir::RecordType, fir::SequenceType>(t) &&
534 llvm::StringRef prefix =
"");
544std::pair<std::uint64_t, unsigned short>
546 const mlir::DataLayout &dl,
547 const fir::KindMapping &kindMap);
550std::optional<std::pair<uint64_t, unsigned short>>
552 const mlir::DataLayout &dl,
553 const fir::KindMapping &kindMap);
This class provides a shared interface for box and class types.
Definition FIRType.h:40
Attribute
Box attributes.
Definition FIRType.h:45
BaseBoxType getBoxTypeWithNewAttr(Attribute attr) const
Return the same type, except for the attribute (fir.heap/fir.ptr).
Definition FIRType.cpp:1473
bool isVolatile() const
Is this a box describing volatile memory?
Definition FIRType.cpp:1510
bool isPointer() const
Is this a box for a pointer?
Definition FIRType.cpp:1502
bool isAssumedRank() const
Is this the box for an assumed rank?
Definition FIRType.cpp:1495
mlir::Type unwrapInnerType() const
Unwrap element type from fir.heap, fir.ptr and fir.array.
Definition FIRType.cpp:1419
mlir::Type getEleTy() const
Returns the element type of this box type.
Definition FIRType.cpp:1406
bool isPointerOrAllocatable() const
Does this box for a pointer or allocatable?
Definition FIRType.cpp:1506
mlir::Type getBaseAddressType() const
Get the raw address type of the memory described by the box.
Definition FIRType.cpp:1412
BaseBoxType getBoxTypeWithNewShape(mlir::Type shapeMold) const
Definition FIRType.cpp:1454
static bool classof(mlir::Type type)
Methods for support type inquiry through isa, cast, and dyn_cast.
Definition FIRType.h:448
Definition KindMapping.h:48
Definition AbstractConverter.h:34
bool isa_box_type(mlir::Type t)
Is t a boxed type?
Definition FIRType.h:124
int getTypeCode(mlir::Type ty, const KindMapping &kindMap)
Return the ISO_C_BINDING intrinsic module value of type ty.
Definition FIRType.cpp:486
bool isScalarBoxedRecordType(mlir::Type ty)
Definition FIRType.cpp:339
mlir::Type applyPathToType(mlir::Type rootTy, mlir::ValueRange path)
Definition FIROps.cpp:4887
std::string getTypeAsString(mlir::Type ty, const KindMapping &kindMap, llvm::StringRef prefix="")
Definition FIRType.cpp:583
fir::SequenceType unwrapUntilSeqType(mlir::Type t)
Definition FIRType.h:318
bool sequenceWithNonConstantShape(fir::SequenceType seqTy)
Definition FIRType.h:246
bool isa_ref_type(mlir::Type t)
Is t a FIR dialect type that implies a memory (de)reference?
Definition FIRType.h:118
bool isBoxAddressOrValue(mlir::Type t)
Is t a fir.box or class address or value type?
Definition FIRType.h:512
bool conformsWithPassByRef(mlir::Type t)
Definition FIRType.h:139
bool isa_volatile_type(mlir::Type t)
Definition FIRType.cpp:741
bool isa_builtin_cdevptr_type(mlir::Type t)
Is t type(c_devptr)?
Definition FIRType.h:162
mlir::Type updateTypeWithVolatility(mlir::Type type, bool isVolatile)
Definition FIRType.cpp:234
mlir::Type fromRealTypeID(mlir::MLIRContext *context, llvm::Type::TypeID typeID, fir::KindTy kind)
Convert llvm::Type::TypeID to mlir::Type.
Definition FIRType.cpp:1380
bool isUnlimitedPolymorphicType(mlir::Type ty)
Definition FIRType.cpp:399
bool isa_vector(mlir::Type t)
Is t a vector type?
Definition FIRType.h:190
mlir::Type unwrapPassByRefType(mlir::Type t)
Definition FIRType.h:289
bool isDerivedType(fir::BaseBoxType boxTy)
Return true iff boxTy wraps a fir::RecordType.
Definition FIRType.h:346
bool isa_char(mlir::Type t)
Is t a CHARACTER type? Does not check the length.
Definition FIRType.h:210
bool isBoxedRecordType(mlir::Type ty)
Definition FIRType.cpp:327
bool isBoxNone(mlir::Type ty)
Return true iff ty is !fir.box<none>.
Definition FIRType.cpp:321
mlir::Type unwrapSeqOrBoxedSeqType(mlir::Type ty)
Definition FIRType.cpp:467
bool isBoxAddress(mlir::Type t)
Is t an address to fir.box or class type?
Definition FIRType.h:506
mlir::Type updateTypeForUnlimitedPolymorphic(mlir::Type ty)
Definition FIRType.h:479
bool isa_derived(mlir::Type t)
Is t a derived (record) type?
Definition FIRType.h:144
bool isa_aggregate(mlir::Type t)
Is t a FIR dialect aggregate type?
Definition FIRType.h:169
bool isDerivedTypeWithLenParams(fir::BaseBoxType boxTy)
Return true iff boxTy wraps a fir::RecordType with length parameters.
Definition FIRType.h:340
mlir::Type unwrapInnerType(mlir::Type ty)
Return the inner type of the given type.
Definition FIRType.cpp:411
bool isAssumedShape(mlir::Type ty)
Return true iff ty is the type of an assumed shape array.
Definition FIRType.cpp:366
bool isCharacterProcedureTuple(mlir::Type type, bool acceptRawFunc=true)
Is this tuple type holding a character function and its result length?
Definition FIRType.cpp:1362
mlir::Type dyn_cast_ptrEleTy(mlir::Type t)
Definition FIRType.cpp:247
mlir::Type getDerivedType(mlir::Type ty)
Return the nested RecordType if one if found. Return ty otherwise.
Definition FIRType.cpp:222
bool isa_fir_or_std_type(mlir::Type t)
Is t any of the FIR dialect or Standard dialect types?
Definition FIRType.cpp:215
mlir::Type getFortranElementType(mlir::Type ty)
Definition FIRType.cpp:462
bool isNoneOrSeqNone(mlir::Type type)
Return true iff ty is none or fir.array<none>.
Definition FIRType.h:453
std::optional< std::pair< uint64_t, unsigned short > > getTypeSizeAndAlignment(mlir::Location loc, mlir::Type ty, const mlir::DataLayout &dl, const fir::KindMapping &kindMap)
This variant returns std::nullopt if an unsupported type is passed.
Definition FIRType.cpp:1533
fir::RecordType unwrapIfDerived(fir::BaseBoxType boxTy)
Definition FIRType.h:334
bool boxHasAddendum(fir::BaseBoxType boxTy)
Definition FIRType.h:405
bool isRecordWithAllocatableMember(mlir::Type ty)
Return true iff ty is a RecordType with members that are allocatable.
Definition FIRType.cpp:423
unsigned getBoxRank(mlir::Type boxTy)
Get the rank from a !fir.box type.
Definition FIRType.cpp:478
mlir::Type dyn_cast_ptrOrBoxEleTy(mlir::Type t)
Definition FIRType.cpp:254
bool isPointerType(mlir::Type ty)
Definition FIRType.cpp:305
bool isTypeWithDescriptor(mlir::Type ty)
Return true iff ty is a type that contains descriptor information.
Definition FIRType.cpp:385
bool characterWithDynamicLen(mlir::Type t)
Returns true iff t is a fir.char type and has an unknown length.
Definition FIRType.h:238
bool isAllocatableType(mlir::Type ty)
Return true iff ty is the type of an ALLOCATABLE entity or value.
Definition FIRType.cpp:313
mlir::Type changeElementType(mlir::Type type, mlir::Type newElementType, bool turnBoxIntoClass)
Definition FIRType.cpp:678
bool isPolymorphicType(mlir::Type ty)
Definition FIRType.cpp:391
bool isa_builtin_cptr_type(mlir::Type t)
Is t type(c_ptr) or type(c_funptr)?
Definition FIRType.h:147
mlir::Type unwrapAllRefAndSeqType(mlir::Type ty)
Definition FIRType.cpp:451
bool hasAbstractResult(mlir::FunctionType ty)
Definition FIRType.cpp:1370
bool isAllocatableOrPointerArray(mlir::Type ty)
Return true iff ty is the type of an allocatable array.
Definition FIRType.cpp:373
bool isa_integer(mlir::Type t)
Is t an integral type?
Definition FIRType.h:185
mlir::Type extractSequenceType(mlir::Type ty)
Return the nested sequence type if any.
Definition FIRType.cpp:293
bool isa_char_string(mlir::Type t)
Is t a CHARACTER type with a LEN other than 1?
Definition FIRType.h:220
bool isRecordWithDescriptorMember(mlir::Type ty)
Definition FIRType.cpp:437
bool isBoxProcAddressType(mlir::Type t)
Is this a fir.boxproc address type?
Definition FIRType.h:517
bool isa_std_type(mlir::Type t)
Is t any of the Standard dialect types?
Definition FIRType.cpp:211
bool isa_passbyref_type(mlir::Type t)
Definition FIRType.h:131
std::pair< std::uint64_t, unsigned short > getTypeSizeAndAlignmentOrCrash(mlir::Location loc, mlir::Type ty, const mlir::DataLayout &dl, const fir::KindMapping &kindMap)
This variant terminates the compilation if an unsupported type is passed.
Definition FIRType.cpp:1587
bool hasDynamicSize(mlir::Type t)
Returns true iff the type t does not have a constant size.
Definition FIRType.cpp:280
mlir::Type boxMemRefType(fir::BaseBoxType t)
Get the memory reference type of the data pointer from the box type,.
Definition FIRType.h:264
bool isRecordWithTypeParameters(mlir::Type ty)
Return true iff ty is a RecordType with type parameters.
Definition FIRType.h:424
bool isAssumedType(mlir::Type ty)
Definition FIRType.cpp:353
void verifyIntegralType(mlir::Type type)
Definition FIRType.cpp:719
bool isa_complex(mlir::Type t)
Is t a floating point complex type?
Definition FIRType.h:203
bool isa_fir_type(mlir::Type t)
Is t any of the FIR dialect types?
Definition FIRType.cpp:207
mlir::Type wrapInClassOrBoxType(mlir::Type eleTy, bool isPolymorphic=false, bool isAssumedType=false)
Definition FIRType.h:461
bool isa_trivial(mlir::Type t)
Definition FIRType.h:214
mlir::Type unwrapSequenceType(mlir::Type t)
If t is a SequenceType return its element type, otherwise return t.
Definition FIRType.h:272
bool isa_unknown_size_box(mlir::Type t)
Definition FIRType.cpp:731
bool isa_real(mlir::Type t)
Is t a real type?
Definition FIRType.h:182
Definition AbstractConverter.h:29
Derived type storage.
Definition FIRType.cpp:149