public inbox for gcc-patches@gcc.gnu.org
 help / color / mirror / Atom feed
From: Andrew MacLeod <amacleod@redhat.com>
To: Thomas Schwinge <thomas@codesourcery.com>,
	Tobias Burnus <tobias@codesourcery.com>,
	gcc-patches@gcc.gnu.org, fortran@gcc.gnu.org
Cc: Jakub Jelinek <jakub@redhat.com>
Subject: Re: [Patch] OpenMP: Minor '!$omp allocators' cleanup - and still: Re: [patch] OpenMP/Fortran: Implement omp allocators/allocate for ptr/allocatables
Date: Mon, 11 Dec 2023 18:45:11 -0500	[thread overview]
Message-ID: <80e99500-163a-46be-96de-f35b2ee08e52@redhat.com> (raw)
In-Reply-To: <878r60s81l.fsf@euler.schwinge.homeip.net>


On 12/11/23 17:12, Thomas Schwinge wrote:
> Hi!
>
> This issue would've been prevented if we'd actually use a distinct C++
> data type for GCC types, checkable at compile time -- I'm thus CCing
> Andrew MacLeod for amusement or crying, "one more for the list!".  ;-\

Perhaps the time has come....  It is definitely under re-consideration 
for next stage 1...

Andrew

> (See
> <https://inbox.sourceware.org/1acd7994-2440-4092-897f-97f14d3fbf45@redhat.com>
> "[TTYPE] Strongly typed tree project. Original document circa 2017".)
>
> On 2023-12-11T12:45:27+0100, Tobias Burnus <tobias@codesourcery.com> wrote:
>> I included a minor cleanup patch [...]
>>
>> I intent to commit that patch as obvious, unless there are further comments.
>> OpenMP: Minor '!$omp allocators' cleanup
>> --- a/gcc/fortran/trans-openmp.cc
>> +++ b/gcc/fortran/trans-openmp.cc
>> @@ -8361,8 +8361,10 @@ gfc_omp_call_add_alloc (tree ptr)
>>     if (fn == NULL_TREE)
>>       {
>>         fn = build_function_type_list (void_type_node, ptr_type_node, NULL_TREE);
>> +      tree att = build_tree_list (NULL_TREE, build_string (4, ". R "));
>> +      att = tree_cons (get_identifier ("fn spec"), att, TYPE_ATTRIBUTES (fn));
>> +      fn = build_type_attribute_variant (fn, att);
>>         fn = build_fn_decl ("GOMP_add_alloc", fn);
>> -/* FIXME: attributes.  */
>>       }
>>     return build_call_expr_loc (input_location, fn, 1, ptr);
>>   }
>> @@ -8380,7 +8382,9 @@ gfc_omp_call_is_alloc (tree ptr)
>>         fn = build_function_type_list (boolean_type_node, ptr_type_node,
>>                                     NULL_TREE);
>>         fn = build_fn_decl ("GOMP_is_alloc", fn);
>> -/* FIXME: attributes.  */
>> +      tree att = build_tree_list (NULL_TREE, build_string (4, ". R "));
>> +      att = tree_cons (get_identifier ("fn spec"), att, TYPE_ATTRIBUTES (fn));
>> +      fn = build_type_attribute_variant (fn, att);
>>       }
>>     return build_call_expr_loc (input_location, fn, 1, ptr);
>>   }
> Pushed to master branch commit 453e0f45a49f425992bc47ff8909ed8affc29d2e
> "Resolve ICE in 'gcc/fortran/trans-openmp.cc:gfc_omp_call_is_alloc'", see
> attached.
>
>
> Grüße
>   Thomas
>
>
> -----------------
> Siemens Electronic Design Automation GmbH; Anschrift: Arnulfstraße 201, 80634 München; Gesellschaft mit beschränkter Haftung; Geschäftsführer: Thomas Heurung, Frank Thürauf; Sitz der Gesellschaft: München; Registergericht München, HRB 106955


      reply	other threads:[~2023-12-11 23:45 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-11-08 16:58 Tobias Burnus
2023-12-08 12:04 ` Jakub Jelinek
2023-12-09 11:19 ` Thomas Schwinge
2023-12-09 15:14   ` Jakub Jelinek
2023-12-11 11:45     ` [Patch] OpenMP: Minor '!$omp allocators' cleanup - and still: " Tobias Burnus
2023-12-11 22:12       ` Thomas Schwinge
2023-12-11 23:45         ` Andrew MacLeod [this message]

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=80e99500-163a-46be-96de-f35b2ee08e52@redhat.com \
    --to=amacleod@redhat.com \
    --cc=fortran@gcc.gnu.org \
    --cc=gcc-patches@gcc.gnu.org \
    --cc=jakub@redhat.com \
    --cc=thomas@codesourcery.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).