public inbox for glibc-cvs@sourceware.org
help / color / mirror / Atom feed
* [glibc/maskray/clang] x86: fix __arch_exchange_and_add_body
@ 2021-11-03  7:41 Fangrui Song
  0 siblings, 0 replies; 9+ messages in thread
From: Fangrui Song @ 2021-11-03  7:41 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=6c64de5ed1c3b11667c76ca0de201dd6d922405c

commit 6c64de5ed1c3b11667c76ca0de201dd6d922405c
Author: Fangrui Song <maskray@google.com>
Date:   Sun Sep 26 00:10:51 2021 -0700

    x86: fix __arch_exchange_and_add_body

Diff:
---
 sysdeps/x86/atomic-machine.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sysdeps/x86/atomic-machine.h b/sysdeps/x86/atomic-machine.h
index 2692d94a92..1cc010e74b 100644
--- a/sysdeps/x86/atomic-machine.h
+++ b/sysdeps/x86/atomic-machine.h
@@ -222,7 +222,7 @@ typedef uintmax_t uatomic_max_t;
      else if (__HAVE_64B_ATOMICS)					      \
        __asm __volatile (lock "xaddq %q0, %1"				      \
 			 : "=r" (__result), "=m" (*mem)			      \
-			 : "0" ((atomic64_t) cast_to_integer (__addval)),     \
+			 : "0" (cast_to_integer (__addval)),     \
 			   "m" (*mem),					      \
 			   "i" (offsetof (tcbhead_t, multiple_threads)));     \
      else								      \


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [glibc/maskray/clang] x86: fix __arch_exchange_and_add_body
@ 2021-11-02 20:01 Fangrui Song
  0 siblings, 0 replies; 9+ messages in thread
From: Fangrui Song @ 2021-11-02 20:01 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=27248f4f6b3d4ff1c7eeafe47f4f52f2a3a88349

commit 27248f4f6b3d4ff1c7eeafe47f4f52f2a3a88349
Author: Fangrui Song <maskray@google.com>
Date:   Sun Sep 26 00:10:51 2021 -0700

    x86: fix __arch_exchange_and_add_body

Diff:
---
 sysdeps/x86/atomic-machine.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sysdeps/x86/atomic-machine.h b/sysdeps/x86/atomic-machine.h
index 2692d94a92..1cc010e74b 100644
--- a/sysdeps/x86/atomic-machine.h
+++ b/sysdeps/x86/atomic-machine.h
@@ -222,7 +222,7 @@ typedef uintmax_t uatomic_max_t;
      else if (__HAVE_64B_ATOMICS)					      \
        __asm __volatile (lock "xaddq %q0, %1"				      \
 			 : "=r" (__result), "=m" (*mem)			      \
-			 : "0" ((atomic64_t) cast_to_integer (__addval)),     \
+			 : "0" (cast_to_integer (__addval)),     \
 			   "m" (*mem),					      \
 			   "i" (offsetof (tcbhead_t, multiple_threads)));     \
      else								      \


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [glibc/maskray/clang] x86: fix __arch_exchange_and_add_body
@ 2021-10-20 21:24 Fangrui Song
  0 siblings, 0 replies; 9+ messages in thread
From: Fangrui Song @ 2021-10-20 21:24 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=b7041ebc8f3eaf52d718e5686ded8bd355ed9ea8

commit b7041ebc8f3eaf52d718e5686ded8bd355ed9ea8
Author: Fangrui Song <maskray@google.com>
Date:   Sun Sep 26 00:10:51 2021 -0700

    x86: fix __arch_exchange_and_add_body

Diff:
---
 sysdeps/x86/atomic-machine.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sysdeps/x86/atomic-machine.h b/sysdeps/x86/atomic-machine.h
index 695222e4fa..803c70e74c 100644
--- a/sysdeps/x86/atomic-machine.h
+++ b/sysdeps/x86/atomic-machine.h
@@ -218,7 +218,7 @@ typedef uintmax_t uatomic_max_t;
      else if (__HAVE_64B_ATOMICS)					      \
        __asm __volatile (lock "xaddq %q0, %1"				      \
 			 : "=r" (__result), "=m" (*mem)			      \
-			 : "0" ((atomic64_t) cast_to_integer (__addval)),     \
+			 : "0" (cast_to_integer (__addval)),     \
 			   "m" (*mem),					      \
 			   "i" (offsetof (tcbhead_t, multiple_threads)));     \
      else								      \


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [glibc/maskray/clang] x86: fix __arch_exchange_and_add_body
@ 2021-10-19 17:02 Fangrui Song
  0 siblings, 0 replies; 9+ messages in thread
