2 /* { dg-require-effective-target sync_int_long } */
4 /* { dg-options "-march=i486" { target { { i?86-*-* x86_64-*-* } && ia32 } } } */
5 /* { dg-options "-mcpu=v9" { target sparc*-*-* } } */
7 /* { dg-message "note: '__sync_fetch_and_nand' changed semantics in GCC 4.4" "fetch_and_nand" { target *-*-* } 0 } */
8 /* { dg-message "note: '__sync_nand_and_fetch' changed semantics in GCC 4.4" "nand_and_fetch" { target *-*-* } 0 } */
10 /* Test basic functionality of the intrinsics. */
12 __extension__
typedef __SIZE_TYPE__
size_t;
14 extern void abort (void);
15 extern void *memcpy (void *, const void *, size_t);
16 extern int memcmp (const void *, const void *, size_t);
19 static int init_si
[18] = { 0,0,0,1,0,0, 0,0 ,-1,0,0,-1,0,0 ,-1,0,0,-1 };
20 static int test_si
[18] = { 1,1,1,1,1,4,22,-12,7 ,8,9,~7,1,-12,7 ,8,9,~7 };
25 if (__sync_val_compare_and_swap(AI
+0, 0, 1) != 0)
27 if (__sync_val_compare_and_swap(AI
+0, 0, 1) != 1)
29 if (__sync_bool_compare_and_swap(AI
+1, 0, 1) != 1)
31 if (__sync_bool_compare_and_swap(AI
+1, 0, 1) != 0)
34 if (__sync_lock_test_and_set(AI
+2, 1) != 0)
37 if (__sync_fetch_and_add(AI
+4, 1) != 0)
39 if (__sync_fetch_and_add(AI
+5, 4) != 0)
41 if (__sync_fetch_and_add(AI
+6, 22) != 0)
43 if (__sync_fetch_and_sub(AI
+7, 12) != 0)
45 if (__sync_fetch_and_and(AI
+8, 7) != -1)
47 if (__sync_fetch_and_or(AI
+9, 8) != 0)
49 if (__sync_fetch_and_xor(AI
+10, 9) != 0)
51 if (__sync_fetch_and_nand(AI
+11, 7) != -1)
54 if (__sync_add_and_fetch(AI
+12, 1) != 1)
56 if (__sync_sub_and_fetch(AI
+13, 12) != -12)
58 if (__sync_and_and_fetch(AI
+14, 7) != 7)
60 if (__sync_or_and_fetch(AI
+15, 8) != 8)
62 if (__sync_xor_and_fetch(AI
+16, 9) != 9)
64 if (__sync_nand_and_fetch(AI
+17, 7) != ~7)
69 static long init_di
[18] = { 0,0,0,1,0,0, 0,0 ,-1,0,0,-1,0,0 ,-1,0,0,-1 };
70 static long test_di
[18] = { 1,1,1,1,1,4,22,-12,7 ,8,9,~7,1,-12,7 ,8,9,~7 };
75 if (__sync_val_compare_and_swap(AL
+0, 0, 1) != 0)
77 if (__sync_val_compare_and_swap(AL
+0, 0, 1) != 1)
79 if (__sync_bool_compare_and_swap(AL
+1, 0, 1) != 1)
81 if (__sync_bool_compare_and_swap(AL
+1, 0, 1) != 0)
84 if (__sync_lock_test_and_set(AL
+2, 1) != 0)
87 if (__sync_fetch_and_add(AL
+4, 1) != 0)
89 if (__sync_fetch_and_add(AL
+5, 4) != 0)
91 if (__sync_fetch_and_add(AL
+6, 22) != 0)
93 if (__sync_fetch_and_sub(AL
+7, 12) != 0)
95 if (__sync_fetch_and_and(AL
+8, 7) != -1)
97 if (__sync_fetch_and_or(AL
+9, 8) != 0)
99 if (__sync_fetch_and_xor(AL
+10, 9) != 0)
101 if (__sync_fetch_and_nand(AL
+11, 7) != -1)
104 if (__sync_add_and_fetch(AL
+12, 1) != 1)
106 if (__sync_sub_and_fetch(AL
+13, 12) != -12)
108 if (__sync_and_and_fetch(AL
+14, 7) != 7)
110 if (__sync_or_and_fetch(AL
+15, 8) != 8)
112 if (__sync_xor_and_fetch(AL
+16, 9) != 9)
114 if (__sync_nand_and_fetch(AL
+17, 7) != ~7)
120 memcpy(AI
, init_si
, sizeof(init_si
));
121 memcpy(AL
, init_di
, sizeof(init_di
));
126 if (memcmp (AI
, test_si
, sizeof(test_si
)))
128 if (memcmp (AL
, test_di
, sizeof(test_di
)))