public inbox for gcc-cvs@sourceware.org
help / color / mirror / Atom feed
* [gcc/devel/omp/gcc-12] DWARF address space for variables
@ 2022-06-29 14:38 Kwok Yeung
  0 siblings, 0 replies; only message in thread
From: Kwok Yeung @ 2022-06-29 14:38 UTC (permalink / raw)
  To: gcc-cvs

https://gcc.gnu.org/g:037c0d9acde83f73f6babfc6cee1c4763ec63c57

commit 037c0d9acde83f73f6babfc6cee1c4763ec63c57
Author: Andrew Stubbs <ams@codesourcery.com>
Date:   Fri Jan 15 11:26:46 2021 +0000

    DWARF address space for variables
    
    Add DWARF address class attributes for variables that exist outside the
    generic address space.  In particular, this is the case for gang-private
    variables in OpenACC offload kernels.
    
    gcc/ChangeLog:
    
            * dwarf2out.cc (add_location_or_const_value_attribute): Set
            DW_AT_address_class, if appropriate.

Diff:
---
 gcc/ChangeLog.omp | 5 +++++
 gcc/dwarf2out.cc  | 9 +++++++++
 2 files changed, 14 insertions(+)

diff --git a/gcc/ChangeLog.omp b/gcc/ChangeLog.omp
index 4346ea0411c..5f473611046 100644
--- a/gcc/ChangeLog.omp
+++ b/gcc/ChangeLog.omp
@@ -1,3 +1,8 @@
+2021-01-15  Andrew Stubbs  <ams@codesourcery.com>
+
+	* dwarf2out.cc (add_location_or_const_value_attribute): Set
+	DW_AT_address_class, if appropriate.
+
 2020-12-06  Andrew Stubbs  <ams@codesourcery.com>
 
 	* dwarf2out.cc (gen_subprogram_die): Add high/low_pc attributes for
diff --git a/gcc/dwarf2out.cc b/gcc/dwarf2out.cc
index dfdc0426cf1..50b5b1925b3 100644
--- a/gcc/dwarf2out.cc
+++ b/gcc/dwarf2out.cc
@@ -20881,6 +20881,15 @@ add_location_or_const_value_attribute (dw_die_ref die, tree decl, bool cache_p)
   if (list)
     {
       add_AT_location_description (die, DW_AT_location, list);
+
+      addr_space_t as = TYPE_ADDR_SPACE (TREE_TYPE (decl));
+      if (!ADDR_SPACE_GENERIC_P (as))
+	{
+	  int action = targetm.addr_space.debug (as);
+	  /* Positive values indicate an address_class.  */
+	  if (action >= 0)
+	    add_AT_unsigned (die, DW_AT_address_class, action);
+	}
       return true;
     }
   /* None of that worked, so it must not really have a location;


^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2022-06-29 14:38 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-06-29 14:38 [gcc/devel/omp/gcc-12] DWARF address space for variables Kwok Yeung

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).