public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [patch,openacc] handle missing OMP_LIST_ clauses in fortran's parse tree debugger
@ 2018-09-20 17:36 Cesar Philippidis
       [not found] ` <CAGkQGiLr23XzayZ77i+sNnfgtTpj74Jvhq_2WyzriFo7JFkYfw@mail.gmail.com>
  0 siblings, 1 reply; 2+ messages in thread
From: Cesar Philippidis @ 2018-09-20 17:36 UTC (permalink / raw)
  To: Fortran List, gcc-patches

[-- Attachment #1: Type: text/plain, Size: 346 bytes --]

This patch updates Fortran's parse tree printer to print the names of
new OpenACC data clauses. I'm not if this functionality is widely used
or not, but from a standpoint of correctness, this patch would probably
be nice to have.

It this patch OK for trunk? I bootstrapped and regtested it for x86_64
Linux with nvptx offloading.

Thanks,
Cesar

[-- Attachment #2: 0001-handle-missing-OMP_LIST_-clauses-in-fortran-s-parse-.patch --]
[-- Type: text/x-patch, Size: 2096 bytes --]

[OpenACC] handle missing OMP_LIST_ clauses in fortran's parse tree debugger

2018-XX-YY  Cesar Philippidis  <cesar@codesourcery.com>

	gcc/fortran/
	* dump-parse-tree.c (show_omp_clauses): Add missing omp list_types
	and reorder the switch cases to match the enum in gfortran.h.

(cherry picked from gomp-4_0-branch r228355, 159518d)
---
 gcc/fortran/dump-parse-tree.c | 13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)

diff --git a/gcc/fortran/dump-parse-tree.c b/gcc/fortran/dump-parse-tree.c
index 2a28fa30986..f1be5a67a26 100644
--- a/gcc/fortran/dump-parse-tree.c
+++ b/gcc/fortran/dump-parse-tree.c
@@ -1384,21 +1384,26 @@ show_omp_clauses (gfc_omp_clauses *omp_clauses)
 	const char *type = NULL;
 	switch (list_type)
 	  {
-	  case OMP_LIST_USE_DEVICE: type = "USE_DEVICE"; break;
-	  case OMP_LIST_DEVICE_RESIDENT: type = "USE_DEVICE"; break;
-	  case OMP_LIST_CACHE: type = ""; break;
 	  case OMP_LIST_PRIVATE: type = "PRIVATE"; break;
 	  case OMP_LIST_FIRSTPRIVATE: type = "FIRSTPRIVATE"; break;
 	  case OMP_LIST_LASTPRIVATE: type = "LASTPRIVATE"; break;
+	  case OMP_LIST_COPYPRIVATE: type = "COPYPRIVATE"; break;
 	  case OMP_LIST_SHARED: type = "SHARED"; break;
 	  case OMP_LIST_COPYIN: type = "COPYIN"; break;
 	  case OMP_LIST_UNIFORM: type = "UNIFORM"; break;
 	  case OMP_LIST_ALIGNED: type = "ALIGNED"; break;
 	  case OMP_LIST_LINEAR: type = "LINEAR"; break;
+	  case OMP_LIST_DEPEND: type = "DEPEND"; break;
+	  case OMP_LIST_MAP: type = "MAP"; break;
+	  case OMP_LIST_TO: type = "TO"; break;
+	  case OMP_LIST_FROM: type = "FROM"; break;
 	  case OMP_LIST_REDUCTION: type = "REDUCTION"; break;
+	  case OMP_LIST_DEVICE_RESIDENT: type = "DEVICE_RESIDENT"; break;
+	  case OMP_LIST_LINK: type = "LINK"; break;
+	  case OMP_LIST_USE_DEVICE: type = "USE_DEVICE"; break;
+	  case OMP_LIST_CACHE: type = "CACHE"; break;
 	  case OMP_LIST_IS_DEVICE_PTR: type = "IS_DEVICE_PTR"; break;
 	  case OMP_LIST_USE_DEVICE_PTR: type = "USE_DEVICE_PTR"; break;
-	  case OMP_LIST_DEPEND: type = "DEPEND"; break;
 	  default:
 	    gcc_unreachable ();
 	  }
-- 
2.17.1


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [patch,openacc] handle missing OMP_LIST_ clauses in fortran's parse tree debugger
       [not found] ` <CAGkQGiLr23XzayZ77i+sNnfgtTpj74Jvhq_2WyzriFo7JFkYfw@mail.gmail.com>
@ 2018-09-20 18:53   ` Cesar Philippidis
  0 siblings, 0 replies; 2+ messages in thread
From: Cesar Philippidis @ 2018-09-20 18:53 UTC (permalink / raw)
  To: Paul Richard Thomas; +Cc: Fortran List, gcc-patches

On 09/20/2018 11:22 AM, Paul Richard Thomas wrote:
> Hi Cesar,
> 
> It looks OK to me.
> 
> Thanks for the patch.
> 
> Paul

Thanks! Committed in r264446.

Cesar

> On 20 September 2018 at 18:21, Cesar Philippidis <cesar@codesourcery.com> wrote:
>> This patch updates Fortran's parse tree printer to print the names of
>> new OpenACC data clauses. I'm not if this functionality is widely used
>> or not, but from a standpoint of correctness, this patch would probably
>> be nice to have.
>>
>> It this patch OK for trunk? I bootstrapped and regtested it for x86_64
>> Linux with nvptx offloading.
>>
>> Thanks,
>> Cesar
> 
> 
> 

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2018-09-20 18:43 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-09-20 17:36 [patch,openacc] handle missing OMP_LIST_ clauses in fortran's parse tree debugger Cesar Philippidis
     [not found] ` <CAGkQGiLr23XzayZ77i+sNnfgtTpj74Jvhq_2WyzriFo7JFkYfw@mail.gmail.com>
2018-09-20 18:53   ` Cesar Philippidis

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).