From: Fangrui Song @ 2021-10-19 17:02 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=20ddf34876cf3c463385a87226f9dc6aec7d0570

commit 20ddf34876cf3c463385a87226f9dc6aec7d0570
Author: Fangrui Song <maskray@google.com>
Date:   Sun Sep 26 00:10:51 2021 -0700

    x86: fix __arch_exchange_and_add_body

Diff:
---
 sysdeps/x86/atomic-machine.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sysdeps/x86/atomic-machine.h b/sysdeps/x86/atomic-machine.h
index 695222e4fa..803c70e74c 100644
--- a/sysdeps/x86/atomic-machine.h
+++ b/sysdeps/x86/atomic-machine.h
@@ -218,7 +218,7 @@ typedef uintmax_t uatomic_max_t;
      else if (__HAVE_64B_ATOMICS)					      \
        __asm __volatile (lock "xaddq %q0, %1"				      \
 			 : "=r" (__result), "=m" (*mem)			      \
-			 : "0" ((atomic64_t) cast_to_integer (__addval)),     \
+			 : "0" (cast_to_integer (__addval)),     \
 			   "m" (*mem),					      \
 			   "i" (offsetof (tcbhead_t, multiple_threads)));     \
      else								      \


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [glibc/maskray/clang] x86: fix __arch_exchange_and_add_body
@ 2021-10-11 18:16 Fangrui Song
  0 siblings, 0 replies; 9+ messages in thread
From: Fangrui Song @ 2021-10-11 18:16 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=c4b2bbdba5dd6abf4c8dc630a404d7d1e44573fe

commit c4b2bbdba5dd6abf4c8dc630a404d7d1e44573fe
Author: Fangrui Song <maskray@google.com>
Date:   Sun Sep 26 00:10:51 2021 -0700

    x86: fix __arch_exchange_and_add_body

Diff:
---
 sysdeps/x86/atomic-machine.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sysdeps/x86/atomic-machine.h b/sysdeps/x86/atomic-machine.h
index 695222e4fa..803c70e74c 100644
--- a/sysdeps/x86/atomic-machine.h
+++ b/sysdeps/x86/atomic-machine.h
@@ -218,7 +218,7 @@ typedef uintmax_t uatomic_max_t;
      else if (__HAVE_64B_ATOMICS)					      \
        __asm __volatile (lock "xaddq %q0, %1"				      \
 			 : "=r" (__result), "=m" (*mem)			      \
-			 : "0" ((atomic64_t) cast_to_integer (__addval)),     \
+			 : "0" (cast_to_integer (__addval)),     \
 			   "m" (*mem),					      \
 			   "i" (offsetof (tcbhead_t, multiple_threads)));     \
      else								      \


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [glibc/maskray/clang] x86: fix __arch_exchange_and_add_body
@ 2021-10-10 23:34 Fangrui Song
  0 siblings, 0 replies; 9+ messages in thread
From: Fangrui Song @ 2021-10-10 23:34 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=1c42640e6268b5dfa6f62da537c69542caff9035

commit 1c42640e6268b5dfa6f62da537c69542caff9035
Author: Fangrui Song <maskray@google.com>
Date:   Sun Sep 26 00:10:51 2021 -0700

    x86: fix __arch_exchange_and_add_body

Diff:
---
 sysdeps/x86/atomic-machine.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sysdeps/x86/atomic-machine.h b/sysdeps/x86/atomic-machine.h
index 695222e4fa..803c70e74c 100644
--- a/sysdeps/x86/atomic-machine.h
+++ b/sysdeps/x86/atomic-machine.h
@@ -218,7 +218,7 @@ typedef uintmax_t uatomic_max_t;
      else if (__HAVE_64B_ATOMICS)					      \
        __asm __volatile (lock "xaddq %q0, %1"				      \
 			 : "=r" (__result), "=m" (*mem)			      \
-			 : "0" ((atomic64_t) cast_to_integer (__addval)),     \
+			 : "0" (cast_to_integer (__addval)),     \
 			   "m" (*mem),					      \
 			   "i" (offsetof (tcbhead_t, multiple_threads)));     \
      else								      \


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [glibc/maskray/clang] x86: fix __arch_exchange_and_add_body
@ 2021-10-10 23:12 Fangrui Song
  0 siblings, 0 replies; 9+ messages in thread
From: Fangrui Song @ 2021-10-10 23:12 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=4103ffe6e6d58474bbd5487738a7794603c91843

commit 4103ffe6e6d58474bbd5487738a7794603c91843
Author: Fangrui Song <maskray@google.com>
Date:   Sun Sep 26 00:10:51 2021 -0700

    x86: fix __arch_exchange_and_add_body

