[flang-commits] [PATCH] D114209: [flang] Add -fno-automatic, refine IsSaved()

Peter Klausler via Phabricator via flang-commits flang-commits at lists.llvm.org
Thu Nov 18 16:51:27 PST 2021


klausler created this revision.
klausler added reviewers: jeanPerier, sscalpone.
klausler added a project: Flang.
Herald added subscribers: dang, jdoerfert.
klausler requested review of this revision.

This legacy option (available in other Fortran compilers with various
spellings) implies the SAVE attribute for local variables on subprograms
that are not explicitly RECURSIVE.  The SAVE attribute essentially implies
static rather than stack storage.  This was the default setting in Fortran
until surprisingly recently, so explicit SAVE statements & attributes
could be and often were omitted from older codes.  Note that initialized
objects already have an implied SAVE attribute, and objects in COMMON
effectively do too, as data overlays are extinct; and since objects that are
expected to survive from one invocation of a procedure to the next in static
storage should probably be explicit initialized in the first place, so the
use cases for this option are somewhat rare, and all of them could be
handled with explicit SAVE statements or attributes.

This implicit SAVE attribute must not apply to automatic (in the Fortran sense)
local objects, whose sizes cannot be known at compilation time.  To get the
semantics of IsSaved() right, the IsAutomatic() predicate was moved into
Evaluate/tools.cpp to allow for dynamic linking of the compiler.  The
redundant predicate IsAutomatic() was noticed, removed, and its uses replaced.

GNU Fortran's spelling of the option (-fno-automatic) was added to
the clang-based driver and used for basic sanity testing.


https://reviews.llvm.org/D114209

Files:
  clang/include/clang/Driver/Options.td
  clang/lib/Driver/ToolChains/Flang.cpp
  flang/include/flang/Common/Fortran-features.h
  flang/include/flang/Evaluate/tools.h
  flang/include/flang/Semantics/tools.h
  flang/lib/Evaluate/tools.cpp
  flang/lib/Frontend/CompilerInvocation.cpp
  flang/lib/Semantics/resolve-names-utils.cpp
  flang/lib/Semantics/runtime-type-info.cpp
  flang/lib/Semantics/tools.cpp
  flang/test/Driver/driver-help-hidden.f90
  flang/test/Driver/driver-help.f90
  flang/test/Semantics/save01.f90
  flang/test/Semantics/save02.f90

-------------- next part --------------
A non-text attachment was scrubbed...
Name: D114209.388354.patch
Type: text/x-patch
Size: 16130 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/flang-commits/attachments/20211119/f6bc3da2/attachment-0001.bin>


More information about the flang-commits mailing list