Krzysztof Parzyszek
0e7ddf395a
[flang][OpenMP] Improve locality check when determining DSA ( #180583 )
...
Follow-up to https://github.com/llvm/llvm-project/pull/178739 .
The locality check assumed that immediately after the initial symbol
resolution (i.e. prior to the OpenMP code in resolve-directives.cpp),
the scope that owns a given symbol is the scope which owns the symbol's
storage. Turns out that this isn't necessarily true as illustrated by
the included testcase, roughly something like:
```
program main
integer :: j ! host j (storage-owning)
contains
subroutine f
!$omp parallel ! scope that owns j, but j is host-associated
do j = ...
end do
!$omp end parallel
end
end program
```
In such cases, the locality should be checked for the symbol that owns
storage, i.e. a clone of the symbol that is has been privatized or a
symbol that is not host- or use-associated. This is similar to obtaning
the ultimate symbol (i.e. from the end of association chain), except the
chain traversal would stop at a privatized symbol, potentially before
reaching the end.
This fixes a few regressions in the Fujitsu test suite:
Fujitsu/Fortran/0160/Fujitsu-Fortran-0160_0000.test
Fujitsu/Fortran/0160/Fujitsu-Fortran-0160_0012.test
Fujitsu/Fortran/0160/Fujitsu-Fortran-0160_0013.test
Fujitsu/Fortran/0660/Fujitsu-Fortran-0660_0096.test
Fujitsu/Fortran/0660/Fujitsu-Fortran-0660_0097.test
Fujitsu/Fortran/1052/Fujitsu-Fortran-1052_0108.test
Fujitsu/Fortran/1052/Fujitsu-Fortran-1052_0112.test
2026-02-09 15:54:01 -06:00
..
2025-12-04 13:50:39 -07:00
2026-01-15 19:31:27 +00:00
2026-02-09 15:54:01 -06:00
2025-07-18 11:20:00 -04:00
2026-01-31 14:47:29 -08:00
2025-05-12 12:28:13 -07:00
2025-06-30 10:17:05 -07:00
2025-06-16 14:36:35 -07:00
2025-12-05 14:15:08 -07:00
2025-06-30 10:17:05 -07:00
2025-07-30 11:41:57 -07:00
2025-06-30 10:17:05 -07:00
2025-05-13 07:48:54 -07:00
2025-06-30 10:17:05 -07:00
2025-10-03 21:39:04 -07:00
2025-05-12 12:02:15 -07:00
2025-05-12 12:02:15 -07:00
2025-05-12 12:02:15 -07:00
2025-05-12 12:02:15 -07:00
2025-05-12 12:02:15 -07:00
2025-05-12 12:02:15 -07:00
2025-05-12 12:02:15 -07:00
2025-05-12 12:02:15 -07:00
2025-05-12 12:02:15 -07:00
2025-05-12 12:02:15 -07:00
2025-12-16 10:02:14 -05:00
2025-09-03 19:22:34 -04:00
2025-06-30 10:17:05 -07:00
2025-06-30 10:17:05 -07:00
2025-06-30 10:17:05 -07:00
2025-06-30 10:17:05 -07:00
2025-06-30 10:17:05 -07:00
2025-06-30 10:17:05 -07:00
2025-07-16 09:10:26 -07:00
2025-12-05 14:15:08 -07:00
2025-12-31 12:42:06 -08:00
2025-06-30 10:17:05 -07:00
2025-10-03 10:48:13 -07:00
2025-05-13 07:49:20 -07:00
2025-05-28 13:59:48 -07:00
2025-06-30 11:19:05 -07:00
2025-06-30 10:25:00 -07:00
2025-07-03 14:34:16 -07:00
2026-02-06 09:30:50 -08:00
2025-10-24 14:11:22 -05:00
2025-12-19 14:32:16 -08:00
2026-01-08 08:58:25 -08:00
2026-01-22 07:32:53 -08:00
2026-01-31 14:47:49 -08:00
2026-02-06 09:30:50 -08:00
2026-02-06 09:29:50 -08:00
2025-12-19 14:32:16 -08:00
2026-01-08 11:33:21 -03:00
2025-09-30 10:34:41 -07:00
2025-05-12 12:27:39 -07:00
2025-05-13 07:48:54 -07:00
2025-06-04 09:22:28 -07:00
2025-06-30 10:21:06 -07:00
2025-07-16 09:09:05 -07:00
2025-07-16 09:09:29 -07:00
2026-01-19 11:00:05 -08:00
2025-09-30 10:36:52 -07:00
2025-09-17 09:15:34 -07:00
2025-09-23 15:44:59 -07:00
2025-09-23 15:45:56 -07:00
2025-10-10 10:09:56 -07:00
2025-12-09 22:39:41 +01:00
2025-10-16 12:20:53 -07:00
2025-12-09 22:39:41 +01:00
2025-11-19 08:54:21 -08:00
2026-01-01 12:46:20 -08:00
2025-12-19 14:31:49 -08:00
2025-12-19 14:31:49 -08:00
2025-12-31 12:43:09 -08:00
2026-01-08 08:59:07 -08:00
2026-01-12 15:40:22 -08:00
2026-01-27 08:22:44 -08:00
2026-01-27 08:23:23 -08:00
2026-01-31 14:48:52 -08:00
2026-01-31 14:48:32 -08:00
2026-02-06 09:32:16 -08:00
2026-01-28 10:32:41 -08:00
2025-11-14 08:23:45 -08:00
2025-08-29 07:49:33 -07:00
2025-06-30 10:17:05 -07:00
2025-06-30 10:17:05 -07:00
2026-01-19 11:00:26 -08:00
2025-06-30 10:17:05 -07:00
2025-06-30 10:17:05 -07:00
2025-06-30 10:17:05 -07:00
2025-06-30 10:17:05 -07:00
2025-10-03 10:48:13 -07:00
2025-06-30 10:17:05 -07:00
2025-06-30 10:17:05 -07:00
2025-06-30 10:17:05 -07:00
2025-05-13 07:48:54 -07:00
2025-06-30 10:17:05 -07:00
2025-06-30 10:17:05 -07:00
2025-06-30 10:17:05 -07:00
2025-06-30 10:17:05 -07:00
2025-06-30 10:17:05 -07:00
2025-06-30 10:17:05 -07:00
2025-06-30 10:17:05 -07:00
2025-06-30 10:17:05 -07:00
2025-06-30 10:17:05 -07:00
2025-06-30 10:17:05 -07:00
2025-06-30 10:17:05 -07:00
2025-09-19 19:53:06 -07:00
2025-09-19 19:53:06 -07:00
2026-01-19 11:00:26 -08:00
2025-06-30 10:17:05 -07:00
2025-10-27 18:26:08 -04:00
2025-11-05 16:35:25 +01:00
2025-12-05 14:15:08 -07:00
2025-05-09 17:20:38 -07:00
2025-06-30 10:17:05 -07:00
2025-06-30 10:17:05 -07:00
2025-09-10 13:13:36 -07:00
2025-09-30 14:40:35 -04:00
2025-05-12 12:02:15 -07:00
2025-06-30 10:17:05 -07:00
2026-01-22 08:30:09 -07:00
2025-06-30 10:17:05 -07:00
2025-10-22 17:55:11 +00:00
2025-07-30 11:41:40 -07:00
2025-05-07 09:23:43 -07:00
2025-06-12 17:08:49 -07:00
2025-06-10 22:10:26 -07:00
2026-01-22 18:28:03 +00:00
2025-10-03 10:48:13 -07:00
2025-09-03 11:07:10 -07:00
2026-01-16 16:26:33 -08:00
2025-12-05 14:15:08 -07:00
2025-06-30 10:17:05 -07:00
2026-01-22 07:32:53 -08:00
2026-01-22 07:32:53 -08:00
2025-06-30 10:17:05 -07:00
2025-10-10 10:09:56 -07:00
2026-01-22 07:32:53 -08:00
2025-09-23 15:44:20 -07:00
2025-05-13 07:48:54 -07:00
2025-10-03 10:47:50 -07:00
2025-06-30 10:17:05 -07:00
2025-06-30 10:17:05 -07:00
2026-01-22 07:33:14 -08:00
2025-06-30 10:17:05 -07:00
2025-10-03 10:47:50 -07:00
2025-06-30 10:17:05 -07:00
2025-06-30 10:17:05 -07:00
2025-09-17 09:17:13 -07:00
2025-06-30 10:17:05 -07:00
2025-12-05 14:15:08 -07:00
2025-12-05 14:15:08 -07:00
2025-12-05 14:15:08 -07:00
2025-12-05 14:15:08 -07:00
2025-06-30 10:17:05 -07:00
2025-06-30 10:17:05 -07:00
2025-12-05 14:15:08 -07:00
2025-12-05 14:15:08 -07:00
2025-12-05 14:15:08 -07:00
2025-12-05 14:15:08 -07:00
2025-12-05 14:15:08 -07:00
2025-10-15 18:47:43 -07:00
2025-09-23 15:45:18 -07:00
2025-12-31 12:42:33 -08:00
2025-12-03 08:29:43 -05:00
2026-01-22 07:32:53 -08:00
2025-12-11 09:16:09 -08:00
2025-05-12 12:02:15 -07:00
2025-12-05 14:15:08 -07:00
2025-05-12 12:02:15 -07:00
2025-06-30 10:17:05 -07:00
2025-06-30 10:17:05 -07:00
2025-06-30 10:17:05 -07:00
2025-06-30 10:17:05 -07:00
2025-06-30 10:17:05 -07:00
2025-10-24 14:14:35 -05:00
2025-06-26 12:15:57 -07:00
2025-06-30 10:17:05 -07:00
2025-06-30 10:17:05 -07:00
2026-01-28 10:32:41 -08:00
2025-10-24 14:14:59 -05:00
2025-12-05 14:15:08 -07:00
2025-12-05 14:15:08 -07:00
2025-07-17 14:18:21 -04:00
2025-06-30 10:17:05 -07:00
2025-08-29 07:49:09 -07:00
2025-09-03 11:08:03 -07:00
2025-06-30 10:17:05 -07:00
2025-06-30 10:17:05 -07:00
2025-10-29 08:34:51 -04:00
2026-02-04 22:49:25 -05:00
2025-11-20 15:00:15 +05:30
2025-11-20 15:00:15 +05:30
2025-06-30 10:17:05 -07:00
2025-06-30 10:17:05 -07:00
2025-10-04 00:55:14 -07:00
2025-10-04 00:55:14 -07:00
2025-05-28 13:58:22 -07:00
2025-12-05 14:15:08 -07:00
2025-12-05 14:15:08 -07:00
2025-10-10 10:09:33 -07:00
2025-12-31 12:42:06 -08:00
2025-06-30 10:17:05 -07:00
2025-06-30 10:17:05 -07:00
2025-12-31 12:42:06 -08:00
2025-12-17 15:58:52 -03:00
2026-01-19 11:00:05 -08:00
2025-08-29 15:58:03 -07:00
2025-06-30 10:17:05 -07:00
2025-06-16 16:26:03 -07:00
2025-12-12 07:37:49 -07:00
2025-06-17 08:55:18 -07:00
2025-06-16 16:26:03 -07:00
2025-06-16 16:26:03 -07:00
2025-06-16 16:26:03 -07:00
2025-06-16 16:26:03 -07:00
2025-10-03 10:48:32 -07:00
2025-12-13 11:22:59 +00:00
2026-01-12 15:41:05 -08:00
2025-07-17 14:18:21 -04:00
2025-07-17 14:18:21 -04:00
2025-11-05 16:35:25 +01:00
2025-10-03 10:48:13 -07:00
2025-10-24 14:11:22 -05:00
2025-12-16 10:02:14 -05:00
2025-12-16 10:02:14 -05:00
2025-12-16 11:16:38 -07:00
2025-06-09 15:52:24 +01:00
2025-09-03 11:07:10 -07:00
2025-05-15 11:25:26 -07:00
2025-10-10 10:09:33 -07:00
2025-07-17 14:18:21 -04:00
2025-07-17 14:18:21 -04:00
2025-06-30 10:17:05 -07:00
2025-06-30 10:17:05 -07:00
2026-01-27 11:16:17 -05:00
2025-10-10 10:09:33 -07:00
2025-09-02 13:54:02 -04:00
2025-12-19 14:32:16 -08:00
2025-12-19 14:32:16 -08:00
2025-10-31 10:27:30 -07:00
2026-01-28 10:32:41 -08:00
2026-01-28 10:32:41 -08:00
2026-01-28 10:32:41 -08:00
2025-09-10 13:38:50 -07:00
2025-06-30 10:17:05 -07:00
2025-06-30 10:17:05 -07:00
2025-06-30 10:17:05 -07:00
2025-12-12 07:37:49 -07:00
2025-05-12 12:28:31 -07:00
2025-06-30 10:17:05 -07:00
2025-06-30 10:17:05 -07:00
2025-12-19 14:32:16 -08:00
2025-10-03 10:47:50 -07:00
2025-06-30 10:17:05 -07:00
2025-06-30 10:17:05 -07:00
2025-12-19 14:32:16 -08:00
2025-06-30 15:49:07 -04:00
2025-12-12 07:37:49 -07:00
2025-06-30 10:17:05 -07:00
2025-06-30 10:17:05 -07:00
2025-06-30 10:17:05 -07:00
2025-10-16 12:20:53 -07:00
2025-06-30 10:17:05 -07:00
2025-06-30 10:17:05 -07:00
2025-06-30 10:17:05 -07:00
2025-12-12 07:37:49 -07:00
2025-12-12 07:37:49 -07:00
2025-12-12 07:37:49 -07:00
2025-12-12 07:37:49 -07:00
2025-12-12 07:37:49 -07:00
2025-06-30 10:17:05 -07:00
2025-12-12 07:37:49 -07:00
2025-12-12 07:37:49 -07:00
2025-06-30 10:17:05 -07:00
2025-06-30 10:17:05 -07:00
2025-12-12 07:37:49 -07:00
2025-12-12 07:37:49 -07:00
2025-12-12 07:37:49 -07:00
2025-06-30 10:17:05 -07:00
2025-12-12 07:37:49 -07:00
2025-12-12 07:37:49 -07:00
2025-12-12 07:37:49 -07:00
2025-12-12 07:37:49 -07:00
2025-12-12 07:37:49 -07:00
2025-12-19 14:32:16 -08:00
2025-12-12 07:37:49 -07:00
2025-06-30 10:17:05 -07:00
2025-12-12 07:37:49 -07:00
2025-05-28 14:01:28 -07:00
2025-12-12 07:37:49 -07:00
2025-06-30 10:17:05 -07:00
2025-06-30 10:17:05 -07:00
2025-06-30 10:17:05 -07:00
2025-06-09 15:52:24 +01:00
2025-07-17 14:18:21 -04:00
2025-07-25 14:48:01 -07:00
2025-09-17 09:15:13 -07:00
2025-12-12 07:37:49 -07:00
2025-06-30 10:17:05 -07:00
2025-12-12 07:37:49 -07:00
2025-06-30 10:17:05 -07:00
2025-06-30 10:17:05 -07:00
2025-06-30 10:17:05 -07:00
2025-06-30 10:17:05 -07:00
2025-06-30 10:17:05 -07:00
2025-06-30 10:17:05 -07:00
2025-10-10 10:08:39 -07:00
2025-11-14 08:23:24 -08:00
2026-01-19 11:00:05 -08:00
2025-07-17 14:18:21 -04:00
2025-07-17 14:18:21 -04:00
2025-07-17 14:18:21 -04:00
2025-07-17 14:18:21 -04:00
2025-07-17 14:18:21 -04:00
2025-10-10 10:09:33 -07:00
2025-07-17 14:18:21 -04:00
2025-07-17 14:18:21 -04:00
2025-07-17 14:18:21 -04:00
2025-07-17 14:18:21 -04:00
2025-06-09 15:52:24 +01:00
2025-12-12 07:37:49 -07:00
2025-06-30 10:17:05 -07:00
2025-10-10 10:09:33 -07:00
2026-01-22 13:08:48 -08:00
2025-07-16 09:09:49 -07:00
2025-06-16 14:37:01 -07:00
2025-06-16 14:37:01 -07:00
2025-06-16 14:37:01 -07:00
2025-06-16 14:37:01 -07:00
2025-06-16 14:37:01 -07:00
2026-01-22 13:08:48 -08:00
2025-07-16 09:09:49 -07:00
2025-06-16 14:37:01 -07:00
2025-06-16 14:37:01 -07:00
2025-07-16 09:09:49 -07:00
2025-06-30 10:17:05 -07:00
2025-08-29 07:48:24 -07:00
2025-12-31 12:42:06 -08:00
2025-11-12 06:04:09 -05:00
2025-08-13 14:36:13 -07:00
2025-07-04 08:43:57 +01:00
2026-01-08 13:28:48 -05:00