PERFORCE change 74206 for review
John Baldwin
jhb at FreeBSD.org
Thu Mar 31 12:45:08 PST 2005
http://perforce.freebsd.org/chv.cgi?CH=74206
Change 74206 by jhb at jhb_slimer on 2005/03/31 20:45:05
Mark the memory as an output, not just an input.
Affected files ...
.. //depot/projects/smpng/sys/sparc64/include/cpufunc.h#22 edit
Differences ...
==== //depot/projects/smpng/sys/sparc64/include/cpufunc.h#22 (text+ko) ====
@@ -62,15 +62,17 @@
#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), "m" (*rs1));\
+ __asm __volatile("casa [%2] %3, %4, %0" \
+ : "+r" (__rd), "=m" (*rs1) \
+ : "r" (rs1), "n" (asi), "r" (rs2), "m" (*rs1)); \
__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), "m" (*rs1));\
+ __asm __volatile("casxa [%2] %3, %4, %0" \
+ : "+r" (__rd), "=m" (*rs1) \
+ : "r" (rs1), "n" (asi), "r" (rs2), "m" (*rs1)); \
__rd; \
})
More information about the p4-projects
mailing list