gcc/ChangeLog:
PR target/96955
* config/i386/i386.md (get_thread_pointer<mode>): New
expander.
gcc/testsuite/ChangeLog:
* gcc.target/i386/builtin_thread_pointer.c: New test.
(clobber (reg:CC FLAGS_REG))])])
;; Load and add the thread base pointer from %<tp_seg>:0.
+(define_expand "get_thread_pointer<mode>"
+ [(set (match_operand:PTR 0 "register_operand")
+ (unspec:PTR [(const_int 0)] UNSPEC_TP))]
+ ""
+{
+ /* targetm is not visible in the scope of the condition. */
+ if (!targetm.have_tls)
+ error ("%<__builtin_thread_pointer%> is not supported on this target");
+})
+
(define_insn_and_split "*load_tp_<mode>"
[(set (match_operand:PTR 0 "register_operand" "=r")
(unspec:PTR [(const_int 0)] UNSPEC_TP))]
--- /dev/null
+/* { dg-do compile } */
+/* { dg-options "-mtls-direct-seg-refs -O2 -masm=att" } */
+
+int*
+foo1 ()
+{
+ return (int*) __builtin_thread_pointer ();
+}
+
+/* { dg-final { scan-assembler "mov\[lq\]\[ \t\]*%\[fg\]s:0, %\[re\]ax" } } */
+
+int
+foo2 ()
+{
+ int* p = (int*) __builtin_thread_pointer ();
+ return p[4];
+}
+
+/* { dg-final { scan-assembler "movl\[ \t\]*%\[fg\]s:16, %eax" } } */
+
+int
+foo3 (int i)
+{
+ int* p = (int*) __builtin_thread_pointer ();
+ return p[i];
+}
+
+/* { dg-final { scan-assembler "movl\[ \t\]*%\[fg\]s:0\\(,%\[a-z0-9\]*,4\\), %eax" } } */