|
| | MutableBoxValue (mlir::Value addr, mlir::ValueRange lenParameters, MutableProperties mutableProperties) |
|
bool | isPointer () const |
| | Is this a Fortran pointer ?
|
|
bool | isAllocatable () const |
| | Is this an allocatable ?
|
|
MutableBoxValue | clone (mlir::Value newBox) const |
|
bool | hasNonDeferredLenParams () const |
| | Does this entity has any non deferred LEN parameters?
|
|
llvm::ArrayRef< mlir::Value > | nonDeferredLenParams () const |
| | Return the non deferred LEN parameters.
|
|
LLVM_DUMP_METHOD void | dump () const |
| bool | isDescribedByVariables () const |
|
const MutableProperties & | getMutableProperties () const |
|
| AbstractIrBox (mlir::Value addr) |
|
| AbstractIrBox (mlir::Value addr, llvm::ArrayRef< mlir::Value > lbounds, llvm::ArrayRef< mlir::Value > extents) |
|
fir::BaseBoxType | getBoxTy () const |
| | Get the fir.box<type> part of the address type.
|
| mlir::Type | getBaseTy () const |
| mlir::Type | getMemTy () const |
|
mlir::Type | getEleTy () const |
| | Get the scalar type related to the described entity.
|
|
bool | hasRank () const |
| | Is the entity an array or an assumed rank ?
|
|
bool | hasAssumedRank () const |
| | Is this an assumed rank ?
|
| unsigned | rank () const |
|
bool | isCharacter () const |
| | Is this a character entity ?
|
|
bool | isDerived () const |
| | Is this a derived type entity ?
|
|
bool | isDerivedWithLenParameters () const |
|
bool | isPolymorphic () const |
| | Is this a polymorphic entity?
|
|
bool | isUnlimitedPolymorphic () const |
| | Is this a CLASS(*)/TYPE(*)?
|
|
unsigned | corank () const |
|
| AbstractBox (mlir::Value addr) |
| mlir::Value | getAddr () const |
|
| AbstractArrayBox (llvm::ArrayRef< mlir::Value > extents, llvm::ArrayRef< mlir::Value > lbounds) |
|
const llvm::SmallVectorImpl< mlir::Value > & | getExtents () const |
|
const llvm::SmallVectorImpl< mlir::Value > & | getLBounds () const |
|
bool | lboundsAllOne () const |
|
std::size_t | rank () const |
MutableBoxValue is used for entities that are represented by the address of a box. This is intended to be used for entities whose base address, shape and type are not constant in the entity lifetime (e.g Allocatables and Pointers).