Fix target/93119 (aarch64): ICE with traditional TLS support on ILP32
authorAndrew Pinski <apinski@marvell.com>
Fri, 17 Jan 2020 06:54:53 +0000 (06:54 +0000)
committerAndrew Pinski <apinski@marvell.com>
Wed, 22 Jan 2020 01:31:54 +0000 (01:31 +0000)
The problem here was g:23b88fda665d2f995c was not a complete fix
for supporting tranditional TLS on ILP32.

So the problem here is a couple of things, first __tls_get_addr
call will return a C pointer value so we need to use ptr_mode
when we are creating the call.  Then we need to convert
back that register to the correct mode, either zero extending
it or just creating a move instruction.
Also symbol_ref can either be in SImode or DImode.  So we need to
allow both modes.

Built and tested on aarch64-linux-gnu with no regressions.
Also built a full toolchain (including glibc) defaulting to traditional
TLS that targets ilp32 and lp64.

ChangeLog:
PR target/93119
* config/aarch64/aarch64.md (tlsgd_small_<mode>): Have operand 0
as PTR mode. Have operand 1 as being modeless, it can be P mode.
(*tlsgd_small_<mode>): Likewise.
* config/aarch64/aarch64.c (aarch64_load_symref_appropriately)
<case SYMBOL_SMALL_TLSGD>: Call gen_tlsgd_small_* with a ptr_mode
register.  Convert that register back to dest using convert_mode.

gcc/ChangeLog
gcc/config/aarch64/aarch64.c
gcc/config/aarch64/aarch64.md
gcc/testsuite/ChangeLog
gcc/testsuite/gcc.target/aarch64/pr93119.c [new file with mode: 0644]

index 2f6e603df7a8eeb9d70f329a5037b7fdddd181c7..85cf788cc5062ce76bec8def1e8cba1cef9cffba 100644 (file)
@@ -1,3 +1,14 @@
+2020-01-21  Andrew Pinski  <apinski@marvell.com>
+
+       PR target/9311
+       * config/aarch64/aarch64.md (tlsgd_small_<mode>): Have operand 0
+       as PTR mode. Have operand 1 as being modeless, it can be P mode.
+       (*tlsgd_small_<mode>): Likewise.
+       * config/aarch64/aarch64.c (aarch64_load_symref_appropriately)
+       <case SYMBOL_SMALL_TLSGD>: Call gen_tlsgd_small_* with a ptr_mode
+       register.  Convert that register back to dest using convert_mode.
+
+
 2020-01-21  Jim Wilson  <jimw@sifive.com>
 
        * config/riscv/riscv-sr.c (riscv_sr_match_prologue): Use INTVAL
index ef037e226a78750939ac23fbe2d22929f188c65e..9acf33dbe6413a2bbce8d4537ff54e9266bed61f 100644 (file)
@@ -2607,11 +2607,16 @@ aarch64_load_symref_appropriately (rtx dest, rtx imm,
     case SYMBOL_SMALL_TLSGD:
       {
        rtx_insn *insns;
-       machine_mode mode = GET_MODE (dest);
-       rtx result = gen_rtx_REG (mode, R0_REGNUM);
+       /* The return type of __tls_get_addr is the C pointer type
+          so use ptr_mode.  */
+       rtx result = gen_rtx_REG (ptr_mode, R0_REGNUM);
+       rtx tmp_reg = dest;
+
+       if (GET_MODE (dest) != ptr_mode)
+         tmp_reg = can_create_pseudo_p () ? gen_reg_rtx (ptr_mode) : result;
 
        start_sequence ();
-       if (TARGET_ILP32)
+       if (ptr_mode == SImode)
          aarch64_emit_call_insn (gen_tlsgd_small_si (result, imm));
        else
          aarch64_emit_call_insn (gen_tlsgd_small_di (result, imm));
@@ -2619,7 +2624,11 @@ aarch64_load_symref_appropriately (rtx dest, rtx imm,
        end_sequence ();
 
        RTL_CONST_CALL_P (insns) = 1;
-       emit_libcall_block (insns, dest, result, imm);
+       emit_libcall_block (insns, tmp_reg, result, imm);
+       /* Convert back to the mode of the dest adding a zero_extend
+          from SImode (ptr_mode) to DImode (Pmode). */
+       if (dest != tmp_reg)
+         convert_move (dest, tmp_reg, true);
        return;
       }
 
index 86c2cdfc7973f4b964ba233cfbbe369b24e0ac10..55dde54b16a5ce8292a6ed86058102732cad522f 100644 (file)
 ;; instructions in the TLS stubs, in order to enable linker relaxation.
 ;; Therefore we treat the stubs as an atomic sequence.
 (define_expand "tlsgd_small_<mode>"
- [(parallel [(set (match_operand 0 "register_operand")
+ [(parallel [(set (match_operand:PTR 0 "register_operand")
                   (call (mem:DI (match_dup 2)) (const_int 1)))
             (unspec:DI [(const_int 0)] UNSPEC_CALLEE_ABI)
-            (unspec:DI [(match_operand:PTR 1 "aarch64_valid_symref")] UNSPEC_GOTSMALLTLS)
+            (unspec:DI [(match_operand 1 "aarch64_valid_symref")] UNSPEC_GOTSMALLTLS)
             (clobber (reg:DI LR_REGNUM))])]
  ""
 {
 })
 
 (define_insn "*tlsgd_small_<mode>"
-  [(set (match_operand 0 "register_operand" "")
+  [(set (match_operand:PTR 0 "register_operand" "")
        (call (mem:DI (match_operand:DI 2 "" "")) (const_int 1)))
    (unspec:DI [(const_int 0)] UNSPEC_CALLEE_ABI)
-   (unspec:DI [(match_operand:PTR 1 "aarch64_valid_symref" "S")] UNSPEC_GOTSMALLTLS)
+   (unspec:DI [(match_operand 1 "aarch64_valid_symref" "S")] UNSPEC_GOTSMALLTLS)
    (clobber (reg:DI LR_REGNUM))
   ]
   ""
index f72c98797284014be98d20bcb2c7e640d531b4ae..1be1b59ac02374125bf61d092bb5260e4e93a965 100644 (file)
@@ -1,3 +1,8 @@
+2020-01-21  Andrew Pinski  <apinski@marvell.com>
+
+       PR target/93119
+       * gcc.target/aarch64/pr93119.c: New test.
+
 2020-01-22  Joseph Myers  <joseph@codesourcery.com>
 
        PR c/93348
diff --git a/gcc/testsuite/gcc.target/aarch64/pr93119.c b/gcc/testsuite/gcc.target/aarch64/pr93119.c
new file mode 100644 (file)
index 0000000..93fa80e
--- /dev/null
@@ -0,0 +1,10 @@
+/* { dg-require-effective-target fpic } */
+/* { dg-options "-mtls-dialect=trad -fpic" } */
+
+__thread int g_tlsdata;
+
+int func1()
+{
+  g_tlsdata++;
+  return g_tlsdata;
+}