public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
From: Tobias Burnus <burnus@gcc.gnu.org>
To: gcc-cvs@gcc.gnu.org
Subject: [gcc r14-6412] OpenMP: Minor '!$omp allocators' cleanup
Date: Mon, 11 Dec 2023 14:08:56 +0000 (GMT)	[thread overview]
Message-ID: <20231211140856.8D49D3858CD1@sourceware.org> (raw)

https://gcc.gnu.org/g:2505a8b41d3b74a545755a278f3750a29c1340b6

commit r14-6412-g2505a8b41d3b74a545755a278f3750a29c1340b6
Author: Tobias Burnus <tobias@codesourcery.com>
Date:   Mon Dec 11 15:08:07 2023 +0100

    OpenMP: Minor '!$omp allocators' cleanup
    
    gcc/fortran/ChangeLog:
    
            * trans-openmp.cc (gfc_omp_call_add_alloc,
            gfc_omp_call_is_alloc): Set 'fn spec'.
    
    libgomp/ChangeLog:
    
            * libgomp_g.h (GOMP_add_alloc, GOMP_is_alloc): Add.

Diff:
---
 gcc/fortran/trans-openmp.cc | 8 ++++++--
 libgomp/libgomp_g.h         | 3 +++
 2 files changed, 9 insertions(+), 2 deletions(-)

diff --git a/gcc/fortran/trans-openmp.cc b/gcc/fortran/trans-openmp.cc
index 9e166c94f8e..95184920cf7 100644
--- 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);
 }
diff --git a/libgomp/libgomp_g.h b/libgomp/libgomp_g.h
index 95046312ae9..ec619f255f2 100644
--- a/libgomp/libgomp_g.h
+++ b/libgomp/libgomp_g.h
@@ -366,6 +366,9 @@ extern void GOMP_teams_reg (void (*) (void *), void *, unsigned, unsigned,
 
 /* allocator.c */
 
+extern void GOMP_add_alloc (void *);
+extern bool GOMP_is_alloc (void *);
+
 extern void *GOMP_alloc (size_t, size_t, uintptr_t);
 extern void GOMP_free (void *, uintptr_t);

                 reply	other threads:[~2023-12-11 14:08 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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=20231211140856.8D49D3858CD1@sourceware.org \
    --to=burnus@gcc.gnu.org \
    --cc=gcc-cvs@gcc.gnu.org \
    /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).