Add x32 support to TLS_LE/TLS_IE/TLS_GD
authorH.J. Lu <hjl.tools@gmail.com>
Fri, 11 May 2012 21:35:56 +0000 (14:35 -0700)
committerH.J. Lu <hjl.tools@gmail.com>
Fri, 11 May 2012 21:35:56 +0000 (14:35 -0700)
ChangeLog
elf/tls-macros.h

index d3a2a8e..9d8a713 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,12 @@
+2012-05-11  H.J. Lu  <hongjiu.lu@intel.com>
+
+       * elf/tls-macros.h (TLS_LE): Use mov instead of movq to load
+       thread pointer.
+       (TLS_IE): Use mov/add instead of movq/addq to load thread
+       pointer.
+       (TLS_GD_PREFIX): New.
+       (TLS_GD): Use it.
+
 2012-05-11  David S. Miller  <davem@davemloft.net>
 
        * sysdeps/sparc/fpu/bits/fenv.h (__fenv_stfsr): Add __volatile__.
index ea6f14f..e753d5c 100644 (file)
 
 # define TLS_LE(x) \
   ({ int *__l;                                                               \
-     asm ("movq %%fs:0,%0\n\t"                                               \
-         "leaq " #x "@tpoff(%0), %0"                                         \
+     asm ("mov %%fs:0,%0\n\t"                                                \
+         "lea " #x "@tpoff(%0), %0"                                          \
          : "=r" (__l));                                                      \
      __l; })
 
 # define TLS_IE(x) \
   ({ int *__l;                                                               \
-     asm ("movq %%fs:0,%0\n\t"                                               \
-         "addq " #x "@gottpoff(%%rip),%0"                                    \
+     asm ("mov %%fs:0,%0\n\t"                                                \
+         "add " #x "@gottpoff(%%rip),%0"                                     \
          : "=r" (__l));                                                      \
      __l; })
 
          : : "rdi", "rsi", "r8", "r9", "r10", "r11");                        \
      __l; })
 
+# ifdef __ILP32__
+#  define TLS_GD_PREFIX
+# else
+#  define TLS_GD_PREFIX        ".byte 0x66\n\t"
+# endif
+
 # define TLS_GD(x) \
   ({ int *__l, __c, __d;                                                     \
-     asm (".byte 0x66\n\t"                                                   \
+     asm (TLS_GD_PREFIX                                                              \
          "leaq " #x "@tlsgd(%%rip),%%rdi\n\t"                                \
          ".word 0x6666\n\t"                                                  \
          "rex64\n\t"                                                         \