[flang-commits] [flang] [flang] Defer conversion of PDT default initializers (PR #91026)
Peter Klausler via flang-commits
flang-commits at lists.llvm.org
Fri May 3 15:49:45 PDT 2024
https://github.com/klausler created https://github.com/llvm/llvm-project/pull/91026
As the kinds of the integer types of type parameters may well depend on the values of other type parameters, defer the attempt to convert their values to the point of type instantiation instead of doing it during declaration processing.
>From be04ba2da78dbfb65ca867c85ef6c368c4e8999f Mon Sep 17 00:00:00 2001
From: Peter Klausler <pklausler at nvidia.com>
Date: Fri, 3 May 2024 15:34:54 -0700
Subject: [PATCH] [flang] Defer conversion of PDT default initializers
As the kinds of the integer types of type parameters may well depend
on the values of other type parameters, defer the attempt to convert
their values to the point of type instantiation instead of doing it
during declaration processing.
---
flang/lib/Semantics/resolve-names.cpp | 3 +--
flang/test/Semantics/modfile12.f90 | 2 +-
flang/test/Semantics/modfile17.f90 | 6 +++---
flang/test/Semantics/pdt03.f90 | 9 +++++++++
4 files changed, 14 insertions(+), 6 deletions(-)
create mode 100644 flang/test/Semantics/pdt03.f90
diff --git a/flang/lib/Semantics/resolve-names.cpp b/flang/lib/Semantics/resolve-names.cpp
index 61394b0f41de75..2199e3f16e620f 100644
--- a/flang/lib/Semantics/resolve-names.cpp
+++ b/flang/lib/Semantics/resolve-names.cpp
@@ -5550,8 +5550,7 @@ void DeclarationVisitor::Post(const parser::TypeParamDefStmt &x) {
SetType(name, *type);
if (auto &init{
std::get<std::optional<parser::ScalarIntConstantExpr>>(decl.t)}) {
- if (auto maybeExpr{EvaluateNonPointerInitializer(
- *symbol, *init, init->thing.thing.thing.value().source)}) {
+ if (auto maybeExpr{AnalyzeExpr(context(), *init)}) {
if (auto *intExpr{std::get_if<SomeIntExpr>(&maybeExpr->u)}) {
symbol->get<TypeParamDetails>().set_init(std::move(*intExpr));
}
diff --git a/flang/test/Semantics/modfile12.f90 b/flang/test/Semantics/modfile12.f90
index 17b6e95c4a562d..41ab300e00f670 100644
--- a/flang/test/Semantics/modfile12.f90
+++ b/flang/test/Semantics/modfile12.f90
@@ -41,7 +41,7 @@ subroutine baz(x)
! real(4)::y(1_8:8_8)
! type::t(c,d)
! integer(4),kind::c=1_4
-! integer(4),len::d=3_4
+! integer(4),len::d=3_8
! end type
! type(t(c=4_4,d=:)),allocatable::z
! class(t(c=5_4,d=:)),allocatable::z2
diff --git a/flang/test/Semantics/modfile17.f90 b/flang/test/Semantics/modfile17.f90
index 189d8a83de8c56..4ab5cc85db253c 100644
--- a/flang/test/Semantics/modfile17.f90
+++ b/flang/test/Semantics/modfile17.f90
@@ -97,10 +97,10 @@ module m
!integer(k8)::j8
!end type
!type::defaulted(n1,n2,n4,n8)
-!integer(1),kind::n1=1_1
-!integer(2),kind::n2=int(2_4*int(int(n1,kind=1),kind=4),kind=2)
+!integer(1),kind::n1=1_4
+!integer(2),kind::n2=2_4*int(int(n1,kind=1),kind=4)
!integer(4),kind::n4=2_4*int(int(n2,kind=2),kind=4)
-!integer(8),kind::n8=int(12_4-int(n4,kind=4),kind=8)
+!integer(8),kind::n8=12_4-int(n4,kind=4)
!type(capture(k1=int(n1,kind=1),k2=int(n2,kind=2),k4=int(n4,kind=4),k8=n8))::cap
!end type
!type,extends(defaulted)::extension(k5)
diff --git a/flang/test/Semantics/pdt03.f90 b/flang/test/Semantics/pdt03.f90
new file mode 100644
index 00000000000000..2fb63d21540b15
--- /dev/null
+++ b/flang/test/Semantics/pdt03.f90
@@ -0,0 +1,9 @@
+! RUN: %flang_fc1 -fdebug-unparse %s 2>&1 | FileCheck %s
+type t(kp1,kp2)
+ integer, kind :: kp1
+ integer(kp1), kind :: kp2 = kp1
+end type
+type(t(kp1=8_8)) x
+!CHECK: 4_4, 8_4, 8_4, 8_8
+print *, kind(x%kp1), x%kp1, kind(x%kp2), x%kp2
+end
More information about the flang-commits
mailing list