public inbox for java-patches@gcc.gnu.org
 help / color / mirror / Atom feed
* [patch committed libjava] Update sysdep/sh/locks.h with atomic builtins
@ 2012-06-14 22:59 Kaz Kojima
  0 siblings, 0 replies; only message in thread
From: Kaz Kojima @ 2012-06-14 22:59 UTC (permalink / raw)
  To: java-patches; +Cc: gcc-patches

Hi,

I've applied the attached patch which updates libjava/sysdep/sh/locks.h
with new atomic builtins.  Tested on sh4-unknown-linux-gnu with no new
failures.

Regards,
	kaz
--
2012-06-14  Kaz Kojima  <kkojima@gcc.gnu.org>

	* sysdep/sh/locks.h (__cas_lock): Remove.
	(__cas_start_atomic, __cas_end_atomic): Likewise.
	(compare_and_swap): Call __sync_bool_compare_and_swap.

--- ORIG/trunk/libjava/sysdep/sh/locks.h	2007-01-13 09:53:55.000000000 +0900
+++ trunk/libjava/sysdep/sh/locks.h	2012-06-14 19:18:34.000000000 +0900
@@ -14,45 +14,11 @@ details.  */
 typedef size_t obj_addr_t;	/* Integer type big enough for object	*/
 				/* address.				*/
 
-static unsigned char __cas_lock = 0;
-
-inline static void
-__cas_start_atomic (void)
-{
-  unsigned int val;
-
-  do
-    __asm__ __volatile__ ("tas.b @%1; movt %0"
-			  : "=r" (val)
-			  : "r" (&__cas_lock)
-			  : "memory");
-  while (val == 0);
-}
-
-inline static void
-__cas_end_atomic (void)
-{
-  __asm__ __volatile__ (" " : : : "memory");
-  __cas_lock = 0;
-}
-
 inline static bool
 compare_and_swap (volatile obj_addr_t *addr, obj_addr_t old,
 		  obj_addr_t new_val)
 {
-  bool ret;
-
-  __cas_start_atomic ();
-  if (*addr != old)
-    ret = false;
-  else
-    {
-      *addr = new_val;
-      ret = true;
-    }
-  __cas_end_atomic ();
-
-  return ret;
+  return __sync_bool_compare_and_swap (addr, old, new_val);
 }
 
 inline static void

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2012-06-14 22:59 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-06-14 22:59 [patch committed libjava] Update sysdep/sh/locks.h with atomic builtins Kaz Kojima

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).