2020-01-27 19:18:45 -07:00
|
|
|
//===-- runtime/type-code.cpp ---------------------------------------------===//
|
2018-07-31 16:46:30 -07:00
|
|
|
//
|
2019-12-20 12: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-07-31 16:46:30 -07:00
|
|
|
//
|
2020-01-10 12:12:03 -08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2018-07-31 16:46:30 -07:00
|
|
|
|
2021-09-01 16:00:53 -07:00
|
|
|
#include "flang/Runtime/type-code.h"
|
2018-07-31 16:46:30 -07:00
|
|
|
|
|
|
|
|
namespace Fortran::runtime {
|
|
|
|
|
|
2023-09-27 08:20:17 -07:00
|
|
|
RT_OFFLOAD_API_GROUP_BEGIN
|
|
|
|
|
|
|
|
|
|
RT_API_ATTRS TypeCode::TypeCode(TypeCategory f, int kind) {
|
2018-07-31 16:46:30 -07:00
|
|
|
switch (f) {
|
2018-08-01 09:45:59 -07:00
|
|
|
case TypeCategory::Integer:
|
2018-07-31 16:46:30 -07:00
|
|
|
switch (kind) {
|
2020-03-28 21:00:16 -07: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-07-31 16:46:30 -07:00
|
|
|
}
|
|
|
|
|
break;
|
2024-12-18 07:02:37 -08:00
|
|
|
case TypeCategory::Unsigned:
|
|
|
|
|
switch (kind) {
|
|
|
|
|
case 1:
|
|
|
|
|
raw_ = CFI_type_uint8_t;
|
|
|
|
|
break;
|
|
|
|
|
case 2:
|
|
|
|
|
raw_ = CFI_type_uint16_t;
|
|
|
|
|
break;
|
|
|
|
|
case 4:
|
|
|
|
|
raw_ = CFI_type_uint32_t;
|
|
|
|
|
break;
|
|
|
|
|
case 8:
|
|
|
|
|
raw_ = CFI_type_uint64_t;
|
|
|
|
|
break;
|
|
|
|
|
case 16:
|
|
|
|
|
raw_ = CFI_type_uint128_t;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
break;
|
2018-08-01 09:45:59 -07:00
|
|
|
case TypeCategory::Real:
|
2018-07-31 16:46:30 -07:00
|
|
|
switch (kind) {
|
2022-01-14 10:06:56 -08:00
|
|
|
case 2:
|
|
|
|
|
raw_ = CFI_type_half_float;
|
|
|
|
|
break;
|
|
|
|
|
case 3:
|
|
|
|
|
raw_ = CFI_type_bfloat;
|
|
|
|
|
break;
|
2020-03-28 21:00:16 -07:00
|
|
|
case 4:
|
|
|
|
|
raw_ = CFI_type_float;
|
|
|
|
|
break;
|
|
|
|
|
case 8:
|
|
|
|
|
raw_ = CFI_type_double;
|
|
|
|
|
break;
|
2018-07-31 16:46:30 -07:00
|
|
|
case 10:
|
2022-01-14 10:06:56 -08:00
|
|
|
raw_ = CFI_type_extended_double;
|
|
|
|
|
break;
|
2020-03-28 21:00:16 -07:00
|
|
|
case 16:
|
2022-01-14 10:06:56 -08:00
|
|
|
raw_ = CFI_type_float128;
|
2020-03-28 21:00:16 -07:00
|
|
|
break;
|
2018-07-31 16:46:30 -07:00
|
|
|
}
|
|
|
|
|
break;
|
2018-08-01 09:45:59 -07:00
|
|
|
case TypeCategory::Complex:
|
2018-07-31 16:46:30 -07:00
|
|
|
switch (kind) {
|
2022-03-15 09:23:50 +01:00
|
|
|
case 2:
|
|
|
|
|
raw_ = CFI_type_half_float_Complex;
|
|
|
|
|
break;
|
|
|
|
|
case 3:
|
|
|
|
|
raw_ = CFI_type_bfloat_Complex;
|
|
|
|
|
break;
|
2020-03-28 21:00:16 -07:00
|
|
|
case 4:
|
|
|
|
|
raw_ = CFI_type_float_Complex;
|
|
|
|
|
break;
|
|
|
|
|
case 8:
|
|
|
|
|
raw_ = CFI_type_double_Complex;
|
|
|
|
|
break;
|
2018-07-31 16:46:30 -07:00
|
|
|
case 10:
|
2022-03-15 09:23:50 +01:00
|
|
|
raw_ = CFI_type_extended_double_Complex;
|
|
|
|
|
break;
|
2020-03-28 21:00:16 -07:00
|
|
|
case 16:
|
|
|
|
|
raw_ = CFI_type_long_double_Complex;
|
|
|
|
|
break;
|
2018-07-31 16:46:30 -07:00
|
|
|
}
|
|
|
|
|
break;
|
2018-08-01 09:45:59 -07: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-17 13:17:24 -07:00
|
|
|
switch (kind) {
|
|
|
|
|
case 1:
|
2018-11-28 12: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-17 13:17:24 -07:00
|
|
|
break;
|
|
|
|
|
case 2:
|
|
|
|
|
raw_ = CFI_type_char16_t;
|
|
|
|
|
break;
|
|
|
|
|
case 4:
|
|
|
|
|
raw_ = CFI_type_char32_t;
|
|
|
|
|
break;
|
2018-07-31 16:46:30 -07:00
|
|
|
}
|
|
|
|
|
break;
|
2018-08-01 09:45:59 -07:00
|
|
|
case TypeCategory::Logical:
|
2018-07-31 16:46:30 -07:00
|
|
|
switch (kind) {
|
2020-03-28 21:00:16 -07: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-03-31 09:14:08 -07:00
|
|
|
raw_ = CFI_type_int_least16_t;
|
2020-03-28 21:00:16 -07: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-03-31 09:14:08 -07:00
|
|
|
raw_ = CFI_type_int_least32_t;
|
2020-03-28 21:00:16 -07: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-03-31 09:14:08 -07:00
|
|
|
raw_ = CFI_type_int_least64_t;
|
2020-03-28 21:00:16 -07:00
|
|
|
break;
|
2018-07-31 16:46:30 -07:00
|
|
|
}
|
|
|
|
|
break;
|
2020-03-28 21:00:16 -07:00
|
|
|
case TypeCategory::Derived:
|
|
|
|
|
raw_ = CFI_type_struct;
|
|
|
|
|
break;
|
2018-07-31 16:46:30 -07:00
|
|
|
}
|
|
|
|
|
}
|
2020-08-06 17:30:01 -07:00
|
|
|
|
2024-03-15 14:25:47 -07:00
|
|
|
RT_API_ATTRS Fortran::common::optional<std::pair<TypeCategory, int>>
|
2020-08-06 17:30:01 -07:00
|
|
|
TypeCode::GetCategoryAndKind() const {
|
|
|
|
|
switch (raw_) {
|
2022-09-22 09:31:20 -07:00
|
|
|
case CFI_type_signed_char:
|
|
|
|
|
return std::make_pair(TypeCategory::Character, sizeof(signed char));
|
|
|
|
|
case CFI_type_short:
|
|
|
|
|
return std::make_pair(TypeCategory::Integer, sizeof(short));
|
|
|
|
|
case CFI_type_int:
|
|
|
|
|
return std::make_pair(TypeCategory::Integer, sizeof(int));
|
|
|
|
|
case CFI_type_long:
|
|
|
|
|
return std::make_pair(TypeCategory::Integer, sizeof(long));
|
|
|
|
|
case CFI_type_long_long:
|
|
|
|
|
return std::make_pair(TypeCategory::Integer, sizeof(long long));
|
|
|
|
|
case CFI_type_size_t:
|
|
|
|
|
return std::make_pair(TypeCategory::Integer, sizeof(std::size_t));
|
2020-08-06 17:30:01 -07:00
|
|
|
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);
|
2022-09-22 09:31:20 -07:00
|
|
|
case CFI_type_int_least8_t:
|
|
|
|
|
return std::make_pair(TypeCategory::Logical, 1);
|
|
|
|
|
case CFI_type_int_least16_t:
|
|
|
|
|
return std::make_pair(TypeCategory::Logical, 2);
|
|
|
|
|
case CFI_type_int_least32_t:
|
|
|
|
|
return std::make_pair(TypeCategory::Logical, 4);
|
|
|
|
|
case CFI_type_int_least64_t:
|
|
|
|
|
return std::make_pair(TypeCategory::Logical, 8);
|
|
|
|
|
case CFI_type_int_least128_t:
|
|
|
|
|
return std::make_pair(TypeCategory::Integer, 16);
|
|
|
|
|
case CFI_type_int_fast8_t:
|
|
|
|
|
return std::make_pair(TypeCategory::Integer, sizeof(std::int_fast8_t));
|
|
|
|
|
case CFI_type_int_fast16_t:
|
|
|
|
|
return std::make_pair(TypeCategory::Integer, sizeof(std::int_fast16_t));
|
|
|
|
|
case CFI_type_int_fast32_t:
|
|
|
|
|
return std::make_pair(TypeCategory::Integer, sizeof(std::int_fast32_t));
|
|
|
|
|
case CFI_type_int_fast64_t:
|
|
|
|
|
return std::make_pair(TypeCategory::Integer, sizeof(std::int_fast64_t));
|
|
|
|
|
case CFI_type_int_fast128_t:
|
|
|
|
|
return std::make_pair(TypeCategory::Integer, 16);
|
|
|
|
|
case CFI_type_intmax_t:
|
|
|
|
|
return std::make_pair(TypeCategory::Integer, sizeof(std::intmax_t));
|
|
|
|
|
case CFI_type_intptr_t:
|
|
|
|
|
return std::make_pair(TypeCategory::Integer, sizeof(std::intptr_t));
|
|
|
|
|
case CFI_type_ptrdiff_t:
|
|
|
|
|
return std::make_pair(TypeCategory::Integer, sizeof(std::ptrdiff_t));
|
2022-01-14 10:06:56 -08:00
|
|
|
case CFI_type_half_float:
|
|
|
|
|
return std::make_pair(TypeCategory::Real, 2);
|
|
|
|
|
case CFI_type_bfloat:
|
|
|
|
|
return std::make_pair(TypeCategory::Real, 3);
|
2020-08-06 17:30:01 -07:00
|
|
|
case CFI_type_float:
|
|
|
|
|
return std::make_pair(TypeCategory::Real, 4);
|
|
|
|
|
case CFI_type_double:
|
|
|
|
|
return std::make_pair(TypeCategory::Real, 8);
|
2022-01-14 10:06:56 -08:00
|
|
|
case CFI_type_extended_double:
|
|
|
|
|
return std::make_pair(TypeCategory::Real, 10);
|
2020-08-06 17:30:01 -07:00
|
|
|
case CFI_type_long_double:
|
|
|
|
|
return std::make_pair(TypeCategory::Real, 16);
|
2022-01-14 10:06:56 -08:00
|
|
|
case CFI_type_float128:
|
|
|
|
|
return std::make_pair(TypeCategory::Real, 16);
|
|
|
|
|
case CFI_type_half_float_Complex:
|
|
|
|
|
return std::make_pair(TypeCategory::Complex, 2);
|
|
|
|
|
case CFI_type_bfloat_Complex:
|
|
|
|
|
return std::make_pair(TypeCategory::Complex, 3);
|
2020-08-06 17:30:01 -07:00
|
|
|
case CFI_type_float_Complex:
|
|
|
|
|
return std::make_pair(TypeCategory::Complex, 4);
|
|
|
|
|
case CFI_type_double_Complex:
|
|
|
|
|
return std::make_pair(TypeCategory::Complex, 8);
|
2022-01-14 10:06:56 -08:00
|
|
|
case CFI_type_extended_double_Complex:
|
|
|
|
|
return std::make_pair(TypeCategory::Complex, 10);
|
2020-08-06 17:30:01 -07:00
|
|
|
case CFI_type_long_double_Complex:
|
|
|
|
|
return std::make_pair(TypeCategory::Complex, 16);
|
2022-01-14 10:06:56 -08:00
|
|
|
case CFI_type_float128_Complex:
|
|
|
|
|
return std::make_pair(TypeCategory::Complex, 16);
|
2022-09-22 09:31:20 -07:00
|
|
|
case CFI_type_Bool:
|
|
|
|
|
return std::make_pair(TypeCategory::Logical, 1);
|
2020-08-06 17:30:01 -07:00
|
|
|
case CFI_type_char:
|
|
|
|
|
return std::make_pair(TypeCategory::Character, 1);
|
2022-09-22 09:31:20 -07:00
|
|
|
case CFI_type_cptr:
|
|
|
|
|
return std::make_pair(TypeCategory::Integer, sizeof(void *));
|
|
|
|
|
case CFI_type_struct:
|
|
|
|
|
return std::make_pair(TypeCategory::Derived, 0);
|
2020-08-06 17:30:01 -07:00
|
|
|
case CFI_type_char16_t:
|
|
|
|
|
return std::make_pair(TypeCategory::Character, 2);
|
|
|
|
|
case CFI_type_char32_t:
|
|
|
|
|
return std::make_pair(TypeCategory::Character, 4);
|
2024-12-18 07:02:37 -08:00
|
|
|
case CFI_type_uint8_t:
|
|
|
|
|
return std::make_pair(TypeCategory::Unsigned, 1);
|
|
|
|
|
case CFI_type_uint16_t:
|
|
|
|
|
return std::make_pair(TypeCategory::Unsigned, 2);
|
|
|
|
|
case CFI_type_uint32_t:
|
|
|
|
|
return std::make_pair(TypeCategory::Unsigned, 4);
|
|
|
|
|
case CFI_type_uint64_t:
|
|
|
|
|
return std::make_pair(TypeCategory::Unsigned, 8);
|
|
|
|
|
case CFI_type_uint128_t:
|
|
|
|
|
return std::make_pair(TypeCategory::Unsigned, 16);
|
2020-08-06 17:30:01 -07:00
|
|
|
default:
|
2024-03-15 14:25:47 -07:00
|
|
|
return Fortran::common::nullopt;
|
2020-08-06 17:30:01 -07:00
|
|
|
}
|
|
|
|
|
}
|
2023-09-27 08:20:17 -07:00
|
|
|
|
|
|
|
|
RT_OFFLOAD_API_GROUP_END
|
|
|
|
|
|
2020-03-28 21:00:16 -07:00
|
|
|
} // namespace Fortran::runtime
|