]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
amdgcn: DWARF address spaces
authorAndrew Stubbs <ams@codesourcery.com>
Wed, 7 Oct 2020 13:15:22 +0000 (14:15 +0100)
committerKwok Cheung Yeung <kcy@codesourcery.com>
Thu, 22 Apr 2021 17:14:31 +0000 (10:14 -0700)
Map GCN address spaces to the proposed DWARF address spaces defined by AMD.

gcc/ChangeLog:

* config/gcn/gcn.c: Include dwarf2.h.
(gcn_addr_space_debug): New function.
(TARGET_ADDR_SPACE_DEBUG): New hook.

gcc/config/gcn/gcn.c

index 784bae434198e1184430481b416c4ce0e32d0efd..3d73ca59c31b73e53ebdb9fe3cdce1daac1db983 100644 (file)
@@ -51,6 +51,7 @@
 #include "intl.h"
 #include "rtl-iter.h"
 #include "gimple.h"
+#include "dwarf2.h"
 
 /* This file should be included last.  */
 #include "target-def.h"
@@ -1516,6 +1517,31 @@ gcn_addr_space_convert (rtx op, tree from_type, tree to_type)
     gcc_unreachable ();
 }
 
+/* Implement TARGET_ADDR_SPACE_DEBUG.
+
+   Return the dwarf address space class for each hardware address space.  */
+
+static int
+gcn_addr_space_debug (addr_space_t as)
+{
+  switch (as)
+    {
+      case ADDR_SPACE_DEFAULT:
+      case ADDR_SPACE_FLAT:
+      case ADDR_SPACE_GLOBAL:
+      case ADDR_SPACE_SCALAR_FLAT:
+      case ADDR_SPACE_FLAT_SCRATCH:
+       return DW_ADDR_none;
+      case ADDR_SPACE_LDS:
+       return 3;      // DW_ADDR_LLVM_group
+      case ADDR_SPACE_SCRATCH:
+       return 4;      // DW_ADDR_LLVM_private
+      case ADDR_SPACE_GDS:
+       return 0x8000; // DW_ADDR_AMDGPU_region
+    }
+  gcc_unreachable ();
+}
+
 
 /* Implement REGNO_MODE_CODE_OK_FOR_BASE_P via gcn.h
    
@@ -6397,6 +6423,8 @@ gcn_dwarf_register_span (rtx rtl)
 
 #undef  TARGET_ADDR_SPACE_ADDRESS_MODE
 #define TARGET_ADDR_SPACE_ADDRESS_MODE gcn_addr_space_address_mode
+#undef  TARGET_ADDR_SPACE_DEBUG
+#define TARGET_ADDR_SPACE_DEBUG gcn_addr_space_debug
 #undef  TARGET_ADDR_SPACE_LEGITIMATE_ADDRESS_P
 #define TARGET_ADDR_SPACE_LEGITIMATE_ADDRESS_P \
   gcn_addr_space_legitimate_address_p