[Fortran,PR85510,v1] Fix coarray token in associate not linking
Checks
Commit Message
Hi all, hi Paul,
you asked me to have a look at PR85510 (which the associate meta bug is blocked
by). I have come up with the cause. The symbol of the coarray is deemed to be
host_associated and therefore the caf_token is not created in the correct scope.
I am not familiar with host-association, so my solution may be wrong. The
essence of my patch is to ensure, that the namespace the symbol is in is not
caused by an associate command. I hope this is the way to go.
Regtests ok on x86_64-pc-linux-gnu / Fedora 39. Ok for mainline?
Regards,
Andre
--
Andre Vehreschild * Email: vehre ad gmx dot de
Comments
Ping!
And the last ping in the series. I have a "bigger" patch in the queue and want
the pending ones done beforehand.
Regtested ok on x86_64-pc-linux-gnu / Fedora 39. Ok for mainline?
- Andre
On Mon, 22 Jul 2024 16:35:28 +0200
Andre Vehreschild <vehre@gmx.de> wrote:
> Hi all, hi Paul,
>
> you asked me to have a look at PR85510 (which the associate meta bug is
> blocked by). I have come up with the cause. The symbol of the coarray is
> deemed to be host_associated and therefore the caf_token is not created in
> the correct scope. I am not familiar with host-association, so my solution
> may be wrong. The essence of my patch is to ensure, that the namespace the
> symbol is in is not caused by an associate command. I hope this is the way to
> go.
>
> Regtests ok on x86_64-pc-linux-gnu / Fedora 39. Ok for mainline?
>
> Regards,
> Andre
> --
> Andre Vehreschild * Email: vehre ad gmx dot de
--
Andre Vehreschild * Email: vehre ad gmx dot de
Ok and thanks.
On Fri, Aug 9, 2024, 7:33 AM Andre Vehreschild <vehre@gmx.de> wrote:
> Ping!
>
> And the last ping in the series. I have a "bigger" patch in the queue and
> want
> the pending ones done beforehand.
>
> Regtested ok on x86_64-pc-linux-gnu / Fedora 39. Ok for mainline?
>
> - Andre
>
> On Mon, 22 Jul 2024 16:35:28 +0200
> Andre Vehreschild <vehre@gmx.de> wrote:
>
> > Hi all, hi Paul,
> >
> > you asked me to have a look at PR85510 (which the associate meta bug is
> > blocked by). I have come up with the cause. The symbol of the coarray is
> > deemed to be host_associated and therefore the caf_token is not created
> in
> > the correct scope. I am not familiar with host-association, so my
> solution
> > may be wrong. The essence of my patch is to ensure, that the namespace
> the
> > symbol is in is not caused by an associate command. I hope this is the
> way to
> > go.
> >
> > Regtests ok on x86_64-pc-linux-gnu / Fedora 39. Ok for mainline?
> >
> > Regards,
> > Andre
> > --
> > Andre Vehreschild * Email: vehre ad gmx dot de
>
>
> --
> Andre Vehreschild * Email: vehre ad gmx dot de
>
Hi Jerry,
thanks for the review. Commited as gcc-15-2882-g8d8db21eb72.
Thanks again and regards,
Andre
On Fri, 9 Aug 2024 10:35:26 -0700
Jerry Delisle <jvdelisle2@gmail.com> wrote:
> Ok and thanks.
>
> On Fri, Aug 9, 2024, 7:33 AM Andre Vehreschild <vehre@gmx.de> wrote:
>
> > Ping!
> >
> > And the last ping in the series. I have a "bigger" patch in the queue and
> > want
> > the pending ones done beforehand.
> >
> > Regtested ok on x86_64-pc-linux-gnu / Fedora 39. Ok for mainline?
> >
> > - Andre
> >
> > On Mon, 22 Jul 2024 16:35:28 +0200
> > Andre Vehreschild <vehre@gmx.de> wrote:
> >
> > > Hi all, hi Paul,
> > >
> > > you asked me to have a look at PR85510 (which the associate meta bug is
> > > blocked by). I have come up with the cause. The symbol of the coarray is
> > > deemed to be host_associated and therefore the caf_token is not created
> > in
> > > the correct scope. I am not familiar with host-association, so my
> > solution
> > > may be wrong. The essence of my patch is to ensure, that the namespace
> > the
> > > symbol is in is not caused by an associate command. I hope this is the
> > way to
> > > go.
> > >
> > > Regtests ok on x86_64-pc-linux-gnu / Fedora 39. Ok for mainline?
> > >
> > > Regards,
> > > Andre
> > > --
> > > Andre Vehreschild * Email: vehre ad gmx dot de
> >
> >
> > --
> > Andre Vehreschild * Email: vehre ad gmx dot de
> >
--
Andre Vehreschild * Email: vehre ad gmx dot de
From 5790f80089f3c4611bd50796ca53ed5437adf012 Mon Sep 17 00:00:00 2001
From: Andre Vehreschild <vehre@gcc.gnu.org>
Date: Mon, 22 Jul 2024 15:31:37 +0200
Subject: [PATCH] Fortran: Fix coarray in associate not linking [PR85510]
PR fortran/85510
gcc/fortran/ChangeLog:
* resolve.cc (resolve_variable): Mark the variable as host
associated only, when it is not in an associate block.
* trans-decl.cc (generate_coarray_init): Remove incorrect unused
flag on parameter.
gcc/testsuite/ChangeLog:
* gfortran.dg/coarray/pr85510.f90: New test.
---
gcc/fortran/resolve.cc | 10 ++++++----
gcc/fortran/trans-decl.cc | 2 +-
gcc/testsuite/gfortran.dg/coarray/pr85510.f90 | 19 +++++++++++++++++++
3 files changed, 26 insertions(+), 5 deletions(-)
create mode 100644 gcc/testsuite/gfortran.dg/coarray/pr85510.f90
@@ -6114,10 +6114,12 @@ resolve_variable (gfc_expr *e)
/* If a symbol has been host_associated mark it. This is used latter,
to identify if aliasing is possible via host association. */
if (sym->attr.flavor == FL_VARIABLE
- && gfc_current_ns->parent
- && (gfc_current_ns->parent == sym->ns
- || (gfc_current_ns->parent->parent
- && gfc_current_ns->parent->parent == sym->ns)))
+ && (!sym->ns->code || sym->ns->code->op != EXEC_BLOCK
+ || !sym->ns->code->ext.block.assoc)
+ && gfc_current_ns->parent
+ && (gfc_current_ns->parent == sym->ns
+ || (gfc_current_ns->parent->parent
+ && gfc_current_ns->parent->parent == sym->ns)))
sym->attr.host_assoc = 1;
if (gfc_current_ns->proc_name
@@ -5912,7 +5912,7 @@ generate_coarray_sym_init (gfc_symbol *sym)
coarrays. */
static void
-generate_coarray_init (gfc_namespace * ns __attribute((unused)))
+generate_coarray_init (gfc_namespace *ns)
{
tree fndecl, tmp, decl, save_fn_decl;
new file mode 100644
@@ -0,0 +1,19 @@
+!{ dg-do run }
+
+! Contributed by Damian Rouson <damian@archaeologic.codes>
+! Check that PR fortran/85510 links.
+
+module foo
+contains
+ subroutine bar()
+ integer, save :: i[*] = 1
+ associate(n=>1)
+ if (i[1] /= 1) stop 1
+ end associate
+ end subroutine
+end module
+
+use foo
+call bar()
+end
+
--
2.45.2