[flang] Implement reductions in the runtime
Add runtime APIs, implementations, and tests for ALL, ANY, COUNT,
MAXLOC, MAXVAL, MINLOC, MINVAL, PRODUCT, and SUM reduction
transformantional intrinsic functions for all relevant argument
and result types and kinds, both without DIM= arguments
(total reductions) and with (partial reductions).
Complex-valued reductions have their APIs in C so that
C's _Complex types can be used for their results.
Some infrastructure work was also necessary or noticed:
* Usage of "long double" in the compiler was cleaned up a
bit, and host dependences on x86 / MSVC have been isolated
in a new Common/long-double header.
* Character comparison has been exposed via an extern template
so that reductions could use it.
* Mappings from Fortran type category/kind to host C++ types
and vice versa have been isolated into runtime/cpp-type.h and
then used throughout the runtime as appropriate.
* The portable 128-bit integer package in Common/uint128.h
was generalized to support signed comparisons.
* Bugs in descriptor indexing code were fixed.
Differential Revision: https://reviews.llvm.org/D99666
2021-04-01 00:14:08 +08:00
|
|
|
/*===-- runtime/entry-names.h ---------------------------------------*- C -*-===
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
*
|
|
|
|
*===------------------------------------------------------------------------===
|
|
|
|
*/
|
2019-10-12 04:46:58 +08:00
|
|
|
|
[flang] Implement reductions in the runtime
Add runtime APIs, implementations, and tests for ALL, ANY, COUNT,
MAXLOC, MAXVAL, MINLOC, MINVAL, PRODUCT, and SUM reduction
transformantional intrinsic functions for all relevant argument
and result types and kinds, both without DIM= arguments
(total reductions) and with (partial reductions).
Complex-valued reductions have their APIs in C so that
C's _Complex types can be used for their results.
Some infrastructure work was also necessary or noticed:
* Usage of "long double" in the compiler was cleaned up a
bit, and host dependences on x86 / MSVC have been isolated
in a new Common/long-double header.
* Character comparison has been exposed via an extern template
so that reductions could use it.
* Mappings from Fortran type category/kind to host C++ types
and vice versa have been isolated into runtime/cpp-type.h and
then used throughout the runtime as appropriate.
* The portable 128-bit integer package in Common/uint128.h
was generalized to support signed comparisons.
* Bugs in descriptor indexing code were fixed.
Differential Revision: https://reviews.llvm.org/D99666
2021-04-01 00:14:08 +08:00
|
|
|
/* Defines the macro RTNAME(n) which decorates the external name of a runtime
|
|
|
|
* library function or object with extra characters so that it
|
|
|
|
* (a) is not in the user's name space,
|
|
|
|
* (b) doesn't conflict with other libraries, and
|
|
|
|
* (c) prevents incompatible versions of the runtime library from linking
|
|
|
|
*
|
|
|
|
* The value of REVISION should not be changed until/unless the API to the
|
|
|
|
* runtime library must change in some way that breaks backward compatibility.
|
|
|
|
*/
|
2019-10-12 04:46:58 +08:00
|
|
|
#ifndef RTNAME
|
2020-01-17 05:51:25 +08:00
|
|
|
#define NAME_WITH_PREFIX_AND_REVISION(prefix, revision, name) \
|
|
|
|
prefix##revision##name
|
|
|
|
#define RTNAME(name) NAME_WITH_PREFIX_AND_REVISION(_Fortran, A, name)
|
2019-10-12 04:46:58 +08:00
|
|
|
#endif
|