//===-- runtime/derived.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 // //===----------------------------------------------------------------------===// #include "derived.h" #include "descriptor.h" #include "type-info.h" namespace Fortran::runtime { static const typeInfo::SpecialBinding *FindFinal( const typeInfo::DerivedType &derived, int rank) { const typeInfo::SpecialBinding *elemental{nullptr}; const Descriptor &specialDesc{derived.special()}; std::size_t totalSpecialBindings{specialDesc.Elements()}; for (std::size_t j{0}; j < totalSpecialBindings; ++j) { const auto &special{ *specialDesc.ZeroBasedIndexedElement(j)}; switch (special.which()) { case typeInfo::SpecialBinding::Which::Final: if (special.rank() == rank) { return &special; } break; case typeInfo::SpecialBinding::Which::ElementalFinal: elemental = &special; break; case typeInfo::SpecialBinding::Which::AssumedRankFinal: return &special; default:; } } return elemental; } static void CallFinalSubroutine( const Descriptor &descriptor, const typeInfo::DerivedType &derived) { if (const auto *special{FindFinal(derived, descriptor.rank())}) { if (special->which() == typeInfo::SpecialBinding::Which::ElementalFinal) { std::size_t byteStride{descriptor.ElementBytes()}; auto *p{special->GetProc()}; // Finalizable objects must be contiguous. std::size_t elements{descriptor.Elements()}; for (std::size_t j{0}; j < elements; ++j) { p(descriptor.OffsetElement(j * byteStride)); } } else if (special->IsArgDescriptor(0)) { auto *p{special->GetProc()}; p(descriptor); } else { // Finalizable objects must be contiguous. auto *p{special->GetProc()}; p(descriptor.OffsetElement()); } } } // The order of finalization follows Fortran 2018 7.5.6.2, with // deallocation of non-parent components (and their consequent finalization) // taking place before parent component finalization. void Destroy(const Descriptor &descriptor, bool finalize, const typeInfo::DerivedType &derived) { if (finalize) { CallFinalSubroutine(descriptor, derived); } const Descriptor &componentDesc{derived.component()}; auto myComponents{static_cast(componentDesc.Elements())}; std::size_t elements{descriptor.Elements()}; std::size_t byteStride{descriptor.ElementBytes()}; for (unsigned k{0}; k < myComponents; ++k) { const auto &comp{ *componentDesc.ZeroBasedIndexedElement(k)}; if (comp.genre() == typeInfo::Component::Genre::Allocatable || comp.genre() == typeInfo::Component::Genre::Automatic) { for (std::size_t j{0}; j < elements; ++j) { descriptor.OffsetElement(j * byteStride + comp.offset()) ->Deallocate(finalize); } } else if (comp.genre() == typeInfo::Component::Genre::Data && comp.derivedType()) { SubscriptValue extent[maxRank]; const typeInfo::Value *bounds{comp.bounds()}; for (int dim{0}; dim < comp.rank(); ++dim) { extent[dim] = bounds[2 * dim].GetValue(&descriptor).value_or(0) - bounds[2 * dim + 1].GetValue(&descriptor).value_or(0) + 1; } StaticDescriptor staticDescriptor; Descriptor &compDesc{staticDescriptor.descriptor()}; const typeInfo::DerivedType &compType{*comp.derivedType()}; for (std::size_t j{0}; j < elements; ++j) { compDesc.Establish(compType, descriptor.OffsetElement(j * byteStride + comp.offset()), comp.rank(), extent); Destroy(compDesc, finalize, compType); } } } const Descriptor &parentDesc{derived.parent()}; if (const auto *parent{parentDesc.OffsetElement()}) { Destroy(descriptor, finalize, *parent); } } } // namespace Fortran::runtime