public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: Chung-Lin Tang <cltang@codesourcery.com>
To: Jakub Jelinek <jakub@redhat.com>
Cc: Tobias Burnus <tobias@codesourcery.com>,
	gcc-patches <gcc-patches@gcc.gnu.org>,
	Hafiz Abid Qadeer <abid_qadeer@mentor.com>,
	Andrew Stubbs <ams@codesourcery.com>
Subject: Re: [PATCH, OpenMP, v4] Implement uses_allocators clause for target regions
Date: Mon, 13 Jun 2022 21:29:34 +0800	[thread overview]
Message-ID: <075e0483-6d7b-3bbc-a718-b0872a870f85@codesourcery.com> (raw)
In-Reply-To: <YqHmHUdMyxgox/U8@tucnak>

On 2022/6/9 8:22 PM, Jakub Jelinek wrote:
>> +   OpenMP 5.2:
>> +
>> +   uses_allocators ( modifier : allocator-list )
> Please drop the -list above.
> 
>> +   uses_allocators ( modifier , modifier : allocator-list )
> and here too.

Thanks for catching.

>> +  struct item_tok
>> +  {
>> +    location_t loc;
>> +    tree id;
>> +    item_tok (void) : loc (UNKNOWN_LOCATION), id (NULL_TREE) {}
>> +  };
>> +  struct item { item_tok name, arg; };
>> +  auto_vec<item> *modifiers = NULL, *allocators = NULL;
>> +  auto_vec<item> *cur_list = new auto_vec<item> (4);
> I was hoping you'd drop all this.
> Seehttps://gcc.gnu.org/r13-1002
> for implementation (both C and C++ FE) of something very similar,
> the only difference there is that in the case of linear clause, it is
> looking for
> val
> ref
> uval
> step ( whatever )
> followed by , or )
> (anod ref and uval not in C FE),
> while you are looking for
> memspace ( whatever )
> traits ( whatever )
> followed by : or by , (in case of , repeat).
> But in both cases you can actually use the same parser APIs
> for raw token pre-parsing to just compute if it is the modifier
> syntax or not, set bool has_modifiers based on that (when you
> come over probably valid syntax followed by CPP_COLON).

The linear clause doesn't have the legacy 'allocator1(t1), allocator2(t2), ...' requirement,
and c_parser_omp_variable_list doesn't seem to support this pattern.

Also, the way c_parser_omp_clause_linear is implemented doesn't support the requirement
you mentioned earlier of allowing the use of "memspace", "traits" as the allocator name when
it's actually not a modifier.

I have merged the v4 patch with the syntax comments updated as above to devel/omp/gcc-11.

Thanks,
Chung-Lin


  reply	other threads:[~2022-06-13 13:29 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-05-06 13:20 [PATCH, OpenMP] " Chung-Lin Tang
2022-05-06 16:40 ` Tobias Burnus
2022-05-10 11:29   ` [PATCH, OpenMP, v2] " Chung-Lin Tang
2022-05-19 16:00     ` Jakub Jelinek
2022-05-19 17:02       ` Andrew Stubbs
2022-05-19 17:55         ` Jakub Jelinek
2022-05-20  6:59       ` Tobias Burnus
2022-05-19 17:46     ` Jakub Jelinek
2022-05-30 14:43       ` Chung-Lin Tang
2022-05-30 17:23         ` Jakub Jelinek
2022-05-31 10:02           ` Jakub Jelinek
2022-06-06 13:19             ` Chung-Lin Tang
2022-06-06 13:22               ` Jakub Jelinek
2022-06-06 13:38                 ` Chung-Lin Tang
2022-06-06 13:42                   ` Jakub Jelinek
2022-06-09  6:21             ` [PATCH, OpenMP, v4] " Chung-Lin Tang
2022-06-09 12:22               ` Jakub Jelinek
2022-06-13 13:29                 ` Chung-Lin Tang [this message]
2022-06-13 14:04                   ` Jakub Jelinek
2023-02-09 11:26 ` [og12] '{c-c++-common,gfortran.dg}/gomp/uses_allocators-*' -> 'libgomp.{c-c++-common,fortran}/uses_allocators-*' (was: [PATCH, OpenMP] Implement uses_allocators clause for target regions) Thomas Schwinge

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=075e0483-6d7b-3bbc-a718-b0872a870f85@codesourcery.com \
    --to=cltang@codesourcery.com \
    --cc=abid_qadeer@mentor.com \
    --cc=ams@codesourcery.com \
    --cc=gcc-patches@gcc.gnu.org \
    --cc=jakub@redhat.com \
    --cc=tobias@codesourcery.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).