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.
+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
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;