OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [sync-2.c] - Blame information for rev 753

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 689 jeremybenn
/* { dg-do run } */
2
/* { dg-require-effective-target sync_char_short } */
3
/* { dg-options "-ansi" } */
4
/* { dg-options "-march=i486" { target { { i?86-*-* x86_64-*-* } && ia32 } } } */
5
/* { dg-options "-mcpu=v9" { target sparc*-*-* } } */
6
 
7
/* { dg-message "note: '__sync_fetch_and_nand' changed semantics in GCC 4.4" "" { target *-*-* } 0 } */
8
/* { dg-message "note: '__sync_nand_and_fetch' changed semantics in GCC 4.4" "" { target *-*-* } 0 } */
9
 
10
/* Test functionality of the intrinsics for 'short' and 'char'.  */
11
 
12
extern void abort (void);
13
extern void *memcpy (void *, const void *, __SIZE_TYPE__);
14
 
15
static char AI[18];
16
static char init_qi[18] = { 3,5,7,9,0,0,0 ,0  ,-1,0,0,-1,0,0  ,-1,0,0,-1 };
17
static char test_qi[18] = { 3,5,7,9,1,4,22,-12,7 ,8,9,~7,1,-12,7 ,8,9,~7 };
18
 
19
static void
20
do_qi (void)
21
{
22
  if (__sync_fetch_and_add(AI+4, 1) != 0)
23
    abort ();
24
  if (__sync_fetch_and_add(AI+5, 4) != 0)
25
    abort ();
26
  if (__sync_fetch_and_add(AI+6, 22) != 0)
27
    abort ();
28
  if (__sync_fetch_and_sub(AI+7, 12) != 0)
29
    abort ();
30
  if (__sync_fetch_and_and(AI+8, 7) != (char)-1)
31
    abort ();
32
  if (__sync_fetch_and_or(AI+9, 8) != 0)
33
    abort ();
34
  if (__sync_fetch_and_xor(AI+10, 9) != 0)
35
    abort ();
36
  if (__sync_fetch_and_nand(AI+11, 7) != (char)-1)
37
    abort ();
38
 
39
  if (__sync_add_and_fetch(AI+12, 1) != 1)
40
    abort ();
41
  if (__sync_sub_and_fetch(AI+13, 12) != (char)-12)
42
    abort ();
43
  if (__sync_and_and_fetch(AI+14, 7) != 7)
44
    abort ();
45
  if (__sync_or_and_fetch(AI+15, 8) != 8)
46
    abort ();
47
  if (__sync_xor_and_fetch(AI+16, 9) != 9)
48
    abort ();
49
  if (__sync_nand_and_fetch(AI+17, 7) != (char)~7)
50
    abort ();
51
}
52
 
53
static short AL[18];
54
static short init_hi[18] = { 3,5,7,9,0,0,0 ,0  ,-1,0,0,-1,0,0  ,-1,0,0,-1 };
55
static short test_hi[18] = { 3,5,7,9,1,4,22,-12,7 ,8,9,~7,1,-12,7 ,8,9,~7 };
56
 
57
static void
58
do_hi (void)
59
{
60
  if (__sync_fetch_and_add(AL+4, 1) != 0)
61
    abort ();
62
  if (__sync_fetch_and_add(AL+5, 4) != 0)
63
    abort ();
64
  if (__sync_fetch_and_add(AL+6, 22) != 0)
65
    abort ();
66
  if (__sync_fetch_and_sub(AL+7, 12) != 0)
67
    abort ();
68
  if (__sync_fetch_and_and(AL+8, 7) != -1)
69
    abort ();
70
  if (__sync_fetch_and_or(AL+9, 8) != 0)
71
    abort ();
72
  if (__sync_fetch_and_xor(AL+10, 9) != 0)
73
    abort ();
74
  if (__sync_fetch_and_nand(AL+11, 7) != -1)
75
    abort ();
76
 
77
  if (__sync_add_and_fetch(AL+12, 1) != 1)
78
    abort ();
79
  if (__sync_sub_and_fetch(AL+13, 12) != -12)
80
    abort ();
81
  if (__sync_and_and_fetch(AL+14, 7) != 7)
82
    abort ();
83
  if (__sync_or_and_fetch(AL+15, 8) != 8)
84
    abort ();
85
  if (__sync_xor_and_fetch(AL+16, 9) != 9)
86
    abort ();
87
  if (__sync_nand_and_fetch(AL+17, 7) != ~7)
88
    abort ();
89
}
90
 
91
int main()
92
{
93
  memcpy(AI, init_qi, sizeof(init_qi));
94
  memcpy(AL, init_hi, sizeof(init_hi));
95
 
96
  do_qi ();
97
  do_hi ();
98
 
99
  if (memcmp (AI, test_qi, sizeof(test_qi)))
100
    abort ();
101
  if (memcmp (AL, test_hi, sizeof(test_hi)))
102
    abort ();
103
 
104
  return 0;
105
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.