Diff:
---
 sysdeps/x86/atomic-machine.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sysdeps/x86/atomic-machine.h b/sysdeps/x86/atomic-machine.h
index 695222e4fa..803c70e74c 100644
--- a/sysdeps/x86/atomic-machine.h
+++ b/sysdeps/x86/atomic-machine.h
@@ -218,7 +218,7 @@ typedef uintmax_t uatomic_max_t;
      else if (__HAVE_64B_ATOMICS)					      \
        __asm __volatile (lock "xaddq %q0, %1"				      \
 			 : "=r" (__result), "=m" (*mem)			      \
-			 : "0" ((atomic64_t) cast_to_integer (__addval)),     \
+			 : "0" (cast_to_integer (__addval)),     \
 			   "m" (*mem),					      \
 			   "i" (offsetof (tcbhead_t, multiple_threads)));     \
      else								      \


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [glibc/maskray/clang] x86: fix __arch_exchange_and_add_body
@ 2021-10-08  1:44 Fangrui Song
  0 siblings, 0 replies; 9+ messages in thread
From: Fangrui Song @ 2021-10-08  1:44 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=71e2ba6bd6049a1da3f4916f3501fbf698a3fb9a

commit 71e2ba6bd6049a1da3f4916f3501fbf698a3fb9a
Author: Fangrui Song <maskray@google.com>
Date:   Sun Sep 26 00:10:51 2021 -0700

    x86: fix __arch_exchange_and_add_body

Diff:
---
 sysdeps/x86/atomic-machine.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sysdeps/x86/atomic-machine.h b/sysdeps/x86/atomic-machine.h
index 695222e4fa..803c70e74c 100644
--- a/sysdeps/x86/atomic-machine.h
+++ b/sysdeps/x86/atomic-machine.h
@@ -218,7 +218,7 @@ typedef uintmax_t uatomic_max_t;
      else if (__HAVE_64B_ATOMICS)					      \
        __asm __volatile (lock "xaddq %q0, %1"				      \
 			 : "=r" (__result), "=m" (*mem)			      \
-			 : "0" ((atomic64_t) cast_to_integer (__addval)),     \
+			 : "0" (cast_to_integer (__addval)),     \
 			   "m" (*mem),					      \
 			   "i" (offsetof (tcbhead_t, multiple_threads)));     \
      else								      \


^ permalink raw reply	[flat|nested] 9+ messages in thread

* [glibc/maskray/clang] x86: fix __arch_exchange_and_add_body
@ 2021-10-07 20:14 Fangrui Song
  0 siblings, 0 replies; 9+ messages in thread
From: Fangrui Song @ 2021-10-07 20:14 UTC (permalink / raw)
  To: glibc-cvs

https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=19abb263c809d3dc429f9a0e5adc20cc7b3ce2fa

commit 19abb263c809d3dc429f9a0e5adc20cc7b3ce2fa
Author: Fangrui Song <maskray@google.com>
Date:   Sun Sep 26 00:10:51 2021 -0700

    x86: fix __arch_exchange_and_add_body

Diff:
---
 sysdeps/x86/atomic-machine.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sysdeps/x86/atomic-machine.h b/sysdeps/x86/atomic-machine.h
index 695222e4fa..803c70e74c 100644
--- a/sysdeps/x86/atomic-machine.h
+++ b/sysdeps/x86/atomic-machine.h
@@ -218,7 +218,7 @@ typedef uintmax_t uatomic_max_t;
      else if (__HAVE_64B_ATOMICS)					      \
        __asm __volatile (lock "xaddq %q0, %1"				      \
 			 : "=r" (__result), "=m" (*mem)			      \
-			 : "0" ((atomic64_t) cast_to_integer (__addval)),     \
+			 : "0" (cast_to_integer (__addval)),     \
 			   "m" (*mem),					      \
 			   "i" (offsetof (tcbhead_t, multiple_threads)));     \
      else								      \


^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2021-11-03  7:41 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-03  7:41 [glibc/maskray/clang] x86: fix __arch_exchange_and_add_body Fangrui Song
  -- strict thread matches above, loose matches on Subject: below --
2021-11-02 20:01 Fangrui Song
2021-10-20 21:24 Fangrui Song
2021-10-19 17:02 Fangrui Song
2021-10-11 18:16 Fangrui Song
2021-10-10 23:34 Fangrui Song
2021-10-10 23:12 Fangrui Song
2021-10-08  1:44 Fangrui Song
2021-10-07 20:14 Fangrui Song

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).