1 /* Test that __builtin_prefetch does no harm.
3 Prefetch data using a variety of storage classes and address
9 int *glob_ptr_int
= glob_int_arr
;
12 static int stat_int_arr
[100];
13 static int *stat_ptr_int
= stat_int_arr
;
24 struct S
*ptr_str
= &str
;
26 /* Prefetch global variables using the address of the variable. */
31 __builtin_prefetch (glob_int_arr
, 0, 0);
32 __builtin_prefetch (glob_ptr_int
, 0, 0);
33 __builtin_prefetch (&glob_int
, 0, 0);
36 /* Prefetch file-level static variables using the address of the variable. */
41 __builtin_prefetch (stat_int_arr
, 0, 0);
42 __builtin_prefetch (stat_ptr_int
, 0, 0);
43 __builtin_prefetch (&stat_int
, 0, 0);
46 /* Prefetch local static variables using the address of the variable. */
49 simple_static_local ()
54 __builtin_prefetch (gx
, 0, 0);
55 __builtin_prefetch (hx
, 0, 0);
56 __builtin_prefetch (&ix
, 0, 0);
59 /* Prefetch local stack variables using the address of the variable. */
67 __builtin_prefetch (gx
, 0, 0);
68 __builtin_prefetch (hx
, 0, 0);
69 __builtin_prefetch (&ix
, 0, 0);
72 /* Prefetch arguments using the address of the variable. */
75 simple_arg (int g
[100], int *h
, int i
)
77 __builtin_prefetch (g
, 0, 0);
78 __builtin_prefetch (h
, 0, 0);
79 __builtin_prefetch (&i
, 0, 0);
82 /* Prefetch using address expressions involving global variables. */
87 __builtin_prefetch (&str
, 0, 0);
88 __builtin_prefetch (ptr_str
, 0, 0);
89 __builtin_prefetch (&str
.b
, 0, 0);
90 __builtin_prefetch (&ptr_str
->b
, 0, 0);
91 __builtin_prefetch (&str
.d
, 0, 0);
92 __builtin_prefetch (&ptr_str
->d
, 0, 0);
93 __builtin_prefetch (str
.next
, 0, 0);
94 __builtin_prefetch (ptr_str
->next
, 0, 0);
95 __builtin_prefetch (str
.next
->d
, 0, 0);
96 __builtin_prefetch (ptr_str
->next
->d
, 0, 0);
98 __builtin_prefetch (&glob_int_arr
, 0, 0);
99 __builtin_prefetch (glob_ptr_int
, 0, 0);
100 __builtin_prefetch (&glob_int_arr
[2], 0, 0);
101 __builtin_prefetch (&glob_ptr_int
[3], 0, 0);
102 __builtin_prefetch (glob_int_arr
+3, 0, 0);
103 __builtin_prefetch (glob_int_arr
+glob_int
, 0, 0);
104 __builtin_prefetch (glob_ptr_int
+5, 0, 0);
105 __builtin_prefetch (glob_ptr_int
+glob_int
, 0, 0);
108 /* Prefetch using address expressions involving local variables. */
119 __builtin_prefetch (&t
, 0, 0);
120 __builtin_prefetch (pt
, 0, 0);
121 __builtin_prefetch (&t
.b
, 0, 0);
122 __builtin_prefetch (&pt
->b
, 0, 0);
123 __builtin_prefetch (&t
.d
, 0, 0);
124 __builtin_prefetch (&pt
->d
, 0, 0);
125 __builtin_prefetch (t
.next
, 0, 0);
126 __builtin_prefetch (pt
->next
, 0, 0);
127 __builtin_prefetch (t
.next
->d
, 0, 0);
128 __builtin_prefetch (pt
->next
->d
, 0, 0);
130 __builtin_prefetch (&b
, 0, 0);
131 __builtin_prefetch (pb
, 0, 0);
132 __builtin_prefetch (&b
[2], 0, 0);
133 __builtin_prefetch (&pb
[3], 0, 0);
134 __builtin_prefetch (b
+3, 0, 0);
135 __builtin_prefetch (b
+j
, 0, 0);
136 __builtin_prefetch (pb
+5, 0, 0);
137 __builtin_prefetch (pb
+j
, 0, 0);
145 simple_static_local ();
147 simple_arg (glob_int_arr
, glob_ptr_int
, glob_int
);