]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
aix: revert TLS common change
authorDavid Edelsohn <dje.gcc@gmail.com>
Thu, 8 Apr 2021 01:34:02 +0000 (21:34 -0400)
committerDavid Edelsohn <dje.gcc@gmail.com>
Thu, 8 Apr 2021 21:40:23 +0000 (17:40 -0400)
GCC uses TLS common for both public common / BSS and local common / BSS.
This patch reverts to use .comm directive to allocate TLS
common / BSS.  This also changes the priority of section selection
to use BSS before data section.

gcc/ChangeLog:

* config/rs6000/rs6000.c (rs6000_xcoff_select_section): Select
TLS BSS before TLS data.
* config/rs6000/xcoff.h (ASM_OUTPUT_TLS_COMMON): Use .comm.

gcc/testsuite/ChangeLog:

* g++.dg/gomp/tls-5.C: Expect tbss failure on AIX.

gcc/config/rs6000/rs6000.c
gcc/config/rs6000/xcoff.h
gcc/testsuite/g++.dg/gomp/tls-5.C

index 35f5c332c41ca3d74695281ced1d63c6de9fe0b5..48b8efd732b251c059628096314848305deb0c0b 100644 (file)
@@ -21285,14 +21285,14 @@ rs6000_xcoff_select_section (tree decl, int reloc,
 #if HAVE_AS_TLS
       if (TREE_CODE (decl) == VAR_DECL && DECL_THREAD_LOCAL_P (decl))
        {
-         if (TREE_PUBLIC (decl))
-           return tls_data_section;
-         else if (bss_initializer_p (decl))
+         if (bss_initializer_p (decl))
            {
              /* Convert to COMMON to emit in BSS.  */
              DECL_COMMON (decl) = 1;
              return tls_comm_section;
            }
+         else if (TREE_PUBLIC (decl))
+           return tls_data_section;
          else
            return tls_private_data_section;
        }
index cb9aae753b2b6ca1cf81d89c5129ec0e2bd8a102..c01667809a515cc6cf5c40a569c769a0b62ae9a6 100644 (file)
      } while (0)
 
 #ifdef HAVE_AS_TLS
-#define ASM_OUTPUT_TLS_COMMON(FILE, DECL, NAME, SIZE)   \
-  do { fputs (LOCAL_COMMON_ASM_OP, (FILE));             \
-       fprintf ((FILE), "%s," HOST_WIDE_INT_PRINT_UNSIGNED",%s[UL],3\n", \
-               (*targetm.strip_name_encoding) (NAME), (SIZE),  \
-               (*targetm.strip_name_encoding) (NAME)); \
+#define ASM_OUTPUT_TLS_COMMON(FILE, DECL, NAME, SIZE)  \
+  do { fputs (COMMON_ASM_OP, (FILE));                  \
+       RS6000_OUTPUT_BASENAME ((FILE), (NAME));                \
+       fprintf ((FILE), "[UL]," HOST_WIDE_INT_PRINT_UNSIGNED"\n", \
+       (SIZE));                                                \
   } while (0)
 #endif
 
index eb187b66a345c1f5cfdc5af51e91424d7a26a77d..81431e82a9679c40b78c3587960de39445693cf7 100644 (file)
@@ -1,7 +1,7 @@
 // The reference temp should be TLS, not normal data.
 // { dg-require-effective-target c++11 }
 // { dg-final { scan-assembler-not "\\.data" { target tls_native xfail powerpc-*-aix* } } }
-// { dg-final { scan-assembler-symbol-section {^_?ir$} {^\.tbss|\[TL\]} { target tls_native } } }
+// { dg-final { scan-assembler-symbol-section {^_?ir$} {^\.tbss} { target tls_native xfail powerpc-*-aix* } } }
 // { dg-final { scan-assembler-symbol-section {^_?_ZGR2ir_$} {^\.tdata|\[TL\]} { target tls_native } } }
 
 extern int&& ir;