_________ __
/ _____/ _____ _____ ________/ |_
\_____ \ / \\__ \\_ __ \ __\
/ \ Y Y \/ __ \| | \/| |
/_______ /__|_| (____ /__| |__|
\/ \/ \/
__________ .__ __
\______ \____ |__| _____/ |_ ___________ ______
| ___/ _ \| |/ \ __\/ __ \_ __ \/ ___/
| | ( <_> ) | | \ | \ ___/| | \/\___ \
|____| \____/|__|___| /__| \___ >__| /____ >
\/ \/ \/
\/
The Smart-Pointers library tracks references to program resources and automates the freeing of those resources if and only if the reference count drops to zero. Most commonly, the reference is a pointer and the resource is memory. In that context, Smart-Pointers help to prevent memory leaks and dangling pointers, which commonly causes programs to crash due to memory limitations or segmentation faults, respectively.
To use Smart-Pointers, define a non-abstract derived type that
- Extends Smart-Pointer's
sp_smart_pointer_t
type, - Implements the inherited
free
deferred binding, and - Invokes the inherited
start_count
procedure inside object constructors.
You can then use intrinsic assignments to copy instances of a sp_smart_pointer_t
child type, resulting in a shallow copy with the advantage that the target
will be finalized only when it becomes safe to do so.
See the example folder for a demonstration of the use of Smart-Pointers.
For more background on the design philosophy and the internal mechanics of Smart Pointers, see Rouson et al. (see [1], [2], [3]). This repository's code originated from refactoring the code in those publications to use more up-to-date coding conventions. For example, this repository separates interface bodies into modules and procedure definitions into submodules. This repository also uses more descriptive nomenclature for the types and procedures.
This repository also adds
- A Fortran Package Manager build system,
- Tests based on the Sourcery library's unit-testing utility,
- Documentation generated by
ford
and deployed to the web via GitHub Actions, and - Quality control via continuous integration testing using GitHub Actions.
Correct execution of the Smart-Pointers library depends critically on comprehensive compiler support for type finalization. The unit test suite verifies the relevant compiler standard-conformance, including a test for each scenario in which the the Fortran 2023 standard requires that an object be finalized. The following compilers pass all Smart-Pointers tests:
Compiler | Test failures | Version tested |
---|---|---|
GCC gfortran 🏆 |
0 | 13.1.0 |
LLVM flang 🏆 |
0 | 19.0.0 git commit 325f5123 |
NAG nagfor 🏆 |
0 | 7.1 Build 7113 |
The following compilers pass most smart pointers tests:
Compiler | Test failures | Version tested |
---|---|---|
Cray ftn |
4 | 17.0.0 |
IBM xlf2008_r |
1 | 17.1.0 on AIX |
Intel ifort |
1 | 2021.7.0 Build 20220726_000000 |
Intel ifx |
1 | 2024.0.0 Build 20231017 |
NVIDIA nvfortran |
2 | 22.7-0 |
The following compiler fails to build Smart-Pointers due to an internal compiler error (ICE):
Compiler | Test failures | Version tested |
---|---|---|
AMD flang |
N.A. (see Note) | 13.0.0 (AOCC_3.2.0-Build#128 2021_11_12) |
See the test suite README.md for more details on each compiler's test results.
On Linux, macOS, or Windows Subsystem for Linux, download, build, and test with the following shell commands:
git clone https://github.com/sourceryinstitute/smart-pointer
cd smart-pointer
followed by one of the commands below corresponding to your compiler choice.
The following compilers pass all Smart-Pointers tests.
fpm test
fpm test --compiler flang-new
fpm test --compiler nagfor --flag -fpp
The following compilers pass most Smart-Pointers tests.
Building with fpm
using the CCE ftn
compiler wrapper requires an additional
wrapper to identify the wrapped compiler. Place a file named crayftn.sh
at the
front of your PATH
environment variable containing the following contents:
#!/bin/bash
ftn "$@"
Then test with the following command
fpm test --compiler crayftn.sh
fpm test --archiver ar --compiler xlf2008_r --flag -DXLF
fpm test --compiler ifort
fpm test --compiler ifx --flag "-check all,nouninit"
where fpm
0.10.0 or later is required and the --flag
argument is required to circumvent what appears to be a bug in ifx
's Memory Sanitizer.
fpm test --compiler nvfortran --flag -Mpreprocess
The following compiler cannot build the Smart-Pointers library.
fpm test --compiler flang --flag -cpp
See the Smart-Pointers GitHub Pages site for HTML documentation generated with ford
.
See the doc/ subdirectory for a PlantUML script that generates the Unified Modeling Language (UML)
class diagram below of the three derived types in Smart-Pointers.