[llvm-dev] RFC for f18+runtimes in LLVM

Stephen Scalpone via llvm-dev llvm-dev at lists.llvm.org
Fri Mar 1 12:26:33 PST 2019


Reply inline

From: Chandler Carruth <chandlerc at gmail.com>
Date: Monday, February 25, 2019 at 2:46 PM
To: Stephen Scalpone <sscalpone at nvidia.com>
Cc: "llvm-dev at lists.llvm.org" <llvm-dev at lists.llvm.org>
Subject: Re: [llvm-dev] RFC for f18+runtimes in LLVM

On Mon, Feb 25, 2019 at 10:06 AM Stephen Scalpone via llvm-dev <llvm-dev at lists.llvm.org<mailto:llvm-dev at lists.llvm.org>> wrote:
* The current f18 code will be committed to the new LLVM subproject.  The f18 code is a set of libraries that implements the Fortran compiler.

Awesome. This is an important aspect of the design of LLVM projects IMO -> they build their functionality primarily as re-usable libraries, and then expose that in useful command line utilities.

The f18 compiler source code complies with most of LLVM's coding guidelines; however, the code uses several C++17 features.  We've documented our use of C++17 here:

  https://github.com/flang-compiler/f18/blob/master/documentation/C++17.md

In particular, the parse tree and the lowered forms of expressions and variables are defined in terms of C++17 std::variant. Most of the compiler uses C++17 std::visit to walk these data structures.

It’s possible to reimplement the most important functionality of std:variant as a subset class, say llvm:variant; however, variant gets its power from the C++17 features generic lambdas and parameter pack expansion on “using”.  Without these C++17 features, use of variant would be impractical.

Our thinking when we started was that llvm would adopt C++17 before mid-2020, which lines up with our projected completion date. If we were to adopt C++11 or C++14, we would likely create substitutes for these classes, certainly at a cost of calendar time and perhaps type safety and notational convenience.  One of our principles is to take advantage of the standard library as much as possible, so casual readers will better understand our code and so we avoid the time and bugs associated with writing class libraries.

Our request would be to get a waiver for the C++11 requirement based on the fact that we're skating to where the puck will be.  In the meantime, because F18 only exists as a stand-alone program, early adopters would still have a useful parser and analyzer for Fortran.

Hold on, either it is a collection of libraries or it is a stand-alone program. It can't really be both?

I misspoke.

f18 comprises several libraries, as well as a simple executable compiler driver program for testing purposes.

The libraries correspond to the subdirectories in lib/.  They can be built as shared or static binary libraries.

lib/common contains utilities and Fortran language representations used throughout the project.

lib/parser contains the Fortran preprocessor and source normalization code, source provenance tracking, parser combinator sublibrary, Fortran and OpenMP grammars, parse tree definitions, an “unparser”, and an error message handling sublibrary.  It depends only on lib/common.

lib/evaluate contains a strongly typed representation for Fortran expressions, constants, and constant folding.  It uses the parser’s error message facility when folding but is otherwise fairly independent code.

lib/semantics contains the symbol table, declaration processing, name resolution, expression typing, and constraint checking.  It depends on everything above.  It remains under active development.

lib/FIR contains the beginnings of the representation for executable code and its translation to LLVM IR.  It depends on everything above as well as on LLVM libraries.

Both the parser and the semantic analysis libraries comprise definitions of “top level” objects that compose and orchestrate the contents of their respective libraries into fairly narrow parameterized interfaces that hide much of their implementations, so that one may easily parse a Fortran source file within a context of macro definitions and enabled/disabled language extensions and get back a parse tree and error message collection with minimal fuss.  The temporary scaffolding driver in tools/f18 drives and connects these top-level interfaces for testing purposes.

There will of course also be a large Fortran runtime support library for use by compiled code.



Generally, I think the idea that diverging from the rest of the project here is low-cost for a subproject isn't supported by experience with other projects.

Notably, it has a strong tendancy to create tension. You want some ADT or support library in LLVM to work well with your C++17 code. But it is C++11. Every time this has been done in the past, the result has been that generically useful tools and libraries get added to the subproject rather than to LLVM as a whole.

So FWIW, I'd be really opposed to this. Instead, I think that F18 should have rich libraries, and develop them exactly the same way as the rest of LLVM.

We're getting close to switching to C++14, so maybe due to timing, you could merge F18 when that happens?

Ultimately, I think you either need to raise the LLVM base language version or lower the F18 one so that they match when merged IMO. Anything else I think will hamper integration with the larger project.

As for the day-to-day usage of C++17, other replies suggest that building f18 should be disabled by default or that f18 builds detect that the host compiler doesn’t support C++17 and (silently) refuse to build. (I haven’t looked at whether this is possible or not.)  Either of these options allows build-bots and older projects to continue as is without changing for the sake of f18 & C++17.

Nearly all of the support routines we developed so far are very specific to Fortran.  There are some idea around constant folding and reuse of the runtime library for intrinsic folding that we’re developing; perhaps these ideas will be generally useful in the future.

- Steve

-----------------------------------------------------------------------------------
This email message is for the sole use of the intended recipient(s) and may contain
confidential information.  Any unauthorized review, use, disclosure or distribution
is prohibited.  If you are not the intended recipient, please contact the sender by
reply email and destroy all copies of the original message.
-----------------------------------------------------------------------------------
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20190301/fd704ae9/attachment.html>


More information about the llvm-dev mailing list