Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(237)

Unified Diff: crosstest/test_sync_atomic.cpp

Issue 413903002: Subzero: Add a peephole to fuse cmpxchg w/ later cmp+branch. (Closed) Base URL: https://chromium.googlesource.com/native_client/pnacl-subzero.git@master
Patch Set: blank Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « crosstest/test_sync_atomic.h ('k') | crosstest/test_sync_atomic_main.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: crosstest/test_sync_atomic.cpp
diff --git a/crosstest/test_sync_atomic.cpp b/crosstest/test_sync_atomic.cpp
index 05d0336f0ab4f6eae493004a8c453458f9e46d6a..9cfb9635acd00bcca44d8f6f3fb0f40ed9d1c5e5 100644
--- a/crosstest/test_sync_atomic.cpp
+++ b/crosstest/test_sync_atomic.cpp
@@ -54,9 +54,21 @@
FOR_ALL_RMWOP_TYPES(X)
#undef X
-#define X(type) \
- type test_val_cmp_swap(volatile type *ptr, type oldval, type newval) { \
- return __sync_val_compare_and_swap(ptr, oldval, newval); \
+#define X(type) \
+ type test_val_cmp_swap(volatile type *ptr, type oldval, type newval) { \
+ return __sync_val_compare_and_swap(ptr, oldval, newval); \
+ } \
+ type test_val_cmp_swap_loop(volatile type *ptr, type oldval, type newval) { \
+ type prev; \
+ type succeeded_first_try = 1; \
+ while (1) { \
+ prev = __sync_val_compare_and_swap(ptr, oldval, newval); \
+ if (prev == oldval) \
+ break; \
+ succeeded_first_try = 0; \
+ oldval = prev; \
+ } \
+ return succeeded_first_try; \
}
ATOMIC_TYPE_TABLE
« no previous file with comments | « crosstest/test_sync_atomic.h ('k') | crosstest/test_sync_atomic_main.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698