Merge from mainline (gomp-merge-2005-02-26).
[official-gcc.git] / gcc / testsuite / gcc.dg / ia64-sync-1.c
blobc33bf3bf3381d707641bd8d9ae3825450ffea6c6
1 /* { dg-do run { target ia64-*-* } } */
2 /* { dg-options } */
4 /* Test basic functionality of the intrinsics. The operations should
5 not be optimized away if no one checks the return values. */
7 #include <ia64intrin.h>
9 extern void abort (void);
10 extern void *memcpy (void *, const void *, __SIZE_TYPE__);
12 static int AI[12];
13 static int init_noret_si[12] = { 0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 0, 0 };
14 static int test_noret_si[12] = { 1, 1, 1, 0, 1, 4, 22, -12, 7, 8, 9, 7 };
16 static void
17 do_noret_si (void)
19 __sync_val_compare_and_swap(AI+0, 0, 1);
20 __sync_bool_compare_and_swap(AI+1, 0, 1);
21 __sync_lock_test_and_set(AI+2, 1);
22 __sync_lock_release(AI+3);
24 __sync_fetch_and_add(AI+4, 1);
25 __sync_fetch_and_add(AI+5, 4);
26 __sync_fetch_and_add(AI+6, 22);
27 __sync_fetch_and_sub(AI+7, 12);
28 __sync_fetch_and_and(AI+8, 7);
29 __sync_fetch_and_or(AI+9, 8);
30 __sync_fetch_and_xor(AI+10, 9);
31 __sync_fetch_and_nand(AI+11, 7);
34 static long AL[12];
35 static long init_noret_di[12] = { 0, 0, 0, 1, 0, 0, 0, 0, -1, 0, 0, 0 };
36 static long test_noret_di[12] = { 1, 1, 1, 0, 1, 4, 22, -12, 7, 8, 9, 7 };
38 static void
39 do_noret_di (void)
41 __sync_val_compare_and_swap(AL+0, 0, 1);
42 __sync_bool_compare_and_swap(AL+1, 0, 1);
43 __sync_lock_test_and_set(AL+2, 1);
44 __sync_lock_release(AL+3);
46 __sync_fetch_and_add(AL+4, 1);
47 __sync_fetch_and_add(AL+5, 4);
48 __sync_fetch_and_add(AL+6, 22);
49 __sync_fetch_and_sub(AL+7, 12);
50 __sync_fetch_and_and(AL+8, 7);
51 __sync_fetch_and_or(AL+9, 8);
52 __sync_fetch_and_xor(AL+10, 9);
53 __sync_fetch_and_nand(AL+11, 7);
56 int main()
58 memcpy(AI, init_noret_si, sizeof(init_noret_si));
59 memcpy(AL, init_noret_di, sizeof(init_noret_di));
61 do_noret_si ();
62 do_noret_di ();
64 if (memcmp (AI, test_noret_si, sizeof(test_noret_si)))
65 abort ();
66 if (memcmp (AL, test_noret_di, sizeof(test_noret_di)))
67 abort ();
69 return 0;