]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
LoongArch: Disable explicit reloc for TLS LD/GD with -mexplicit-relocs=auto
authorXi Ruoyao <xry111@xry111.site>
Mon, 22 Jan 2024 10:07:42 +0000 (18:07 +0800)
committerXi Ruoyao <xry111@xry111.site>
Tue, 23 Jan 2024 08:01:59 +0000 (16:01 +0800)
Binutils 2.42 supports TLS LD/GD relaxation which requires the assembler
macro.

gcc/ChangeLog:

* config/loongarch/loongarch.cc (loongarch_explicit_relocs_p):
If la_opt_explicit_relocs is EXPLICIT_RELOCS_AUTO, return false
for SYMBOL_TLS_LDM and SYMBOL_TLS_GD.
(loongarch_call_tls_get_addr): Do not split symbols of
SYMBOL_TLS_LDM or SYMBOL_TLS_GD if la_opt_explicit_relocs is
EXPLICIT_RELOCS_AUTO.

gcc/testsuite/ChangeLog:

* gcc.target/loongarch/explicit-relocs-auto-tls-ld-gd.c: Check
for la.tls.ld and la.tls.gd.

gcc/config/loongarch/loongarch.cc
gcc/testsuite/gcc.target/loongarch/explicit-relocs-auto-tls-ld-gd.c

index 8246747428835b27eb6a92aa0eb8df651473ac40..072c68d97e30c076b79a9f4a39669cf7d98203b9 100644 (file)
@@ -1970,11 +1970,11 @@ loongarch_explicit_relocs_p (enum loongarch_symbol_type type)
     {
       case SYMBOL_TLS_IE:
       case SYMBOL_TLS_LE:
-      case SYMBOL_TLSGD:
-      case SYMBOL_TLSLDM:
       case SYMBOL_PCREL64:
-       /* The linker don't know how to relax TLS accesses or 64-bit
-          pc-relative accesses.  */
+       /* TLS IE cannot be relaxed.  TLS LE relaxation is different from
+          the normal R_LARCH_RELAX-based relaxation and it **requires**
+          using the explicit %le_{lo12,hi20,add}_r relocs.  The linker
+          does not relax 64-bit pc-relative accesses as at now.  */
        return true;
       case SYMBOL_GOT_DISP:
        /* The linker don't know how to relax GOT accesses in extreme
@@ -2789,7 +2789,7 @@ loongarch_call_tls_get_addr (rtx sym, enum loongarch_symbol_type type, rtx v0)
 
   start_sequence ();
 
-  if (la_opt_explicit_relocs != EXPLICIT_RELOCS_NONE)
+  if (la_opt_explicit_relocs == EXPLICIT_RELOCS_ALWAYS)
     {
       /* Split tls symbol to high and low.  */
       rtx high = gen_rtx_HIGH (Pmode, copy_rtx (loc));
index 957ff98df6222bfed082dadcbf4ca54b6ed56e27..ca55fcfc53e98383c9d075b3a85d2c37c6d8d95f 100644 (file)
@@ -6,4 +6,5 @@ extern __thread int b __attribute__((visibility("default")));
 
 int test() { return a + b; }
 
-/* { dg-final { scan-assembler-not "la.tls" { target tls_native } } } */
+/* { dg-final { scan-assembler "la\\.tls\\.ld" { target tls_native } } } */
+/* { dg-final { scan-assembler "la\\.tls\\.gd" { target tls_native } } } */