From: liuhongt Date: Tue, 8 Sep 2020 07:44:58 +0000 (+0800) Subject: Implement __builtin_thread_pointer for x86 TLS. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=e470d8af81d390df1166e9d9cf10b00c0692a495;p=gcc.git Implement __builtin_thread_pointer for x86 TLS. gcc/ChangeLog: PR target/96955 * config/i386/i386.md (get_thread_pointer): New expander. gcc/testsuite/ChangeLog: * gcc.target/i386/builtin_thread_pointer.c: New test. --- diff --git a/gcc/config/i386/i386.md b/gcc/config/i386/i386.md index 446793b78db..93aae8123fd 100644 --- a/gcc/config/i386/i386.md +++ b/gcc/config/i386/i386.md @@ -15433,6 +15433,16 @@ (clobber (reg:CC FLAGS_REG))])]) ;; Load and add the thread base pointer from %:0. +(define_expand "get_thread_pointer" + [(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_" [(set (match_operand:PTR 0 "register_operand" "=r") (unspec:PTR [(const_int 0)] UNSPEC_TP))] diff --git a/gcc/testsuite/gcc.target/i386/builtin_thread_pointer.c b/gcc/testsuite/gcc.target/i386/builtin_thread_pointer.c new file mode 100644 index 00000000000..dce31488117 --- /dev/null +++ b/gcc/testsuite/gcc.target/i386/builtin_thread_pointer.c @@ -0,0 +1,28 @@ +/* { 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" } } */