locks.h: Use 64-bit versions of primitives when __LP64__ is defined rather than...

* sysdep/powerpc/locks.h: Use 64-bit versions of primitives when
	__LP64__ is defined rather than __powerpc64__.
	(compare_and_swap): 'ret' is an obj_addr_t not just an int.
	(compare_and_swap_release): Likewise.

From-SVN: r104746
This commit is contained in:
Geoffrey Keating 2005-09-28 22:46:48 +00:00 committed by Geoffrey Keating
parent 107bcc1133
commit c7d0307027
2 changed files with 10 additions and 3 deletions

View File

@ -1,3 +1,10 @@
2005-09-28 Geoffrey Keating <geoffk@apple.com>
* sysdep/powerpc/locks.h: Use 64-bit versions of primitives when
__LP64__ is defined rather than __powerpc64__.
(compare_and_swap): 'ret' is an obj_addr_t not just an int.
(compare_and_swap_release): Likewise.
2005-09-28 David Daney <ddaney@avtrex.com>
* HACKING: Update instructions for classpath import.

View File

@ -11,7 +11,7 @@ details. */
#ifndef __SYSDEP_LOCKS_H__
#define __SYSDEP_LOCKS_H__
#ifdef __powerpc64__
#ifdef __LP64__
#define _LARX "ldarx "
#define _STCX "stdcx. "
#else
@ -30,7 +30,7 @@ inline static bool
compare_and_swap (volatile obj_addr_t *addr, obj_addr_t old,
obj_addr_t new_val)
{
int ret;
obj_addr_t ret;
__asm__ __volatile__ (
"0: " _LARX "%0,0,%1 \n"
@ -62,7 +62,7 @@ inline static bool
compare_and_swap_release (volatile obj_addr_t *addr, obj_addr_t old,
obj_addr_t new_val)
{
int ret;
obj_addr_t ret;
__asm__ __volatile__ ("sync" : : : "memory");