1 /* Test that __builtin_prefetch does no harm.
3 Prefetch data using a variety of storage classes and address
7 int *glob_ptr_int
= glob_int_arr
;
10 static stat_int_arr
[100];
11 static int *stat_ptr_int
= stat_int_arr
;
22 struct S
*ptr_str
= &str
;
24 /* Prefetch global variables using the address of the variable. */
29 __builtin_prefetch (glob_int_arr
, 0, 0);
30 __builtin_prefetch (glob_ptr_int
, 0, 0);
31 __builtin_prefetch (&glob_int
, 0, 0);
34 /* Prefetch file-level static variables using the address of the variable. */
39 __builtin_prefetch (stat_int_arr
, 0, 0);
40 __builtin_prefetch (stat_ptr_int
, 0, 0);
41 __builtin_prefetch (&stat_int
, 0, 0);
44 /* Prefetch local static variables using the address of the variable. */
47 simple_static_local ()
52 __builtin_prefetch (gx
, 0, 0);
53 __builtin_prefetch (hx
, 0, 0);
54 __builtin_prefetch (&ix
, 0, 0);
57 /* Prefetch local stack variables using the address of the variable. */
65 __builtin_prefetch (gx
, 0, 0);
66 __builtin_prefetch (hx
, 0, 0);
67 __builtin_prefetch (&ix
, 0, 0);
70 /* Prefetch arguments using the address of the variable. */
73 simple_arg (int g
[100], int *h
, int i
)
75 __builtin_prefetch (g
, 0, 0);
76 __builtin_prefetch (h
, 0, 0);
77 __builtin_prefetch (&i
, 0, 0);
80 /* Prefetch using address expressions involving global variables. */
85 __builtin_prefetch (&str
, 0, 0);
86 __builtin_prefetch (ptr_str
, 0, 0);
87 __builtin_prefetch (&str
.b
, 0, 0);
88 __builtin_prefetch (&ptr_str
->b
, 0, 0);
89 __builtin_prefetch (&str
.d
, 0, 0);
90 __builtin_prefetch (&ptr_str
->d
, 0, 0);
91 __builtin_prefetch (str
.next
, 0, 0);
92 __builtin_prefetch (ptr_str
->next
, 0, 0);
93 __builtin_prefetch (str
.next
->d
, 0, 0);
94 __builtin_prefetch (ptr_str
->next
->d
, 0, 0);
96 __builtin_prefetch (&glob_int_arr
, 0, 0);
97 __builtin_prefetch (glob_ptr_int
, 0, 0);
98 __builtin_prefetch (&glob_int_arr
[2], 0, 0);
99 __builtin_prefetch (&glob_ptr_int
[3], 0, 0);
100 __builtin_prefetch (glob_int_arr
+3, 0, 0);
101 __builtin_prefetch (glob_int_arr
+glob_int
, 0, 0);
102 __builtin_prefetch (glob_ptr_int
+5, 0, 0);
103 __builtin_prefetch (glob_ptr_int
+glob_int
, 0, 0);
106 /* Prefetch using address expressions involving local variables. */
117 __builtin_prefetch (&t
, 0, 0);
118 __builtin_prefetch (pt
, 0, 0);
119 __builtin_prefetch (&t
.b
, 0, 0);
120 __builtin_prefetch (&pt
->b
, 0, 0);
121 __builtin_prefetch (&t
.d
, 0, 0);
122 __builtin_prefetch (&pt
->d
, 0, 0);
123 __builtin_prefetch (t
.next
, 0, 0);
124 __builtin_prefetch (pt
->next
, 0, 0);
125 __builtin_prefetch (t
.next
->d
, 0, 0);
126 __builtin_prefetch (pt
->next
->d
, 0, 0);
128 __builtin_prefetch (&b
, 0, 0);
129 __builtin_prefetch (pb
, 0, 0);
130 __builtin_prefetch (&b
[2], 0, 0);
131 __builtin_prefetch (&pb
[3], 0, 0);
132 __builtin_prefetch (b
+3, 0, 0);
133 __builtin_prefetch (b
+j
, 0, 0);
134 __builtin_prefetch (pb
+5, 0, 0);
135 __builtin_prefetch (pb
+j
, 0, 0);
143 simple_static_local ();
145 simple_arg (glob_int_arr
, glob_ptr_int
, glob_int
);