2020-01-28 10:18:45 +08:00
|
|
|
//===-- runtime/type-code.cpp ---------------------------------------------===//
|
2018-08-01 07:46:30 +08:00
|
|
|
//
|
2019-12-21 04:52:07 +08:00
|
|
|
// 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
|
2018-08-01 07:46:30 +08:00
|
|
|
//
|
2020-01-11 04:12:03 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2018-08-01 07:46:30 +08:00
|
|
|
|
2021-09-02 07:00:53 +08:00
|
|
|
#include "flang/Runtime/type-code.h"
|
2018-08-01 07:46:30 +08:00
|
|
|
|
|
|
|
namespace Fortran::runtime {
|
|
|
|
|
2018-08-02 00:45:59 +08:00
|
|
|
TypeCode::TypeCode(TypeCategory f, int kind) {
|
2018-08-01 07:46:30 +08:00
|
|
|
switch (f) {
|
2018-08-02 00:45:59 +08:00
|
|
|
case TypeCategory::Integer:
|
2018-08-01 07:46:30 +08:00
|
|
|
switch (kind) {
|
2020-03-29 12:00:16 +08:00
|
|
|
case 1:
|
|
|
|
raw_ = CFI_type_int8_t;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
raw_ = CFI_type_int16_t;
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
raw_ = CFI_type_int32_t;
|
|
|
|
break;
|
|
|
|
case 8:
|
|
|
|
raw_ = CFI_type_int64_t;
|
|
|
|
break;
|
|
|
|
case 16:
|
|
|
|
raw_ = CFI_type_int128_t;
|
|
|
|
break;
|
2018-08-01 07:46:30 +08:00
|
|
|
}
|
|
|
|
break;
|
2018-08-02 00:45:59 +08:00
|
|
|
case TypeCategory::Real:
|
2018-08-01 07:46:30 +08:00
|
|
|
switch (kind) {
|
2020-03-29 12:00:16 +08:00
|
|
|
case 4:
|
|
|
|
raw_ = CFI_type_float;
|
|
|
|
break;
|
|
|
|
case 8:
|
|
|
|
raw_ = CFI_type_double;
|
|
|
|
break;
|
2018-08-01 07:46:30 +08:00
|
|
|
case 10:
|
2020-03-29 12:00:16 +08:00
|
|
|
case 16:
|
|
|
|
raw_ = CFI_type_long_double;
|
|
|
|
break;
|
2018-08-01 07:46:30 +08:00
|
|
|
}
|
|
|
|
break;
|
2018-08-02 00:45:59 +08:00
|
|
|
case TypeCategory::Complex:
|
2018-08-01 07:46:30 +08:00
|
|
|
switch (kind) {
|
2020-03-29 12:00:16 +08:00
|
|
|
case 4:
|
|
|
|
raw_ = CFI_type_float_Complex;
|
|
|
|
break;
|
|
|
|
case 8:
|
|
|
|
raw_ = CFI_type_double_Complex;
|
|
|
|
break;
|
2018-08-01 07:46:30 +08:00
|
|
|
case 10:
|
2020-03-29 12:00:16 +08:00
|
|
|
case 16:
|
|
|
|
raw_ = CFI_type_long_double_Complex;
|
|
|
|
break;
|
2018-08-01 07:46:30 +08:00
|
|
|
}
|
|
|
|
break;
|
2018-08-02 00:45:59 +08:00
|
|
|
case TypeCategory::Character:
|
[flang] More Fortran runtime support for CHARACTER operations
Summary:
- Remove C++ library dependence from lock.h
- Implement LEN_TRIM, REPEAT, ADJUSTL, ADJUSTR, MAX/MIN
intrinsic functions for CHARACTER
Reviewers: tskeith, PeteSteinfeld, sscalpone, schweitz, DavidTruby
Reviewed By: PeteSteinfeld
Subscribers: llvm-commits, flang-commits
Tags: #flang, #llvm
Differential Revision: https://reviews.llvm.org/D82054
2020-06-18 04:17:24 +08:00
|
|
|
switch (kind) {
|
|
|
|
case 1:
|
2018-11-29 04:17:34 +08:00
|
|
|
raw_ = CFI_type_char;
|
[flang] More Fortran runtime support for CHARACTER operations
Summary:
- Remove C++ library dependence from lock.h
- Implement LEN_TRIM, REPEAT, ADJUSTL, ADJUSTR, MAX/MIN
intrinsic functions for CHARACTER
Reviewers: tskeith, PeteSteinfeld, sscalpone, schweitz, DavidTruby
Reviewed By: PeteSteinfeld
Subscribers: llvm-commits, flang-commits
Tags: #flang, #llvm
Differential Revision: https://reviews.llvm.org/D82054
2020-06-18 04:17:24 +08:00
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
raw_ = CFI_type_char16_t;
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
raw_ = CFI_type_char32_t;
|
|
|
|
break;
|
2018-08-01 07:46:30 +08:00
|
|
|
}
|
|
|
|
break;
|
2018-08-02 00:45:59 +08:00
|
|
|
case TypeCategory::Logical:
|
2018-08-01 07:46:30 +08:00
|
|
|
switch (kind) {
|
2020-03-29 12:00:16 +08:00
|
|
|
case 1:
|
|
|
|
raw_ = CFI_type_Bool;
|
|
|
|
break;
|
|
|
|
case 2:
|
[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
|
|
|
raw_ = CFI_type_int_least16_t;
|
2020-03-29 12:00:16 +08:00
|
|
|
break;
|
|
|
|
case 4:
|
[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
|
|
|
raw_ = CFI_type_int_least32_t;
|
2020-03-29 12:00:16 +08:00
|
|
|
break;
|
|
|
|
case 8:
|
[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
|
|
|
raw_ = CFI_type_int_least64_t;
|
2020-03-29 12:00:16 +08:00
|
|
|
break;
|
2018-08-01 07:46:30 +08:00
|
|
|
}
|
|
|
|
break;
|
2020-03-29 12:00:16 +08:00
|
|
|
case TypeCategory::Derived:
|
|
|
|
raw_ = CFI_type_struct;
|
|
|
|
break;
|
2018-08-01 07:46:30 +08:00
|
|
|
}
|
|
|
|
}
|
2020-08-07 08:30:01 +08:00
|
|
|
|
|
|
|
std::optional<std::pair<TypeCategory, int>>
|
|
|
|
TypeCode::GetCategoryAndKind() const {
|
|
|
|
switch (raw_) {
|
|
|
|
case CFI_type_int8_t:
|
|
|
|
return std::make_pair(TypeCategory::Integer, 1);
|
|
|
|
case CFI_type_int16_t:
|
|
|
|
return std::make_pair(TypeCategory::Integer, 2);
|
|
|
|
case CFI_type_int32_t:
|
|
|
|
return std::make_pair(TypeCategory::Integer, 4);
|
|
|
|
case CFI_type_int64_t:
|
|
|
|
return std::make_pair(TypeCategory::Integer, 8);
|
|
|
|
case CFI_type_int128_t:
|
|
|
|
return std::make_pair(TypeCategory::Integer, 16);
|
|
|
|
case CFI_type_float:
|
|
|
|
return std::make_pair(TypeCategory::Real, 4);
|
|
|
|
case CFI_type_double:
|
|
|
|
return std::make_pair(TypeCategory::Real, 8);
|
|
|
|
case CFI_type_long_double:
|
|
|
|
#if __x86_64__
|
|
|
|
return std::make_pair(TypeCategory::Real, 10);
|
|
|
|
#else
|
|
|
|
return std::make_pair(TypeCategory::Real, 16);
|
|
|
|
#endif
|
|
|
|
case CFI_type_float_Complex:
|
|
|
|
return std::make_pair(TypeCategory::Complex, 4);
|
|
|
|
case CFI_type_double_Complex:
|
|
|
|
return std::make_pair(TypeCategory::Complex, 8);
|
|
|
|
case CFI_type_long_double_Complex:
|
|
|
|
#if __x86_64__
|
|
|
|
return std::make_pair(TypeCategory::Complex, 10);
|
|
|
|
#else
|
|
|
|
return std::make_pair(TypeCategory::Complex, 16);
|
|
|
|
#endif
|
|
|
|
case CFI_type_char:
|
|
|
|
return std::make_pair(TypeCategory::Character, 1);
|
|
|
|
case CFI_type_char16_t:
|
|
|
|
return std::make_pair(TypeCategory::Character, 2);
|
|
|
|
case CFI_type_char32_t:
|
|
|
|
return std::make_pair(TypeCategory::Character, 4);
|
|
|
|
case CFI_type_Bool:
|
|
|
|
return std::make_pair(TypeCategory::Logical, 1);
|
[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
|
|
|
case CFI_type_int_least8_t:
|
2020-08-07 08:30:01 +08:00
|
|
|
return std::make_pair(TypeCategory::Logical, 1);
|
[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
|
|
|
case CFI_type_int_least16_t:
|
2020-08-07 08:30:01 +08:00
|
|
|
return std::make_pair(TypeCategory::Logical, 2);
|
[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
|
|
|
case CFI_type_int_least32_t:
|
2020-08-07 08:30:01 +08:00
|
|
|
return std::make_pair(TypeCategory::Logical, 4);
|
[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
|
|
|
case CFI_type_int_least64_t:
|
2020-08-07 08:30:01 +08:00
|
|
|
return std::make_pair(TypeCategory::Logical, 8);
|
|
|
|
case CFI_type_struct:
|
|
|
|
return std::make_pair(TypeCategory::Derived, 0);
|
|
|
|
default:
|
|
|
|
return std::nullopt;
|
|
|
|
}
|
|
|
|
}
|
2020-03-29 12:00:16 +08:00
|
|
|
} // namespace Fortran::runtime
|