impatomic.h: fixup spacing
authorBrian Norris <banorris@uci.edu>
Fri, 10 Aug 2012 18:44:00 +0000 (11:44 -0700)
committerBrian Norris <banorris@uci.edu>
Sat, 11 Aug 2012 00:25:08 +0000 (17:25 -0700)
Tabs vs. spaces for indentation screws up this indentation, making it even
harder to read than it should be. Switch this all to spaces (for uniformity
across all editor configurations) and align things properly.

include/impatomic.h

index 808dc1229c39a2d47d54d6d159a937e6d7aa68a4..a69ba7860342ed34568a00930ed6b451a8663cee 100644 (file)
@@ -72,46 +72,46 @@ inline void atomic_flag::fence( memory_order __x__ ) const volatile
         __x__=memory-ordering, and __y__=memory-ordering.
 */
 
-#define _ATOMIC_LOAD_( __a__, __x__ )                                                                                                                                  \
-       ({ volatile __typeof__((__a__)->__f__)* __p__ = & ((__a__)->__f__);             \
-               __typeof__((__a__)->__f__) __r__ = (__typeof__((__a__)->__f__))model_read_action((void *)__p__, __x__); \
-               __r__; })
-
-#define _ATOMIC_STORE_( __a__, __m__, __x__ )                                                                                                          \
-       ({ volatile __typeof__((__a__)->__f__)* __p__ = & ((__a__)->__f__);                     \
-               __typeof__(__m__) __v__ = (__m__);                                                                                                                                      \
-               model_write_action((void *) __p__,  __x__, (uint64_t) __v__);                           \
-               __v__; })
-
-
-#define _ATOMIC_INIT_( __a__, __m__ )                                                                                                          \
-       ({ volatile __typeof__((__a__)->__f__)* __p__ = & ((__a__)->__f__);                     \
-               __typeof__(__m__) __v__ = (__m__);                                                                                                                                      \
-               model_init_action((void *) __p__,  (uint64_t) __v__);                           \
-               __v__; })
-
-#define _ATOMIC_MODIFY_( __a__, __o__, __m__, __x__ )                                                                          \
-       ({ volatile __typeof__((__a__)->__f__)* __p__ = & ((__a__)->__f__);                     \
-       __typeof__((__a__)->__f__) __old__=(__typeof__((__a__)->__f__)) model_rmwr_action((void *)__p__, __x__); \
-       __typeof__(__m__) __v__ = (__m__);                                                                                                                                              \
-       __typeof__((__a__)->__f__) __copy__= __old__;                                                                                                   \
-       __copy__ __o__ __v__;                                                                                                                                                                                                   \
-       model_rmw_action((void *)__p__, __x__, (uint64_t) __copy__);                                    \
-       __old__; })
-
-#define _ATOMIC_CMPSWP_( __a__, __e__, __m__, __x__ )                                                                          \
-       ({ volatile __typeof__((__a__)->__f__)* __p__ = & ((__a__)->__f__);                     \
-               __typeof__(__e__) __q__ = (__e__);                                                                                                                                      \
-               __typeof__(__m__) __v__ = (__m__);                                                                                                                                      \
-               bool __r__;                                                                                                                                                                                                                                     \
-               __typeof__((__a__)->__f__) __t__=(__typeof__((__a__)->__f__)) model_rmwr_action((void *)__p__, __x__);\
-               if (__t__ == * __q__ ) {                                                                                                                                                                                \
-                       model_rmw_action((void *)__p__, __x__, (uint64_t) __v__); __r__ = true; } \
-               else {  model_rmwc_action((void *)__p__, __x__); *__q__ = __t__;  __r__ = false;} \
-               __r__; })
+#define _ATOMIC_LOAD_( __a__, __x__ )                                         \
+        ({ volatile __typeof__((__a__)->__f__)* __p__ = & ((__a__)->__f__);   \
+                __typeof__((__a__)->__f__) __r__ = (__typeof__((__a__)->__f__))model_read_action((void *)__p__, __x__);  \
+                __r__; })
+
+#define _ATOMIC_STORE_( __a__, __m__, __x__ )                                 \
+        ({ volatile __typeof__((__a__)->__f__)* __p__ = & ((__a__)->__f__);   \
+                __typeof__(__m__) __v__ = (__m__);                            \
+                model_write_action((void *) __p__,  __x__, (uint64_t) __v__); \
+                __v__; })
+
+
+#define _ATOMIC_INIT_( __a__, __m__ )                                         \
+        ({ volatile __typeof__((__a__)->__f__)* __p__ = & ((__a__)->__f__);   \
+                __typeof__(__m__) __v__ = (__m__);                            \
+                model_init_action((void *) __p__,  (uint64_t) __v__);         \
+                __v__; })
+
+#define _ATOMIC_MODIFY_( __a__, __o__, __m__, __x__ )                         \
+        ({ volatile __typeof__((__a__)->__f__)* __p__ = & ((__a__)->__f__);   \
+        __typeof__((__a__)->__f__) __old__=(__typeof__((__a__)->__f__)) model_rmwr_action((void *)__p__, __x__); \
+        __typeof__(__m__) __v__ = (__m__);                                    \
+        __typeof__((__a__)->__f__) __copy__= __old__;                         \
+        __copy__ __o__ __v__;                                                 \
+        model_rmw_action((void *)__p__, __x__, (uint64_t) __copy__);          \
+        __old__; })
+
+#define _ATOMIC_CMPSWP_( __a__, __e__, __m__, __x__ )                         \
+        ({ volatile __typeof__((__a__)->__f__)* __p__ = & ((__a__)->__f__);   \
+                __typeof__(__e__) __q__ = (__e__);                            \
+                __typeof__(__m__) __v__ = (__m__);                            \
+                bool __r__;                                                   \
+                __typeof__((__a__)->__f__) __t__=(__typeof__((__a__)->__f__)) model_rmwr_action((void *)__p__, __x__); \
+                if (__t__ == * __q__ ) {                                      \
+                        model_rmw_action((void *)__p__, __x__, (uint64_t) __v__); __r__ = true; } \
+                else {  model_rmwc_action((void *)__p__, __x__); *__q__ = __t__;  __r__ = false;} \
+                __r__; })
 
 //TODO
-#define _ATOMIC_FENCE_( __a__, __x__ )                                 \
+#define _ATOMIC_FENCE_( __a__, __x__ ) \
 ({ ;})