PERFORCE change 72450 for review
John Baldwin
jhb at FreeBSD.org
Thu Mar 3 21:04:26 GMT 2005
http://perforce.freebsd.org/chv.cgi?CH=72450
Change 72450 by jhb at jhb_slimer on 2005/03/03 21:03:35
Clobber memory for cas{x,}a() inlines.
Suggested by: alc
Affected files ...
.. //depot/projects/smpng/sys/sparc64/include/cpufunc.h#20 edit
Differences ...
==== //depot/projects/smpng/sys/sparc64/include/cpufunc.h#20 (text+ko) ====
@@ -63,14 +63,14 @@
#define casa(rs1, rs2, rd, asi) ({ \
u_int __rd = (uint32_t)(rd); \
__asm __volatile("casa [%1] %2, %3, %0" \
- : "+r" (__rd) : "r" (rs1), "n" (asi), "r" (rs2)); \
+ : "+r" (__rd) : "r" (rs1), "n" (asi), "r" (rs2) : "memory");\
__rd; \
})
#define casxa(rs1, rs2, rd, asi) ({ \
u_long __rd = (uint64_t)(rd); \
__asm __volatile("casxa [%1] %2, %3, %0" \
- : "+r" (__rd) : "r" (rs1), "n" (asi), "r" (rs2)); \
+ : "+r" (__rd) : "r" (rs1), "n" (asi), "r" (rs2) : "memory");\
__rd; \
})
More information about the p4-projects
mailing list